blob: b11756f9b6dcfdf2673b2a396ac0e0de5c980101 [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
6 * Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
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
Jiri Olsaf8697762014-08-01 14:33:01 +0200129#define EVENT_OWNER_KERNEL ((void *) -1)
130
131static bool is_kernel_event(struct perf_event *event)
132{
133 return event->owner == EVENT_OWNER_KERNEL;
134}
135
Stephane Eraniane5d13672011-02-14 11:20:01 +0200136#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
137 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100138 PERF_FLAG_PID_CGROUP |\
139 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200140
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100141/*
142 * branch priv levels that need permission checks
143 */
144#define PERF_SAMPLE_BRANCH_PERM_PLM \
145 (PERF_SAMPLE_BRANCH_KERNEL |\
146 PERF_SAMPLE_BRANCH_HV)
147
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200148enum event_type_t {
149 EVENT_FLEXIBLE = 0x1,
150 EVENT_PINNED = 0x2,
151 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
152};
153
Stephane Eraniane5d13672011-02-14 11:20:01 +0200154/*
155 * perf_sched_events : >0 events exist
156 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
157 */
Ingo Molnarc5905af2012-02-24 08:31:31 +0100158struct static_key_deferred perf_sched_events __read_mostly;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200159static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500160static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200161
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200162static atomic_t nr_mmap_events __read_mostly;
163static atomic_t nr_comm_events __read_mostly;
164static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200165static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300166static atomic_t nr_switch_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200167
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200168static LIST_HEAD(pmus);
169static DEFINE_MUTEX(pmus_lock);
170static struct srcu_struct pmus_srcu;
171
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200172/*
173 * perf event paranoia level:
174 * -1 - not paranoid at all
175 * 0 - disallow raw tracepoint access for unpriv
176 * 1 - disallow cpu events for unpriv
177 * 2 - disallow kernel profiling for unpriv
178 */
179int sysctl_perf_event_paranoid __read_mostly = 1;
180
Frederic Weisbecker20443382011-03-31 03:33:29 +0200181/* Minimum for 512 kiB + 1 user control page */
182int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200183
184/*
185 * max perf event sample rate
186 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700187#define DEFAULT_MAX_SAMPLE_RATE 100000
188#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
189#define DEFAULT_CPU_TIME_MAX_PERCENT 25
190
191int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
192
193static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
194static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
195
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200196static int perf_sample_allowed_ns __read_mostly =
197 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700198
199void update_perf_cpu_limits(void)
200{
201 u64 tmp = perf_sample_period_ns;
202
203 tmp *= sysctl_perf_cpu_time_max_percent;
Stephane Eraniane5302922013-07-05 00:30:11 +0200204 do_div(tmp, 100);
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200205 ACCESS_ONCE(perf_sample_allowed_ns) = tmp;
Dave Hansen14c63f12013-06-21 08:51:36 -0700206}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100207
Stephane Eranian9e630202013-04-03 14:21:33 +0200208static int perf_rotate_context(struct perf_cpu_context *cpuctx);
209
Peter Zijlstra163ec432011-02-16 11:22:34 +0100210int perf_proc_update_handler(struct ctl_table *table, int write,
211 void __user *buffer, size_t *lenp,
212 loff_t *ppos)
213{
Knut Petersen723478c2013-09-25 14:29:37 +0200214 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100215
216 if (ret || !write)
217 return ret;
218
219 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700220 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
221 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100222
223 return 0;
224}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200225
Dave Hansen14c63f12013-06-21 08:51:36 -0700226int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
227
228int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
229 void __user *buffer, size_t *lenp,
230 loff_t *ppos)
231{
232 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
233
234 if (ret || !write)
235 return ret;
236
237 update_perf_cpu_limits();
238
239 return 0;
240}
241
242/*
243 * perf samples are done in some very critical code paths (NMIs).
244 * If they take too much CPU time, the system can lock up and not
245 * get any real work done. This will drop the sample rate when
246 * we detect that events are taking too long.
247 */
248#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200249static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700250
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100251static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700252{
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100253 u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
Dave Hansen14c63f12013-06-21 08:51:36 -0700254 u64 avg_local_sample_len;
Stephane Eraniane5302922013-07-05 00:30:11 +0200255 u64 local_samples_len;
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100256
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500257 local_samples_len = __this_cpu_read(running_sample_length);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100258 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
259
260 printk_ratelimited(KERN_WARNING
261 "perf interrupt took too long (%lld > %lld), lowering "
262 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100263 avg_local_sample_len, allowed_ns >> 1,
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100264 sysctl_perf_event_sample_rate);
265}
266
267static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
268
269void perf_sample_event_took(u64 sample_len_ns)
270{
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200271 u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100272 u64 avg_local_sample_len;
273 u64 local_samples_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700274
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200275 if (allowed_ns == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700276 return;
277
278 /* decay the counter by 1 average sample */
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500279 local_samples_len = __this_cpu_read(running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700280 local_samples_len -= local_samples_len/NR_ACCUMULATED_SAMPLES;
281 local_samples_len += sample_len_ns;
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500282 __this_cpu_write(running_sample_length, local_samples_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700283
284 /*
285 * note: this will be biased artifically low until we have
286 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
287 * from having to maintain a count.
288 */
289 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
290
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200291 if (avg_local_sample_len <= allowed_ns)
Dave Hansen14c63f12013-06-21 08:51:36 -0700292 return;
293
294 if (max_samples_per_tick <= 1)
295 return;
296
297 max_samples_per_tick = DIV_ROUND_UP(max_samples_per_tick, 2);
298 sysctl_perf_event_sample_rate = max_samples_per_tick * HZ;
299 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
300
Dave Hansen14c63f12013-06-21 08:51:36 -0700301 update_perf_cpu_limits();
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100302
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100303 if (!irq_work_queue(&perf_duration_work)) {
304 early_printk("perf interrupt took too long (%lld > %lld), lowering "
305 "kernel.perf_event_max_sample_rate to %d\n",
306 avg_local_sample_len, allowed_ns >> 1,
307 sysctl_perf_event_sample_rate);
308 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700309}
310
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200311static atomic64_t perf_event_id;
312
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200313static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
314 enum event_type_t event_type);
315
316static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200317 enum event_type_t event_type,
318 struct task_struct *task);
319
320static void update_context_time(struct perf_event_context *ctx);
321static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200322
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200323void __weak perf_event_print_debug(void) { }
324
Matt Fleming84c79912010-10-03 21:41:13 +0100325extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200326{
Matt Fleming84c79912010-10-03 21:41:13 +0100327 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200328}
329
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200330static inline u64 perf_clock(void)
331{
332 return local_clock();
333}
334
Peter Zijlstra34f43922015-02-20 14:05:38 +0100335static inline u64 perf_event_clock(struct perf_event *event)
336{
337 return event->clock();
338}
339
Stephane Eraniane5d13672011-02-14 11:20:01 +0200340static inline struct perf_cpu_context *
341__get_cpu_context(struct perf_event_context *ctx)
342{
343 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
344}
345
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200346static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
347 struct perf_event_context *ctx)
348{
349 raw_spin_lock(&cpuctx->ctx.lock);
350 if (ctx)
351 raw_spin_lock(&ctx->lock);
352}
353
354static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
355 struct perf_event_context *ctx)
356{
357 if (ctx)
358 raw_spin_unlock(&ctx->lock);
359 raw_spin_unlock(&cpuctx->ctx.lock);
360}
361
Stephane Eraniane5d13672011-02-14 11:20:01 +0200362#ifdef CONFIG_CGROUP_PERF
363
Stephane Eraniane5d13672011-02-14 11:20:01 +0200364static inline bool
365perf_cgroup_match(struct perf_event *event)
366{
367 struct perf_event_context *ctx = event->ctx;
368 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
369
Tejun Heoef824fa2013-04-08 19:00:38 -0700370 /* @event doesn't care about cgroup */
371 if (!event->cgrp)
372 return true;
373
374 /* wants specific cgroup scope but @cpuctx isn't associated with any */
375 if (!cpuctx->cgrp)
376 return false;
377
378 /*
379 * Cgroup scoping is recursive. An event enabled for a cgroup is
380 * also enabled for all its descendant cgroups. If @cpuctx's
381 * cgroup is a descendant of @event's (the test covers identity
382 * case), it's a match.
383 */
384 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
385 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200386}
387
Stephane Eraniane5d13672011-02-14 11:20:01 +0200388static inline void perf_detach_cgroup(struct perf_event *event)
389{
Zefan Li4e2ba652014-09-19 16:53:14 +0800390 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200391 event->cgrp = NULL;
392}
393
394static inline int is_cgroup_event(struct perf_event *event)
395{
396 return event->cgrp != NULL;
397}
398
399static inline u64 perf_cgroup_event_time(struct perf_event *event)
400{
401 struct perf_cgroup_info *t;
402
403 t = per_cpu_ptr(event->cgrp->info, event->cpu);
404 return t->time;
405}
406
407static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
408{
409 struct perf_cgroup_info *info;
410 u64 now;
411
412 now = perf_clock();
413
414 info = this_cpu_ptr(cgrp->info);
415
416 info->time += now - info->timestamp;
417 info->timestamp = now;
418}
419
420static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
421{
422 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
423 if (cgrp_out)
424 __update_cgrp_time(cgrp_out);
425}
426
427static inline void update_cgrp_time_from_event(struct perf_event *event)
428{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200429 struct perf_cgroup *cgrp;
430
Stephane Eraniane5d13672011-02-14 11:20:01 +0200431 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200432 * ensure we access cgroup data only when needed and
433 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200434 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200435 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200436 return;
437
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200438 cgrp = perf_cgroup_from_task(current);
439 /*
440 * Do not update time when cgroup is not active
441 */
442 if (cgrp == event->cgrp)
443 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200444}
445
446static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200447perf_cgroup_set_timestamp(struct task_struct *task,
448 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200449{
450 struct perf_cgroup *cgrp;
451 struct perf_cgroup_info *info;
452
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200453 /*
454 * ctx->lock held by caller
455 * ensure we do not access cgroup data
456 * unless we have the cgroup pinned (css_get)
457 */
458 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200459 return;
460
461 cgrp = perf_cgroup_from_task(task);
462 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200463 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200464}
465
466#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
467#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
468
469/*
470 * reschedule events based on the cgroup constraint of task.
471 *
472 * mode SWOUT : schedule out everything
473 * mode SWIN : schedule in based on cgroup for next
474 */
475void perf_cgroup_switch(struct task_struct *task, int mode)
476{
477 struct perf_cpu_context *cpuctx;
478 struct pmu *pmu;
479 unsigned long flags;
480
481 /*
482 * disable interrupts to avoid geting nr_cgroup
483 * changes via __perf_event_disable(). Also
484 * avoids preemption.
485 */
486 local_irq_save(flags);
487
488 /*
489 * we reschedule only in the presence of cgroup
490 * constrained events.
491 */
492 rcu_read_lock();
493
494 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200495 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200496 if (cpuctx->unique_pmu != pmu)
497 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200498
Stephane Eraniane5d13672011-02-14 11:20:01 +0200499 /*
500 * perf_cgroup_events says at least one
501 * context on this CPU has cgroup events.
502 *
503 * ctx->nr_cgroups reports the number of cgroup
504 * events for a context.
505 */
506 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200507 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
508 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200509
510 if (mode & PERF_CGROUP_SWOUT) {
511 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
512 /*
513 * must not be done before ctxswout due
514 * to event_filter_match() in event_sched_out()
515 */
516 cpuctx->cgrp = NULL;
517 }
518
519 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200520 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200521 /*
522 * set cgrp before ctxsw in to allow
523 * event_filter_match() to not have to pass
524 * task around
Stephane Eraniane5d13672011-02-14 11:20:01 +0200525 */
526 cpuctx->cgrp = perf_cgroup_from_task(task);
527 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
528 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200529 perf_pmu_enable(cpuctx->ctx.pmu);
530 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200531 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200532 }
533
534 rcu_read_unlock();
535
536 local_irq_restore(flags);
537}
538
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200539static inline void perf_cgroup_sched_out(struct task_struct *task,
540 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200541{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200542 struct perf_cgroup *cgrp1;
543 struct perf_cgroup *cgrp2 = NULL;
544
545 /*
546 * we come here when we know perf_cgroup_events > 0
547 */
548 cgrp1 = perf_cgroup_from_task(task);
549
550 /*
551 * next is NULL when called from perf_event_enable_on_exec()
552 * that will systematically cause a cgroup_switch()
553 */
554 if (next)
555 cgrp2 = perf_cgroup_from_task(next);
556
557 /*
558 * only schedule out current cgroup events if we know
559 * that we are switching to a different cgroup. Otherwise,
560 * do no touch the cgroup events.
561 */
562 if (cgrp1 != cgrp2)
563 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200564}
565
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200566static inline void perf_cgroup_sched_in(struct task_struct *prev,
567 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200568{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200569 struct perf_cgroup *cgrp1;
570 struct perf_cgroup *cgrp2 = NULL;
571
572 /*
573 * we come here when we know perf_cgroup_events > 0
574 */
575 cgrp1 = perf_cgroup_from_task(task);
576
577 /* prev can never be NULL */
578 cgrp2 = perf_cgroup_from_task(prev);
579
580 /*
581 * only need to schedule in cgroup events if we are changing
582 * cgroup during ctxsw. Cgroup events were not scheduled
583 * out of ctxsw out if that was not the case.
584 */
585 if (cgrp1 != cgrp2)
586 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200587}
588
589static inline int perf_cgroup_connect(int fd, struct perf_event *event,
590 struct perf_event_attr *attr,
591 struct perf_event *group_leader)
592{
593 struct perf_cgroup *cgrp;
594 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400595 struct fd f = fdget(fd);
596 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200597
Al Viro2903ff02012-08-28 12:52:22 -0400598 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200599 return -EBADF;
600
Al Virob5830432014-10-31 01:22:04 -0400601 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400602 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800603 if (IS_ERR(css)) {
604 ret = PTR_ERR(css);
605 goto out;
606 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200607
608 cgrp = container_of(css, struct perf_cgroup, css);
609 event->cgrp = cgrp;
610
611 /*
612 * all events in a group must monitor
613 * the same cgroup because a task belongs
614 * to only one perf cgroup at a time
615 */
616 if (group_leader && group_leader->cgrp != cgrp) {
617 perf_detach_cgroup(event);
618 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200619 }
Li Zefan3db272c2011-03-03 14:25:37 +0800620out:
Al Viro2903ff02012-08-28 12:52:22 -0400621 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200622 return ret;
623}
624
625static inline void
626perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
627{
628 struct perf_cgroup_info *t;
629 t = per_cpu_ptr(event->cgrp->info, event->cpu);
630 event->shadow_ctx_time = now - t->timestamp;
631}
632
633static inline void
634perf_cgroup_defer_enabled(struct perf_event *event)
635{
636 /*
637 * when the current task's perf cgroup does not match
638 * the event's, we need to remember to call the
639 * perf_mark_enable() function the first time a task with
640 * a matching perf cgroup is scheduled in.
641 */
642 if (is_cgroup_event(event) && !perf_cgroup_match(event))
643 event->cgrp_defer_enabled = 1;
644}
645
646static inline void
647perf_cgroup_mark_enabled(struct perf_event *event,
648 struct perf_event_context *ctx)
649{
650 struct perf_event *sub;
651 u64 tstamp = perf_event_time(event);
652
653 if (!event->cgrp_defer_enabled)
654 return;
655
656 event->cgrp_defer_enabled = 0;
657
658 event->tstamp_enabled = tstamp - event->total_time_enabled;
659 list_for_each_entry(sub, &event->sibling_list, group_entry) {
660 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
661 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
662 sub->cgrp_defer_enabled = 0;
663 }
664 }
665}
666#else /* !CONFIG_CGROUP_PERF */
667
668static inline bool
669perf_cgroup_match(struct perf_event *event)
670{
671 return true;
672}
673
674static inline void perf_detach_cgroup(struct perf_event *event)
675{}
676
677static inline int is_cgroup_event(struct perf_event *event)
678{
679 return 0;
680}
681
682static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
683{
684 return 0;
685}
686
687static inline void update_cgrp_time_from_event(struct perf_event *event)
688{
689}
690
691static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
692{
693}
694
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200695static inline void perf_cgroup_sched_out(struct task_struct *task,
696 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200697{
698}
699
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200700static inline void perf_cgroup_sched_in(struct task_struct *prev,
701 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200702{
703}
704
705static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
706 struct perf_event_attr *attr,
707 struct perf_event *group_leader)
708{
709 return -EINVAL;
710}
711
712static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200713perf_cgroup_set_timestamp(struct task_struct *task,
714 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200715{
716}
717
718void
719perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
720{
721}
722
723static inline void
724perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
725{
726}
727
728static inline u64 perf_cgroup_event_time(struct perf_event *event)
729{
730 return 0;
731}
732
733static inline void
734perf_cgroup_defer_enabled(struct perf_event *event)
735{
736}
737
738static inline void
739perf_cgroup_mark_enabled(struct perf_event *event,
740 struct perf_event_context *ctx)
741{
742}
743#endif
744
Stephane Eranian9e630202013-04-03 14:21:33 +0200745/*
746 * set default to be dependent on timer tick just
747 * like original code
748 */
749#define PERF_CPU_HRTIMER (1000 / HZ)
750/*
751 * function must be called with interrupts disbled
752 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200753static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +0200754{
755 struct perf_cpu_context *cpuctx;
Stephane Eranian9e630202013-04-03 14:21:33 +0200756 int rotations = 0;
757
758 WARN_ON(!irqs_disabled());
759
760 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +0200761 rotations = perf_rotate_context(cpuctx);
762
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200763 raw_spin_lock(&cpuctx->hrtimer_lock);
764 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +0200765 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200766 else
767 cpuctx->hrtimer_active = 0;
768 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +0200769
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200770 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +0200771}
772
Peter Zijlstra272325c2015-04-15 11:41:58 +0200773static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +0200774{
Peter Zijlstra272325c2015-04-15 11:41:58 +0200775 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200776 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +0200777 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +0200778
779 /* no multiplexing needed for SW PMU */
780 if (pmu->task_ctx_nr == perf_sw_context)
781 return;
782
Stephane Eranian62b85632013-04-03 14:21:34 +0200783 /*
784 * check default is sane, if not set then force to
785 * default interval (1/tick)
786 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200787 interval = pmu->hrtimer_interval_ms;
788 if (interval < 1)
789 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +0200790
Peter Zijlstra272325c2015-04-15 11:41:58 +0200791 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +0200792
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200793 raw_spin_lock_init(&cpuctx->hrtimer_lock);
794 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra272325c2015-04-15 11:41:58 +0200795 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +0200796}
797
Peter Zijlstra272325c2015-04-15 11:41:58 +0200798static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +0200799{
Peter Zijlstra272325c2015-04-15 11:41:58 +0200800 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200801 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200802 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +0200803
804 /* not for SW PMU */
805 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +0200806 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +0200807
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200808 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
809 if (!cpuctx->hrtimer_active) {
810 cpuctx->hrtimer_active = 1;
811 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
812 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
813 }
814 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +0200815
Peter Zijlstra272325c2015-04-15 11:41:58 +0200816 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +0200817}
818
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200819void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200820{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200821 int *count = this_cpu_ptr(pmu->pmu_disable_count);
822 if (!(*count)++)
823 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200824}
825
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200826void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200827{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200828 int *count = this_cpu_ptr(pmu->pmu_disable_count);
829 if (!--(*count))
830 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200831}
832
Mark Rutland2fde4f92015-01-07 15:01:54 +0000833static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200834
835/*
Mark Rutland2fde4f92015-01-07 15:01:54 +0000836 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
837 * perf_event_task_tick() are fully serialized because they're strictly cpu
838 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
839 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200840 */
Mark Rutland2fde4f92015-01-07 15:01:54 +0000841static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200842{
Mark Rutland2fde4f92015-01-07 15:01:54 +0000843 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200844
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200845 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200846
Mark Rutland2fde4f92015-01-07 15:01:54 +0000847 WARN_ON(!list_empty(&ctx->active_ctx_list));
848
849 list_add(&ctx->active_ctx_list, head);
850}
851
852static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
853{
854 WARN_ON(!irqs_disabled());
855
856 WARN_ON(list_empty(&ctx->active_ctx_list));
857
858 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200859}
860
861static void get_ctx(struct perf_event_context *ctx)
862{
863 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
864}
865
Yan, Zheng4af57ef2014-11-04 21:56:01 -0500866static void free_ctx(struct rcu_head *head)
867{
868 struct perf_event_context *ctx;
869
870 ctx = container_of(head, struct perf_event_context, rcu_head);
871 kfree(ctx->task_ctx_data);
872 kfree(ctx);
873}
874
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200875static void put_ctx(struct perf_event_context *ctx)
876{
877 if (atomic_dec_and_test(&ctx->refcount)) {
878 if (ctx->parent_ctx)
879 put_ctx(ctx->parent_ctx);
880 if (ctx->task)
881 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -0500882 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200883 }
884}
885
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200886/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100887 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
888 * perf_pmu_migrate_context() we need some magic.
889 *
890 * Those places that change perf_event::ctx will hold both
891 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
892 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +0200893 * Lock ordering is by mutex address. There are two other sites where
894 * perf_event_context::mutex nests and those are:
895 *
896 * - perf_event_exit_task_context() [ child , 0 ]
897 * __perf_event_exit_task()
898 * sync_child_event()
899 * put_event() [ parent, 1 ]
900 *
901 * - perf_event_init_context() [ parent, 0 ]
902 * inherit_task_group()
903 * inherit_group()
904 * inherit_event()
905 * perf_event_alloc()
906 * perf_init_event()
907 * perf_try_init_event() [ child , 1 ]
908 *
909 * While it appears there is an obvious deadlock here -- the parent and child
910 * nesting levels are inverted between the two. This is in fact safe because
911 * life-time rules separate them. That is an exiting task cannot fork, and a
912 * spawning task cannot (yet) exit.
913 *
914 * But remember that that these are parent<->child context relations, and
915 * migration does not affect children, therefore these two orderings should not
916 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100917 *
918 * The change in perf_event::ctx does not affect children (as claimed above)
919 * because the sys_perf_event_open() case will install a new event and break
920 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
921 * concerned with cpuctx and that doesn't have children.
922 *
923 * The places that change perf_event::ctx will issue:
924 *
925 * perf_remove_from_context();
926 * synchronize_rcu();
927 * perf_install_in_context();
928 *
929 * to affect the change. The remove_from_context() + synchronize_rcu() should
930 * quiesce the event, after which we can install it in the new location. This
931 * means that only external vectors (perf_fops, prctl) can perturb the event
932 * while in transit. Therefore all such accessors should also acquire
933 * perf_event_context::mutex to serialize against this.
934 *
935 * However; because event->ctx can change while we're waiting to acquire
936 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
937 * function.
938 *
939 * Lock order:
940 * task_struct::perf_event_mutex
941 * perf_event_context::mutex
942 * perf_event_context::lock
943 * perf_event::child_mutex;
944 * perf_event::mmap_mutex
945 * mmap_sem
946 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +0100947static struct perf_event_context *
948perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100949{
950 struct perf_event_context *ctx;
951
952again:
953 rcu_read_lock();
954 ctx = ACCESS_ONCE(event->ctx);
955 if (!atomic_inc_not_zero(&ctx->refcount)) {
956 rcu_read_unlock();
957 goto again;
958 }
959 rcu_read_unlock();
960
Peter Zijlstraa83fe282015-01-29 14:44:34 +0100961 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100962 if (event->ctx != ctx) {
963 mutex_unlock(&ctx->mutex);
964 put_ctx(ctx);
965 goto again;
966 }
967
968 return ctx;
969}
970
Peter Zijlstraa83fe282015-01-29 14:44:34 +0100971static inline struct perf_event_context *
972perf_event_ctx_lock(struct perf_event *event)
973{
974 return perf_event_ctx_lock_nested(event, 0);
975}
976
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100977static void perf_event_ctx_unlock(struct perf_event *event,
978 struct perf_event_context *ctx)
979{
980 mutex_unlock(&ctx->mutex);
981 put_ctx(ctx);
982}
983
984/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200985 * This must be done under the ctx->lock, such as to serialize against
986 * context_equiv(), therefore we cannot call put_ctx() since that might end up
987 * calling scheduler related locks and ctx->lock nests inside those.
988 */
989static __must_check struct perf_event_context *
990unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200991{
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200992 struct perf_event_context *parent_ctx = ctx->parent_ctx;
993
994 lockdep_assert_held(&ctx->lock);
995
996 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200997 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +0200998 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200999
1000 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001001}
1002
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001003static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1004{
1005 /*
1006 * only top level events have the pid namespace they were created in
1007 */
1008 if (event->parent)
1009 event = event->parent;
1010
1011 return task_tgid_nr_ns(p, event->ns);
1012}
1013
1014static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1015{
1016 /*
1017 * only top level events have the pid namespace they were created in
1018 */
1019 if (event->parent)
1020 event = event->parent;
1021
1022 return task_pid_nr_ns(p, event->ns);
1023}
1024
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001025/*
1026 * If we inherit events we want to return the parent event id
1027 * to userspace.
1028 */
1029static u64 primary_event_id(struct perf_event *event)
1030{
1031 u64 id = event->id;
1032
1033 if (event->parent)
1034 id = event->parent->id;
1035
1036 return id;
1037}
1038
1039/*
1040 * Get the perf_event_context for a task and lock it.
1041 * This has to cope with with the fact that until it is locked,
1042 * the context could get moved to another task.
1043 */
1044static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001045perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001046{
1047 struct perf_event_context *ctx;
1048
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001049retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001050 /*
1051 * One of the few rules of preemptible RCU is that one cannot do
1052 * rcu_read_unlock() while holding a scheduler (or nested) lock when
1053 * part of the read side critical section was preemptible -- see
1054 * rcu_read_unlock_special().
1055 *
1056 * Since ctx->lock nests under rq->lock we must ensure the entire read
1057 * side critical section is non-preemptible.
1058 */
1059 preempt_disable();
1060 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001061 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001062 if (ctx) {
1063 /*
1064 * If this context is a clone of another, it might
1065 * get swapped for another underneath us by
1066 * perf_event_task_sched_out, though the
1067 * rcu_read_lock() protects us from any context
1068 * getting freed. Lock the context and check if it
1069 * got swapped before we could get the lock, and retry
1070 * if so. If we locked the right context, then it
1071 * can't get swapped on us any more.
1072 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001073 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001074 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001075 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001076 rcu_read_unlock();
1077 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001078 goto retry;
1079 }
1080
1081 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001082 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001083 ctx = NULL;
1084 }
1085 }
1086 rcu_read_unlock();
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001087 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001088 return ctx;
1089}
1090
1091/*
1092 * Get the context for a task and increment its pin_count so it
1093 * can't get swapped to another task. This also increments its
1094 * reference count so that the context can't get freed.
1095 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001096static struct perf_event_context *
1097perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001098{
1099 struct perf_event_context *ctx;
1100 unsigned long flags;
1101
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001102 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001103 if (ctx) {
1104 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001105 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001106 }
1107 return ctx;
1108}
1109
1110static void perf_unpin_context(struct perf_event_context *ctx)
1111{
1112 unsigned long flags;
1113
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001114 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001115 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001116 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001117}
1118
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001119/*
1120 * Update the record of the current time in a context.
1121 */
1122static void update_context_time(struct perf_event_context *ctx)
1123{
1124 u64 now = perf_clock();
1125
1126 ctx->time += now - ctx->timestamp;
1127 ctx->timestamp = now;
1128}
1129
Stephane Eranian41587552011-01-03 18:20:01 +02001130static u64 perf_event_time(struct perf_event *event)
1131{
1132 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001133
1134 if (is_cgroup_event(event))
1135 return perf_cgroup_event_time(event);
1136
Stephane Eranian41587552011-01-03 18:20:01 +02001137 return ctx ? ctx->time : 0;
1138}
1139
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001140/*
1141 * Update the total_time_enabled and total_time_running fields for a event.
Eric B Munsonb7526f02011-06-23 16:34:37 -04001142 * The caller of this function needs to hold the ctx->lock.
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001143 */
1144static void update_event_times(struct perf_event *event)
1145{
1146 struct perf_event_context *ctx = event->ctx;
1147 u64 run_end;
1148
1149 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1150 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1151 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001152 /*
1153 * in cgroup mode, time_enabled represents
1154 * the time the event was enabled AND active
1155 * tasks were in the monitored cgroup. This is
1156 * independent of the activity of the context as
1157 * there may be a mix of cgroup and non-cgroup events.
1158 *
1159 * That is why we treat cgroup events differently
1160 * here.
1161 */
1162 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001163 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001164 else if (ctx->is_active)
1165 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001166 else
1167 run_end = event->tstamp_stopped;
1168
1169 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001170
1171 if (event->state == PERF_EVENT_STATE_INACTIVE)
1172 run_end = event->tstamp_stopped;
1173 else
Stephane Eranian41587552011-01-03 18:20:01 +02001174 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001175
1176 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001177
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001178}
1179
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001180/*
1181 * Update total_time_enabled and total_time_running for all events in a group.
1182 */
1183static void update_group_times(struct perf_event *leader)
1184{
1185 struct perf_event *event;
1186
1187 update_event_times(leader);
1188 list_for_each_entry(event, &leader->sibling_list, group_entry)
1189 update_event_times(event);
1190}
1191
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001192static struct list_head *
1193ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1194{
1195 if (event->attr.pinned)
1196 return &ctx->pinned_groups;
1197 else
1198 return &ctx->flexible_groups;
1199}
1200
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001201/*
1202 * Add a event from the lists for its context.
1203 * Must be called with ctx->mutex and ctx->lock held.
1204 */
1205static void
1206list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1207{
Peter Zijlstra8a495422010-05-27 15:47:49 +02001208 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1209 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001210
1211 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001212 * If we're a stand alone event or group leader, we go to the context
1213 * list, group events are kept attached to the group so that
1214 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001215 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001216 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001217 struct list_head *list;
1218
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001219 if (is_software_event(event))
1220 event->group_flags |= PERF_GROUP_SOFTWARE;
1221
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001222 list = ctx_group_list(event, ctx);
1223 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001224 }
1225
Peter Zijlstra08309372011-03-03 11:31:20 +01001226 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02001227 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001228
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001229 list_add_rcu(&event->event_entry, &ctx->event_list);
1230 ctx->nr_events++;
1231 if (event->attr.inherit_stat)
1232 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001233
1234 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001235}
1236
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001237/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001238 * Initialize event state based on the perf_event_attr::disabled.
1239 */
1240static inline void perf_event__state_init(struct perf_event *event)
1241{
1242 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1243 PERF_EVENT_STATE_INACTIVE;
1244}
1245
Peter Zijlstraa7239682015-09-09 19:06:33 +02001246static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001247{
1248 int entry = sizeof(u64); /* value */
1249 int size = 0;
1250 int nr = 1;
1251
1252 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1253 size += sizeof(u64);
1254
1255 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1256 size += sizeof(u64);
1257
1258 if (event->attr.read_format & PERF_FORMAT_ID)
1259 entry += sizeof(u64);
1260
1261 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001262 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001263 size += sizeof(u64);
1264 }
1265
1266 size += entry * nr;
1267 event->read_size = size;
1268}
1269
Peter Zijlstraa7239682015-09-09 19:06:33 +02001270static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001271{
1272 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001273 u16 size = 0;
1274
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001275 if (sample_type & PERF_SAMPLE_IP)
1276 size += sizeof(data->ip);
1277
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001278 if (sample_type & PERF_SAMPLE_ADDR)
1279 size += sizeof(data->addr);
1280
1281 if (sample_type & PERF_SAMPLE_PERIOD)
1282 size += sizeof(data->period);
1283
Andi Kleenc3feedf2013-01-24 16:10:28 +01001284 if (sample_type & PERF_SAMPLE_WEIGHT)
1285 size += sizeof(data->weight);
1286
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001287 if (sample_type & PERF_SAMPLE_READ)
1288 size += event->read_size;
1289
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001290 if (sample_type & PERF_SAMPLE_DATA_SRC)
1291 size += sizeof(data->data_src.val);
1292
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001293 if (sample_type & PERF_SAMPLE_TRANSACTION)
1294 size += sizeof(data->txn);
1295
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001296 event->header_size = size;
1297}
1298
Peter Zijlstraa7239682015-09-09 19:06:33 +02001299/*
1300 * Called at perf_event creation and when events are attached/detached from a
1301 * group.
1302 */
1303static void perf_event__header_size(struct perf_event *event)
1304{
1305 __perf_event_read_size(event,
1306 event->group_leader->nr_siblings);
1307 __perf_event_header_size(event, event->attr.sample_type);
1308}
1309
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001310static void perf_event__id_header_size(struct perf_event *event)
1311{
1312 struct perf_sample_data *data;
1313 u64 sample_type = event->attr.sample_type;
1314 u16 size = 0;
1315
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001316 if (sample_type & PERF_SAMPLE_TID)
1317 size += sizeof(data->tid_entry);
1318
1319 if (sample_type & PERF_SAMPLE_TIME)
1320 size += sizeof(data->time);
1321
Adrian Hunterff3d5272013-08-27 11:23:07 +03001322 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1323 size += sizeof(data->id);
1324
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001325 if (sample_type & PERF_SAMPLE_ID)
1326 size += sizeof(data->id);
1327
1328 if (sample_type & PERF_SAMPLE_STREAM_ID)
1329 size += sizeof(data->stream_id);
1330
1331 if (sample_type & PERF_SAMPLE_CPU)
1332 size += sizeof(data->cpu_entry);
1333
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001334 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001335}
1336
Peter Zijlstraa7239682015-09-09 19:06:33 +02001337static bool perf_event_validate_size(struct perf_event *event)
1338{
1339 /*
1340 * The values computed here will be over-written when we actually
1341 * attach the event.
1342 */
1343 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1344 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1345 perf_event__id_header_size(event);
1346
1347 /*
1348 * Sum the lot; should not exceed the 64k limit we have on records.
1349 * Conservative limit to allow for callchains and other variable fields.
1350 */
1351 if (event->read_size + event->header_size +
1352 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1353 return false;
1354
1355 return true;
1356}
1357
Peter Zijlstra8a495422010-05-27 15:47:49 +02001358static void perf_group_attach(struct perf_event *event)
1359{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001360 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001361
Peter Zijlstra74c33372010-10-15 11:40:29 +02001362 /*
1363 * We can have double attach due to group movement in perf_event_open.
1364 */
1365 if (event->attach_state & PERF_ATTACH_GROUP)
1366 return;
1367
Peter Zijlstra8a495422010-05-27 15:47:49 +02001368 event->attach_state |= PERF_ATTACH_GROUP;
1369
1370 if (group_leader == event)
1371 return;
1372
Peter Zijlstra652884f2015-01-23 11:20:10 +01001373 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1374
Peter Zijlstra8a495422010-05-27 15:47:49 +02001375 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1376 !is_software_event(event))
1377 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1378
1379 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1380 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001381
1382 perf_event__header_size(group_leader);
1383
1384 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1385 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001386}
1387
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001388/*
1389 * Remove a event from the lists for its context.
1390 * Must be called with ctx->mutex and ctx->lock held.
1391 */
1392static void
1393list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1394{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001395 struct perf_cpu_context *cpuctx;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001396
1397 WARN_ON_ONCE(event->ctx != ctx);
1398 lockdep_assert_held(&ctx->lock);
1399
Peter Zijlstra8a495422010-05-27 15:47:49 +02001400 /*
1401 * We can have double detach due to exit/hot-unplug + close.
1402 */
1403 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001404 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001405
1406 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1407
Stephane Eranian68cacd22011-03-23 16:03:06 +01001408 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001409 ctx->nr_cgroups--;
Stephane Eranian68cacd22011-03-23 16:03:06 +01001410 cpuctx = __get_cpu_context(ctx);
1411 /*
1412 * if there are no more cgroup events
1413 * then cler cgrp to avoid stale pointer
1414 * in update_cgrp_time_from_cpuctx()
1415 */
1416 if (!ctx->nr_cgroups)
1417 cpuctx->cgrp = NULL;
1418 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001419
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001420 ctx->nr_events--;
1421 if (event->attr.inherit_stat)
1422 ctx->nr_stat--;
1423
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001424 list_del_rcu(&event->event_entry);
1425
Peter Zijlstra8a495422010-05-27 15:47:49 +02001426 if (event->group_leader == event)
1427 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001428
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001429 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001430
1431 /*
1432 * If event was in error state, then keep it
1433 * that way, otherwise bogus counts will be
1434 * returned on read(). The only way to get out
1435 * of error state is by explicit re-enabling
1436 * of the event
1437 */
1438 if (event->state > PERF_EVENT_STATE_OFF)
1439 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001440
1441 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001442}
1443
Peter Zijlstra8a495422010-05-27 15:47:49 +02001444static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001445{
1446 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001447 struct list_head *list = NULL;
1448
1449 /*
1450 * We can have double detach due to exit/hot-unplug + close.
1451 */
1452 if (!(event->attach_state & PERF_ATTACH_GROUP))
1453 return;
1454
1455 event->attach_state &= ~PERF_ATTACH_GROUP;
1456
1457 /*
1458 * If this is a sibling, remove it from its group.
1459 */
1460 if (event->group_leader != event) {
1461 list_del_init(&event->group_entry);
1462 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001463 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001464 }
1465
1466 if (!list_empty(&event->group_entry))
1467 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001468
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001469 /*
1470 * If this was a group event with sibling events then
1471 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001472 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001473 */
1474 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001475 if (list)
1476 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001477 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001478
1479 /* Inherit group flags from the previous leader */
1480 sibling->group_flags = event->group_flags;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001481
1482 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001483 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001484
1485out:
1486 perf_event__header_size(event->group_leader);
1487
1488 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1489 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001490}
1491
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001492/*
1493 * User event without the task.
1494 */
1495static bool is_orphaned_event(struct perf_event *event)
1496{
1497 return event && !is_kernel_event(event) && !event->owner;
1498}
1499
1500/*
1501 * Event has a parent but parent's task finished and it's
1502 * alive only because of children holding refference.
1503 */
1504static bool is_orphaned_child(struct perf_event *event)
1505{
1506 return is_orphaned_event(event->parent);
1507}
1508
1509static void orphans_remove_work(struct work_struct *work);
1510
1511static void schedule_orphans_remove(struct perf_event_context *ctx)
1512{
1513 if (!ctx->task || ctx->orphans_remove_sched || !perf_wq)
1514 return;
1515
1516 if (queue_delayed_work(perf_wq, &ctx->orphans_remove, 1)) {
1517 get_ctx(ctx);
1518 ctx->orphans_remove_sched = true;
1519 }
1520}
1521
1522static int __init perf_workqueue_init(void)
1523{
1524 perf_wq = create_singlethread_workqueue("perf");
1525 WARN(!perf_wq, "failed to create perf workqueue\n");
1526 return perf_wq ? 0 : -1;
1527}
1528
1529core_initcall(perf_workqueue_init);
1530
Mark Rutland66eb5792015-05-13 17:12:23 +01001531static inline int pmu_filter_match(struct perf_event *event)
1532{
1533 struct pmu *pmu = event->pmu;
1534 return pmu->filter_match ? pmu->filter_match(event) : 1;
1535}
1536
Stephane Eranianfa66f072010-08-26 16:40:01 +02001537static inline int
1538event_filter_match(struct perf_event *event)
1539{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001540 return (event->cpu == -1 || event->cpu == smp_processor_id())
Mark Rutland66eb5792015-05-13 17:12:23 +01001541 && perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001542}
1543
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001544static void
1545event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001546 struct perf_cpu_context *cpuctx,
1547 struct perf_event_context *ctx)
1548{
Stephane Eranian41587552011-01-03 18:20:01 +02001549 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001550 u64 delta;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001551
1552 WARN_ON_ONCE(event->ctx != ctx);
1553 lockdep_assert_held(&ctx->lock);
1554
Stephane Eranianfa66f072010-08-26 16:40:01 +02001555 /*
1556 * An event which could not be activated because of
1557 * filter mismatch still needs to have its timings
1558 * maintained, otherwise bogus information is return
1559 * via read() for time_enabled, time_running:
1560 */
1561 if (event->state == PERF_EVENT_STATE_INACTIVE
1562 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001563 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001564 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001565 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001566 }
1567
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001568 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001569 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001570
Alexander Shishkin44377272013-12-16 14:17:36 +02001571 perf_pmu_disable(event->pmu);
1572
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001573 event->state = PERF_EVENT_STATE_INACTIVE;
1574 if (event->pending_disable) {
1575 event->pending_disable = 0;
1576 event->state = PERF_EVENT_STATE_OFF;
1577 }
Stephane Eranian41587552011-01-03 18:20:01 +02001578 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001579 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001580 event->oncpu = -1;
1581
1582 if (!is_software_event(event))
1583 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001584 if (!--ctx->nr_active)
1585 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001586 if (event->attr.freq && event->attr.sample_freq)
1587 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001588 if (event->attr.exclusive || !cpuctx->active_oncpu)
1589 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001590
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001591 if (is_orphaned_child(event))
1592 schedule_orphans_remove(ctx);
1593
Alexander Shishkin44377272013-12-16 14:17:36 +02001594 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001595}
1596
1597static void
1598group_sched_out(struct perf_event *group_event,
1599 struct perf_cpu_context *cpuctx,
1600 struct perf_event_context *ctx)
1601{
1602 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001603 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001604
1605 event_sched_out(group_event, cpuctx, ctx);
1606
1607 /*
1608 * Schedule out siblings (if any):
1609 */
1610 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1611 event_sched_out(event, cpuctx, ctx);
1612
Stephane Eranianfa66f072010-08-26 16:40:01 +02001613 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001614 cpuctx->exclusive = 0;
1615}
1616
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001617struct remove_event {
1618 struct perf_event *event;
1619 bool detach_group;
1620};
1621
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001622/*
1623 * Cross CPU call to remove a performance event
1624 *
1625 * We disable the event on the hardware level first. After that we
1626 * remove it from the context list.
1627 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001628static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001629{
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001630 struct remove_event *re = info;
1631 struct perf_event *event = re->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001632 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001633 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001634
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001635 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001636 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001637 if (re->detach_group)
1638 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001639 list_del_event(event, ctx);
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001640 if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1641 ctx->is_active = 0;
1642 cpuctx->task_ctx = NULL;
1643 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001644 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001645
1646 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001647}
1648
1649
1650/*
1651 * Remove the event from a task's (or a CPU's) list of events.
1652 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001653 * CPU events are removed with a smp call. For task events we only
1654 * call when the task is on a CPU.
1655 *
1656 * If event->ctx is a cloned context, callers must make sure that
1657 * every task struct that event->ctx->task could possibly point to
1658 * remains valid. This is OK when called from perf_release since
1659 * that only calls us on the top-level context, which can't be a clone.
1660 * When called from perf_event_exit_task, it's OK because the
1661 * context has been detached from its task.
1662 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001663static void perf_remove_from_context(struct perf_event *event, bool detach_group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001664{
1665 struct perf_event_context *ctx = event->ctx;
1666 struct task_struct *task = ctx->task;
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001667 struct remove_event re = {
1668 .event = event,
1669 .detach_group = detach_group,
1670 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001671
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001672 lockdep_assert_held(&ctx->mutex);
1673
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001674 if (!task) {
1675 /*
Mark Rutland226424e2014-11-05 16:11:44 +00001676 * Per cpu events are removed via an smp call. The removal can
1677 * fail if the CPU is currently offline, but in that case we
1678 * already called __perf_remove_from_context from
1679 * perf_event_exit_cpu.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001680 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001681 cpu_function_call(event->cpu, __perf_remove_from_context, &re);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001682 return;
1683 }
1684
1685retry:
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001686 if (!task_function_call(task, __perf_remove_from_context, &re))
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001687 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001688
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001689 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001690 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001691 * If we failed to find a running task, but find the context active now
1692 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001693 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001694 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001695 raw_spin_unlock_irq(&ctx->lock);
Cong Wang3577af72014-09-02 15:27:20 -07001696 /*
1697 * Reload the task pointer, it might have been changed by
1698 * a concurrent perf_event_context_sched_out().
1699 */
1700 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001701 goto retry;
1702 }
1703
1704 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001705 * Since the task isn't running, its safe to remove the event, us
1706 * holding the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001707 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001708 if (detach_group)
1709 perf_group_detach(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001710 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001711 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001712}
1713
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001714/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001715 * Cross CPU call to disable a performance event
1716 */
K.Prasad500ad2d2012-08-02 13:46:35 +05301717int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001718{
1719 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001720 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001721 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001722
1723 /*
1724 * If this is a per-task event, need to check whether this
1725 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001726 *
1727 * Can trigger due to concurrent perf_event_context_sched_out()
1728 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001729 */
1730 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001731 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001732
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001733 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001734
1735 /*
1736 * If the event is on, turn it off.
1737 * If it is in error state, leave it in error state.
1738 */
1739 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1740 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001741 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001742 update_group_times(event);
1743 if (event == event->group_leader)
1744 group_sched_out(event, cpuctx, ctx);
1745 else
1746 event_sched_out(event, cpuctx, ctx);
1747 event->state = PERF_EVENT_STATE_OFF;
1748 }
1749
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001750 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001751
1752 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001753}
1754
1755/*
1756 * Disable a event.
1757 *
1758 * If event->ctx is a cloned context, callers must make sure that
1759 * every task struct that event->ctx->task could possibly point to
1760 * remains valid. This condition is satisifed when called through
1761 * perf_event_for_each_child or perf_event_for_each because they
1762 * hold the top-level event's child_mutex, so any descendant that
1763 * goes to exit will block in sync_child_event.
1764 * When called from perf_pending_event it's OK because event->ctx
1765 * is the current context on this CPU and preemption is disabled,
1766 * hence we can't get into perf_event_task_sched_out for this context.
1767 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001768static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001769{
1770 struct perf_event_context *ctx = event->ctx;
1771 struct task_struct *task = ctx->task;
1772
1773 if (!task) {
1774 /*
1775 * Disable the event on the cpu that it's on
1776 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001777 cpu_function_call(event->cpu, __perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001778 return;
1779 }
1780
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001781retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001782 if (!task_function_call(task, __perf_event_disable, event))
1783 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001784
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001785 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001786 /*
1787 * If the event is still active, we need to retry the cross-call.
1788 */
1789 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001790 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001791 /*
1792 * Reload the task pointer, it might have been changed by
1793 * a concurrent perf_event_context_sched_out().
1794 */
1795 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001796 goto retry;
1797 }
1798
1799 /*
1800 * Since we have the lock this context can't be scheduled
1801 * in, so we can change the state safely.
1802 */
1803 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1804 update_group_times(event);
1805 event->state = PERF_EVENT_STATE_OFF;
1806 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001807 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001808}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001809
1810/*
1811 * Strictly speaking kernel users cannot create groups and therefore this
1812 * interface does not need the perf_event_ctx_lock() magic.
1813 */
1814void perf_event_disable(struct perf_event *event)
1815{
1816 struct perf_event_context *ctx;
1817
1818 ctx = perf_event_ctx_lock(event);
1819 _perf_event_disable(event);
1820 perf_event_ctx_unlock(event, ctx);
1821}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001822EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001823
Stephane Eraniane5d13672011-02-14 11:20:01 +02001824static void perf_set_shadow_time(struct perf_event *event,
1825 struct perf_event_context *ctx,
1826 u64 tstamp)
1827{
1828 /*
1829 * use the correct time source for the time snapshot
1830 *
1831 * We could get by without this by leveraging the
1832 * fact that to get to this function, the caller
1833 * has most likely already called update_context_time()
1834 * and update_cgrp_time_xx() and thus both timestamp
1835 * are identical (or very close). Given that tstamp is,
1836 * already adjusted for cgroup, we could say that:
1837 * tstamp - ctx->timestamp
1838 * is equivalent to
1839 * tstamp - cgrp->timestamp.
1840 *
1841 * Then, in perf_output_read(), the calculation would
1842 * work with no changes because:
1843 * - event is guaranteed scheduled in
1844 * - no scheduled out in between
1845 * - thus the timestamp would be the same
1846 *
1847 * But this is a bit hairy.
1848 *
1849 * So instead, we have an explicit cgroup call to remain
1850 * within the time time source all along. We believe it
1851 * is cleaner and simpler to understand.
1852 */
1853 if (is_cgroup_event(event))
1854 perf_cgroup_set_shadow_time(event, tstamp);
1855 else
1856 event->shadow_ctx_time = tstamp - ctx->timestamp;
1857}
1858
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001859#define MAX_INTERRUPTS (~0ULL)
1860
1861static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02001862static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001863
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001864static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001865event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001866 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001867 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001868{
Stephane Eranian41587552011-01-03 18:20:01 +02001869 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02001870 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02001871
Peter Zijlstra63342412014-05-05 11:49:16 +02001872 lockdep_assert_held(&ctx->lock);
1873
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001874 if (event->state <= PERF_EVENT_STATE_OFF)
1875 return 0;
1876
1877 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001878 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001879
1880 /*
1881 * Unthrottle events, since we scheduled we might have missed several
1882 * ticks already, also for a heavily scheduling task there is little
1883 * guarantee it'll get a tick in a timely manner.
1884 */
1885 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1886 perf_log_throttle(event, 1);
1887 event->hw.interrupts = 0;
1888 }
1889
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001890 /*
1891 * The new state must be visible before we turn it on in the hardware:
1892 */
1893 smp_wmb();
1894
Alexander Shishkin44377272013-12-16 14:17:36 +02001895 perf_pmu_disable(event->pmu);
1896
Shaohua Li72f669c2015-02-05 15:55:31 -08001897 perf_set_shadow_time(event, ctx, tstamp);
1898
Alexander Shishkinec0d7722015-01-14 14:18:23 +02001899 perf_log_itrace_start(event);
1900
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001901 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001902 event->state = PERF_EVENT_STATE_INACTIVE;
1903 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02001904 ret = -EAGAIN;
1905 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001906 }
1907
Peter Zijlstra00a29162015-07-27 10:35:07 +02001908 event->tstamp_running += tstamp - event->tstamp_stopped;
1909
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001910 if (!is_software_event(event))
1911 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001912 if (!ctx->nr_active++)
1913 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001914 if (event->attr.freq && event->attr.sample_freq)
1915 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001916
1917 if (event->attr.exclusive)
1918 cpuctx->exclusive = 1;
1919
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001920 if (is_orphaned_child(event))
1921 schedule_orphans_remove(ctx);
1922
Alexander Shishkin44377272013-12-16 14:17:36 +02001923out:
1924 perf_pmu_enable(event->pmu);
1925
1926 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001927}
1928
1929static int
1930group_sched_in(struct perf_event *group_event,
1931 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001932 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001933{
Lin Ming6bde9b62010-04-23 13:56:00 +08001934 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01001935 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001936 u64 now = ctx->time;
1937 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001938
1939 if (group_event->state == PERF_EVENT_STATE_OFF)
1940 return 0;
1941
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001942 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +08001943
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001944 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001945 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001946 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001947 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001948 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001949
1950 /*
1951 * Schedule in siblings as one group (if any):
1952 */
1953 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001954 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001955 partial_group = event;
1956 goto group_error;
1957 }
1958 }
1959
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001960 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001961 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001962
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001963group_error:
1964 /*
1965 * Groups can be scheduled in as one unit only, so undo any
1966 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001967 * The events up to the failed event are scheduled out normally,
1968 * tstamp_stopped will be updated.
1969 *
1970 * The failed events and the remaining siblings need to have
1971 * their timings updated as if they had gone thru event_sched_in()
1972 * and event_sched_out(). This is required to get consistent timings
1973 * across the group. This also takes care of the case where the group
1974 * could never be scheduled by ensuring tstamp_stopped is set to mark
1975 * the time the event was actually stopped, such that time delta
1976 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001977 */
1978 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1979 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001980 simulate = true;
1981
1982 if (simulate) {
1983 event->tstamp_running += now - event->tstamp_stopped;
1984 event->tstamp_stopped = now;
1985 } else {
1986 event_sched_out(event, cpuctx, ctx);
1987 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001988 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001989 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001990
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001991 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02001992
Peter Zijlstra272325c2015-04-15 11:41:58 +02001993 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02001994
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001995 return -EAGAIN;
1996}
1997
1998/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001999 * Work out whether we can put this event group on the CPU now.
2000 */
2001static int group_can_go_on(struct perf_event *event,
2002 struct perf_cpu_context *cpuctx,
2003 int can_add_hw)
2004{
2005 /*
2006 * Groups consisting entirely of software events can always go on.
2007 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01002008 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002009 return 1;
2010 /*
2011 * If an exclusive group is already on, no other hardware
2012 * events can go on.
2013 */
2014 if (cpuctx->exclusive)
2015 return 0;
2016 /*
2017 * If this group is exclusive and there are already
2018 * events on the CPU, it can't go on.
2019 */
2020 if (event->attr.exclusive && cpuctx->active_oncpu)
2021 return 0;
2022 /*
2023 * Otherwise, try to add it if all previous groups were able
2024 * to go on.
2025 */
2026 return can_add_hw;
2027}
2028
2029static void add_event_to_ctx(struct perf_event *event,
2030 struct perf_event_context *ctx)
2031{
Stephane Eranian41587552011-01-03 18:20:01 +02002032 u64 tstamp = perf_event_time(event);
2033
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002034 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002035 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02002036 event->tstamp_enabled = tstamp;
2037 event->tstamp_running = tstamp;
2038 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002039}
2040
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002041static void task_ctx_sched_out(struct perf_event_context *ctx);
2042static void
2043ctx_sched_in(struct perf_event_context *ctx,
2044 struct perf_cpu_context *cpuctx,
2045 enum event_type_t event_type,
2046 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002047
Peter Zijlstradce58552011-04-09 21:17:46 +02002048static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2049 struct perf_event_context *ctx,
2050 struct task_struct *task)
2051{
2052 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2053 if (ctx)
2054 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2055 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2056 if (ctx)
2057 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2058}
2059
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002060/*
2061 * Cross CPU call to install and enable a performance event
2062 *
2063 * Must be called with ctx->mutex held
2064 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002065static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002066{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002067 struct perf_event *event = info;
2068 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002069 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002070 struct perf_event_context *task_ctx = cpuctx->task_ctx;
2071 struct task_struct *task = current;
2072
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002073 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002074 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002075
2076 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002077 * If there was an active task_ctx schedule it out.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002078 */
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002079 if (task_ctx)
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002080 task_ctx_sched_out(task_ctx);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002081
2082 /*
2083 * If the context we're installing events in is not the
2084 * active task_ctx, flip them.
2085 */
2086 if (ctx->task && task_ctx != ctx) {
2087 if (task_ctx)
2088 raw_spin_unlock(&task_ctx->lock);
2089 raw_spin_lock(&ctx->lock);
2090 task_ctx = ctx;
2091 }
2092
2093 if (task_ctx) {
2094 cpuctx->task_ctx = task_ctx;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002095 task = task_ctx->task;
2096 }
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002097
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002098 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002099
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002100 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002101 /*
2102 * update cgrp time only if current cgrp
2103 * matches event->cgrp. Must be done before
2104 * calling add_event_to_ctx()
2105 */
2106 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002107
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002108 add_event_to_ctx(event, ctx);
2109
2110 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002111 * Schedule everything back in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002112 */
Peter Zijlstradce58552011-04-09 21:17:46 +02002113 perf_event_sched_in(cpuctx, task_ctx, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002114
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002115 perf_pmu_enable(cpuctx->ctx.pmu);
2116 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002117
2118 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002119}
2120
2121/*
2122 * Attach a performance event to a context
2123 *
2124 * First we add the event to the list with the hardware enable bit
2125 * in event->hw_config cleared.
2126 *
2127 * If the event is attached to a task which is on a CPU we use a smp
2128 * call to enable it in the task context. The task might have been
2129 * scheduled away, but we check this in the smp call again.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002130 */
2131static void
2132perf_install_in_context(struct perf_event_context *ctx,
2133 struct perf_event *event,
2134 int cpu)
2135{
2136 struct task_struct *task = ctx->task;
2137
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002138 lockdep_assert_held(&ctx->mutex);
2139
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002140 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002141 if (event->cpu != -1)
2142 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002143
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002144 if (!task) {
2145 /*
2146 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002147 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002148 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002149 cpu_function_call(cpu, __perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002150 return;
2151 }
2152
2153retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002154 if (!task_function_call(task, __perf_install_in_context, event))
2155 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002156
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002157 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002158 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002159 * If we failed to find a running task, but find the context active now
2160 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002161 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002162 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002163 raw_spin_unlock_irq(&ctx->lock);
Cong Wang3577af72014-09-02 15:27:20 -07002164 /*
2165 * Reload the task pointer, it might have been changed by
2166 * a concurrent perf_event_context_sched_out().
2167 */
2168 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002169 goto retry;
2170 }
2171
2172 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002173 * Since the task isn't running, its safe to add the event, us holding
2174 * the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002175 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002176 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002177 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002178}
2179
2180/*
2181 * Put a event into inactive state and update time fields.
2182 * Enabling the leader of a group effectively enables all
2183 * the group members that aren't explicitly disabled, so we
2184 * have to update their ->tstamp_enabled also.
2185 * Note: this works for group members as well as group leaders
2186 * since the non-leader members' sibling_lists will be empty.
2187 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002188static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002189{
2190 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02002191 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002192
2193 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02002194 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002195 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02002196 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
2197 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002198 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002199}
2200
2201/*
2202 * Cross CPU call to enable a performance event
2203 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002204static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002205{
2206 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002207 struct perf_event_context *ctx = event->ctx;
2208 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002209 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002210 int err;
2211
Jiri Olsa06f41792013-07-09 17:44:11 +02002212 /*
2213 * There's a time window between 'ctx->is_active' check
2214 * in perf_event_enable function and this place having:
2215 * - IRQs on
2216 * - ctx->lock unlocked
2217 *
2218 * where the task could be killed and 'ctx' deactivated
2219 * by perf_event_exit_task.
2220 */
2221 if (!ctx->is_active)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002222 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002223
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002224 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002225 update_context_time(ctx);
2226
2227 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2228 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002229
2230 /*
2231 * set current task's cgroup time reference point
2232 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002233 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002234
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002235 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002236
Stephane Eraniane5d13672011-02-14 11:20:01 +02002237 if (!event_filter_match(event)) {
2238 if (is_cgroup_event(event))
2239 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002240 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002241 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002242
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002243 /*
2244 * If the event is in a group and isn't the group leader,
2245 * then don't put it on unless the group is on.
2246 */
2247 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
2248 goto unlock;
2249
2250 if (!group_can_go_on(event, cpuctx, 1)) {
2251 err = -EEXIST;
2252 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002253 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002254 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002255 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01002256 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002257 }
2258
2259 if (err) {
2260 /*
2261 * If this event can't go on and it's part of a
2262 * group, then the whole group has to come off.
2263 */
Stephane Eranian9e630202013-04-03 14:21:33 +02002264 if (leader != event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002265 group_sched_out(leader, cpuctx, ctx);
Peter Zijlstra272325c2015-04-15 11:41:58 +02002266 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002267 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002268 if (leader->attr.pinned) {
2269 update_group_times(leader);
2270 leader->state = PERF_EVENT_STATE_ERROR;
2271 }
2272 }
2273
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002274unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002275 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002276
2277 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002278}
2279
2280/*
2281 * Enable a event.
2282 *
2283 * If event->ctx is a cloned context, callers must make sure that
2284 * every task struct that event->ctx->task could possibly point to
2285 * remains valid. This condition is satisfied when called through
2286 * perf_event_for_each_child or perf_event_for_each as described
2287 * for perf_event_disable.
2288 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002289static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002290{
2291 struct perf_event_context *ctx = event->ctx;
2292 struct task_struct *task = ctx->task;
2293
2294 if (!task) {
2295 /*
2296 * Enable the event on the cpu that it's on
2297 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002298 cpu_function_call(event->cpu, __perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002299 return;
2300 }
2301
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002302 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002303 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2304 goto out;
2305
2306 /*
2307 * If the event is in error state, clear that first.
2308 * That way, if we see the event in error state below, we
2309 * know that it has gone back into error state, as distinct
2310 * from the task having been scheduled away before the
2311 * cross-call arrived.
2312 */
2313 if (event->state == PERF_EVENT_STATE_ERROR)
2314 event->state = PERF_EVENT_STATE_OFF;
2315
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002316retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002317 if (!ctx->is_active) {
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002318 __perf_event_mark_enabled(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002319 goto out;
2320 }
2321
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002322 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002323
2324 if (!task_function_call(task, __perf_event_enable, event))
2325 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002326
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002327 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002328
2329 /*
2330 * If the context is active and the event is still off,
2331 * we need to retry the cross-call.
2332 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002333 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
2334 /*
2335 * task could have been flipped by a concurrent
2336 * perf_event_context_sched_out()
2337 */
2338 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002339 goto retry;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002340 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002341
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002342out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002343 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002344}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002345
2346/*
2347 * See perf_event_disable();
2348 */
2349void perf_event_enable(struct perf_event *event)
2350{
2351 struct perf_event_context *ctx;
2352
2353 ctx = perf_event_ctx_lock(event);
2354 _perf_event_enable(event);
2355 perf_event_ctx_unlock(event, ctx);
2356}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002357EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002358
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002359static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002360{
2361 /*
2362 * not supported on inherited events
2363 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002364 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002365 return -EINVAL;
2366
2367 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002368 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002369
2370 return 0;
2371}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002372
2373/*
2374 * See perf_event_disable()
2375 */
2376int perf_event_refresh(struct perf_event *event, int refresh)
2377{
2378 struct perf_event_context *ctx;
2379 int ret;
2380
2381 ctx = perf_event_ctx_lock(event);
2382 ret = _perf_event_refresh(event, refresh);
2383 perf_event_ctx_unlock(event, ctx);
2384
2385 return ret;
2386}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002387EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002388
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002389static void ctx_sched_out(struct perf_event_context *ctx,
2390 struct perf_cpu_context *cpuctx,
2391 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002392{
2393 struct perf_event *event;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002394 int is_active = ctx->is_active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002395
Peter Zijlstradb24d332011-04-09 21:17:45 +02002396 ctx->is_active &= ~event_type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002397 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002398 return;
2399
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002400 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002401 update_cgrp_time_from_cpuctx(cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002402 if (!ctx->nr_active)
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002403 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002404
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002405 perf_pmu_disable(ctx->pmu);
Peter Zijlstradb24d332011-04-09 21:17:45 +02002406 if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002407 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2408 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002409 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002410
Peter Zijlstradb24d332011-04-09 21:17:45 +02002411 if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002412 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002413 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002414 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002415 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002416}
2417
2418/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002419 * Test whether two contexts are equivalent, i.e. whether they have both been
2420 * cloned from the same version of the same context.
2421 *
2422 * Equivalence is measured using a generation number in the context that is
2423 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2424 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002425 */
2426static int context_equiv(struct perf_event_context *ctx1,
2427 struct perf_event_context *ctx2)
2428{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002429 lockdep_assert_held(&ctx1->lock);
2430 lockdep_assert_held(&ctx2->lock);
2431
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002432 /* Pinning disables the swap optimization */
2433 if (ctx1->pin_count || ctx2->pin_count)
2434 return 0;
2435
2436 /* If ctx1 is the parent of ctx2 */
2437 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2438 return 1;
2439
2440 /* If ctx2 is the parent of ctx1 */
2441 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2442 return 1;
2443
2444 /*
2445 * If ctx1 and ctx2 have the same parent; we flatten the parent
2446 * hierarchy, see perf_event_init_context().
2447 */
2448 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2449 ctx1->parent_gen == ctx2->parent_gen)
2450 return 1;
2451
2452 /* Unmatched */
2453 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002454}
2455
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002456static void __perf_event_sync_stat(struct perf_event *event,
2457 struct perf_event *next_event)
2458{
2459 u64 value;
2460
2461 if (!event->attr.inherit_stat)
2462 return;
2463
2464 /*
2465 * Update the event value, we cannot use perf_event_read()
2466 * because we're in the middle of a context switch and have IRQs
2467 * disabled, which upsets smp_call_function_single(), however
2468 * we know the event must be on the current CPU, therefore we
2469 * don't need to use it.
2470 */
2471 switch (event->state) {
2472 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002473 event->pmu->read(event);
2474 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002475
2476 case PERF_EVENT_STATE_INACTIVE:
2477 update_event_times(event);
2478 break;
2479
2480 default:
2481 break;
2482 }
2483
2484 /*
2485 * In order to keep per-task stats reliable we need to flip the event
2486 * values when we flip the contexts.
2487 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002488 value = local64_read(&next_event->count);
2489 value = local64_xchg(&event->count, value);
2490 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002491
2492 swap(event->total_time_enabled, next_event->total_time_enabled);
2493 swap(event->total_time_running, next_event->total_time_running);
2494
2495 /*
2496 * Since we swizzled the values, update the user visible data too.
2497 */
2498 perf_event_update_userpage(event);
2499 perf_event_update_userpage(next_event);
2500}
2501
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002502static void perf_event_sync_stat(struct perf_event_context *ctx,
2503 struct perf_event_context *next_ctx)
2504{
2505 struct perf_event *event, *next_event;
2506
2507 if (!ctx->nr_stat)
2508 return;
2509
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002510 update_context_time(ctx);
2511
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002512 event = list_first_entry(&ctx->event_list,
2513 struct perf_event, event_entry);
2514
2515 next_event = list_first_entry(&next_ctx->event_list,
2516 struct perf_event, event_entry);
2517
2518 while (&event->event_entry != &ctx->event_list &&
2519 &next_event->event_entry != &next_ctx->event_list) {
2520
2521 __perf_event_sync_stat(event, next_event);
2522
2523 event = list_next_entry(event, event_entry);
2524 next_event = list_next_entry(next_event, event_entry);
2525 }
2526}
2527
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002528static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2529 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002530{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002531 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002532 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002533 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002534 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002535 int do_switch = 1;
2536
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002537 if (likely(!ctx))
2538 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002539
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002540 cpuctx = __get_cpu_context(ctx);
2541 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002542 return;
2543
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002544 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002545 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002546 if (!next_ctx)
2547 goto unlock;
2548
2549 parent = rcu_dereference(ctx->parent_ctx);
2550 next_parent = rcu_dereference(next_ctx->parent_ctx);
2551
2552 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002553 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002554 goto unlock;
2555
2556 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002557 /*
2558 * Looks like the two contexts are clones, so we might be
2559 * able to optimize the context switch. We lock both
2560 * contexts and check that they are clones under the
2561 * lock (including re-checking that neither has been
2562 * uncloned in the meantime). It doesn't matter which
2563 * order we take the locks because no other cpu could
2564 * be trying to lock both of these tasks.
2565 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002566 raw_spin_lock(&ctx->lock);
2567 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002568 if (context_equiv(ctx, next_ctx)) {
2569 /*
2570 * XXX do we need a memory barrier of sorts
2571 * wrt to rcu_dereference() of perf_event_ctxp
2572 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002573 task->perf_event_ctxp[ctxn] = next_ctx;
2574 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002575 ctx->task = next;
2576 next_ctx->task = task;
Yan, Zheng5a158c32014-11-04 21:56:02 -05002577
2578 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2579
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002580 do_switch = 0;
2581
2582 perf_event_sync_stat(ctx, next_ctx);
2583 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002584 raw_spin_unlock(&next_ctx->lock);
2585 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002586 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002587unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002588 rcu_read_unlock();
2589
2590 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002591 raw_spin_lock(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002592 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002593 cpuctx->task_ctx = NULL;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002594 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002595 }
2596}
2597
Yan, Zhengba532502014-11-04 21:55:58 -05002598void perf_sched_cb_dec(struct pmu *pmu)
2599{
2600 this_cpu_dec(perf_sched_cb_usages);
2601}
2602
2603void perf_sched_cb_inc(struct pmu *pmu)
2604{
2605 this_cpu_inc(perf_sched_cb_usages);
2606}
2607
2608/*
2609 * This function provides the context switch callback to the lower code
2610 * layer. It is invoked ONLY when the context switch callback is enabled.
2611 */
2612static void perf_pmu_sched_task(struct task_struct *prev,
2613 struct task_struct *next,
2614 bool sched_in)
2615{
2616 struct perf_cpu_context *cpuctx;
2617 struct pmu *pmu;
2618 unsigned long flags;
2619
2620 if (prev == next)
2621 return;
2622
2623 local_irq_save(flags);
2624
2625 rcu_read_lock();
2626
2627 list_for_each_entry_rcu(pmu, &pmus, entry) {
2628 if (pmu->sched_task) {
2629 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2630
2631 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2632
2633 perf_pmu_disable(pmu);
2634
2635 pmu->sched_task(cpuctx->task_ctx, sched_in);
2636
2637 perf_pmu_enable(pmu);
2638
2639 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2640 }
2641 }
2642
2643 rcu_read_unlock();
2644
2645 local_irq_restore(flags);
2646}
2647
Adrian Hunter45ac1402015-07-21 12:44:02 +03002648static void perf_event_switch(struct task_struct *task,
2649 struct task_struct *next_prev, bool sched_in);
2650
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002651#define for_each_task_context_nr(ctxn) \
2652 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2653
2654/*
2655 * Called from scheduler to remove the events of the current task,
2656 * with interrupts disabled.
2657 *
2658 * We stop each event and update the event value in event->count.
2659 *
2660 * This does not protect us against NMI, but disable()
2661 * sets the disabled bit in the control field of event _before_
2662 * accessing the event control register. If a NMI hits, then it will
2663 * not restart the event.
2664 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002665void __perf_event_task_sched_out(struct task_struct *task,
2666 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002667{
2668 int ctxn;
2669
Yan, Zhengba532502014-11-04 21:55:58 -05002670 if (__this_cpu_read(perf_sched_cb_usages))
2671 perf_pmu_sched_task(task, next, false);
2672
Adrian Hunter45ac1402015-07-21 12:44:02 +03002673 if (atomic_read(&nr_switch_events))
2674 perf_event_switch(task, next, false);
2675
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002676 for_each_task_context_nr(ctxn)
2677 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002678
2679 /*
2680 * if cgroup events exist on this CPU, then we need
2681 * to check if we have to switch out PMU state.
2682 * cgroup event are system-wide mode only
2683 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002684 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002685 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002686}
2687
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002688static void task_ctx_sched_out(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002689{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002690 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002691
2692 if (!cpuctx->task_ctx)
2693 return;
2694
2695 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2696 return;
2697
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002698 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002699 cpuctx->task_ctx = NULL;
2700}
2701
2702/*
2703 * Called with IRQs disabled
2704 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002705static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2706 enum event_type_t event_type)
2707{
2708 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002709}
2710
2711static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002712ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002713 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002714{
2715 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002716
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002717 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2718 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002719 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002720 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002721 continue;
2722
Stephane Eraniane5d13672011-02-14 11:20:01 +02002723 /* may need to reset tstamp_enabled */
2724 if (is_cgroup_event(event))
2725 perf_cgroup_mark_enabled(event, ctx);
2726
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002727 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002728 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002729
2730 /*
2731 * If this pinned group hasn't been scheduled,
2732 * put it in error state.
2733 */
2734 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2735 update_group_times(event);
2736 event->state = PERF_EVENT_STATE_ERROR;
2737 }
2738 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002739}
2740
2741static void
2742ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002743 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002744{
2745 struct perf_event *event;
2746 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002747
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002748 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2749 /* Ignore events in OFF or ERROR state */
2750 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002751 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002752 /*
2753 * Listen to the 'cpu' scheduling filter constraint
2754 * of events:
2755 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002756 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002757 continue;
2758
Stephane Eraniane5d13672011-02-14 11:20:01 +02002759 /* may need to reset tstamp_enabled */
2760 if (is_cgroup_event(event))
2761 perf_cgroup_mark_enabled(event, ctx);
2762
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002763 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002764 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002765 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002766 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002767 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002768}
2769
2770static void
2771ctx_sched_in(struct perf_event_context *ctx,
2772 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 Weisbecker5b0311e2010-01-17 11:59:13 +01002775{
Stephane Eraniane5d13672011-02-14 11:20:01 +02002776 u64 now;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002777 int is_active = ctx->is_active;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002778
Peter Zijlstradb24d332011-04-09 21:17:45 +02002779 ctx->is_active |= event_type;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002780 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002781 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002782
Stephane Eraniane5d13672011-02-14 11:20:01 +02002783 now = perf_clock();
2784 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002785 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002786 /*
2787 * First go through the list and put on any pinned groups
2788 * in order to give them the best chance of going on.
2789 */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002790 if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002791 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002792
2793 /* Then walk through the lower prio flexible groups */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002794 if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002795 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002796}
2797
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002798static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002799 enum event_type_t event_type,
2800 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002801{
2802 struct perf_event_context *ctx = &cpuctx->ctx;
2803
Stephane Eraniane5d13672011-02-14 11:20:01 +02002804 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002805}
2806
Stephane Eraniane5d13672011-02-14 11:20:01 +02002807static void perf_event_context_sched_in(struct perf_event_context *ctx,
2808 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002809{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002810 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002811
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002812 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002813 if (cpuctx->task_ctx == ctx)
2814 return;
2815
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002816 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002817 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002818 /*
2819 * We want to keep the following priority order:
2820 * cpu pinned (that don't need to move), task pinned,
2821 * cpu flexible, task flexible.
2822 */
2823 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2824
Gleb Natapov1d5f0032011-10-23 19:10:33 +02002825 if (ctx->nr_events)
2826 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002827
Gleb Natapov86b47c22011-11-22 16:08:21 +02002828 perf_event_sched_in(cpuctx, cpuctx->task_ctx, task);
2829
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002830 perf_pmu_enable(ctx->pmu);
2831 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002832}
2833
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002834/*
2835 * Called from scheduler to add the events of the current task
2836 * with interrupts disabled.
2837 *
2838 * We restore the event value and then enable it.
2839 *
2840 * This does not protect us against NMI, but enable()
2841 * sets the enabled bit in the control field of event _before_
2842 * accessing the event control register. If a NMI hits, then it will
2843 * keep the event running.
2844 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002845void __perf_event_task_sched_in(struct task_struct *prev,
2846 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002847{
2848 struct perf_event_context *ctx;
2849 int ctxn;
2850
2851 for_each_task_context_nr(ctxn) {
2852 ctx = task->perf_event_ctxp[ctxn];
2853 if (likely(!ctx))
2854 continue;
2855
Stephane Eraniane5d13672011-02-14 11:20:01 +02002856 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002857 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02002858 /*
2859 * if cgroup events exist on this CPU, then we need
2860 * to check if we have to switch in PMU state.
2861 * cgroup event are system-wide mode only
2862 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002863 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002864 perf_cgroup_sched_in(prev, task);
Stephane Eraniand010b332012-02-09 23:21:00 +01002865
Adrian Hunter45ac1402015-07-21 12:44:02 +03002866 if (atomic_read(&nr_switch_events))
2867 perf_event_switch(task, prev, true);
2868
Yan, Zhengba532502014-11-04 21:55:58 -05002869 if (__this_cpu_read(perf_sched_cb_usages))
2870 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002871}
2872
Peter Zijlstraabd50712010-01-26 18:50:16 +01002873static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2874{
2875 u64 frequency = event->attr.sample_freq;
2876 u64 sec = NSEC_PER_SEC;
2877 u64 divisor, dividend;
2878
2879 int count_fls, nsec_fls, frequency_fls, sec_fls;
2880
2881 count_fls = fls64(count);
2882 nsec_fls = fls64(nsec);
2883 frequency_fls = fls64(frequency);
2884 sec_fls = 30;
2885
2886 /*
2887 * We got @count in @nsec, with a target of sample_freq HZ
2888 * the target period becomes:
2889 *
2890 * @count * 10^9
2891 * period = -------------------
2892 * @nsec * sample_freq
2893 *
2894 */
2895
2896 /*
2897 * Reduce accuracy by one bit such that @a and @b converge
2898 * to a similar magnitude.
2899 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002900#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002901do { \
2902 if (a##_fls > b##_fls) { \
2903 a >>= 1; \
2904 a##_fls--; \
2905 } else { \
2906 b >>= 1; \
2907 b##_fls--; \
2908 } \
2909} while (0)
2910
2911 /*
2912 * Reduce accuracy until either term fits in a u64, then proceed with
2913 * the other, so that finally we can do a u64/u64 division.
2914 */
2915 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2916 REDUCE_FLS(nsec, frequency);
2917 REDUCE_FLS(sec, count);
2918 }
2919
2920 if (count_fls + sec_fls > 64) {
2921 divisor = nsec * frequency;
2922
2923 while (count_fls + sec_fls > 64) {
2924 REDUCE_FLS(count, sec);
2925 divisor >>= 1;
2926 }
2927
2928 dividend = count * sec;
2929 } else {
2930 dividend = count * sec;
2931
2932 while (nsec_fls + frequency_fls > 64) {
2933 REDUCE_FLS(nsec, frequency);
2934 dividend >>= 1;
2935 }
2936
2937 divisor = nsec * frequency;
2938 }
2939
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02002940 if (!divisor)
2941 return dividend;
2942
Peter Zijlstraabd50712010-01-26 18:50:16 +01002943 return div64_u64(dividend, divisor);
2944}
2945
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002946static DEFINE_PER_CPU(int, perf_throttled_count);
2947static DEFINE_PER_CPU(u64, perf_throttled_seq);
2948
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002949static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002950{
2951 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02002952 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002953 s64 delta;
2954
Peter Zijlstraabd50712010-01-26 18:50:16 +01002955 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002956
2957 delta = (s64)(period - hwc->sample_period);
2958 delta = (delta + 7) / 8; /* low pass filter */
2959
2960 sample_period = hwc->sample_period + delta;
2961
2962 if (!sample_period)
2963 sample_period = 1;
2964
2965 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002966
Peter Zijlstrae7850592010-05-21 14:43:08 +02002967 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002968 if (disable)
2969 event->pmu->stop(event, PERF_EF_UPDATE);
2970
Peter Zijlstrae7850592010-05-21 14:43:08 +02002971 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002972
2973 if (disable)
2974 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002975 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002976}
2977
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002978/*
2979 * combine freq adjustment with unthrottling to avoid two passes over the
2980 * events. At the same time, make sure, having freq events does not change
2981 * the rate of unthrottling as that would introduce bias.
2982 */
2983static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
2984 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002985{
2986 struct perf_event *event;
2987 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002988 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002989 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002990
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002991 /*
2992 * only need to iterate over all events iff:
2993 * - context have events in frequency mode (needs freq adjust)
2994 * - there are events to unthrottle on this cpu
2995 */
2996 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002997 return;
2998
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002999 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003000 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003001
Paul Mackerras03541f82009-10-14 16:58:03 +11003002 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003003 if (event->state != PERF_EVENT_STATE_ACTIVE)
3004 continue;
3005
Stephane Eranian5632ab12011-01-03 18:20:01 +02003006 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003007 continue;
3008
Alexander Shishkin44377272013-12-16 14:17:36 +02003009 perf_pmu_disable(event->pmu);
3010
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003011 hwc = &event->hw;
3012
Jiri Olsaae23bff2013-08-24 16:45:54 +02003013 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003014 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003015 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003016 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003017 }
3018
3019 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02003020 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003021
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003022 /*
3023 * stop the event and update event->count
3024 */
3025 event->pmu->stop(event, PERF_EF_UPDATE);
3026
Peter Zijlstrae7850592010-05-21 14:43:08 +02003027 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003028 delta = now - hwc->freq_count_stamp;
3029 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003030
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003031 /*
3032 * restart the event
3033 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003034 * we have stopped the event so tell that
3035 * to perf_adjust_period() to avoid stopping it
3036 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003037 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003038 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003039 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003040
3041 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003042 next:
3043 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003044 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003045
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003046 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003047 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003048}
3049
3050/*
3051 * Round-robin a context's events:
3052 */
3053static void rotate_ctx(struct perf_event_context *ctx)
3054{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003055 /*
3056 * Rotate the first entry last of non-pinned groups. Rotation might be
3057 * disabled by the inheritance code.
3058 */
3059 if (!ctx->rotate_disable)
3060 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003061}
3062
Stephane Eranian9e630202013-04-03 14:21:33 +02003063static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003064{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003065 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003066 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003067
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003068 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003069 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3070 rotate = 1;
3071 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003072
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003073 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003074 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003075 if (ctx->nr_events != ctx->nr_active)
3076 rotate = 1;
3077 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003078
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003079 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003080 goto done;
3081
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003082 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003083 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003084
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003085 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3086 if (ctx)
3087 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003088
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003089 rotate_ctx(&cpuctx->ctx);
3090 if (ctx)
3091 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003092
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003093 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003094
3095 perf_pmu_enable(cpuctx->ctx.pmu);
3096 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003097done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003098
3099 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003100}
3101
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003102#ifdef CONFIG_NO_HZ_FULL
3103bool perf_event_can_stop_tick(void)
3104{
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003105 if (atomic_read(&nr_freq_events) ||
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02003106 __this_cpu_read(perf_throttled_count))
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003107 return false;
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02003108 else
3109 return true;
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003110}
3111#endif
3112
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003113void perf_event_task_tick(void)
3114{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003115 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3116 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003117 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003118
3119 WARN_ON(!irqs_disabled());
3120
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003121 __this_cpu_inc(perf_throttled_seq);
3122 throttled = __this_cpu_xchg(perf_throttled_count, 0);
3123
Mark Rutland2fde4f92015-01-07 15:01:54 +00003124 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003125 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003126}
3127
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003128static int event_enable_on_exec(struct perf_event *event,
3129 struct perf_event_context *ctx)
3130{
3131 if (!event->attr.enable_on_exec)
3132 return 0;
3133
3134 event->attr.enable_on_exec = 0;
3135 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3136 return 0;
3137
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01003138 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003139
3140 return 1;
3141}
3142
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003143/*
3144 * Enable all of a task's events that have been marked enable-on-exec.
3145 * This expects task == current.
3146 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003147static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003148{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003149 struct perf_event_context *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003150 struct perf_event *event;
3151 unsigned long flags;
3152 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003153 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003154
3155 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003156 if (!ctx || !ctx->nr_events)
3157 goto out;
3158
Stephane Eraniane566b762011-04-06 02:54:54 +02003159 /*
3160 * We must ctxsw out cgroup events to avoid conflict
3161 * when invoking perf_task_event_sched_in() later on
3162 * in this function. Otherwise we end up trying to
3163 * ctxswin cgroup events which are already scheduled
3164 * in.
3165 */
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003166 perf_cgroup_sched_out(current, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003167
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003168 raw_spin_lock(&ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02003169 task_ctx_sched_out(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003170
Peter Zijlstrab79387e2011-11-22 11:25:43 +01003171 list_for_each_entry(event, &ctx->event_list, event_entry) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003172 ret = event_enable_on_exec(event, ctx);
3173 if (ret)
3174 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003175 }
3176
3177 /*
3178 * Unclone this context if we enabled any event.
3179 */
3180 if (enabled)
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003181 clone_ctx = unclone_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003182
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003183 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003184
Stephane Eraniane566b762011-04-06 02:54:54 +02003185 /*
3186 * Also calls ctxswin for cgroup events, if any:
3187 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003188 perf_event_context_sched_in(ctx, ctx->task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003189out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003190 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003191
3192 if (clone_ctx)
3193 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003194}
3195
Peter Zijlstrae041e322014-05-21 17:32:19 +02003196void perf_event_exec(void)
3197{
3198 struct perf_event_context *ctx;
3199 int ctxn;
3200
3201 rcu_read_lock();
3202 for_each_task_context_nr(ctxn) {
3203 ctx = current->perf_event_ctxp[ctxn];
3204 if (!ctx)
3205 continue;
3206
3207 perf_event_enable_on_exec(ctx);
3208 }
3209 rcu_read_unlock();
3210}
3211
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003212/*
3213 * Cross CPU call to read the hardware event
3214 */
3215static void __perf_event_read(void *info)
3216{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003217 struct perf_event *event = info;
3218 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003219 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003220
3221 /*
3222 * If this is a task context, we need to check whether it is
3223 * the current task context of this cpu. If not it has been
3224 * scheduled out before the smp call arrived. In that case
3225 * event->count would have been updated to a recent sample
3226 * when the event was scheduled out.
3227 */
3228 if (ctx->task && cpuctx->task_ctx != ctx)
3229 return;
3230
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003231 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003232 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003233 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003234 update_cgrp_time_from_event(event);
3235 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003236 update_event_times(event);
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003237 if (event->state == PERF_EVENT_STATE_ACTIVE)
3238 event->pmu->read(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003239 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003240}
3241
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003242static inline u64 perf_event_count(struct perf_event *event)
3243{
Matt Flemingeacd3ec2015-01-23 18:45:41 +00003244 if (event->pmu->count)
3245 return event->pmu->count(event);
3246
3247 return __perf_event_count(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003248}
3249
Kaixu Xiaffe86902015-08-06 07:02:32 +00003250/*
3251 * NMI-safe method to read a local event, that is an event that
3252 * is:
3253 * - either for the current task, or for this CPU
3254 * - does not have inherit set, for inherited task events
3255 * will not be local and we cannot read them atomically
3256 * - must not have a pmu::count method
3257 */
3258u64 perf_event_read_local(struct perf_event *event)
3259{
3260 unsigned long flags;
3261 u64 val;
3262
3263 /*
3264 * Disabling interrupts avoids all counter scheduling (context
3265 * switches, timer based rotation and IPIs).
3266 */
3267 local_irq_save(flags);
3268
3269 /* If this is a per-task event, it must be for current */
3270 WARN_ON_ONCE((event->attach_state & PERF_ATTACH_TASK) &&
3271 event->hw.target != current);
3272
3273 /* If this is a per-CPU event, it must be for this CPU */
3274 WARN_ON_ONCE(!(event->attach_state & PERF_ATTACH_TASK) &&
3275 event->cpu != smp_processor_id());
3276
3277 /*
3278 * It must not be an event with inherit set, we cannot read
3279 * all child counters from atomic context.
3280 */
3281 WARN_ON_ONCE(event->attr.inherit);
3282
3283 /*
3284 * It must not have a pmu::count method, those are not
3285 * NMI safe.
3286 */
3287 WARN_ON_ONCE(event->pmu->count);
3288
3289 /*
3290 * If the event is currently on this CPU, its either a per-task event,
3291 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3292 * oncpu == -1).
3293 */
3294 if (event->oncpu == smp_processor_id())
3295 event->pmu->read(event);
3296
3297 val = local64_read(&event->count);
3298 local_irq_restore(flags);
3299
3300 return val;
3301}
3302
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003303static u64 perf_event_read(struct perf_event *event)
3304{
3305 /*
3306 * If event is enabled and currently active on a CPU, update the
3307 * value in the event structure:
3308 */
3309 if (event->state == PERF_EVENT_STATE_ACTIVE) {
3310 smp_call_function_single(event->oncpu,
3311 __perf_event_read, event, 1);
3312 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003313 struct perf_event_context *ctx = event->ctx;
3314 unsigned long flags;
3315
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003316 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003317 /*
3318 * may read while context is not active
3319 * (e.g., thread is blocked), in that case
3320 * we cannot update context time
3321 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003322 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003323 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003324 update_cgrp_time_from_event(event);
3325 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003326 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003327 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003328 }
3329
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003330 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003331}
3332
3333/*
3334 * Initialize the perf_event context in a task_struct:
3335 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003336static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003337{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003338 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003339 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003340 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003341 INIT_LIST_HEAD(&ctx->pinned_groups);
3342 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003343 INIT_LIST_HEAD(&ctx->event_list);
3344 atomic_set(&ctx->refcount, 1);
Jiri Olsafadfe7b2014-08-01 14:33:02 +02003345 INIT_DELAYED_WORK(&ctx->orphans_remove, orphans_remove_work);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003346}
3347
Peter Zijlstraeb184472010-09-07 15:55:13 +02003348static struct perf_event_context *
3349alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003350{
3351 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003352
3353 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3354 if (!ctx)
3355 return NULL;
3356
3357 __perf_event_init_context(ctx);
3358 if (task) {
3359 ctx->task = task;
3360 get_task_struct(task);
3361 }
3362 ctx->pmu = pmu;
3363
3364 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003365}
3366
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003367static struct task_struct *
3368find_lively_task_by_vpid(pid_t vpid)
3369{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003370 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003371 int err;
3372
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003373 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003374 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003375 task = current;
3376 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003377 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003378 if (task)
3379 get_task_struct(task);
3380 rcu_read_unlock();
3381
3382 if (!task)
3383 return ERR_PTR(-ESRCH);
3384
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003385 /* Reuse ptrace permission checks for now. */
3386 err = -EACCES;
3387 if (!ptrace_may_access(task, PTRACE_MODE_READ))
3388 goto errout;
3389
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003390 return task;
3391errout:
3392 put_task_struct(task);
3393 return ERR_PTR(err);
3394
3395}
3396
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003397/*
3398 * Returns a matching context with refcount and pincount.
3399 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003400static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003401find_get_context(struct pmu *pmu, struct task_struct *task,
3402 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003403{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003404 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003405 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003406 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003407 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003408 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003409 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003410
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003411 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003412 /* Must be root to operate on a CPU event: */
3413 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3414 return ERR_PTR(-EACCES);
3415
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003416 /*
3417 * We could be clever and allow to attach a event to an
3418 * offline CPU and activate it when the CPU comes up, but
3419 * that's for later.
3420 */
3421 if (!cpu_online(cpu))
3422 return ERR_PTR(-ENODEV);
3423
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003424 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003425 ctx = &cpuctx->ctx;
3426 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003427 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003428
3429 return ctx;
3430 }
3431
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003432 err = -EINVAL;
3433 ctxn = pmu->task_ctx_nr;
3434 if (ctxn < 0)
3435 goto errout;
3436
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003437 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3438 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3439 if (!task_ctx_data) {
3440 err = -ENOMEM;
3441 goto errout;
3442 }
3443 }
3444
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003445retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003446 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003447 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003448 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003449 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003450
3451 if (task_ctx_data && !ctx->task_ctx_data) {
3452 ctx->task_ctx_data = task_ctx_data;
3453 task_ctx_data = NULL;
3454 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003455 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003456
3457 if (clone_ctx)
3458 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003459 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003460 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003461 err = -ENOMEM;
3462 if (!ctx)
3463 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003464
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003465 if (task_ctx_data) {
3466 ctx->task_ctx_data = task_ctx_data;
3467 task_ctx_data = NULL;
3468 }
3469
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003470 err = 0;
3471 mutex_lock(&task->perf_event_mutex);
3472 /*
3473 * If it has already passed perf_event_exit_task().
3474 * we must see PF_EXITING, it takes this mutex too.
3475 */
3476 if (task->flags & PF_EXITING)
3477 err = -ESRCH;
3478 else if (task->perf_event_ctxp[ctxn])
3479 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003480 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003481 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003482 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003483 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003484 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003485 mutex_unlock(&task->perf_event_mutex);
3486
3487 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003488 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003489
3490 if (err == -EAGAIN)
3491 goto retry;
3492 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003493 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003494 }
3495
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003496 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003497 return ctx;
3498
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003499errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003500 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003501 return ERR_PTR(err);
3502}
3503
Li Zefan6fb29152009-10-15 11:21:42 +08003504static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07003505static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08003506
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003507static void free_event_rcu(struct rcu_head *head)
3508{
3509 struct perf_event *event;
3510
3511 event = container_of(head, struct perf_event, rcu_head);
3512 if (event->ns)
3513 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003514 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003515 kfree(event);
3516}
3517
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003518static void ring_buffer_attach(struct perf_event *event,
3519 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003520
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003521static void unaccount_event_cpu(struct perf_event *event, int cpu)
3522{
3523 if (event->parent)
3524 return;
3525
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003526 if (is_cgroup_event(event))
3527 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3528}
3529
3530static void unaccount_event(struct perf_event *event)
3531{
3532 if (event->parent)
3533 return;
3534
3535 if (event->attach_state & PERF_ATTACH_TASK)
3536 static_key_slow_dec_deferred(&perf_sched_events);
3537 if (event->attr.mmap || event->attr.mmap_data)
3538 atomic_dec(&nr_mmap_events);
3539 if (event->attr.comm)
3540 atomic_dec(&nr_comm_events);
3541 if (event->attr.task)
3542 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003543 if (event->attr.freq)
3544 atomic_dec(&nr_freq_events);
Adrian Hunter45ac1402015-07-21 12:44:02 +03003545 if (event->attr.context_switch) {
3546 static_key_slow_dec_deferred(&perf_sched_events);
3547 atomic_dec(&nr_switch_events);
3548 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003549 if (is_cgroup_event(event))
3550 static_key_slow_dec_deferred(&perf_sched_events);
3551 if (has_branch_stack(event))
3552 static_key_slow_dec_deferred(&perf_sched_events);
3553
3554 unaccount_event_cpu(event, event->cpu);
3555}
3556
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003557/*
3558 * The following implement mutual exclusion of events on "exclusive" pmus
3559 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
3560 * at a time, so we disallow creating events that might conflict, namely:
3561 *
3562 * 1) cpu-wide events in the presence of per-task events,
3563 * 2) per-task events in the presence of cpu-wide events,
3564 * 3) two matching events on the same context.
3565 *
3566 * The former two cases are handled in the allocation path (perf_event_alloc(),
3567 * __free_event()), the latter -- before the first perf_install_in_context().
3568 */
3569static int exclusive_event_init(struct perf_event *event)
3570{
3571 struct pmu *pmu = event->pmu;
3572
3573 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3574 return 0;
3575
3576 /*
3577 * Prevent co-existence of per-task and cpu-wide events on the
3578 * same exclusive pmu.
3579 *
3580 * Negative pmu::exclusive_cnt means there are cpu-wide
3581 * events on this "exclusive" pmu, positive means there are
3582 * per-task events.
3583 *
3584 * Since this is called in perf_event_alloc() path, event::ctx
3585 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
3586 * to mean "per-task event", because unlike other attach states it
3587 * never gets cleared.
3588 */
3589 if (event->attach_state & PERF_ATTACH_TASK) {
3590 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
3591 return -EBUSY;
3592 } else {
3593 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
3594 return -EBUSY;
3595 }
3596
3597 return 0;
3598}
3599
3600static void exclusive_event_destroy(struct perf_event *event)
3601{
3602 struct pmu *pmu = event->pmu;
3603
3604 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3605 return;
3606
3607 /* see comment in exclusive_event_init() */
3608 if (event->attach_state & PERF_ATTACH_TASK)
3609 atomic_dec(&pmu->exclusive_cnt);
3610 else
3611 atomic_inc(&pmu->exclusive_cnt);
3612}
3613
3614static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
3615{
3616 if ((e1->pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) &&
3617 (e1->cpu == e2->cpu ||
3618 e1->cpu == -1 ||
3619 e2->cpu == -1))
3620 return true;
3621 return false;
3622}
3623
3624/* Called under the same ctx::mutex as perf_install_in_context() */
3625static bool exclusive_event_installable(struct perf_event *event,
3626 struct perf_event_context *ctx)
3627{
3628 struct perf_event *iter_event;
3629 struct pmu *pmu = event->pmu;
3630
3631 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3632 return true;
3633
3634 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
3635 if (exclusive_event_match(iter_event, event))
3636 return false;
3637 }
3638
3639 return true;
3640}
3641
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003642static void __free_event(struct perf_event *event)
3643{
3644 if (!event->parent) {
3645 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
3646 put_callchain_buffers();
3647 }
3648
Alexei Starovoitovdead9f22015-05-15 12:15:21 -07003649 perf_event_free_bpf_prog(event);
3650
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003651 if (event->destroy)
3652 event->destroy(event);
3653
3654 if (event->ctx)
3655 put_ctx(event->ctx);
3656
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003657 if (event->pmu) {
3658 exclusive_event_destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08003659 module_put(event->pmu->module);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003660 }
Yan, Zhengc464c762014-03-18 16:56:41 +08003661
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003662 call_rcu(&event->rcu_head, free_event_rcu);
3663}
Peter Zijlstra683ede42014-05-05 12:11:24 +02003664
3665static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003666{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003667 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003668
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003669 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003670
Frederic Weisbecker76369132011-05-19 19:55:04 +02003671 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003672 /*
3673 * Can happen when we close an event with re-directed output.
3674 *
3675 * Since we have a 0 refcount, perf_mmap_close() will skip
3676 * over us; possibly making our ring_buffer_put() the last.
3677 */
3678 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003679 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003680 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003681 }
3682
Stephane Eraniane5d13672011-02-14 11:20:01 +02003683 if (is_cgroup_event(event))
3684 perf_detach_cgroup(event);
3685
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003686 __free_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003687}
3688
Peter Zijlstra683ede42014-05-05 12:11:24 +02003689/*
3690 * Used to free events which have a known refcount of 1, such as in error paths
3691 * where the event isn't exposed yet and inherited events.
3692 */
3693static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003694{
Peter Zijlstra683ede42014-05-05 12:11:24 +02003695 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
3696 "unexpected event refcount: %ld; ptr=%p\n",
3697 atomic_long_read(&event->refcount), event)) {
3698 /* leak to avoid use-after-free */
3699 return;
3700 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003701
Peter Zijlstra683ede42014-05-05 12:11:24 +02003702 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003703}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003704
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003705/*
Jiri Olsaf8697762014-08-01 14:33:01 +02003706 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003707 */
Jiri Olsaf8697762014-08-01 14:33:01 +02003708static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003709{
Peter Zijlstra88821352010-11-09 19:01:43 +01003710 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003711
Peter Zijlstra88821352010-11-09 19:01:43 +01003712 rcu_read_lock();
3713 owner = ACCESS_ONCE(event->owner);
3714 /*
3715 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
3716 * !owner it means the list deletion is complete and we can indeed
3717 * free this event, otherwise we need to serialize on
3718 * owner->perf_event_mutex.
3719 */
3720 smp_read_barrier_depends();
3721 if (owner) {
3722 /*
3723 * Since delayed_put_task_struct() also drops the last
3724 * task reference we can safely take a new reference
3725 * while holding the rcu_read_lock().
3726 */
3727 get_task_struct(owner);
3728 }
3729 rcu_read_unlock();
3730
3731 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003732 /*
3733 * If we're here through perf_event_exit_task() we're already
3734 * holding ctx->mutex which would be an inversion wrt. the
3735 * normal lock order.
3736 *
3737 * However we can safely take this lock because its the child
3738 * ctx->mutex.
3739 */
3740 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
3741
Peter Zijlstra88821352010-11-09 19:01:43 +01003742 /*
3743 * We have to re-check the event->owner field, if it is cleared
3744 * we raced with perf_event_exit_task(), acquiring the mutex
3745 * ensured they're done, and we can proceed with freeing the
3746 * event.
3747 */
3748 if (event->owner)
3749 list_del_init(&event->owner_entry);
3750 mutex_unlock(&owner->perf_event_mutex);
3751 put_task_struct(owner);
3752 }
Jiri Olsaf8697762014-08-01 14:33:01 +02003753}
3754
Jiri Olsaf8697762014-08-01 14:33:01 +02003755static void put_event(struct perf_event *event)
3756{
Peter Zijlstraa83fe282015-01-29 14:44:34 +01003757 struct perf_event_context *ctx;
Jiri Olsaf8697762014-08-01 14:33:01 +02003758
3759 if (!atomic_long_dec_and_test(&event->refcount))
3760 return;
3761
3762 if (!is_kernel_event(event))
3763 perf_remove_from_owner(event);
Peter Zijlstra88821352010-11-09 19:01:43 +01003764
Peter Zijlstra683ede42014-05-05 12:11:24 +02003765 /*
3766 * There are two ways this annotation is useful:
3767 *
3768 * 1) there is a lock recursion from perf_event_exit_task
3769 * see the comment there.
3770 *
3771 * 2) there is a lock-inversion with mmap_sem through
3772 * perf_event_read_group(), which takes faults while
3773 * holding ctx->mutex, however this is called after
3774 * the last filedesc died, so there is no possibility
3775 * to trigger the AB-BA case.
3776 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01003777 ctx = perf_event_ctx_lock_nested(event, SINGLE_DEPTH_NESTING);
3778 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstra683ede42014-05-05 12:11:24 +02003779 perf_remove_from_context(event, true);
Leon Yud415a7f2015-02-26 20:43:33 +08003780 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra683ede42014-05-05 12:11:24 +02003781
3782 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01003783}
3784
Peter Zijlstra683ede42014-05-05 12:11:24 +02003785int perf_event_release_kernel(struct perf_event *event)
3786{
3787 put_event(event);
3788 return 0;
3789}
3790EXPORT_SYMBOL_GPL(perf_event_release_kernel);
3791
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02003792/*
3793 * Called when the last reference to the file is gone.
3794 */
Al Viroa6fa9412012-08-20 14:59:25 +01003795static int perf_release(struct inode *inode, struct file *file)
3796{
3797 put_event(file->private_data);
3798 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003799}
3800
Jiri Olsafadfe7b2014-08-01 14:33:02 +02003801/*
3802 * Remove all orphanes events from the context.
3803 */
3804static void orphans_remove_work(struct work_struct *work)
3805{
3806 struct perf_event_context *ctx;
3807 struct perf_event *event, *tmp;
3808
3809 ctx = container_of(work, struct perf_event_context,
3810 orphans_remove.work);
3811
3812 mutex_lock(&ctx->mutex);
3813 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry) {
3814 struct perf_event *parent_event = event->parent;
3815
3816 if (!is_orphaned_child(event))
3817 continue;
3818
3819 perf_remove_from_context(event, true);
3820
3821 mutex_lock(&parent_event->child_mutex);
3822 list_del_init(&event->child_list);
3823 mutex_unlock(&parent_event->child_mutex);
3824
3825 free_event(event);
3826 put_event(parent_event);
3827 }
3828
3829 raw_spin_lock_irq(&ctx->lock);
3830 ctx->orphans_remove_sched = false;
3831 raw_spin_unlock_irq(&ctx->lock);
3832 mutex_unlock(&ctx->mutex);
3833
3834 put_ctx(ctx);
3835}
3836
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003837u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003838{
3839 struct perf_event *child;
3840 u64 total = 0;
3841
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003842 *enabled = 0;
3843 *running = 0;
3844
Peter Zijlstra6f105812009-11-20 22:19:56 +01003845 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003846 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003847 *enabled += event->total_time_enabled +
3848 atomic64_read(&event->child_total_time_enabled);
3849 *running += event->total_time_running +
3850 atomic64_read(&event->child_total_time_running);
3851
3852 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003853 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003854 *enabled += child->total_time_enabled;
3855 *running += child->total_time_running;
3856 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003857 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003858
3859 return total;
3860}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003861EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003862
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003863static int perf_event_read_group(struct perf_event *event,
3864 u64 read_format, char __user *buf)
3865{
3866 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003867 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003868 int n = 0, size = 0, ret;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003869 u64 count, enabled, running;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003870 u64 values[5];
Peter Zijlstraabf48682009-11-20 22:19:49 +01003871
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003872 lockdep_assert_held(&ctx->mutex);
3873
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003874 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003875
3876 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003877 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3878 values[n++] = enabled;
3879 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3880 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003881 values[n++] = count;
3882 if (read_format & PERF_FORMAT_ID)
3883 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003884
3885 size = n * sizeof(u64);
3886
3887 if (copy_to_user(buf, values, size))
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003888 return -EFAULT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003889
Peter Zijlstra6f105812009-11-20 22:19:56 +01003890 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003891
3892 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01003893 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003894
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003895 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003896 if (read_format & PERF_FORMAT_ID)
3897 values[n++] = primary_event_id(sub);
3898
3899 size = n * sizeof(u64);
3900
Stephane Eranian184d3da2009-11-23 21:40:49 -08003901 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003902 return -EFAULT;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003903 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01003904
3905 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003906 }
3907
Peter Zijlstraabf48682009-11-20 22:19:49 +01003908 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003909}
3910
3911static int perf_event_read_one(struct perf_event *event,
3912 u64 read_format, char __user *buf)
3913{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003914 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003915 u64 values[4];
3916 int n = 0;
3917
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003918 values[n++] = perf_event_read_value(event, &enabled, &running);
3919 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3920 values[n++] = enabled;
3921 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3922 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003923 if (read_format & PERF_FORMAT_ID)
3924 values[n++] = primary_event_id(event);
3925
3926 if (copy_to_user(buf, values, n * sizeof(u64)))
3927 return -EFAULT;
3928
3929 return n * sizeof(u64);
3930}
3931
Jiri Olsadc633982014-09-12 13:18:26 +02003932static bool is_event_hup(struct perf_event *event)
3933{
3934 bool no_children;
3935
3936 if (event->state != PERF_EVENT_STATE_EXIT)
3937 return false;
3938
3939 mutex_lock(&event->child_mutex);
3940 no_children = list_empty(&event->child_list);
3941 mutex_unlock(&event->child_mutex);
3942 return no_children;
3943}
3944
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003945/*
3946 * Read the performance event - simple non blocking version for now
3947 */
3948static ssize_t
3949perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
3950{
3951 u64 read_format = event->attr.read_format;
3952 int ret;
3953
3954 /*
3955 * Return end-of-file for a read on a event that is in
3956 * error state (i.e. because it was pinned but it couldn't be
3957 * scheduled on to the CPU at some point).
3958 */
3959 if (event->state == PERF_EVENT_STATE_ERROR)
3960 return 0;
3961
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003962 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003963 return -ENOSPC;
3964
3965 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003966 if (read_format & PERF_FORMAT_GROUP)
3967 ret = perf_event_read_group(event, read_format, buf);
3968 else
3969 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003970
3971 return ret;
3972}
3973
3974static ssize_t
3975perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3976{
3977 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003978 struct perf_event_context *ctx;
3979 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003980
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003981 ctx = perf_event_ctx_lock(event);
3982 ret = perf_read_hw(event, buf, count);
3983 perf_event_ctx_unlock(event, ctx);
3984
3985 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003986}
3987
3988static unsigned int perf_poll(struct file *file, poll_table *wait)
3989{
3990 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003991 struct ring_buffer *rb;
Jiri Olsa61b67682014-08-13 19:39:56 +02003992 unsigned int events = POLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003993
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02003994 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04003995
Jiri Olsadc633982014-09-12 13:18:26 +02003996 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04003997 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003998
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003999 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004000 * Pin the event->rb by taking event->mmap_mutex; otherwise
4001 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004002 */
4003 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004004 rb = event->rb;
4005 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004006 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004007 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004008 return events;
4009}
4010
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004011static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004012{
4013 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02004014 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004015 perf_event_update_userpage(event);
4016}
4017
4018/*
4019 * Holding the top-level event's child_mutex means that any
4020 * descendant process that has inherited this event will block
4021 * in sync_child_event if it goes to exit, thus satisfying the
4022 * task existence requirements of perf_event_enable/disable.
4023 */
4024static void perf_event_for_each_child(struct perf_event *event,
4025 void (*func)(struct perf_event *))
4026{
4027 struct perf_event *child;
4028
4029 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004030
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004031 mutex_lock(&event->child_mutex);
4032 func(event);
4033 list_for_each_entry(child, &event->child_list, child_list)
4034 func(child);
4035 mutex_unlock(&event->child_mutex);
4036}
4037
4038static void perf_event_for_each(struct perf_event *event,
4039 void (*func)(struct perf_event *))
4040{
4041 struct perf_event_context *ctx = event->ctx;
4042 struct perf_event *sibling;
4043
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004044 lockdep_assert_held(&ctx->mutex);
4045
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004046 event = event->group_leader;
4047
4048 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004049 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10004050 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004051}
4052
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004053struct period_event {
4054 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004055 u64 value;
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004056};
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004057
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004058static int __perf_event_period(void *info)
4059{
4060 struct period_event *pe = info;
4061 struct perf_event *event = pe->event;
4062 struct perf_event_context *ctx = event->ctx;
4063 u64 value = pe->value;
4064 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004065
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004066 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004067 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004068 event->attr.sample_freq = value;
4069 } else {
4070 event->attr.sample_period = value;
4071 event->hw.sample_period = value;
4072 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004073
4074 active = (event->state == PERF_EVENT_STATE_ACTIVE);
4075 if (active) {
4076 perf_pmu_disable(ctx->pmu);
4077 event->pmu->stop(event, PERF_EF_UPDATE);
4078 }
4079
4080 local64_set(&event->hw.period_left, 0);
4081
4082 if (active) {
4083 event->pmu->start(event, PERF_EF_RELOAD);
4084 perf_pmu_enable(ctx->pmu);
4085 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004086 raw_spin_unlock(&ctx->lock);
Peter Zijlstrabad71922013-11-27 13:54:38 +00004087
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004088 return 0;
4089}
4090
4091static int perf_event_period(struct perf_event *event, u64 __user *arg)
4092{
4093 struct period_event pe = { .event = event, };
4094 struct perf_event_context *ctx = event->ctx;
4095 struct task_struct *task;
4096 u64 value;
4097
4098 if (!is_sampling_event(event))
4099 return -EINVAL;
4100
4101 if (copy_from_user(&value, arg, sizeof(value)))
4102 return -EFAULT;
4103
4104 if (!value)
4105 return -EINVAL;
4106
4107 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4108 return -EINVAL;
4109
4110 task = ctx->task;
4111 pe.value = value;
4112
4113 if (!task) {
4114 cpu_function_call(event->cpu, __perf_event_period, &pe);
4115 return 0;
4116 }
4117
4118retry:
4119 if (!task_function_call(task, __perf_event_period, &pe))
4120 return 0;
4121
4122 raw_spin_lock_irq(&ctx->lock);
4123 if (ctx->is_active) {
4124 raw_spin_unlock_irq(&ctx->lock);
4125 task = ctx->task;
4126 goto retry;
4127 }
4128
4129 __perf_event_period(&pe);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01004130 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004131
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004132 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004133}
4134
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004135static const struct file_operations perf_fops;
4136
Al Viro2903ff02012-08-28 12:52:22 -04004137static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004138{
Al Viro2903ff02012-08-28 12:52:22 -04004139 struct fd f = fdget(fd);
4140 if (!f.file)
4141 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004142
Al Viro2903ff02012-08-28 12:52:22 -04004143 if (f.file->f_op != &perf_fops) {
4144 fdput(f);
4145 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004146 }
Al Viro2903ff02012-08-28 12:52:22 -04004147 *p = f;
4148 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004149}
4150
4151static int perf_event_set_output(struct perf_event *event,
4152 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08004153static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004154static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004155
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004156static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004157{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004158 void (*func)(struct perf_event *);
4159 u32 flags = arg;
4160
4161 switch (cmd) {
4162 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004163 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004164 break;
4165 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004166 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004167 break;
4168 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004169 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004170 break;
4171
4172 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004173 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004174
4175 case PERF_EVENT_IOC_PERIOD:
4176 return perf_event_period(event, (u64 __user *)arg);
4177
Jiri Olsacf4957f2012-10-24 13:37:58 +02004178 case PERF_EVENT_IOC_ID:
4179 {
4180 u64 id = primary_event_id(event);
4181
4182 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
4183 return -EFAULT;
4184 return 0;
4185 }
4186
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004187 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004188 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004189 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004190 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04004191 struct perf_event *output_event;
4192 struct fd output;
4193 ret = perf_fget_light(arg, &output);
4194 if (ret)
4195 return ret;
4196 output_event = output.file->private_data;
4197 ret = perf_event_set_output(event, output_event);
4198 fdput(output);
4199 } else {
4200 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004201 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004202 return ret;
4203 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004204
Li Zefan6fb29152009-10-15 11:21:42 +08004205 case PERF_EVENT_IOC_SET_FILTER:
4206 return perf_event_set_filter(event, (void __user *)arg);
4207
Alexei Starovoitov25415172015-03-25 12:49:20 -07004208 case PERF_EVENT_IOC_SET_BPF:
4209 return perf_event_set_bpf_prog(event, arg);
4210
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004211 default:
4212 return -ENOTTY;
4213 }
4214
4215 if (flags & PERF_IOC_FLAG_GROUP)
4216 perf_event_for_each(event, func);
4217 else
4218 perf_event_for_each_child(event, func);
4219
4220 return 0;
4221}
4222
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004223static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4224{
4225 struct perf_event *event = file->private_data;
4226 struct perf_event_context *ctx;
4227 long ret;
4228
4229 ctx = perf_event_ctx_lock(event);
4230 ret = _perf_ioctl(event, cmd, arg);
4231 perf_event_ctx_unlock(event, ctx);
4232
4233 return ret;
4234}
4235
Pawel Mollb3f20782014-06-13 16:03:32 +01004236#ifdef CONFIG_COMPAT
4237static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4238 unsigned long arg)
4239{
4240 switch (_IOC_NR(cmd)) {
4241 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4242 case _IOC_NR(PERF_EVENT_IOC_ID):
4243 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4244 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4245 cmd &= ~IOCSIZE_MASK;
4246 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4247 }
4248 break;
4249 }
4250 return perf_ioctl(file, cmd, arg);
4251}
4252#else
4253# define perf_compat_ioctl NULL
4254#endif
4255
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004256int perf_event_task_enable(void)
4257{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004258 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004259 struct perf_event *event;
4260
4261 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004262 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4263 ctx = perf_event_ctx_lock(event);
4264 perf_event_for_each_child(event, _perf_event_enable);
4265 perf_event_ctx_unlock(event, ctx);
4266 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004267 mutex_unlock(&current->perf_event_mutex);
4268
4269 return 0;
4270}
4271
4272int perf_event_task_disable(void)
4273{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004274 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004275 struct perf_event *event;
4276
4277 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004278 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4279 ctx = perf_event_ctx_lock(event);
4280 perf_event_for_each_child(event, _perf_event_disable);
4281 perf_event_ctx_unlock(event, ctx);
4282 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004283 mutex_unlock(&current->perf_event_mutex);
4284
4285 return 0;
4286}
4287
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004288static int perf_event_index(struct perf_event *event)
4289{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004290 if (event->hw.state & PERF_HES_STOPPED)
4291 return 0;
4292
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004293 if (event->state != PERF_EVENT_STATE_ACTIVE)
4294 return 0;
4295
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004296 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004297}
4298
Eric B Munsonc4794292011-06-23 16:34:38 -04004299static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004300 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004301 u64 *enabled,
4302 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004303{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004304 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004305
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004306 *now = perf_clock();
4307 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04004308 *enabled = ctx_time - event->tstamp_enabled;
4309 *running = ctx_time - event->tstamp_running;
4310}
4311
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004312static void perf_event_init_userpage(struct perf_event *event)
4313{
4314 struct perf_event_mmap_page *userpg;
4315 struct ring_buffer *rb;
4316
4317 rcu_read_lock();
4318 rb = rcu_dereference(event->rb);
4319 if (!rb)
4320 goto unlock;
4321
4322 userpg = rb->user_page;
4323
4324 /* Allow new userspace to detect that bit 0 is deprecated */
4325 userpg->cap_bit0_is_deprecated = 1;
4326 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02004327 userpg->data_offset = PAGE_SIZE;
4328 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004329
4330unlock:
4331 rcu_read_unlock();
4332}
4333
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004334void __weak arch_perf_update_userpage(
4335 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004336{
4337}
4338
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004339/*
4340 * Callers need to ensure there can be no nesting of this function, otherwise
4341 * the seqlock logic goes bad. We can not serialize this because the arch
4342 * code calls this from NMI context.
4343 */
4344void perf_event_update_userpage(struct perf_event *event)
4345{
4346 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004347 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004348 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004349
4350 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004351 rb = rcu_dereference(event->rb);
4352 if (!rb)
4353 goto unlock;
4354
Eric B Munson0d641202011-06-24 12:26:26 -04004355 /*
4356 * compute total_time_enabled, total_time_running
4357 * based on snapshot values taken when the event
4358 * was last scheduled in.
4359 *
4360 * we cannot simply called update_context_time()
4361 * because of locking issue as we can be called in
4362 * NMI context
4363 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004364 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004365
Frederic Weisbecker76369132011-05-19 19:55:04 +02004366 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004367 /*
4368 * Disable preemption so as to not let the corresponding user-space
4369 * spin too long if we get preempted.
4370 */
4371 preempt_disable();
4372 ++userpg->lock;
4373 barrier();
4374 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004375 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004376 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004377 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004378
Eric B Munson0d641202011-06-24 12:26:26 -04004379 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004380 atomic64_read(&event->child_total_time_enabled);
4381
Eric B Munson0d641202011-06-24 12:26:26 -04004382 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004383 atomic64_read(&event->child_total_time_running);
4384
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004385 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004386
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004387 barrier();
4388 ++userpg->lock;
4389 preempt_enable();
4390unlock:
4391 rcu_read_unlock();
4392}
4393
Peter Zijlstra906010b2009-09-21 16:08:49 +02004394static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
4395{
4396 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004397 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004398 int ret = VM_FAULT_SIGBUS;
4399
4400 if (vmf->flags & FAULT_FLAG_MKWRITE) {
4401 if (vmf->pgoff == 0)
4402 ret = 0;
4403 return ret;
4404 }
4405
4406 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004407 rb = rcu_dereference(event->rb);
4408 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004409 goto unlock;
4410
4411 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4412 goto unlock;
4413
Frederic Weisbecker76369132011-05-19 19:55:04 +02004414 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004415 if (!vmf->page)
4416 goto unlock;
4417
4418 get_page(vmf->page);
4419 vmf->page->mapping = vma->vm_file->f_mapping;
4420 vmf->page->index = vmf->pgoff;
4421
4422 ret = 0;
4423unlock:
4424 rcu_read_unlock();
4425
4426 return ret;
4427}
4428
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004429static void ring_buffer_attach(struct perf_event *event,
4430 struct ring_buffer *rb)
4431{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004432 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004433 unsigned long flags;
4434
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004435 if (event->rb) {
4436 /*
4437 * Should be impossible, we set this when removing
4438 * event->rb_entry and wait/clear when adding event->rb_entry.
4439 */
4440 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004441
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004442 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004443 spin_lock_irqsave(&old_rb->event_lock, flags);
4444 list_del_rcu(&event->rb_entry);
4445 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004446
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004447 event->rcu_batches = get_state_synchronize_rcu();
4448 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004449 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004450
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004451 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004452 if (event->rcu_pending) {
4453 cond_synchronize_rcu(event->rcu_batches);
4454 event->rcu_pending = 0;
4455 }
4456
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004457 spin_lock_irqsave(&rb->event_lock, flags);
4458 list_add_rcu(&event->rb_entry, &rb->event_list);
4459 spin_unlock_irqrestore(&rb->event_lock, flags);
4460 }
4461
4462 rcu_assign_pointer(event->rb, rb);
4463
4464 if (old_rb) {
4465 ring_buffer_put(old_rb);
4466 /*
4467 * Since we detached before setting the new rb, so that we
4468 * could attach the new rb, we could have missed a wakeup.
4469 * Provide it now.
4470 */
4471 wake_up_all(&event->waitq);
4472 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004473}
4474
4475static void ring_buffer_wakeup(struct perf_event *event)
4476{
4477 struct ring_buffer *rb;
4478
4479 rcu_read_lock();
4480 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004481 if (rb) {
4482 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
4483 wake_up_all(&event->waitq);
4484 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004485 rcu_read_unlock();
4486}
4487
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004488struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004489{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004490 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004491
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004492 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004493 rb = rcu_dereference(event->rb);
4494 if (rb) {
4495 if (!atomic_inc_not_zero(&rb->refcount))
4496 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004497 }
4498 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004499
Frederic Weisbecker76369132011-05-19 19:55:04 +02004500 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004501}
4502
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004503void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004504{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004505 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004506 return;
4507
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004508 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004509
Frederic Weisbecker76369132011-05-19 19:55:04 +02004510 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004511}
4512
4513static void perf_mmap_open(struct vm_area_struct *vma)
4514{
4515 struct perf_event *event = vma->vm_file->private_data;
4516
4517 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004518 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004519
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004520 if (vma->vm_pgoff)
4521 atomic_inc(&event->rb->aux_mmap_count);
4522
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004523 if (event->pmu->event_mapped)
4524 event->pmu->event_mapped(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004525}
4526
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004527/*
4528 * A buffer can be mmap()ed multiple times; either directly through the same
4529 * event, or through other events by use of perf_event_set_output().
4530 *
4531 * In order to undo the VM accounting done by perf_mmap() we need to destroy
4532 * the buffer here, where we still have a VM context. This means we need
4533 * to detach all events redirecting to us.
4534 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004535static void perf_mmap_close(struct vm_area_struct *vma)
4536{
4537 struct perf_event *event = vma->vm_file->private_data;
4538
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004539 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004540 struct user_struct *mmap_user = rb->mmap_user;
4541 int mmap_locked = rb->mmap_locked;
4542 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004543
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004544 if (event->pmu->event_unmapped)
4545 event->pmu->event_unmapped(event);
4546
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004547 /*
4548 * rb->aux_mmap_count will always drop before rb->mmap_count and
4549 * event->mmap_count, so it is ok to use event->mmap_mutex to
4550 * serialize with perf_mmap here.
4551 */
4552 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
4553 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
4554 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
4555 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
4556
4557 rb_free_aux(rb);
4558 mutex_unlock(&event->mmap_mutex);
4559 }
4560
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004561 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004562
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004563 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004564 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004565
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004566 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004567 mutex_unlock(&event->mmap_mutex);
4568
4569 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004570 if (atomic_read(&rb->mmap_count))
4571 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004572
4573 /*
4574 * No other mmap()s, detach from all other events that might redirect
4575 * into the now unreachable buffer. Somewhat complicated by the
4576 * fact that rb::event_lock otherwise nests inside mmap_mutex.
4577 */
4578again:
4579 rcu_read_lock();
4580 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
4581 if (!atomic_long_inc_not_zero(&event->refcount)) {
4582 /*
4583 * This event is en-route to free_event() which will
4584 * detach it and remove it from the list.
4585 */
4586 continue;
4587 }
4588 rcu_read_unlock();
4589
4590 mutex_lock(&event->mmap_mutex);
4591 /*
4592 * Check we didn't race with perf_event_set_output() which can
4593 * swizzle the rb from under us while we were waiting to
4594 * acquire mmap_mutex.
4595 *
4596 * If we find a different rb; ignore this event, a next
4597 * iteration will no longer find it on the list. We have to
4598 * still restart the iteration to make sure we're not now
4599 * iterating the wrong list.
4600 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004601 if (event->rb == rb)
4602 ring_buffer_attach(event, NULL);
4603
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004604 mutex_unlock(&event->mmap_mutex);
4605 put_event(event);
4606
4607 /*
4608 * Restart the iteration; either we're on the wrong list or
4609 * destroyed its integrity by doing a deletion.
4610 */
4611 goto again;
4612 }
4613 rcu_read_unlock();
4614
4615 /*
4616 * It could be there's still a few 0-ref events on the list; they'll
4617 * get cleaned up by free_event() -- they'll also still have their
4618 * ref on the rb and will free it whenever they are done with it.
4619 *
4620 * Aside from that, this buffer is 'fully' detached and unmapped,
4621 * undo the VM accounting.
4622 */
4623
4624 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
4625 vma->vm_mm->pinned_vm -= mmap_locked;
4626 free_uid(mmap_user);
4627
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004628out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004629 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004630}
4631
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04004632static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004633 .open = perf_mmap_open,
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004634 .close = perf_mmap_close, /* non mergable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004635 .fault = perf_mmap_fault,
4636 .page_mkwrite = perf_mmap_fault,
4637};
4638
4639static int perf_mmap(struct file *file, struct vm_area_struct *vma)
4640{
4641 struct perf_event *event = file->private_data;
4642 unsigned long user_locked, user_lock_limit;
4643 struct user_struct *user = current_user();
4644 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004645 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004646 unsigned long vma_size;
4647 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004648 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004649 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004650
Peter Zijlstrac7920612010-05-18 10:33:24 +02004651 /*
4652 * Don't allow mmap() of inherited per-task counters. This would
4653 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02004654 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02004655 */
4656 if (event->cpu == -1 && event->attr.inherit)
4657 return -EINVAL;
4658
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004659 if (!(vma->vm_flags & VM_SHARED))
4660 return -EINVAL;
4661
4662 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004663
4664 if (vma->vm_pgoff == 0) {
4665 nr_pages = (vma_size / PAGE_SIZE) - 1;
4666 } else {
4667 /*
4668 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
4669 * mapped, all subsequent mappings should have the same size
4670 * and offset. Must be above the normal perf buffer.
4671 */
4672 u64 aux_offset, aux_size;
4673
4674 if (!event->rb)
4675 return -EINVAL;
4676
4677 nr_pages = vma_size / PAGE_SIZE;
4678
4679 mutex_lock(&event->mmap_mutex);
4680 ret = -EINVAL;
4681
4682 rb = event->rb;
4683 if (!rb)
4684 goto aux_unlock;
4685
4686 aux_offset = ACCESS_ONCE(rb->user_page->aux_offset);
4687 aux_size = ACCESS_ONCE(rb->user_page->aux_size);
4688
4689 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
4690 goto aux_unlock;
4691
4692 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
4693 goto aux_unlock;
4694
4695 /* already mapped with a different offset */
4696 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
4697 goto aux_unlock;
4698
4699 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
4700 goto aux_unlock;
4701
4702 /* already mapped with a different size */
4703 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
4704 goto aux_unlock;
4705
4706 if (!is_power_of_2(nr_pages))
4707 goto aux_unlock;
4708
4709 if (!atomic_inc_not_zero(&rb->mmap_count))
4710 goto aux_unlock;
4711
4712 if (rb_has_aux(rb)) {
4713 atomic_inc(&rb->aux_mmap_count);
4714 ret = 0;
4715 goto unlock;
4716 }
4717
4718 atomic_set(&rb->aux_mmap_count, 1);
4719 user_extra = nr_pages;
4720
4721 goto accounting;
4722 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004723
4724 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02004725 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004726 * can do bitmasks instead of modulo.
4727 */
Kan Liang2ed11312015-03-02 02:14:26 -05004728 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004729 return -EINVAL;
4730
4731 if (vma_size != PAGE_SIZE * (1 + nr_pages))
4732 return -EINVAL;
4733
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004734 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004735again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004736 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004737 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004738 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004739 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004740 goto unlock;
4741 }
4742
4743 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
4744 /*
4745 * Raced against perf_mmap_close() through
4746 * perf_event_set_output(). Try again, hope for better
4747 * luck.
4748 */
4749 mutex_unlock(&event->mmap_mutex);
4750 goto again;
4751 }
4752
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004753 goto unlock;
4754 }
4755
4756 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004757
4758accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004759 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
4760
4761 /*
4762 * Increase the limit linearly with more CPUs:
4763 */
4764 user_lock_limit *= num_online_cpus();
4765
4766 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
4767
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004768 if (user_locked > user_lock_limit)
4769 extra = user_locked - user_lock_limit;
4770
Jiri Slaby78d7d402010-03-05 13:42:54 -08004771 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004772 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07004773 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004774
4775 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
4776 !capable(CAP_IPC_LOCK)) {
4777 ret = -EPERM;
4778 goto unlock;
4779 }
4780
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004781 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004782
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004783 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004784 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004785
Frederic Weisbecker76369132011-05-19 19:55:04 +02004786 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004787 rb = rb_alloc(nr_pages,
4788 event->attr.watermark ? event->attr.wakeup_watermark : 0,
4789 event->cpu, flags);
4790
4791 if (!rb) {
4792 ret = -ENOMEM;
4793 goto unlock;
4794 }
4795
4796 atomic_set(&rb->mmap_count, 1);
4797 rb->mmap_user = get_current_user();
4798 rb->mmap_locked = extra;
4799
4800 ring_buffer_attach(event, rb);
4801
4802 perf_event_init_userpage(event);
4803 perf_event_update_userpage(event);
4804 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02004805 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
4806 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004807 if (!ret)
4808 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004809 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004810
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004811unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004812 if (!ret) {
4813 atomic_long_add(user_extra, &user->locked_vm);
4814 vma->vm_mm->pinned_vm += extra;
4815
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004816 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004817 } else if (rb) {
4818 atomic_dec(&rb->mmap_count);
4819 }
4820aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004821 mutex_unlock(&event->mmap_mutex);
4822
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004823 /*
4824 * Since pinned accounting is per vm we cannot allow fork() to copy our
4825 * vma.
4826 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004827 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004828 vma->vm_ops = &perf_mmap_vmops;
4829
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004830 if (event->pmu->event_mapped)
4831 event->pmu->event_mapped(event);
4832
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004833 return ret;
4834}
4835
4836static int perf_fasync(int fd, struct file *filp, int on)
4837{
Al Viro496ad9a2013-01-23 17:07:38 -05004838 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004839 struct perf_event *event = filp->private_data;
4840 int retval;
4841
4842 mutex_lock(&inode->i_mutex);
4843 retval = fasync_helper(fd, filp, on, &event->fasync);
4844 mutex_unlock(&inode->i_mutex);
4845
4846 if (retval < 0)
4847 return retval;
4848
4849 return 0;
4850}
4851
4852static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01004853 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004854 .release = perf_release,
4855 .read = perf_read,
4856 .poll = perf_poll,
4857 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01004858 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004859 .mmap = perf_mmap,
4860 .fasync = perf_fasync,
4861};
4862
4863/*
4864 * Perf event wakeup
4865 *
4866 * If there's data, ensure we set the poll() state and publish everything
4867 * to user-space before waking everybody up.
4868 */
4869
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02004870static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
4871{
4872 /* only the parent has fasync state */
4873 if (event->parent)
4874 event = event->parent;
4875 return &event->fasync;
4876}
4877
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004878void perf_event_wakeup(struct perf_event *event)
4879{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004880 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004881
4882 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02004883 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004884 event->pending_kill = 0;
4885 }
4886}
4887
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004888static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004889{
4890 struct perf_event *event = container_of(entry,
4891 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01004892 int rctx;
4893
4894 rctx = perf_swevent_get_recursion_context();
4895 /*
4896 * If we 'fail' here, that's OK, it means recursion is already disabled
4897 * and we won't recurse 'further'.
4898 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004899
4900 if (event->pending_disable) {
4901 event->pending_disable = 0;
4902 __perf_event_disable(event);
4903 }
4904
4905 if (event->pending_wakeup) {
4906 event->pending_wakeup = 0;
4907 perf_event_wakeup(event);
4908 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01004909
4910 if (rctx >= 0)
4911 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004912}
4913
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004914/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004915 * We assume there is only KVM supporting the callbacks.
4916 * Later on, we might change it to a list if there is
4917 * another virtualization implementation supporting the callbacks.
4918 */
4919struct perf_guest_info_callbacks *perf_guest_cbs;
4920
4921int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4922{
4923 perf_guest_cbs = cbs;
4924 return 0;
4925}
4926EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
4927
4928int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4929{
4930 perf_guest_cbs = NULL;
4931 return 0;
4932}
4933EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
4934
Jiri Olsa40189942012-08-07 15:20:37 +02004935static void
4936perf_output_sample_regs(struct perf_output_handle *handle,
4937 struct pt_regs *regs, u64 mask)
4938{
4939 int bit;
4940
4941 for_each_set_bit(bit, (const unsigned long *) &mask,
4942 sizeof(mask) * BITS_PER_BYTE) {
4943 u64 val;
4944
4945 val = perf_reg_value(regs, bit);
4946 perf_output_put(handle, val);
4947 }
4948}
4949
Stephane Eranian60e23642014-09-24 13:48:37 +02004950static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004951 struct pt_regs *regs,
4952 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02004953{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004954 if (user_mode(regs)) {
4955 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02004956 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004957 } else if (current->mm) {
4958 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02004959 } else {
4960 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
4961 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02004962 }
4963}
4964
Stephane Eranian60e23642014-09-24 13:48:37 +02004965static void perf_sample_regs_intr(struct perf_regs *regs_intr,
4966 struct pt_regs *regs)
4967{
4968 regs_intr->regs = regs;
4969 regs_intr->abi = perf_reg_abi(current);
4970}
4971
4972
Jiri Olsac5ebced2012-08-07 15:20:40 +02004973/*
4974 * Get remaining task size from user stack pointer.
4975 *
4976 * It'd be better to take stack vma map and limit this more
4977 * precisly, but there's no way to get it safely under interrupt,
4978 * so using TASK_SIZE as limit.
4979 */
4980static u64 perf_ustack_task_size(struct pt_regs *regs)
4981{
4982 unsigned long addr = perf_user_stack_pointer(regs);
4983
4984 if (!addr || addr >= TASK_SIZE)
4985 return 0;
4986
4987 return TASK_SIZE - addr;
4988}
4989
4990static u16
4991perf_sample_ustack_size(u16 stack_size, u16 header_size,
4992 struct pt_regs *regs)
4993{
4994 u64 task_size;
4995
4996 /* No regs, no stack pointer, no dump. */
4997 if (!regs)
4998 return 0;
4999
5000 /*
5001 * Check if we fit in with the requested stack size into the:
5002 * - TASK_SIZE
5003 * If we don't, we limit the size to the TASK_SIZE.
5004 *
5005 * - remaining sample size
5006 * If we don't, we customize the stack size to
5007 * fit in to the remaining sample size.
5008 */
5009
5010 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5011 stack_size = min(stack_size, (u16) task_size);
5012
5013 /* Current header size plus static size and dynamic size. */
5014 header_size += 2 * sizeof(u64);
5015
5016 /* Do we fit in with the current stack dump size? */
5017 if ((u16) (header_size + stack_size) < header_size) {
5018 /*
5019 * If we overflow the maximum size for the sample,
5020 * we customize the stack dump size to fit in.
5021 */
5022 stack_size = USHRT_MAX - header_size - sizeof(u64);
5023 stack_size = round_up(stack_size, sizeof(u64));
5024 }
5025
5026 return stack_size;
5027}
5028
5029static void
5030perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5031 struct pt_regs *regs)
5032{
5033 /* Case of a kernel thread, nothing to dump */
5034 if (!regs) {
5035 u64 size = 0;
5036 perf_output_put(handle, size);
5037 } else {
5038 unsigned long sp;
5039 unsigned int rem;
5040 u64 dyn_size;
5041
5042 /*
5043 * We dump:
5044 * static size
5045 * - the size requested by user or the best one we can fit
5046 * in to the sample max size
5047 * data
5048 * - user stack dump data
5049 * dynamic size
5050 * - the actual dumped size
5051 */
5052
5053 /* Static size. */
5054 perf_output_put(handle, dump_size);
5055
5056 /* Data. */
5057 sp = perf_user_stack_pointer(regs);
5058 rem = __output_copy_user(handle, (void *) sp, dump_size);
5059 dyn_size = dump_size - rem;
5060
5061 perf_output_skip(handle, rem);
5062
5063 /* Dynamic size. */
5064 perf_output_put(handle, dyn_size);
5065 }
5066}
5067
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005068static void __perf_event_header__init_id(struct perf_event_header *header,
5069 struct perf_sample_data *data,
5070 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005071{
5072 u64 sample_type = event->attr.sample_type;
5073
5074 data->type = sample_type;
5075 header->size += event->id_header_size;
5076
5077 if (sample_type & PERF_SAMPLE_TID) {
5078 /* namespace issues */
5079 data->tid_entry.pid = perf_event_pid(event, current);
5080 data->tid_entry.tid = perf_event_tid(event, current);
5081 }
5082
5083 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01005084 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005085
Adrian Hunterff3d5272013-08-27 11:23:07 +03005086 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005087 data->id = primary_event_id(event);
5088
5089 if (sample_type & PERF_SAMPLE_STREAM_ID)
5090 data->stream_id = event->id;
5091
5092 if (sample_type & PERF_SAMPLE_CPU) {
5093 data->cpu_entry.cpu = raw_smp_processor_id();
5094 data->cpu_entry.reserved = 0;
5095 }
5096}
5097
Frederic Weisbecker76369132011-05-19 19:55:04 +02005098void perf_event_header__init_id(struct perf_event_header *header,
5099 struct perf_sample_data *data,
5100 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005101{
5102 if (event->attr.sample_id_all)
5103 __perf_event_header__init_id(header, data, event);
5104}
5105
5106static void __perf_event__output_id_sample(struct perf_output_handle *handle,
5107 struct perf_sample_data *data)
5108{
5109 u64 sample_type = data->type;
5110
5111 if (sample_type & PERF_SAMPLE_TID)
5112 perf_output_put(handle, data->tid_entry);
5113
5114 if (sample_type & PERF_SAMPLE_TIME)
5115 perf_output_put(handle, data->time);
5116
5117 if (sample_type & PERF_SAMPLE_ID)
5118 perf_output_put(handle, data->id);
5119
5120 if (sample_type & PERF_SAMPLE_STREAM_ID)
5121 perf_output_put(handle, data->stream_id);
5122
5123 if (sample_type & PERF_SAMPLE_CPU)
5124 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03005125
5126 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5127 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005128}
5129
Frederic Weisbecker76369132011-05-19 19:55:04 +02005130void perf_event__output_id_sample(struct perf_event *event,
5131 struct perf_output_handle *handle,
5132 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005133{
5134 if (event->attr.sample_id_all)
5135 __perf_event__output_id_sample(handle, sample);
5136}
5137
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005138static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005139 struct perf_event *event,
5140 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005141{
5142 u64 read_format = event->attr.read_format;
5143 u64 values[4];
5144 int n = 0;
5145
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005146 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005147 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005148 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005149 atomic64_read(&event->child_total_time_enabled);
5150 }
5151 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005152 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005153 atomic64_read(&event->child_total_time_running);
5154 }
5155 if (read_format & PERF_FORMAT_ID)
5156 values[n++] = primary_event_id(event);
5157
Frederic Weisbecker76369132011-05-19 19:55:04 +02005158 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005159}
5160
5161/*
5162 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
5163 */
5164static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005165 struct perf_event *event,
5166 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005167{
5168 struct perf_event *leader = event->group_leader, *sub;
5169 u64 read_format = event->attr.read_format;
5170 u64 values[5];
5171 int n = 0;
5172
5173 values[n++] = 1 + leader->nr_siblings;
5174
5175 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02005176 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005177
5178 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02005179 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005180
5181 if (leader != event)
5182 leader->pmu->read(leader);
5183
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005184 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005185 if (read_format & PERF_FORMAT_ID)
5186 values[n++] = primary_event_id(leader);
5187
Frederic Weisbecker76369132011-05-19 19:55:04 +02005188 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005189
5190 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
5191 n = 0;
5192
Jiri Olsa6f5ab002012-10-15 20:13:45 +02005193 if ((sub != event) &&
5194 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005195 sub->pmu->read(sub);
5196
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005197 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005198 if (read_format & PERF_FORMAT_ID)
5199 values[n++] = primary_event_id(sub);
5200
Frederic Weisbecker76369132011-05-19 19:55:04 +02005201 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005202 }
5203}
5204
Stephane Eranianeed01522010-10-26 16:08:01 +02005205#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
5206 PERF_FORMAT_TOTAL_TIME_RUNNING)
5207
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005208static void perf_output_read(struct perf_output_handle *handle,
5209 struct perf_event *event)
5210{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005211 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02005212 u64 read_format = event->attr.read_format;
5213
5214 /*
5215 * compute total_time_enabled, total_time_running
5216 * based on snapshot values taken when the event
5217 * was last scheduled in.
5218 *
5219 * we cannot simply called update_context_time()
5220 * because of locking issue as we are called in
5221 * NMI context
5222 */
Eric B Munsonc4794292011-06-23 16:34:38 -04005223 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005224 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02005225
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005226 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02005227 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005228 else
Stephane Eranianeed01522010-10-26 16:08:01 +02005229 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005230}
5231
5232void perf_output_sample(struct perf_output_handle *handle,
5233 struct perf_event_header *header,
5234 struct perf_sample_data *data,
5235 struct perf_event *event)
5236{
5237 u64 sample_type = data->type;
5238
5239 perf_output_put(handle, *header);
5240
Adrian Hunterff3d5272013-08-27 11:23:07 +03005241 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5242 perf_output_put(handle, data->id);
5243
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005244 if (sample_type & PERF_SAMPLE_IP)
5245 perf_output_put(handle, data->ip);
5246
5247 if (sample_type & PERF_SAMPLE_TID)
5248 perf_output_put(handle, data->tid_entry);
5249
5250 if (sample_type & PERF_SAMPLE_TIME)
5251 perf_output_put(handle, data->time);
5252
5253 if (sample_type & PERF_SAMPLE_ADDR)
5254 perf_output_put(handle, data->addr);
5255
5256 if (sample_type & PERF_SAMPLE_ID)
5257 perf_output_put(handle, data->id);
5258
5259 if (sample_type & PERF_SAMPLE_STREAM_ID)
5260 perf_output_put(handle, data->stream_id);
5261
5262 if (sample_type & PERF_SAMPLE_CPU)
5263 perf_output_put(handle, data->cpu_entry);
5264
5265 if (sample_type & PERF_SAMPLE_PERIOD)
5266 perf_output_put(handle, data->period);
5267
5268 if (sample_type & PERF_SAMPLE_READ)
5269 perf_output_read(handle, event);
5270
5271 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5272 if (data->callchain) {
5273 int size = 1;
5274
5275 if (data->callchain)
5276 size += data->callchain->nr;
5277
5278 size *= sizeof(u64);
5279
Frederic Weisbecker76369132011-05-19 19:55:04 +02005280 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005281 } else {
5282 u64 nr = 0;
5283 perf_output_put(handle, nr);
5284 }
5285 }
5286
5287 if (sample_type & PERF_SAMPLE_RAW) {
5288 if (data->raw) {
5289 perf_output_put(handle, data->raw->size);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005290 __output_copy(handle, data->raw->data,
5291 data->raw->size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005292 } else {
5293 struct {
5294 u32 size;
5295 u32 data;
5296 } raw = {
5297 .size = sizeof(u32),
5298 .data = 0,
5299 };
5300 perf_output_put(handle, raw);
5301 }
5302 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005303
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005304 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5305 if (data->br_stack) {
5306 size_t size;
5307
5308 size = data->br_stack->nr
5309 * sizeof(struct perf_branch_entry);
5310
5311 perf_output_put(handle, data->br_stack->nr);
5312 perf_output_copy(handle, data->br_stack->entries, size);
5313 } else {
5314 /*
5315 * we always store at least the value of nr
5316 */
5317 u64 nr = 0;
5318 perf_output_put(handle, nr);
5319 }
5320 }
Jiri Olsa40189942012-08-07 15:20:37 +02005321
5322 if (sample_type & PERF_SAMPLE_REGS_USER) {
5323 u64 abi = data->regs_user.abi;
5324
5325 /*
5326 * If there are no regs to dump, notice it through
5327 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5328 */
5329 perf_output_put(handle, abi);
5330
5331 if (abi) {
5332 u64 mask = event->attr.sample_regs_user;
5333 perf_output_sample_regs(handle,
5334 data->regs_user.regs,
5335 mask);
5336 }
5337 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005338
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005339 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005340 perf_output_sample_ustack(handle,
5341 data->stack_user_size,
5342 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005343 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005344
5345 if (sample_type & PERF_SAMPLE_WEIGHT)
5346 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005347
5348 if (sample_type & PERF_SAMPLE_DATA_SRC)
5349 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005350
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005351 if (sample_type & PERF_SAMPLE_TRANSACTION)
5352 perf_output_put(handle, data->txn);
5353
Stephane Eranian60e23642014-09-24 13:48:37 +02005354 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5355 u64 abi = data->regs_intr.abi;
5356 /*
5357 * If there are no regs to dump, notice it through
5358 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5359 */
5360 perf_output_put(handle, abi);
5361
5362 if (abi) {
5363 u64 mask = event->attr.sample_regs_intr;
5364
5365 perf_output_sample_regs(handle,
5366 data->regs_intr.regs,
5367 mask);
5368 }
5369 }
5370
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005371 if (!event->attr.watermark) {
5372 int wakeup_events = event->attr.wakeup_events;
5373
5374 if (wakeup_events) {
5375 struct ring_buffer *rb = handle->rb;
5376 int events = local_inc_return(&rb->events);
5377
5378 if (events >= wakeup_events) {
5379 local_sub(wakeup_events, &rb->events);
5380 local_inc(&rb->wakeup);
5381 }
5382 }
5383 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005384}
5385
5386void perf_prepare_sample(struct perf_event_header *header,
5387 struct perf_sample_data *data,
5388 struct perf_event *event,
5389 struct pt_regs *regs)
5390{
5391 u64 sample_type = event->attr.sample_type;
5392
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005393 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005394 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005395
5396 header->misc = 0;
5397 header->misc |= perf_misc_flags(regs);
5398
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005399 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005400
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005401 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005402 data->ip = perf_instruction_pointer(regs);
5403
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005404 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5405 int size = 1;
5406
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005407 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005408
5409 if (data->callchain)
5410 size += data->callchain->nr;
5411
5412 header->size += size * sizeof(u64);
5413 }
5414
5415 if (sample_type & PERF_SAMPLE_RAW) {
5416 int size = sizeof(u32);
5417
5418 if (data->raw)
5419 size += data->raw->size;
5420 else
5421 size += sizeof(u32);
5422
5423 WARN_ON_ONCE(size & (sizeof(u64)-1));
5424 header->size += size;
5425 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005426
5427 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5428 int size = sizeof(u64); /* nr */
5429 if (data->br_stack) {
5430 size += data->br_stack->nr
5431 * sizeof(struct perf_branch_entry);
5432 }
5433 header->size += size;
5434 }
Jiri Olsa40189942012-08-07 15:20:37 +02005435
Peter Zijlstra25657112014-09-24 13:48:42 +02005436 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005437 perf_sample_regs_user(&data->regs_user, regs,
5438 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005439
Jiri Olsa40189942012-08-07 15:20:37 +02005440 if (sample_type & PERF_SAMPLE_REGS_USER) {
5441 /* regs dump ABI info */
5442 int size = sizeof(u64);
5443
Jiri Olsa40189942012-08-07 15:20:37 +02005444 if (data->regs_user.regs) {
5445 u64 mask = event->attr.sample_regs_user;
5446 size += hweight64(mask) * sizeof(u64);
5447 }
5448
5449 header->size += size;
5450 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005451
5452 if (sample_type & PERF_SAMPLE_STACK_USER) {
5453 /*
5454 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
5455 * processed as the last one or have additional check added
5456 * in case new sample type is added, because we could eat
5457 * up the rest of the sample size.
5458 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02005459 u16 stack_size = event->attr.sample_stack_user;
5460 u16 size = sizeof(u64);
5461
Jiri Olsac5ebced2012-08-07 15:20:40 +02005462 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02005463 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02005464
5465 /*
5466 * If there is something to dump, add space for the dump
5467 * itself and for the field that tells the dynamic size,
5468 * which is how many have been actually dumped.
5469 */
5470 if (stack_size)
5471 size += sizeof(u64) + stack_size;
5472
5473 data->stack_user_size = stack_size;
5474 header->size += size;
5475 }
Stephane Eranian60e23642014-09-24 13:48:37 +02005476
5477 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5478 /* regs dump ABI info */
5479 int size = sizeof(u64);
5480
5481 perf_sample_regs_intr(&data->regs_intr, regs);
5482
5483 if (data->regs_intr.regs) {
5484 u64 mask = event->attr.sample_regs_intr;
5485
5486 size += hweight64(mask) * sizeof(u64);
5487 }
5488
5489 header->size += size;
5490 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005491}
5492
Yan, Zheng21509082015-05-06 15:33:49 -04005493void perf_event_output(struct perf_event *event,
5494 struct perf_sample_data *data,
5495 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005496{
5497 struct perf_output_handle handle;
5498 struct perf_event_header header;
5499
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005500 /* protect the callchain buffers */
5501 rcu_read_lock();
5502
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005503 perf_prepare_sample(&header, data, event, regs);
5504
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005505 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005506 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005507
5508 perf_output_sample(&handle, &header, data, event);
5509
5510 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005511
5512exit:
5513 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005514}
5515
5516/*
5517 * read event_id
5518 */
5519
5520struct perf_read_event {
5521 struct perf_event_header header;
5522
5523 u32 pid;
5524 u32 tid;
5525};
5526
5527static void
5528perf_event_read_event(struct perf_event *event,
5529 struct task_struct *task)
5530{
5531 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005532 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005533 struct perf_read_event read_event = {
5534 .header = {
5535 .type = PERF_RECORD_READ,
5536 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005537 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005538 },
5539 .pid = perf_event_pid(event, task),
5540 .tid = perf_event_tid(event, task),
5541 };
5542 int ret;
5543
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005544 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005545 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005546 if (ret)
5547 return;
5548
5549 perf_output_put(&handle, read_event);
5550 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005551 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005552
5553 perf_output_end(&handle);
5554}
5555
Jiri Olsa52d857a2013-05-06 18:27:18 +02005556typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
5557
5558static void
5559perf_event_aux_ctx(struct perf_event_context *ctx,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005560 perf_event_aux_output_cb output,
5561 void *data)
5562{
5563 struct perf_event *event;
5564
5565 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5566 if (event->state < PERF_EVENT_STATE_INACTIVE)
5567 continue;
5568 if (!event_filter_match(event))
5569 continue;
Jiri Olsa67516842013-07-09 18:56:31 +02005570 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005571 }
5572}
5573
5574static void
Jiri Olsa67516842013-07-09 18:56:31 +02005575perf_event_aux(perf_event_aux_output_cb output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005576 struct perf_event_context *task_ctx)
5577{
5578 struct perf_cpu_context *cpuctx;
5579 struct perf_event_context *ctx;
5580 struct pmu *pmu;
5581 int ctxn;
5582
5583 rcu_read_lock();
5584 list_for_each_entry_rcu(pmu, &pmus, entry) {
5585 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
5586 if (cpuctx->unique_pmu != pmu)
5587 goto next;
Jiri Olsa67516842013-07-09 18:56:31 +02005588 perf_event_aux_ctx(&cpuctx->ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005589 if (task_ctx)
5590 goto next;
5591 ctxn = pmu->task_ctx_nr;
5592 if (ctxn < 0)
5593 goto next;
5594 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
5595 if (ctx)
Jiri Olsa67516842013-07-09 18:56:31 +02005596 perf_event_aux_ctx(ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005597next:
5598 put_cpu_ptr(pmu->pmu_cpu_context);
5599 }
5600
5601 if (task_ctx) {
5602 preempt_disable();
Jiri Olsa67516842013-07-09 18:56:31 +02005603 perf_event_aux_ctx(task_ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005604 preempt_enable();
5605 }
5606 rcu_read_unlock();
5607}
5608
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005609/*
5610 * task tracking -- fork/exit
5611 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02005612 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005613 */
5614
5615struct perf_task_event {
5616 struct task_struct *task;
5617 struct perf_event_context *task_ctx;
5618
5619 struct {
5620 struct perf_event_header header;
5621
5622 u32 pid;
5623 u32 ppid;
5624 u32 tid;
5625 u32 ptid;
5626 u64 time;
5627 } event_id;
5628};
5629
Jiri Olsa67516842013-07-09 18:56:31 +02005630static int perf_event_task_match(struct perf_event *event)
5631{
Stephane Eranian13d7a242013-08-21 12:10:24 +02005632 return event->attr.comm || event->attr.mmap ||
5633 event->attr.mmap2 || event->attr.mmap_data ||
5634 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02005635}
5636
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005637static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005638 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005639{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005640 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005641 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005642 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005643 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005644 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01005645
Jiri Olsa67516842013-07-09 18:56:31 +02005646 if (!perf_event_task_match(event))
5647 return;
5648
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005649 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005650
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005651 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005652 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02005653 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005654 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005655
5656 task_event->event_id.pid = perf_event_pid(event, task);
5657 task_event->event_id.ppid = perf_event_pid(event, current);
5658
5659 task_event->event_id.tid = perf_event_tid(event, task);
5660 task_event->event_id.ptid = perf_event_tid(event, current);
5661
Peter Zijlstra34f43922015-02-20 14:05:38 +01005662 task_event->event_id.time = perf_event_clock(event);
5663
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005664 perf_output_put(&handle, task_event->event_id);
5665
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005666 perf_event__output_id_sample(event, &handle, &sample);
5667
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005668 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005669out:
5670 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005671}
5672
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005673static void perf_event_task(struct task_struct *task,
5674 struct perf_event_context *task_ctx,
5675 int new)
5676{
5677 struct perf_task_event task_event;
5678
5679 if (!atomic_read(&nr_comm_events) &&
5680 !atomic_read(&nr_mmap_events) &&
5681 !atomic_read(&nr_task_events))
5682 return;
5683
5684 task_event = (struct perf_task_event){
5685 .task = task,
5686 .task_ctx = task_ctx,
5687 .event_id = {
5688 .header = {
5689 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
5690 .misc = 0,
5691 .size = sizeof(task_event.event_id),
5692 },
5693 /* .pid */
5694 /* .ppid */
5695 /* .tid */
5696 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01005697 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005698 },
5699 };
5700
Jiri Olsa67516842013-07-09 18:56:31 +02005701 perf_event_aux(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005702 &task_event,
5703 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005704}
5705
5706void perf_event_fork(struct task_struct *task)
5707{
5708 perf_event_task(task, NULL, 1);
5709}
5710
5711/*
5712 * comm tracking
5713 */
5714
5715struct perf_comm_event {
5716 struct task_struct *task;
5717 char *comm;
5718 int comm_size;
5719
5720 struct {
5721 struct perf_event_header header;
5722
5723 u32 pid;
5724 u32 tid;
5725 } event_id;
5726};
5727
Jiri Olsa67516842013-07-09 18:56:31 +02005728static int perf_event_comm_match(struct perf_event *event)
5729{
5730 return event->attr.comm;
5731}
5732
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005733static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005734 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005735{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005736 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005737 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005738 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005739 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005740 int ret;
5741
Jiri Olsa67516842013-07-09 18:56:31 +02005742 if (!perf_event_comm_match(event))
5743 return;
5744
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005745 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
5746 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005747 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005748
5749 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005750 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005751
5752 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
5753 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
5754
5755 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005756 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005757 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005758
5759 perf_event__output_id_sample(event, &handle, &sample);
5760
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005761 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005762out:
5763 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005764}
5765
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005766static void perf_event_comm_event(struct perf_comm_event *comm_event)
5767{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005768 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005769 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005770
5771 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01005772 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005773 size = ALIGN(strlen(comm)+1, sizeof(u64));
5774
5775 comm_event->comm = comm;
5776 comm_event->comm_size = size;
5777
5778 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02005779
Jiri Olsa67516842013-07-09 18:56:31 +02005780 perf_event_aux(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005781 comm_event,
5782 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005783}
5784
Adrian Hunter82b89772014-05-28 11:45:04 +03005785void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005786{
5787 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005788
5789 if (!atomic_read(&nr_comm_events))
5790 return;
5791
5792 comm_event = (struct perf_comm_event){
5793 .task = task,
5794 /* .comm */
5795 /* .comm_size */
5796 .event_id = {
5797 .header = {
5798 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03005799 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005800 /* .size */
5801 },
5802 /* .pid */
5803 /* .tid */
5804 },
5805 };
5806
5807 perf_event_comm_event(&comm_event);
5808}
5809
5810/*
5811 * mmap tracking
5812 */
5813
5814struct perf_mmap_event {
5815 struct vm_area_struct *vma;
5816
5817 const char *file_name;
5818 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005819 int maj, min;
5820 u64 ino;
5821 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005822 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005823
5824 struct {
5825 struct perf_event_header header;
5826
5827 u32 pid;
5828 u32 tid;
5829 u64 start;
5830 u64 len;
5831 u64 pgoff;
5832 } event_id;
5833};
5834
Jiri Olsa67516842013-07-09 18:56:31 +02005835static int perf_event_mmap_match(struct perf_event *event,
5836 void *data)
5837{
5838 struct perf_mmap_event *mmap_event = data;
5839 struct vm_area_struct *vma = mmap_event->vma;
5840 int executable = vma->vm_flags & VM_EXEC;
5841
5842 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02005843 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02005844}
5845
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005846static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005847 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005848{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005849 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005850 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005851 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005852 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005853 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005854
Jiri Olsa67516842013-07-09 18:56:31 +02005855 if (!perf_event_mmap_match(event, data))
5856 return;
5857
Stephane Eranian13d7a242013-08-21 12:10:24 +02005858 if (event->attr.mmap2) {
5859 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
5860 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
5861 mmap_event->event_id.header.size += sizeof(mmap_event->min);
5862 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03005863 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005864 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
5865 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005866 }
5867
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005868 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
5869 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005870 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005871 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005872 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005873
5874 mmap_event->event_id.pid = perf_event_pid(event, current);
5875 mmap_event->event_id.tid = perf_event_tid(event, current);
5876
5877 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005878
5879 if (event->attr.mmap2) {
5880 perf_output_put(&handle, mmap_event->maj);
5881 perf_output_put(&handle, mmap_event->min);
5882 perf_output_put(&handle, mmap_event->ino);
5883 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005884 perf_output_put(&handle, mmap_event->prot);
5885 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005886 }
5887
Frederic Weisbecker76369132011-05-19 19:55:04 +02005888 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005889 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005890
5891 perf_event__output_id_sample(event, &handle, &sample);
5892
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005893 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005894out:
5895 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005896}
5897
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005898static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
5899{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005900 struct vm_area_struct *vma = mmap_event->vma;
5901 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005902 int maj = 0, min = 0;
5903 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005904 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005905 unsigned int size;
5906 char tmp[16];
5907 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005908 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005909
5910 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02005911 struct inode *inode;
5912 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005913
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005914 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005915 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005916 name = "//enomem";
5917 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005918 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005919 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005920 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005921 * need to add enough zero bytes after the string to handle
5922 * the 64bit alignment we do later.
5923 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02005924 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005925 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005926 name = "//toolong";
5927 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005928 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02005929 inode = file_inode(vma->vm_file);
5930 dev = inode->i_sb->s_dev;
5931 ino = inode->i_ino;
5932 gen = inode->i_generation;
5933 maj = MAJOR(dev);
5934 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005935
5936 if (vma->vm_flags & VM_READ)
5937 prot |= PROT_READ;
5938 if (vma->vm_flags & VM_WRITE)
5939 prot |= PROT_WRITE;
5940 if (vma->vm_flags & VM_EXEC)
5941 prot |= PROT_EXEC;
5942
5943 if (vma->vm_flags & VM_MAYSHARE)
5944 flags = MAP_SHARED;
5945 else
5946 flags = MAP_PRIVATE;
5947
5948 if (vma->vm_flags & VM_DENYWRITE)
5949 flags |= MAP_DENYWRITE;
5950 if (vma->vm_flags & VM_MAYEXEC)
5951 flags |= MAP_EXECUTABLE;
5952 if (vma->vm_flags & VM_LOCKED)
5953 flags |= MAP_LOCKED;
5954 if (vma->vm_flags & VM_HUGETLB)
5955 flags |= MAP_HUGETLB;
5956
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005957 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005958 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02005959 if (vma->vm_ops && vma->vm_ops->name) {
5960 name = (char *) vma->vm_ops->name(vma);
5961 if (name)
5962 goto cpy_name;
5963 }
5964
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005965 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005966 if (name)
5967 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005968
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005969 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005970 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005971 name = "[heap]";
5972 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005973 }
5974 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005975 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005976 name = "[stack]";
5977 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005978 }
5979
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005980 name = "//anon";
5981 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005982 }
5983
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005984cpy_name:
5985 strlcpy(tmp, name, sizeof(tmp));
5986 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005987got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005988 /*
5989 * Since our buffer works in 8 byte units we need to align our string
5990 * size to a multiple of 8. However, we must guarantee the tail end is
5991 * zero'd out to avoid leaking random bits to userspace.
5992 */
5993 size = strlen(name)+1;
5994 while (!IS_ALIGNED(size, sizeof(u64)))
5995 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005996
5997 mmap_event->file_name = name;
5998 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005999 mmap_event->maj = maj;
6000 mmap_event->min = min;
6001 mmap_event->ino = ino;
6002 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006003 mmap_event->prot = prot;
6004 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006005
Stephane Eranian2fe85422013-01-24 16:10:39 +01006006 if (!(vma->vm_flags & VM_EXEC))
6007 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
6008
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006009 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
6010
Jiri Olsa67516842013-07-09 18:56:31 +02006011 perf_event_aux(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006012 mmap_event,
6013 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006014
6015 kfree(buf);
6016}
6017
Eric B Munson3af9e852010-05-18 15:30:49 +01006018void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006019{
6020 struct perf_mmap_event mmap_event;
6021
6022 if (!atomic_read(&nr_mmap_events))
6023 return;
6024
6025 mmap_event = (struct perf_mmap_event){
6026 .vma = vma,
6027 /* .file_name */
6028 /* .file_size */
6029 .event_id = {
6030 .header = {
6031 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006032 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006033 /* .size */
6034 },
6035 /* .pid */
6036 /* .tid */
6037 .start = vma->vm_start,
6038 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01006039 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006040 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02006041 /* .maj (attr_mmap2 only) */
6042 /* .min (attr_mmap2 only) */
6043 /* .ino (attr_mmap2 only) */
6044 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006045 /* .prot (attr_mmap2 only) */
6046 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006047 };
6048
6049 perf_event_mmap_event(&mmap_event);
6050}
6051
Alexander Shishkin68db7e92015-01-14 14:18:15 +02006052void perf_event_aux_event(struct perf_event *event, unsigned long head,
6053 unsigned long size, u64 flags)
6054{
6055 struct perf_output_handle handle;
6056 struct perf_sample_data sample;
6057 struct perf_aux_event {
6058 struct perf_event_header header;
6059 u64 offset;
6060 u64 size;
6061 u64 flags;
6062 } rec = {
6063 .header = {
6064 .type = PERF_RECORD_AUX,
6065 .misc = 0,
6066 .size = sizeof(rec),
6067 },
6068 .offset = head,
6069 .size = size,
6070 .flags = flags,
6071 };
6072 int ret;
6073
6074 perf_event_header__init_id(&rec.header, &sample, event);
6075 ret = perf_output_begin(&handle, event, rec.header.size);
6076
6077 if (ret)
6078 return;
6079
6080 perf_output_put(&handle, rec);
6081 perf_event__output_id_sample(event, &handle, &sample);
6082
6083 perf_output_end(&handle);
6084}
6085
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006086/*
Kan Liangf38b0db2015-05-10 15:13:14 -04006087 * Lost/dropped samples logging
6088 */
6089void perf_log_lost_samples(struct perf_event *event, u64 lost)
6090{
6091 struct perf_output_handle handle;
6092 struct perf_sample_data sample;
6093 int ret;
6094
6095 struct {
6096 struct perf_event_header header;
6097 u64 lost;
6098 } lost_samples_event = {
6099 .header = {
6100 .type = PERF_RECORD_LOST_SAMPLES,
6101 .misc = 0,
6102 .size = sizeof(lost_samples_event),
6103 },
6104 .lost = lost,
6105 };
6106
6107 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
6108
6109 ret = perf_output_begin(&handle, event,
6110 lost_samples_event.header.size);
6111 if (ret)
6112 return;
6113
6114 perf_output_put(&handle, lost_samples_event);
6115 perf_event__output_id_sample(event, &handle, &sample);
6116 perf_output_end(&handle);
6117}
6118
6119/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03006120 * context_switch tracking
6121 */
6122
6123struct perf_switch_event {
6124 struct task_struct *task;
6125 struct task_struct *next_prev;
6126
6127 struct {
6128 struct perf_event_header header;
6129 u32 next_prev_pid;
6130 u32 next_prev_tid;
6131 } event_id;
6132};
6133
6134static int perf_event_switch_match(struct perf_event *event)
6135{
6136 return event->attr.context_switch;
6137}
6138
6139static void perf_event_switch_output(struct perf_event *event, void *data)
6140{
6141 struct perf_switch_event *se = data;
6142 struct perf_output_handle handle;
6143 struct perf_sample_data sample;
6144 int ret;
6145
6146 if (!perf_event_switch_match(event))
6147 return;
6148
6149 /* Only CPU-wide events are allowed to see next/prev pid/tid */
6150 if (event->ctx->task) {
6151 se->event_id.header.type = PERF_RECORD_SWITCH;
6152 se->event_id.header.size = sizeof(se->event_id.header);
6153 } else {
6154 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
6155 se->event_id.header.size = sizeof(se->event_id);
6156 se->event_id.next_prev_pid =
6157 perf_event_pid(event, se->next_prev);
6158 se->event_id.next_prev_tid =
6159 perf_event_tid(event, se->next_prev);
6160 }
6161
6162 perf_event_header__init_id(&se->event_id.header, &sample, event);
6163
6164 ret = perf_output_begin(&handle, event, se->event_id.header.size);
6165 if (ret)
6166 return;
6167
6168 if (event->ctx->task)
6169 perf_output_put(&handle, se->event_id.header);
6170 else
6171 perf_output_put(&handle, se->event_id);
6172
6173 perf_event__output_id_sample(event, &handle, &sample);
6174
6175 perf_output_end(&handle);
6176}
6177
6178static void perf_event_switch(struct task_struct *task,
6179 struct task_struct *next_prev, bool sched_in)
6180{
6181 struct perf_switch_event switch_event;
6182
6183 /* N.B. caller checks nr_switch_events != 0 */
6184
6185 switch_event = (struct perf_switch_event){
6186 .task = task,
6187 .next_prev = next_prev,
6188 .event_id = {
6189 .header = {
6190 /* .type */
6191 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
6192 /* .size */
6193 },
6194 /* .next_prev_pid */
6195 /* .next_prev_tid */
6196 },
6197 };
6198
6199 perf_event_aux(perf_event_switch_output,
6200 &switch_event,
6201 NULL);
6202}
6203
6204/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006205 * IRQ throttle logging
6206 */
6207
6208static void perf_log_throttle(struct perf_event *event, int enable)
6209{
6210 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006211 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006212 int ret;
6213
6214 struct {
6215 struct perf_event_header header;
6216 u64 time;
6217 u64 id;
6218 u64 stream_id;
6219 } throttle_event = {
6220 .header = {
6221 .type = PERF_RECORD_THROTTLE,
6222 .misc = 0,
6223 .size = sizeof(throttle_event),
6224 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01006225 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006226 .id = primary_event_id(event),
6227 .stream_id = event->id,
6228 };
6229
6230 if (enable)
6231 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
6232
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006233 perf_event_header__init_id(&throttle_event.header, &sample, event);
6234
6235 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006236 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006237 if (ret)
6238 return;
6239
6240 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006241 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006242 perf_output_end(&handle);
6243}
6244
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006245static void perf_log_itrace_start(struct perf_event *event)
6246{
6247 struct perf_output_handle handle;
6248 struct perf_sample_data sample;
6249 struct perf_aux_event {
6250 struct perf_event_header header;
6251 u32 pid;
6252 u32 tid;
6253 } rec;
6254 int ret;
6255
6256 if (event->parent)
6257 event = event->parent;
6258
6259 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
6260 event->hw.itrace_started)
6261 return;
6262
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006263 rec.header.type = PERF_RECORD_ITRACE_START;
6264 rec.header.misc = 0;
6265 rec.header.size = sizeof(rec);
6266 rec.pid = perf_event_pid(event, current);
6267 rec.tid = perf_event_tid(event, current);
6268
6269 perf_event_header__init_id(&rec.header, &sample, event);
6270 ret = perf_output_begin(&handle, event, rec.header.size);
6271
6272 if (ret)
6273 return;
6274
6275 perf_output_put(&handle, rec);
6276 perf_event__output_id_sample(event, &handle, &sample);
6277
6278 perf_output_end(&handle);
6279}
6280
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006281/*
6282 * Generic event overflow handling, sampling.
6283 */
6284
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006285static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006286 int throttle, struct perf_sample_data *data,
6287 struct pt_regs *regs)
6288{
6289 int events = atomic_read(&event->event_limit);
6290 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006291 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006292 int ret = 0;
6293
Peter Zijlstra96398822010-11-24 18:55:29 +01006294 /*
6295 * Non-sampling counters might still use the PMI to fold short
6296 * hardware counters, ignore those.
6297 */
6298 if (unlikely(!is_sampling_event(event)))
6299 return 0;
6300
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006301 seq = __this_cpu_read(perf_throttled_seq);
6302 if (seq != hwc->interrupts_seq) {
6303 hwc->interrupts_seq = seq;
6304 hwc->interrupts = 1;
6305 } else {
6306 hwc->interrupts++;
6307 if (unlikely(throttle
6308 && hwc->interrupts >= max_samples_per_tick)) {
6309 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01006310 hwc->interrupts = MAX_INTERRUPTS;
6311 perf_log_throttle(event, 0);
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02006312 tick_nohz_full_kick();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006313 ret = 1;
6314 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006315 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006316
6317 if (event->attr.freq) {
6318 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01006319 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006320
Peter Zijlstraabd50712010-01-26 18:50:16 +01006321 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006322
Peter Zijlstraabd50712010-01-26 18:50:16 +01006323 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01006324 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006325 }
6326
6327 /*
6328 * XXX event_limit might not quite work as expected on inherited
6329 * events
6330 */
6331
6332 event->pending_kill = POLL_IN;
6333 if (events && atomic_dec_and_test(&event->event_limit)) {
6334 ret = 1;
6335 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006336 event->pending_disable = 1;
6337 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006338 }
6339
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006340 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006341 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006342 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006343 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006344
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006345 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006346 event->pending_wakeup = 1;
6347 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02006348 }
6349
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006350 return ret;
6351}
6352
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006353int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006354 struct perf_sample_data *data,
6355 struct pt_regs *regs)
6356{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006357 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006358}
6359
6360/*
6361 * Generic software event infrastructure
6362 */
6363
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006364struct swevent_htable {
6365 struct swevent_hlist *swevent_hlist;
6366 struct mutex hlist_mutex;
6367 int hlist_refcount;
6368
6369 /* Recursion avoidance in each contexts */
6370 int recursion[PERF_NR_CONTEXTS];
Jiri Olsa39af6b12014-04-07 11:04:08 +02006371
6372 /* Keeps track of cpu being initialized/exited */
6373 bool online;
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006374};
6375
6376static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
6377
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006378/*
6379 * We directly increment event->count and keep a second value in
6380 * event->hw.period_left to count intervals. This period event
6381 * is kept in the range [-sample_period, 0] so that we can use the
6382 * sign as trigger.
6383 */
6384
Jiri Olsaab573842013-05-01 17:25:44 +02006385u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006386{
6387 struct hw_perf_event *hwc = &event->hw;
6388 u64 period = hwc->last_period;
6389 u64 nr, offset;
6390 s64 old, val;
6391
6392 hwc->last_period = hwc->sample_period;
6393
6394again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02006395 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006396 if (val < 0)
6397 return 0;
6398
6399 nr = div64_u64(period + val, period);
6400 offset = nr * period;
6401 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02006402 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006403 goto again;
6404
6405 return nr;
6406}
6407
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006408static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006409 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006410 struct pt_regs *regs)
6411{
6412 struct hw_perf_event *hwc = &event->hw;
6413 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006414
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006415 if (!overflow)
6416 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006417
6418 if (hwc->interrupts == MAX_INTERRUPTS)
6419 return;
6420
6421 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006422 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006423 data, regs)) {
6424 /*
6425 * We inhibit the overflow from happening when
6426 * hwc->interrupts == MAX_INTERRUPTS.
6427 */
6428 break;
6429 }
6430 throttle = 1;
6431 }
6432}
6433
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006434static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006435 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006436 struct pt_regs *regs)
6437{
6438 struct hw_perf_event *hwc = &event->hw;
6439
Peter Zijlstrae7850592010-05-21 14:43:08 +02006440 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006441
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006442 if (!regs)
6443 return;
6444
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006445 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006446 return;
6447
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03006448 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
6449 data->period = nr;
6450 return perf_swevent_overflow(event, 1, data, regs);
6451 } else
6452 data->period = event->hw.last_period;
6453
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006454 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006455 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006456
Peter Zijlstrae7850592010-05-21 14:43:08 +02006457 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006458 return;
6459
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006460 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006461}
6462
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006463static int perf_exclude_event(struct perf_event *event,
6464 struct pt_regs *regs)
6465{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006466 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01006467 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006468
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006469 if (regs) {
6470 if (event->attr.exclude_user && user_mode(regs))
6471 return 1;
6472
6473 if (event->attr.exclude_kernel && !user_mode(regs))
6474 return 1;
6475 }
6476
6477 return 0;
6478}
6479
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006480static int perf_swevent_match(struct perf_event *event,
6481 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08006482 u32 event_id,
6483 struct perf_sample_data *data,
6484 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006485{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006486 if (event->attr.type != type)
6487 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006488
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006489 if (event->attr.config != event_id)
6490 return 0;
6491
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006492 if (perf_exclude_event(event, regs))
6493 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006494
6495 return 1;
6496}
6497
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006498static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006499{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006500 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006501
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006502 return hash_64(val, SWEVENT_HLIST_BITS);
6503}
6504
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006505static inline struct hlist_head *
6506__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006507{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006508 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006509
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006510 return &hlist->heads[hash];
6511}
6512
6513/* For the read side: events when they trigger */
6514static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006515find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006516{
6517 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006518
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006519 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006520 if (!hlist)
6521 return NULL;
6522
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006523 return __find_swevent_head(hlist, type, event_id);
6524}
6525
6526/* For the event head insertion and removal in the hlist */
6527static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006528find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006529{
6530 struct swevent_hlist *hlist;
6531 u32 event_id = event->attr.config;
6532 u64 type = event->attr.type;
6533
6534 /*
6535 * Event scheduling is always serialized against hlist allocation
6536 * and release. Which makes the protected version suitable here.
6537 * The context lock guarantees that.
6538 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006539 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006540 lockdep_is_held(&event->ctx->lock));
6541 if (!hlist)
6542 return NULL;
6543
6544 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006545}
6546
6547static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006548 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006549 struct perf_sample_data *data,
6550 struct pt_regs *regs)
6551{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006552 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006553 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006554 struct hlist_head *head;
6555
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006556 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006557 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006558 if (!head)
6559 goto end;
6560
Sasha Levinb67bfe02013-02-27 17:06:00 -08006561 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08006562 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006563 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006564 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006565end:
6566 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006567}
6568
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006569DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
6570
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006571int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006572{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006573 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006574
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006575 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006576}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01006577EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006578
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01006579inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006580{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006581 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006582
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006583 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006584}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006585
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006586void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006587{
Ingo Molnara4234bf2009-11-23 10:57:59 +01006588 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006589
6590 if (WARN_ON_ONCE(!regs))
6591 return;
6592
6593 perf_sample_data_init(&data, addr, 0);
6594 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
6595}
6596
6597void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
6598{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006599 int rctx;
6600
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006601 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006602 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006603 if (unlikely(rctx < 0))
6604 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006605
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006606 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006607
6608 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006609fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006610 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006611}
6612
6613static void perf_swevent_read(struct perf_event *event)
6614{
6615}
6616
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006617static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006618{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006619 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006620 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006621 struct hlist_head *head;
6622
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006623 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006624 hwc->last_period = hwc->sample_period;
6625 perf_swevent_set_period(event);
6626 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006627
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006628 hwc->state = !(flags & PERF_EF_START);
6629
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006630 head = find_swevent_head(swhash, event);
Jiri Olsa39af6b12014-04-07 11:04:08 +02006631 if (!head) {
6632 /*
6633 * We can race with cpu hotplug code. Do not
6634 * WARN if the cpu just got unplugged.
6635 */
6636 WARN_ON_ONCE(swhash->online);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006637 return -EINVAL;
Jiri Olsa39af6b12014-04-07 11:04:08 +02006638 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006639
6640 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08006641 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006642
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006643 return 0;
6644}
6645
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006646static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006647{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006648 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006649}
6650
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006651static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006652{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006653 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006654}
6655
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006656static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006657{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006658 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006659}
6660
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006661/* Deref the hlist from the update side */
6662static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006663swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006664{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006665 return rcu_dereference_protected(swhash->swevent_hlist,
6666 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006667}
6668
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006669static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006670{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006671 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006672
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006673 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006674 return;
6675
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03006676 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08006677 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006678}
6679
6680static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
6681{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006682 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006683
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006684 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006685
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006686 if (!--swhash->hlist_refcount)
6687 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006688
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006689 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006690}
6691
6692static void swevent_hlist_put(struct perf_event *event)
6693{
6694 int cpu;
6695
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006696 for_each_possible_cpu(cpu)
6697 swevent_hlist_put_cpu(event, cpu);
6698}
6699
6700static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
6701{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006702 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006703 int err = 0;
6704
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006705 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006706
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006707 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006708 struct swevent_hlist *hlist;
6709
6710 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
6711 if (!hlist) {
6712 err = -ENOMEM;
6713 goto exit;
6714 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006715 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006716 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006717 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006718exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006719 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006720
6721 return err;
6722}
6723
6724static int swevent_hlist_get(struct perf_event *event)
6725{
6726 int err;
6727 int cpu, failed_cpu;
6728
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006729 get_online_cpus();
6730 for_each_possible_cpu(cpu) {
6731 err = swevent_hlist_get_cpu(event, cpu);
6732 if (err) {
6733 failed_cpu = cpu;
6734 goto fail;
6735 }
6736 }
6737 put_online_cpus();
6738
6739 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006740fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006741 for_each_possible_cpu(cpu) {
6742 if (cpu == failed_cpu)
6743 break;
6744 swevent_hlist_put_cpu(event, cpu);
6745 }
6746
6747 put_online_cpus();
6748 return err;
6749}
6750
Ingo Molnarc5905af2012-02-24 08:31:31 +01006751struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006752
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006753static void sw_perf_event_destroy(struct perf_event *event)
6754{
6755 u64 event_id = event->attr.config;
6756
6757 WARN_ON(event->parent);
6758
Ingo Molnarc5905af2012-02-24 08:31:31 +01006759 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006760 swevent_hlist_put(event);
6761}
6762
6763static int perf_swevent_init(struct perf_event *event)
6764{
Tommi Rantala8176cce2013-04-13 22:49:14 +03006765 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006766
6767 if (event->attr.type != PERF_TYPE_SOFTWARE)
6768 return -ENOENT;
6769
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006770 /*
6771 * no branch sampling for software events
6772 */
6773 if (has_branch_stack(event))
6774 return -EOPNOTSUPP;
6775
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006776 switch (event_id) {
6777 case PERF_COUNT_SW_CPU_CLOCK:
6778 case PERF_COUNT_SW_TASK_CLOCK:
6779 return -ENOENT;
6780
6781 default:
6782 break;
6783 }
6784
Dan Carpenterce677832010-10-24 21:50:42 +02006785 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006786 return -ENOENT;
6787
6788 if (!event->parent) {
6789 int err;
6790
6791 err = swevent_hlist_get(event);
6792 if (err)
6793 return err;
6794
Ingo Molnarc5905af2012-02-24 08:31:31 +01006795 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006796 event->destroy = sw_perf_event_destroy;
6797 }
6798
6799 return 0;
6800}
6801
6802static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006803 .task_ctx_nr = perf_sw_context,
6804
Peter Zijlstra34f43922015-02-20 14:05:38 +01006805 .capabilities = PERF_PMU_CAP_NO_NMI,
6806
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006807 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006808 .add = perf_swevent_add,
6809 .del = perf_swevent_del,
6810 .start = perf_swevent_start,
6811 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006812 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006813};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006814
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006815#ifdef CONFIG_EVENT_TRACING
6816
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006817static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006818 struct perf_sample_data *data)
6819{
6820 void *record = data->raw->data;
6821
6822 if (likely(!event->filter) || filter_match_preds(event->filter, record))
6823 return 1;
6824 return 0;
6825}
6826
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006827static int perf_tp_event_match(struct perf_event *event,
6828 struct perf_sample_data *data,
6829 struct pt_regs *regs)
6830{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01006831 if (event->hw.state & PERF_HES_STOPPED)
6832 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02006833 /*
6834 * All tracepoints are from kernel-space.
6835 */
6836 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006837 return 0;
6838
6839 if (!perf_tp_filter_match(event, data))
6840 return 0;
6841
6842 return 1;
6843}
6844
6845void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006846 struct pt_regs *regs, struct hlist_head *head, int rctx,
6847 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006848{
6849 struct perf_sample_data data;
6850 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006851
6852 struct perf_raw_record raw = {
6853 .size = entry_size,
6854 .data = record,
6855 };
6856
Robert Richterfd0d0002012-04-02 20:19:08 +02006857 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006858 data.raw = &raw;
6859
Sasha Levinb67bfe02013-02-27 17:06:00 -08006860 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006861 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006862 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006863 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006864
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006865 /*
6866 * If we got specified a target task, also iterate its context and
6867 * deliver this event there too.
6868 */
6869 if (task && task != current) {
6870 struct perf_event_context *ctx;
6871 struct trace_entry *entry = record;
6872
6873 rcu_read_lock();
6874 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
6875 if (!ctx)
6876 goto unlock;
6877
6878 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
6879 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6880 continue;
6881 if (event->attr.config != entry->type)
6882 continue;
6883 if (perf_tp_event_match(event, &data, regs))
6884 perf_swevent_event(event, count, &data, regs);
6885 }
6886unlock:
6887 rcu_read_unlock();
6888 }
6889
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006890 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006891}
6892EXPORT_SYMBOL_GPL(perf_tp_event);
6893
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006894static void tp_perf_event_destroy(struct perf_event *event)
6895{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006896 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006897}
6898
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006899static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006900{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006901 int err;
6902
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006903 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6904 return -ENOENT;
6905
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006906 /*
6907 * no branch sampling for tracepoint events
6908 */
6909 if (has_branch_stack(event))
6910 return -EOPNOTSUPP;
6911
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006912 err = perf_trace_init(event);
6913 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006914 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006915
6916 event->destroy = tp_perf_event_destroy;
6917
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006918 return 0;
6919}
6920
6921static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006922 .task_ctx_nr = perf_sw_context,
6923
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006924 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006925 .add = perf_trace_add,
6926 .del = perf_trace_del,
6927 .start = perf_swevent_start,
6928 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006929 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006930};
6931
6932static inline void perf_tp_register(void)
6933{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006934 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006935}
Li Zefan6fb29152009-10-15 11:21:42 +08006936
6937static int perf_event_set_filter(struct perf_event *event, void __user *arg)
6938{
6939 char *filter_str;
6940 int ret;
6941
6942 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6943 return -EINVAL;
6944
6945 filter_str = strndup_user(arg, PAGE_SIZE);
6946 if (IS_ERR(filter_str))
6947 return PTR_ERR(filter_str);
6948
6949 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
6950
6951 kfree(filter_str);
6952 return ret;
6953}
6954
6955static void perf_event_free_filter(struct perf_event *event)
6956{
6957 ftrace_profile_free_filter(event);
6958}
6959
Alexei Starovoitov25415172015-03-25 12:49:20 -07006960static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
6961{
6962 struct bpf_prog *prog;
6963
6964 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6965 return -EINVAL;
6966
6967 if (event->tp_event->prog)
6968 return -EEXIST;
6969
Wang Nan04a22fa2015-07-01 02:13:50 +00006970 if (!(event->tp_event->flags & TRACE_EVENT_FL_UKPROBE))
6971 /* bpf programs can only be attached to u/kprobes */
Alexei Starovoitov25415172015-03-25 12:49:20 -07006972 return -EINVAL;
6973
6974 prog = bpf_prog_get(prog_fd);
6975 if (IS_ERR(prog))
6976 return PTR_ERR(prog);
6977
Linus Torvalds6c373ca2015-04-15 09:00:47 -07006978 if (prog->type != BPF_PROG_TYPE_KPROBE) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07006979 /* valid fd, but invalid bpf program type */
6980 bpf_prog_put(prog);
6981 return -EINVAL;
6982 }
6983
6984 event->tp_event->prog = prog;
6985
6986 return 0;
6987}
6988
6989static void perf_event_free_bpf_prog(struct perf_event *event)
6990{
6991 struct bpf_prog *prog;
6992
6993 if (!event->tp_event)
6994 return;
6995
6996 prog = event->tp_event->prog;
6997 if (prog) {
6998 event->tp_event->prog = NULL;
6999 bpf_prog_put(prog);
7000 }
7001}
7002
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007003#else
Li Zefan6fb29152009-10-15 11:21:42 +08007004
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007005static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007006{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007007}
Li Zefan6fb29152009-10-15 11:21:42 +08007008
7009static int perf_event_set_filter(struct perf_event *event, void __user *arg)
7010{
7011 return -ENOENT;
7012}
7013
7014static void perf_event_free_filter(struct perf_event *event)
7015{
7016}
7017
Alexei Starovoitov25415172015-03-25 12:49:20 -07007018static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7019{
7020 return -ENOENT;
7021}
7022
7023static void perf_event_free_bpf_prog(struct perf_event *event)
7024{
7025}
Li Zefan07b139c2009-12-21 14:27:35 +08007026#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007027
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007028#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007029void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007030{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007031 struct perf_sample_data sample;
7032 struct pt_regs *regs = data;
7033
Robert Richterfd0d0002012-04-02 20:19:08 +02007034 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007035
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007036 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007037 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007038}
7039#endif
7040
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007041/*
7042 * hrtimer based swevent callback
7043 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007044
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007045static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007046{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007047 enum hrtimer_restart ret = HRTIMER_RESTART;
7048 struct perf_sample_data data;
7049 struct pt_regs *regs;
7050 struct perf_event *event;
7051 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007052
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007053 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007054
7055 if (event->state != PERF_EVENT_STATE_ACTIVE)
7056 return HRTIMER_NORESTART;
7057
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007058 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007059
Robert Richterfd0d0002012-04-02 20:19:08 +02007060 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007061 regs = get_irq_regs();
7062
7063 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08007064 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02007065 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007066 ret = HRTIMER_NORESTART;
7067 }
7068
7069 period = max_t(u64, 10000, event->hw.sample_period);
7070 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
7071
7072 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007073}
7074
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007075static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007076{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007077 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007078 s64 period;
7079
7080 if (!is_sampling_event(event))
7081 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007082
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007083 period = local64_read(&hwc->period_left);
7084 if (period) {
7085 if (period < 0)
7086 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02007087
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007088 local64_set(&hwc->period_left, 0);
7089 } else {
7090 period = max_t(u64, 10000, hwc->sample_period);
7091 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00007092 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
7093 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007094}
7095
7096static void perf_swevent_cancel_hrtimer(struct perf_event *event)
7097{
7098 struct hw_perf_event *hwc = &event->hw;
7099
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007100 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007101 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02007102 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007103
7104 hrtimer_cancel(&hwc->hrtimer);
7105 }
7106}
7107
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007108static void perf_swevent_init_hrtimer(struct perf_event *event)
7109{
7110 struct hw_perf_event *hwc = &event->hw;
7111
7112 if (!is_sampling_event(event))
7113 return;
7114
7115 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
7116 hwc->hrtimer.function = perf_swevent_hrtimer;
7117
7118 /*
7119 * Since hrtimers have a fixed rate, we can do a static freq->period
7120 * mapping and avoid the whole period adjust feedback stuff.
7121 */
7122 if (event->attr.freq) {
7123 long freq = event->attr.sample_freq;
7124
7125 event->attr.sample_period = NSEC_PER_SEC / freq;
7126 hwc->sample_period = event->attr.sample_period;
7127 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09007128 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007129 event->attr.freq = 0;
7130 }
7131}
7132
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007133/*
7134 * Software event: cpu wall time clock
7135 */
7136
7137static void cpu_clock_event_update(struct perf_event *event)
7138{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007139 s64 prev;
7140 u64 now;
7141
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007142 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007143 prev = local64_xchg(&event->hw.prev_count, now);
7144 local64_add(now - prev, &event->count);
7145}
7146
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007147static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007148{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007149 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007150 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007151}
7152
7153static void cpu_clock_event_stop(struct perf_event *event, int flags)
7154{
7155 perf_swevent_cancel_hrtimer(event);
7156 cpu_clock_event_update(event);
7157}
7158
7159static int cpu_clock_event_add(struct perf_event *event, int flags)
7160{
7161 if (flags & PERF_EF_START)
7162 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08007163 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007164
7165 return 0;
7166}
7167
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007168static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007169{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007170 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007171}
7172
7173static void cpu_clock_event_read(struct perf_event *event)
7174{
7175 cpu_clock_event_update(event);
7176}
7177
7178static int cpu_clock_event_init(struct perf_event *event)
7179{
7180 if (event->attr.type != PERF_TYPE_SOFTWARE)
7181 return -ENOENT;
7182
7183 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
7184 return -ENOENT;
7185
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007186 /*
7187 * no branch sampling for software events
7188 */
7189 if (has_branch_stack(event))
7190 return -EOPNOTSUPP;
7191
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007192 perf_swevent_init_hrtimer(event);
7193
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007194 return 0;
7195}
7196
7197static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007198 .task_ctx_nr = perf_sw_context,
7199
Peter Zijlstra34f43922015-02-20 14:05:38 +01007200 .capabilities = PERF_PMU_CAP_NO_NMI,
7201
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007202 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007203 .add = cpu_clock_event_add,
7204 .del = cpu_clock_event_del,
7205 .start = cpu_clock_event_start,
7206 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007207 .read = cpu_clock_event_read,
7208};
7209
7210/*
7211 * Software event: task time clock
7212 */
7213
7214static void task_clock_event_update(struct perf_event *event, u64 now)
7215{
7216 u64 prev;
7217 s64 delta;
7218
7219 prev = local64_xchg(&event->hw.prev_count, now);
7220 delta = now - prev;
7221 local64_add(delta, &event->count);
7222}
7223
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007224static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007225{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007226 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007227 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007228}
7229
7230static void task_clock_event_stop(struct perf_event *event, int flags)
7231{
7232 perf_swevent_cancel_hrtimer(event);
7233 task_clock_event_update(event, event->ctx->time);
7234}
7235
7236static int task_clock_event_add(struct perf_event *event, int flags)
7237{
7238 if (flags & PERF_EF_START)
7239 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08007240 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007241
7242 return 0;
7243}
7244
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007245static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007246{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007247 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007248}
7249
7250static void task_clock_event_read(struct perf_event *event)
7251{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01007252 u64 now = perf_clock();
7253 u64 delta = now - event->ctx->timestamp;
7254 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007255
7256 task_clock_event_update(event, time);
7257}
7258
7259static int task_clock_event_init(struct perf_event *event)
7260{
7261 if (event->attr.type != PERF_TYPE_SOFTWARE)
7262 return -ENOENT;
7263
7264 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
7265 return -ENOENT;
7266
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007267 /*
7268 * no branch sampling for software events
7269 */
7270 if (has_branch_stack(event))
7271 return -EOPNOTSUPP;
7272
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007273 perf_swevent_init_hrtimer(event);
7274
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007275 return 0;
7276}
7277
7278static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007279 .task_ctx_nr = perf_sw_context,
7280
Peter Zijlstra34f43922015-02-20 14:05:38 +01007281 .capabilities = PERF_PMU_CAP_NO_NMI,
7282
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007283 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007284 .add = task_clock_event_add,
7285 .del = task_clock_event_del,
7286 .start = task_clock_event_start,
7287 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007288 .read = task_clock_event_read,
7289};
7290
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007291static void perf_pmu_nop_void(struct pmu *pmu)
7292{
7293}
7294
7295static int perf_pmu_nop_int(struct pmu *pmu)
7296{
7297 return 0;
7298}
7299
7300static void perf_pmu_start_txn(struct pmu *pmu)
7301{
7302 perf_pmu_disable(pmu);
7303}
7304
7305static int perf_pmu_commit_txn(struct pmu *pmu)
7306{
7307 perf_pmu_enable(pmu);
7308 return 0;
7309}
7310
7311static void perf_pmu_cancel_txn(struct pmu *pmu)
7312{
7313 perf_pmu_enable(pmu);
7314}
7315
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007316static int perf_event_idx_default(struct perf_event *event)
7317{
Peter Zijlstrac719f562014-10-21 11:10:21 +02007318 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007319}
7320
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007321/*
7322 * Ensures all contexts with the same task_ctx_nr have the same
7323 * pmu_cpu_context too.
7324 */
Mark Rutland9e317042014-02-10 17:44:18 +00007325static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007326{
7327 struct pmu *pmu;
7328
7329 if (ctxn < 0)
7330 return NULL;
7331
7332 list_for_each_entry(pmu, &pmus, entry) {
7333 if (pmu->task_ctx_nr == ctxn)
7334 return pmu->pmu_cpu_context;
7335 }
7336
7337 return NULL;
7338}
7339
Peter Zijlstra51676952010-12-07 14:18:20 +01007340static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007341{
Peter Zijlstra51676952010-12-07 14:18:20 +01007342 int cpu;
7343
7344 for_each_possible_cpu(cpu) {
7345 struct perf_cpu_context *cpuctx;
7346
7347 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
7348
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02007349 if (cpuctx->unique_pmu == old_pmu)
7350 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01007351 }
7352}
7353
7354static void free_pmu_context(struct pmu *pmu)
7355{
7356 struct pmu *i;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007357
7358 mutex_lock(&pmus_lock);
7359 /*
7360 * Like a real lame refcount.
7361 */
Peter Zijlstra51676952010-12-07 14:18:20 +01007362 list_for_each_entry(i, &pmus, entry) {
7363 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
7364 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007365 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01007366 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007367 }
7368
Peter Zijlstra51676952010-12-07 14:18:20 +01007369 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007370out:
7371 mutex_unlock(&pmus_lock);
7372}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007373static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007374
Peter Zijlstraabe43402010-11-17 23:17:37 +01007375static ssize_t
7376type_show(struct device *dev, struct device_attribute *attr, char *page)
7377{
7378 struct pmu *pmu = dev_get_drvdata(dev);
7379
7380 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
7381}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007382static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007383
Stephane Eranian62b85632013-04-03 14:21:34 +02007384static ssize_t
7385perf_event_mux_interval_ms_show(struct device *dev,
7386 struct device_attribute *attr,
7387 char *page)
7388{
7389 struct pmu *pmu = dev_get_drvdata(dev);
7390
7391 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
7392}
7393
Peter Zijlstra272325c2015-04-15 11:41:58 +02007394static DEFINE_MUTEX(mux_interval_mutex);
7395
Stephane Eranian62b85632013-04-03 14:21:34 +02007396static ssize_t
7397perf_event_mux_interval_ms_store(struct device *dev,
7398 struct device_attribute *attr,
7399 const char *buf, size_t count)
7400{
7401 struct pmu *pmu = dev_get_drvdata(dev);
7402 int timer, cpu, ret;
7403
7404 ret = kstrtoint(buf, 0, &timer);
7405 if (ret)
7406 return ret;
7407
7408 if (timer < 1)
7409 return -EINVAL;
7410
7411 /* same value, noting to do */
7412 if (timer == pmu->hrtimer_interval_ms)
7413 return count;
7414
Peter Zijlstra272325c2015-04-15 11:41:58 +02007415 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02007416 pmu->hrtimer_interval_ms = timer;
7417
7418 /* update all cpuctx for this PMU */
Peter Zijlstra272325c2015-04-15 11:41:58 +02007419 get_online_cpus();
7420 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02007421 struct perf_cpu_context *cpuctx;
7422 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
7423 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
7424
Peter Zijlstra272325c2015-04-15 11:41:58 +02007425 cpu_function_call(cpu,
7426 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02007427 }
Peter Zijlstra272325c2015-04-15 11:41:58 +02007428 put_online_cpus();
7429 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02007430
7431 return count;
7432}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007433static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02007434
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007435static struct attribute *pmu_dev_attrs[] = {
7436 &dev_attr_type.attr,
7437 &dev_attr_perf_event_mux_interval_ms.attr,
7438 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01007439};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007440ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007441
7442static int pmu_bus_running;
7443static struct bus_type pmu_bus = {
7444 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007445 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01007446};
7447
7448static void pmu_dev_release(struct device *dev)
7449{
7450 kfree(dev);
7451}
7452
7453static int pmu_dev_alloc(struct pmu *pmu)
7454{
7455 int ret = -ENOMEM;
7456
7457 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
7458 if (!pmu->dev)
7459 goto out;
7460
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01007461 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01007462 device_initialize(pmu->dev);
7463 ret = dev_set_name(pmu->dev, "%s", pmu->name);
7464 if (ret)
7465 goto free_dev;
7466
7467 dev_set_drvdata(pmu->dev, pmu);
7468 pmu->dev->bus = &pmu_bus;
7469 pmu->dev->release = pmu_dev_release;
7470 ret = device_add(pmu->dev);
7471 if (ret)
7472 goto free_dev;
7473
7474out:
7475 return ret;
7476
7477free_dev:
7478 put_device(pmu->dev);
7479 goto out;
7480}
7481
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007482static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02007483static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007484
Mischa Jonker03d8e802013-06-04 11:45:48 +02007485int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007486{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007487 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007488
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007489 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007490 ret = -ENOMEM;
7491 pmu->pmu_disable_count = alloc_percpu(int);
7492 if (!pmu->pmu_disable_count)
7493 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007494
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007495 pmu->type = -1;
7496 if (!name)
7497 goto skip_type;
7498 pmu->name = name;
7499
7500 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08007501 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
7502 if (type < 0) {
7503 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007504 goto free_pdc;
7505 }
7506 }
7507 pmu->type = type;
7508
Peter Zijlstraabe43402010-11-17 23:17:37 +01007509 if (pmu_bus_running) {
7510 ret = pmu_dev_alloc(pmu);
7511 if (ret)
7512 goto free_idr;
7513 }
7514
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007515skip_type:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007516 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
7517 if (pmu->pmu_cpu_context)
7518 goto got_cpu_context;
7519
Wei Yongjunc4814202013-04-12 11:05:54 +08007520 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007521 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
7522 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01007523 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007524
7525 for_each_possible_cpu(cpu) {
7526 struct perf_cpu_context *cpuctx;
7527
7528 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02007529 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007530 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02007531 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007532 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02007533
Peter Zijlstra272325c2015-04-15 11:41:58 +02007534 __perf_mux_hrtimer_init(cpuctx, cpu);
Stephane Eranian9e630202013-04-03 14:21:33 +02007535
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02007536 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007537 }
7538
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007539got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007540 if (!pmu->start_txn) {
7541 if (pmu->pmu_enable) {
7542 /*
7543 * If we have pmu_enable/pmu_disable calls, install
7544 * transaction stubs that use that to try and batch
7545 * hardware accesses.
7546 */
7547 pmu->start_txn = perf_pmu_start_txn;
7548 pmu->commit_txn = perf_pmu_commit_txn;
7549 pmu->cancel_txn = perf_pmu_cancel_txn;
7550 } else {
7551 pmu->start_txn = perf_pmu_nop_void;
7552 pmu->commit_txn = perf_pmu_nop_int;
7553 pmu->cancel_txn = perf_pmu_nop_void;
7554 }
7555 }
7556
7557 if (!pmu->pmu_enable) {
7558 pmu->pmu_enable = perf_pmu_nop_void;
7559 pmu->pmu_disable = perf_pmu_nop_void;
7560 }
7561
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007562 if (!pmu->event_idx)
7563 pmu->event_idx = perf_event_idx_default;
7564
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007565 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007566 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007567 ret = 0;
7568unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007569 mutex_unlock(&pmus_lock);
7570
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007571 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007572
Peter Zijlstraabe43402010-11-17 23:17:37 +01007573free_dev:
7574 device_del(pmu->dev);
7575 put_device(pmu->dev);
7576
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007577free_idr:
7578 if (pmu->type >= PERF_TYPE_MAX)
7579 idr_remove(&pmu_idr, pmu->type);
7580
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007581free_pdc:
7582 free_percpu(pmu->pmu_disable_count);
7583 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007584}
Yan, Zhengc464c762014-03-18 16:56:41 +08007585EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007586
7587void perf_pmu_unregister(struct pmu *pmu)
7588{
7589 mutex_lock(&pmus_lock);
7590 list_del_rcu(&pmu->entry);
7591 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007592
7593 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02007594 * We dereference the pmu list under both SRCU and regular RCU, so
7595 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007596 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007597 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02007598 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007599
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007600 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007601 if (pmu->type >= PERF_TYPE_MAX)
7602 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007603 device_del(pmu->dev);
7604 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01007605 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007606}
Yan, Zhengc464c762014-03-18 16:56:41 +08007607EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007608
Mark Rutlandcc34b982015-01-07 14:56:51 +00007609static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
7610{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007611 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00007612 int ret;
7613
7614 if (!try_module_get(pmu->module))
7615 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007616
7617 if (event->group_leader != event) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02007618 /*
7619 * This ctx->mutex can nest when we're called through
7620 * inheritance. See the perf_event_ctx_lock_nested() comment.
7621 */
7622 ctx = perf_event_ctx_lock_nested(event->group_leader,
7623 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007624 BUG_ON(!ctx);
7625 }
7626
Mark Rutlandcc34b982015-01-07 14:56:51 +00007627 event->pmu = pmu;
7628 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007629
7630 if (ctx)
7631 perf_event_ctx_unlock(event->group_leader, ctx);
7632
Mark Rutlandcc34b982015-01-07 14:56:51 +00007633 if (ret)
7634 module_put(pmu->module);
7635
7636 return ret;
7637}
7638
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007639struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007640{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007641 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007642 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08007643 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007644
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007645 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007646
7647 rcu_read_lock();
7648 pmu = idr_find(&pmu_idr, event->attr.type);
7649 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08007650 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007651 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08007652 if (ret)
7653 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007654 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08007655 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007656
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007657 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007658 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007659 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007660 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007661
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007662 if (ret != -ENOENT) {
7663 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007664 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007665 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007666 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007667 pmu = ERR_PTR(-ENOENT);
7668unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007669 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007670
7671 return pmu;
7672}
7673
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007674static void account_event_cpu(struct perf_event *event, int cpu)
7675{
7676 if (event->parent)
7677 return;
7678
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007679 if (is_cgroup_event(event))
7680 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
7681}
7682
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007683static void account_event(struct perf_event *event)
7684{
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007685 if (event->parent)
7686 return;
7687
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007688 if (event->attach_state & PERF_ATTACH_TASK)
7689 static_key_slow_inc(&perf_sched_events.key);
7690 if (event->attr.mmap || event->attr.mmap_data)
7691 atomic_inc(&nr_mmap_events);
7692 if (event->attr.comm)
7693 atomic_inc(&nr_comm_events);
7694 if (event->attr.task)
7695 atomic_inc(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02007696 if (event->attr.freq) {
7697 if (atomic_inc_return(&nr_freq_events) == 1)
7698 tick_nohz_full_kick_all();
7699 }
Adrian Hunter45ac1402015-07-21 12:44:02 +03007700 if (event->attr.context_switch) {
7701 atomic_inc(&nr_switch_events);
7702 static_key_slow_inc(&perf_sched_events.key);
7703 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007704 if (has_branch_stack(event))
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007705 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007706 if (is_cgroup_event(event))
7707 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007708
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007709 account_event_cpu(event, event->cpu);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007710}
7711
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007712/*
7713 * Allocate and initialize a event structure
7714 */
7715static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007716perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007717 struct task_struct *task,
7718 struct perf_event *group_leader,
7719 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007720 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00007721 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007722{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007723 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007724 struct perf_event *event;
7725 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007726 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007727
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007728 if ((unsigned)cpu >= nr_cpu_ids) {
7729 if (!task || cpu != -1)
7730 return ERR_PTR(-EINVAL);
7731 }
7732
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007733 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007734 if (!event)
7735 return ERR_PTR(-ENOMEM);
7736
7737 /*
7738 * Single events are their own group leaders, with an
7739 * empty sibling list:
7740 */
7741 if (!group_leader)
7742 group_leader = event;
7743
7744 mutex_init(&event->child_mutex);
7745 INIT_LIST_HEAD(&event->child_list);
7746
7747 INIT_LIST_HEAD(&event->group_entry);
7748 INIT_LIST_HEAD(&event->event_entry);
7749 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007750 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01007751 INIT_LIST_HEAD(&event->active_entry);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01007752 INIT_HLIST_NODE(&event->hlist_entry);
7753
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007754
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007755 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08007756 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007757
7758 mutex_init(&event->mmap_mutex);
7759
Al Viroa6fa9412012-08-20 14:59:25 +01007760 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007761 event->cpu = cpu;
7762 event->attr = *attr;
7763 event->group_leader = group_leader;
7764 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007765 event->oncpu = -1;
7766
7767 event->parent = parent_event;
7768
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08007769 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007770 event->id = atomic64_inc_return(&perf_event_id);
7771
7772 event->state = PERF_EVENT_STATE_INACTIVE;
7773
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007774 if (task) {
7775 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007776 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +01007777 * XXX pmu::event_init needs to know what task to account to
7778 * and we cannot use the ctx information because we need the
7779 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007780 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +01007781 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007782 }
7783
Peter Zijlstra34f43922015-02-20 14:05:38 +01007784 event->clock = &local_clock;
7785 if (parent_event)
7786 event->clock = parent_event->clock;
7787
Avi Kivity4dc0da82011-06-29 18:42:35 +03007788 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007789 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007790 context = parent_event->overflow_handler_context;
7791 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007792
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007793 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007794 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02007795
Jiri Olsa0231bb52013-02-01 11:23:45 +01007796 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007797
7798 pmu = NULL;
7799
7800 hwc = &event->hw;
7801 hwc->sample_period = attr->sample_period;
7802 if (attr->freq && attr->sample_freq)
7803 hwc->sample_period = 1;
7804 hwc->last_period = hwc->sample_period;
7805
Peter Zijlstrae7850592010-05-21 14:43:08 +02007806 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007807
7808 /*
7809 * we currently do not support PERF_FORMAT_GROUP on inherited events
7810 */
7811 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007812 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007813
Yan, Zhenga46a2302014-11-04 21:56:06 -05007814 if (!has_branch_stack(event))
7815 event->attr.branch_sample_type = 0;
7816
Matt Fleming79dff512015-01-23 18:45:42 +00007817 if (cgroup_fd != -1) {
7818 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
7819 if (err)
7820 goto err_ns;
7821 }
7822
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007823 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007824 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007825 goto err_ns;
7826 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007827 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007828 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007829 }
7830
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007831 err = exclusive_event_init(event);
7832 if (err)
7833 goto err_pmu;
7834
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007835 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007836 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
7837 err = get_callchain_buffers();
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007838 if (err)
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007839 goto err_per_task;
Stephane Eraniand010b332012-02-09 23:21:00 +01007840 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007841 }
7842
7843 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007844
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007845err_per_task:
7846 exclusive_event_destroy(event);
7847
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007848err_pmu:
7849 if (event->destroy)
7850 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08007851 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007852err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00007853 if (is_cgroup_event(event))
7854 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007855 if (event->ns)
7856 put_pid_ns(event->ns);
7857 kfree(event);
7858
7859 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007860}
7861
7862static int perf_copy_attr(struct perf_event_attr __user *uattr,
7863 struct perf_event_attr *attr)
7864{
7865 u32 size;
7866 int ret;
7867
7868 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
7869 return -EFAULT;
7870
7871 /*
7872 * zero the full structure, so that a short copy will be nice.
7873 */
7874 memset(attr, 0, sizeof(*attr));
7875
7876 ret = get_user(size, &uattr->size);
7877 if (ret)
7878 return ret;
7879
7880 if (size > PAGE_SIZE) /* silly large */
7881 goto err_size;
7882
7883 if (!size) /* abi compat */
7884 size = PERF_ATTR_SIZE_VER0;
7885
7886 if (size < PERF_ATTR_SIZE_VER0)
7887 goto err_size;
7888
7889 /*
7890 * If we're handed a bigger struct than we know of,
7891 * ensure all the unknown bits are 0 - i.e. new
7892 * user-space does not rely on any kernel feature
7893 * extensions we dont know about yet.
7894 */
7895 if (size > sizeof(*attr)) {
7896 unsigned char __user *addr;
7897 unsigned char __user *end;
7898 unsigned char val;
7899
7900 addr = (void __user *)uattr + sizeof(*attr);
7901 end = (void __user *)uattr + size;
7902
7903 for (; addr < end; addr++) {
7904 ret = get_user(val, addr);
7905 if (ret)
7906 return ret;
7907 if (val)
7908 goto err_size;
7909 }
7910 size = sizeof(*attr);
7911 }
7912
7913 ret = copy_from_user(attr, uattr, size);
7914 if (ret)
7915 return -EFAULT;
7916
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05307917 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007918 return -EINVAL;
7919
7920 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
7921 return -EINVAL;
7922
7923 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
7924 return -EINVAL;
7925
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007926 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
7927 u64 mask = attr->branch_sample_type;
7928
7929 /* only using defined bits */
7930 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
7931 return -EINVAL;
7932
7933 /* at least one branch bit must be set */
7934 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
7935 return -EINVAL;
7936
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007937 /* propagate priv level, when not set for branch */
7938 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
7939
7940 /* exclude_kernel checked on syscall entry */
7941 if (!attr->exclude_kernel)
7942 mask |= PERF_SAMPLE_BRANCH_KERNEL;
7943
7944 if (!attr->exclude_user)
7945 mask |= PERF_SAMPLE_BRANCH_USER;
7946
7947 if (!attr->exclude_hv)
7948 mask |= PERF_SAMPLE_BRANCH_HV;
7949 /*
7950 * adjust user setting (for HW filter setup)
7951 */
7952 attr->branch_sample_type = mask;
7953 }
Stephane Eraniane7122092013-06-06 11:02:04 +02007954 /* privileged levels capture (kernel, hv): check permissions */
7955 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02007956 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
7957 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007958 }
Jiri Olsa40189942012-08-07 15:20:37 +02007959
Jiri Olsac5ebced2012-08-07 15:20:40 +02007960 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02007961 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02007962 if (ret)
7963 return ret;
7964 }
7965
7966 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
7967 if (!arch_perf_have_user_stack_dump())
7968 return -ENOSYS;
7969
7970 /*
7971 * We have __u32 type for the size, but so far
7972 * we can only use __u16 as maximum due to the
7973 * __u16 sample size limit.
7974 */
7975 if (attr->sample_stack_user >= USHRT_MAX)
7976 ret = -EINVAL;
7977 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
7978 ret = -EINVAL;
7979 }
Jiri Olsa40189942012-08-07 15:20:37 +02007980
Stephane Eranian60e23642014-09-24 13:48:37 +02007981 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
7982 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007983out:
7984 return ret;
7985
7986err_size:
7987 put_user(sizeof(*attr), &uattr->size);
7988 ret = -E2BIG;
7989 goto out;
7990}
7991
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007992static int
7993perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007994{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01007995 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007996 int ret = -EINVAL;
7997
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007998 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007999 goto set;
8000
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008001 /* don't allow circular references */
8002 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008003 goto out;
8004
Peter Zijlstra0f139302010-05-20 14:35:15 +02008005 /*
8006 * Don't allow cross-cpu buffers
8007 */
8008 if (output_event->cpu != event->cpu)
8009 goto out;
8010
8011 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02008012 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02008013 */
8014 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
8015 goto out;
8016
Peter Zijlstra34f43922015-02-20 14:05:38 +01008017 /*
8018 * Mixing clocks in the same buffer is trouble you don't need.
8019 */
8020 if (output_event->clock != event->clock)
8021 goto out;
8022
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02008023 /*
8024 * If both events generate aux data, they must be on the same PMU
8025 */
8026 if (has_aux(event) && has_aux(output_event) &&
8027 event->pmu != output_event->pmu)
8028 goto out;
8029
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008030set:
8031 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008032 /* Can't redirect output if we've got an active mmap() */
8033 if (atomic_read(&event->mmap_count))
8034 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008035
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008036 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02008037 /* get the rb we want to redirect to */
8038 rb = ring_buffer_get(output_event);
8039 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008040 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008041 }
8042
Peter Zijlstrab69cf532014-03-14 10:50:33 +01008043 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02008044
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008045 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008046unlock:
8047 mutex_unlock(&event->mmap_mutex);
8048
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008049out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008050 return ret;
8051}
8052
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008053static void mutex_lock_double(struct mutex *a, struct mutex *b)
8054{
8055 if (b < a)
8056 swap(a, b);
8057
8058 mutex_lock(a);
8059 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
8060}
8061
Peter Zijlstra34f43922015-02-20 14:05:38 +01008062static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
8063{
8064 bool nmi_safe = false;
8065
8066 switch (clk_id) {
8067 case CLOCK_MONOTONIC:
8068 event->clock = &ktime_get_mono_fast_ns;
8069 nmi_safe = true;
8070 break;
8071
8072 case CLOCK_MONOTONIC_RAW:
8073 event->clock = &ktime_get_raw_fast_ns;
8074 nmi_safe = true;
8075 break;
8076
8077 case CLOCK_REALTIME:
8078 event->clock = &ktime_get_real_ns;
8079 break;
8080
8081 case CLOCK_BOOTTIME:
8082 event->clock = &ktime_get_boot_ns;
8083 break;
8084
8085 case CLOCK_TAI:
8086 event->clock = &ktime_get_tai_ns;
8087 break;
8088
8089 default:
8090 return -EINVAL;
8091 }
8092
8093 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
8094 return -EINVAL;
8095
8096 return 0;
8097}
8098
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008099/**
8100 * sys_perf_event_open - open a performance event, associate it to a task/cpu
8101 *
8102 * @attr_uptr: event_id type attributes for monitoring/sampling
8103 * @pid: target pid
8104 * @cpu: target cpu
8105 * @group_fd: group leader event fd
8106 */
8107SYSCALL_DEFINE5(perf_event_open,
8108 struct perf_event_attr __user *, attr_uptr,
8109 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
8110{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008111 struct perf_event *group_leader = NULL, *output_event = NULL;
8112 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008113 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008114 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008115 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04008116 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07008117 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008118 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04008119 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008120 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008121 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01008122 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00008123 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008124
8125 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02008126 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008127 return -EINVAL;
8128
8129 err = perf_copy_attr(attr_uptr, &attr);
8130 if (err)
8131 return err;
8132
8133 if (!attr.exclude_kernel) {
8134 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
8135 return -EACCES;
8136 }
8137
8138 if (attr.freq) {
8139 if (attr.sample_freq > sysctl_perf_event_sample_rate)
8140 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02008141 } else {
8142 if (attr.sample_period & (1ULL << 63))
8143 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008144 }
8145
Stephane Eraniane5d13672011-02-14 11:20:01 +02008146 /*
8147 * In cgroup mode, the pid argument is used to pass the fd
8148 * opened to the cgroup directory in cgroupfs. The cpu argument
8149 * designates the cpu on which to monitor threads from that
8150 * cgroup.
8151 */
8152 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
8153 return -EINVAL;
8154
Yann Droneauda21b0b32014-01-05 21:36:33 +01008155 if (flags & PERF_FLAG_FD_CLOEXEC)
8156 f_flags |= O_CLOEXEC;
8157
8158 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04008159 if (event_fd < 0)
8160 return event_fd;
8161
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008162 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04008163 err = perf_fget_light(group_fd, &group);
8164 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008165 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04008166 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008167 if (flags & PERF_FLAG_FD_OUTPUT)
8168 output_event = group_leader;
8169 if (flags & PERF_FLAG_FD_NO_GROUP)
8170 group_leader = NULL;
8171 }
8172
Stephane Eraniane5d13672011-02-14 11:20:01 +02008173 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008174 task = find_lively_task_by_vpid(pid);
8175 if (IS_ERR(task)) {
8176 err = PTR_ERR(task);
8177 goto err_group_fd;
8178 }
8179 }
8180
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008181 if (task && group_leader &&
8182 group_leader->attr.inherit != attr.inherit) {
8183 err = -EINVAL;
8184 goto err_task;
8185 }
8186
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008187 get_online_cpus();
8188
Matt Fleming79dff512015-01-23 18:45:42 +00008189 if (flags & PERF_FLAG_PID_CGROUP)
8190 cgroup_fd = pid;
8191
Avi Kivity4dc0da82011-06-29 18:42:35 +03008192 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00008193 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008194 if (IS_ERR(event)) {
8195 err = PTR_ERR(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008196 goto err_cpus;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008197 }
8198
Vince Weaver53b25332014-05-16 17:12:12 -04008199 if (is_sampling_event(event)) {
8200 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
8201 err = -ENOTSUPP;
8202 goto err_alloc;
8203 }
8204 }
8205
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008206 account_event(event);
8207
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008208 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008209 * Special case software events and allow them to be part of
8210 * any hardware group.
8211 */
8212 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008213
Peter Zijlstra34f43922015-02-20 14:05:38 +01008214 if (attr.use_clockid) {
8215 err = perf_event_set_clock(event, attr.clockid);
8216 if (err)
8217 goto err_alloc;
8218 }
8219
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008220 if (group_leader &&
8221 (is_software_event(event) != is_software_event(group_leader))) {
8222 if (is_software_event(event)) {
8223 /*
8224 * If event and group_leader are not both a software
8225 * event, and event is, then group leader is not.
8226 *
8227 * Allow the addition of software events to !software
8228 * groups, this is safe because software events never
8229 * fail to schedule.
8230 */
8231 pmu = group_leader->pmu;
8232 } else if (is_software_event(group_leader) &&
8233 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
8234 /*
8235 * In case the group is a pure software group, and we
8236 * try to add a hardware event, move the whole group to
8237 * the hardware context.
8238 */
8239 move_group = 1;
8240 }
8241 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008242
8243 /*
8244 * Get the target context (task or percpu):
8245 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -05008246 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008247 if (IS_ERR(ctx)) {
8248 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008249 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008250 }
8251
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008252 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
8253 err = -EBUSY;
8254 goto err_context;
8255 }
8256
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02008257 if (task) {
8258 put_task_struct(task);
8259 task = NULL;
8260 }
8261
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008262 /*
8263 * Look up the group leader (we will attach this event to it):
8264 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008265 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008266 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008267
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008268 /*
8269 * Do not allow a recursive hierarchy (this new sibling
8270 * becoming part of another group-sibling):
8271 */
8272 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008273 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +01008274
8275 /* All events in a group should have the same clock */
8276 if (group_leader->clock != event->clock)
8277 goto err_context;
8278
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008279 /*
8280 * Do not allow to attach to a group in a different
8281 * task or CPU context:
8282 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008283 if (move_group) {
Peter Zijlstrac3c87e72015-01-23 11:19:48 +01008284 /*
8285 * Make sure we're both on the same task, or both
8286 * per-cpu events.
8287 */
8288 if (group_leader->ctx->task != ctx->task)
8289 goto err_context;
8290
8291 /*
8292 * Make sure we're both events for the same CPU;
8293 * grouping events for different CPUs is broken; since
8294 * you can never concurrently schedule them anyhow.
8295 */
8296 if (group_leader->cpu != event->cpu)
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008297 goto err_context;
8298 } else {
8299 if (group_leader->ctx != ctx)
8300 goto err_context;
8301 }
8302
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008303 /*
8304 * Only a group leader can be exclusive or pinned
8305 */
8306 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008307 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008308 }
8309
8310 if (output_event) {
8311 err = perf_event_set_output(event, output_event);
8312 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008313 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008314 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008315
Yann Droneauda21b0b32014-01-05 21:36:33 +01008316 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
8317 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04008318 if (IS_ERR(event_file)) {
8319 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008320 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04008321 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008322
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008323 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008324 gctx = group_leader->ctx;
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008325 mutex_lock_double(&gctx->mutex, &ctx->mutex);
8326 } else {
8327 mutex_lock(&ctx->mutex);
8328 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008329
Peter Zijlstraa7239682015-09-09 19:06:33 +02008330 if (!perf_event_validate_size(event)) {
8331 err = -E2BIG;
8332 goto err_locked;
8333 }
8334
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008335 /*
8336 * Must be under the same ctx::mutex as perf_install_in_context(),
8337 * because we need to serialize with concurrent event creation.
8338 */
8339 if (!exclusive_event_installable(event, ctx)) {
8340 /* exclusive and group stuff are assumed mutually exclusive */
8341 WARN_ON_ONCE(move_group);
8342
8343 err = -EBUSY;
8344 goto err_locked;
8345 }
8346
8347 WARN_ON_ONCE(ctx->parent_ctx);
8348
8349 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008350 /*
8351 * See perf_event_ctx_lock() for comments on the details
8352 * of swizzling perf_event::ctx.
8353 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008354 perf_remove_from_context(group_leader, false);
Jiri Olsa0231bb52013-02-01 11:23:45 +01008355
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008356 list_for_each_entry(sibling, &group_leader->sibling_list,
8357 group_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008358 perf_remove_from_context(sibling, false);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008359 put_ctx(gctx);
8360 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008361
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008362 /*
8363 * Wait for everybody to stop referencing the events through
8364 * the old lists, before installing it on new lists.
8365 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008366 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008367
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008368 /*
8369 * Install the group siblings before the group leader.
8370 *
8371 * Because a group leader will try and install the entire group
8372 * (through the sibling list, which is still in-tact), we can
8373 * end up with siblings installed in the wrong context.
8374 *
8375 * By installing siblings first we NO-OP because they're not
8376 * reachable through the group lists.
8377 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008378 list_for_each_entry(sibling, &group_leader->sibling_list,
8379 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008380 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +01008381 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008382 get_ctx(ctx);
8383 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008384
8385 /*
8386 * Removing from the context ends up with disabled
8387 * event. What we want here is event in the initial
8388 * startup state, ready to be add into new context.
8389 */
8390 perf_event__state_init(group_leader);
8391 perf_install_in_context(ctx, group_leader, group_leader->cpu);
8392 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008393
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008394 /*
8395 * Now that all events are installed in @ctx, nothing
8396 * references @gctx anymore, so drop the last reference we have
8397 * on it.
8398 */
8399 put_ctx(gctx);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008400 }
8401
Peter Zijlstraf73e22a2015-09-09 20:48:22 +02008402 /*
8403 * Precalculate sample_data sizes; do while holding ctx::mutex such
8404 * that we're serialized against further additions and before
8405 * perf_install_in_context() which is the point the event is active and
8406 * can use these values.
8407 */
8408 perf_event__header_size(event);
8409 perf_event__id_header_size(event);
8410
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08008411 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008412 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008413
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008414 if (move_group)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008415 mutex_unlock(&gctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008416 mutex_unlock(&ctx->mutex);
8417
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008418 put_online_cpus();
8419
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008420 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01008421
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008422 mutex_lock(&current->perf_event_mutex);
8423 list_add_tail(&event->owner_entry, &current->perf_event_list);
8424 mutex_unlock(&current->perf_event_mutex);
8425
Peter Zijlstra8a495422010-05-27 15:47:49 +02008426 /*
8427 * Drop the reference on the group_event after placing the
8428 * new event on the sibling_list. This ensures destruction
8429 * of the group leader will find the pointer to itself in
8430 * perf_group_detach().
8431 */
Al Viro2903ff02012-08-28 12:52:22 -04008432 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04008433 fd_install(event_fd, event_file);
8434 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008435
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008436err_locked:
8437 if (move_group)
8438 mutex_unlock(&gctx->mutex);
8439 mutex_unlock(&ctx->mutex);
8440/* err_file: */
8441 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008442err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008443 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04008444 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008445err_alloc:
8446 free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008447err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008448 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008449err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02008450 if (task)
8451 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008452err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04008453 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04008454err_fd:
8455 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008456 return err;
8457}
8458
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008459/**
8460 * perf_event_create_kernel_counter
8461 *
8462 * @attr: attributes of the counter to create
8463 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07008464 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008465 */
8466struct perf_event *
8467perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07008468 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03008469 perf_overflow_handler_t overflow_handler,
8470 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008471{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008472 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008473 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008474 int err;
8475
8476 /*
8477 * Get the target context (task or percpu):
8478 */
8479
Avi Kivity4dc0da82011-06-29 18:42:35 +03008480 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00008481 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008482 if (IS_ERR(event)) {
8483 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008484 goto err;
8485 }
8486
Jiri Olsaf8697762014-08-01 14:33:01 +02008487 /* Mark owner so we could distinguish it from user events. */
8488 event->owner = EVENT_OWNER_KERNEL;
8489
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008490 account_event(event);
8491
Yan, Zheng4af57ef2014-11-04 21:56:01 -05008492 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008493 if (IS_ERR(ctx)) {
8494 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008495 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008496 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008497
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008498 WARN_ON_ONCE(ctx->parent_ctx);
8499 mutex_lock(&ctx->mutex);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008500 if (!exclusive_event_installable(event, ctx)) {
8501 mutex_unlock(&ctx->mutex);
8502 perf_unpin_context(ctx);
8503 put_ctx(ctx);
8504 err = -EBUSY;
8505 goto err_free;
8506 }
8507
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008508 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008509 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008510 mutex_unlock(&ctx->mutex);
8511
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008512 return event;
8513
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008514err_free:
8515 free_event(event);
8516err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008517 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008518}
8519EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
8520
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008521void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
8522{
8523 struct perf_event_context *src_ctx;
8524 struct perf_event_context *dst_ctx;
8525 struct perf_event *event, *tmp;
8526 LIST_HEAD(events);
8527
8528 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
8529 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
8530
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008531 /*
8532 * See perf_event_ctx_lock() for comments on the details
8533 * of swizzling perf_event::ctx.
8534 */
8535 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008536 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
8537 event_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008538 perf_remove_from_context(event, false);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02008539 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008540 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +02008541 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008542 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008543
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008544 /*
8545 * Wait for the events to quiesce before re-instating them.
8546 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008547 synchronize_rcu();
8548
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008549 /*
8550 * Re-instate events in 2 passes.
8551 *
8552 * Skip over group leaders and only install siblings on this first
8553 * pass, siblings will not get enabled without a leader, however a
8554 * leader will enable its siblings, even if those are still on the old
8555 * context.
8556 */
8557 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
8558 if (event->group_leader == event)
8559 continue;
8560
8561 list_del(&event->migrate_entry);
8562 if (event->state >= PERF_EVENT_STATE_OFF)
8563 event->state = PERF_EVENT_STATE_INACTIVE;
8564 account_event_cpu(event, dst_cpu);
8565 perf_install_in_context(dst_ctx, event, dst_cpu);
8566 get_ctx(dst_ctx);
8567 }
8568
8569 /*
8570 * Once all the siblings are setup properly, install the group leaders
8571 * to make it go.
8572 */
Peter Zijlstra98861672013-10-03 16:02:23 +02008573 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
8574 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008575 if (event->state >= PERF_EVENT_STATE_OFF)
8576 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02008577 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008578 perf_install_in_context(dst_ctx, event, dst_cpu);
8579 get_ctx(dst_ctx);
8580 }
8581 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008582 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008583}
8584EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
8585
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008586static void sync_child_event(struct perf_event *child_event,
8587 struct task_struct *child)
8588{
8589 struct perf_event *parent_event = child_event->parent;
8590 u64 child_val;
8591
8592 if (child_event->attr.inherit_stat)
8593 perf_event_read_event(child_event, child);
8594
Peter Zijlstrab5e58792010-05-21 14:43:12 +02008595 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008596
8597 /*
8598 * Add back the child's count to the parent's count:
8599 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02008600 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008601 atomic64_add(child_event->total_time_enabled,
8602 &parent_event->child_total_time_enabled);
8603 atomic64_add(child_event->total_time_running,
8604 &parent_event->child_total_time_running);
8605
8606 /*
8607 * Remove this event from the parent's list
8608 */
8609 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
8610 mutex_lock(&parent_event->child_mutex);
8611 list_del_init(&child_event->child_list);
8612 mutex_unlock(&parent_event->child_mutex);
8613
8614 /*
Jiri Olsadc633982014-09-12 13:18:26 +02008615 * Make sure user/parent get notified, that we just
8616 * lost one event.
8617 */
8618 perf_event_wakeup(parent_event);
8619
8620 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008621 * Release the parent event, if this was the last
8622 * reference to it.
8623 */
Al Viroa6fa9412012-08-20 14:59:25 +01008624 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008625}
8626
8627static void
8628__perf_event_exit_task(struct perf_event *child_event,
8629 struct perf_event_context *child_ctx,
8630 struct task_struct *child)
8631{
Peter Zijlstra1903d502014-07-15 17:27:27 +02008632 /*
8633 * Do not destroy the 'original' grouping; because of the context
8634 * switch optimization the original events could've ended up in a
8635 * random child task.
8636 *
8637 * If we were to destroy the original group, all group related
8638 * operations would cease to function properly after this random
8639 * child dies.
8640 *
8641 * Do destroy all inherited groups, we don't care about those
8642 * and being thorough is better.
8643 */
8644 perf_remove_from_context(child_event, !!child_event->parent);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008645
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008646 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008647 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008648 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008649 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008650 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008651 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008652 sync_child_event(child_event, child);
8653 free_event(child_event);
Jiri Olsa179033b2014-08-07 11:48:26 -04008654 } else {
8655 child_event->state = PERF_EVENT_STATE_EXIT;
8656 perf_event_wakeup(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008657 }
8658}
8659
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008660static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008661{
Peter Zijlstraebf905f2014-05-29 19:00:24 +02008662 struct perf_event *child_event, *next;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008663 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008664 unsigned long flags;
8665
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008666 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008667 perf_event_task(child, NULL, 0);
8668 return;
8669 }
8670
8671 local_irq_save(flags);
8672 /*
8673 * We can't reschedule here because interrupts are disabled,
8674 * and either child is current or it is a task that can't be
8675 * scheduled, so we are now safe from rescheduling changing
8676 * our context.
8677 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01008678 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008679
8680 /*
8681 * Take the context lock here so that if find_get_context is
8682 * reading child->perf_event_ctxp, we wait until it has
8683 * incremented the context's refcount before we do put_ctx below.
8684 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01008685 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02008686 task_ctx_sched_out(child_ctx);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008687 child->perf_event_ctxp[ctxn] = NULL;
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02008688
8689 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008690 * If this context is a clone; unclone it so it can't get
8691 * swapped to another process while we're removing all
8692 * the events from it.
8693 */
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008694 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01008695 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01008696 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008697
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008698 if (clone_ctx)
8699 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02008700
8701 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008702 * Report the task dead after unscheduling the events so that we
8703 * won't get any samples after PERF_RECORD_EXIT. We can however still
8704 * get a few PERF_RECORD_READ events.
8705 */
8706 perf_event_task(child, child_ctx, 0);
8707
8708 /*
8709 * We can recurse on the same lock type through:
8710 *
8711 * __perf_event_exit_task()
8712 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01008713 * put_event()
8714 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008715 *
8716 * But since its the parent context it won't be the same instance.
8717 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02008718 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008719
Peter Zijlstraebf905f2014-05-29 19:00:24 +02008720 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008721 __perf_event_exit_task(child_event, child_ctx, child);
8722
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008723 mutex_unlock(&child_ctx->mutex);
8724
8725 put_ctx(child_ctx);
8726}
8727
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008728/*
8729 * When a child task exits, feed back event values to parent events.
8730 */
8731void perf_event_exit_task(struct task_struct *child)
8732{
Peter Zijlstra88821352010-11-09 19:01:43 +01008733 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008734 int ctxn;
8735
Peter Zijlstra88821352010-11-09 19:01:43 +01008736 mutex_lock(&child->perf_event_mutex);
8737 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
8738 owner_entry) {
8739 list_del_init(&event->owner_entry);
8740
8741 /*
8742 * Ensure the list deletion is visible before we clear
8743 * the owner, closes a race against perf_release() where
8744 * we need to serialize on the owner->perf_event_mutex.
8745 */
8746 smp_wmb();
8747 event->owner = NULL;
8748 }
8749 mutex_unlock(&child->perf_event_mutex);
8750
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008751 for_each_task_context_nr(ctxn)
8752 perf_event_exit_task_context(child, ctxn);
8753}
8754
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008755static void perf_free_event(struct perf_event *event,
8756 struct perf_event_context *ctx)
8757{
8758 struct perf_event *parent = event->parent;
8759
8760 if (WARN_ON_ONCE(!parent))
8761 return;
8762
8763 mutex_lock(&parent->child_mutex);
8764 list_del_init(&event->child_list);
8765 mutex_unlock(&parent->child_mutex);
8766
Al Viroa6fa9412012-08-20 14:59:25 +01008767 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008768
Peter Zijlstra652884f2015-01-23 11:20:10 +01008769 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02008770 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008771 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +01008772 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008773 free_event(event);
8774}
8775
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008776/*
Peter Zijlstra652884f2015-01-23 11:20:10 +01008777 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008778 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +01008779 *
8780 * Not all locks are strictly required, but take them anyway to be nice and
8781 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008782 */
8783void perf_event_free_task(struct task_struct *task)
8784{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008785 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008786 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008787 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008788
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008789 for_each_task_context_nr(ctxn) {
8790 ctx = task->perf_event_ctxp[ctxn];
8791 if (!ctx)
8792 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008793
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008794 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008795again:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008796 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
8797 group_entry)
8798 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008799
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008800 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
8801 group_entry)
8802 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008803
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008804 if (!list_empty(&ctx->pinned_groups) ||
8805 !list_empty(&ctx->flexible_groups))
8806 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008807
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008808 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008809
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008810 put_ctx(ctx);
8811 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008812}
8813
Peter Zijlstra4e231c72010-09-09 21:01:59 +02008814void perf_event_delayed_put(struct task_struct *task)
8815{
8816 int ctxn;
8817
8818 for_each_task_context_nr(ctxn)
8819 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
8820}
8821
Kaixu Xiaffe86902015-08-06 07:02:32 +00008822struct perf_event *perf_event_get(unsigned int fd)
8823{
8824 int err;
8825 struct fd f;
8826 struct perf_event *event;
8827
8828 err = perf_fget_light(fd, &f);
8829 if (err)
8830 return ERR_PTR(err);
8831
8832 event = f.file->private_data;
8833 atomic_long_inc(&event->refcount);
8834 fdput(f);
8835
8836 return event;
8837}
8838
8839const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
8840{
8841 if (!event)
8842 return ERR_PTR(-EINVAL);
8843
8844 return &event->attr;
8845}
8846
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008847/*
8848 * inherit a event from parent task to child task:
8849 */
8850static struct perf_event *
8851inherit_event(struct perf_event *parent_event,
8852 struct task_struct *parent,
8853 struct perf_event_context *parent_ctx,
8854 struct task_struct *child,
8855 struct perf_event *group_leader,
8856 struct perf_event_context *child_ctx)
8857{
Jiri Olsa1929def2014-09-12 13:18:27 +02008858 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008859 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02008860 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008861
8862 /*
8863 * Instead of creating recursive hierarchies of events,
8864 * we link inherited events back to the original parent,
8865 * which has a filp for sure, which we use as the reference
8866 * count:
8867 */
8868 if (parent_event->parent)
8869 parent_event = parent_event->parent;
8870
8871 child_event = perf_event_alloc(&parent_event->attr,
8872 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008873 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008874 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +00008875 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008876 if (IS_ERR(child_event))
8877 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01008878
Jiri Olsafadfe7b2014-08-01 14:33:02 +02008879 if (is_orphaned_event(parent_event) ||
8880 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Al Viroa6fa9412012-08-20 14:59:25 +01008881 free_event(child_event);
8882 return NULL;
8883 }
8884
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008885 get_ctx(child_ctx);
8886
8887 /*
8888 * Make the child state follow the state of the parent event,
8889 * not its attr.disabled bit. We hold the parent's mutex,
8890 * so we won't race with perf_event_{en, dis}able_family.
8891 */
Jiri Olsa1929def2014-09-12 13:18:27 +02008892 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008893 child_event->state = PERF_EVENT_STATE_INACTIVE;
8894 else
8895 child_event->state = PERF_EVENT_STATE_OFF;
8896
8897 if (parent_event->attr.freq) {
8898 u64 sample_period = parent_event->hw.sample_period;
8899 struct hw_perf_event *hwc = &child_event->hw;
8900
8901 hwc->sample_period = sample_period;
8902 hwc->last_period = sample_period;
8903
8904 local64_set(&hwc->period_left, sample_period);
8905 }
8906
8907 child_event->ctx = child_ctx;
8908 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03008909 child_event->overflow_handler_context
8910 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008911
8912 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02008913 * Precalculate sample_data sizes
8914 */
8915 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02008916 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02008917
8918 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008919 * Link it up in the child's context:
8920 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02008921 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008922 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02008923 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008924
8925 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008926 * Link this into the parent event's child list
8927 */
8928 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
8929 mutex_lock(&parent_event->child_mutex);
8930 list_add_tail(&child_event->child_list, &parent_event->child_list);
8931 mutex_unlock(&parent_event->child_mutex);
8932
8933 return child_event;
8934}
8935
8936static int inherit_group(struct perf_event *parent_event,
8937 struct task_struct *parent,
8938 struct perf_event_context *parent_ctx,
8939 struct task_struct *child,
8940 struct perf_event_context *child_ctx)
8941{
8942 struct perf_event *leader;
8943 struct perf_event *sub;
8944 struct perf_event *child_ctr;
8945
8946 leader = inherit_event(parent_event, parent, parent_ctx,
8947 child, NULL, child_ctx);
8948 if (IS_ERR(leader))
8949 return PTR_ERR(leader);
8950 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
8951 child_ctr = inherit_event(sub, parent, parent_ctx,
8952 child, leader, child_ctx);
8953 if (IS_ERR(child_ctr))
8954 return PTR_ERR(child_ctr);
8955 }
8956 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008957}
8958
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008959static int
8960inherit_task_group(struct perf_event *event, struct task_struct *parent,
8961 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008962 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008963 int *inherited_all)
8964{
8965 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008966 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008967
8968 if (!event->attr.inherit) {
8969 *inherited_all = 0;
8970 return 0;
8971 }
8972
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008973 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008974 if (!child_ctx) {
8975 /*
8976 * This is executed from the parent task context, so
8977 * inherit events that have been marked for cloning.
8978 * First allocate and initialize a context for the
8979 * child.
8980 */
8981
Jiri Olsa734df5a2013-07-09 17:44:10 +02008982 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008983 if (!child_ctx)
8984 return -ENOMEM;
8985
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008986 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008987 }
8988
8989 ret = inherit_group(event, parent, parent_ctx,
8990 child, child_ctx);
8991
8992 if (ret)
8993 *inherited_all = 0;
8994
8995 return ret;
8996}
8997
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008998/*
8999 * Initialize the perf_event context in task_struct
9000 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +02009001static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009002{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009003 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009004 struct perf_event_context *cloned_ctx;
9005 struct perf_event *event;
9006 struct task_struct *parent = current;
9007 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009008 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009009 int ret = 0;
9010
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009011 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009012 return 0;
9013
9014 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009015 * If the parent's context is a clone, pin it so it won't get
9016 * swapped under us.
9017 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009018 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +02009019 if (!parent_ctx)
9020 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009021
9022 /*
9023 * No need to check if parent_ctx != NULL here; since we saw
9024 * it non-NULL earlier, the only reason for it to become NULL
9025 * is if we exit, and since we're currently in the middle of
9026 * a fork we can't be exiting at the same time.
9027 */
9028
9029 /*
9030 * Lock the parent list. No need to lock the child - not PID
9031 * hashed yet and not running, so nobody can access it.
9032 */
9033 mutex_lock(&parent_ctx->mutex);
9034
9035 /*
9036 * We dont have to disable NMIs - we are only looking at
9037 * the list, not manipulating it:
9038 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009039 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009040 ret = inherit_task_group(event, parent, parent_ctx,
9041 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009042 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009043 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009044 }
9045
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009046 /*
9047 * We can't hold ctx->lock when iterating the ->flexible_group list due
9048 * to allocations, but we need to prevent rotation because
9049 * rotate_ctx() will change the list from interrupt context.
9050 */
9051 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
9052 parent_ctx->rotate_disable = 1;
9053 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
9054
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009055 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009056 ret = inherit_task_group(event, parent, parent_ctx,
9057 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009058 if (ret)
9059 break;
9060 }
9061
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009062 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
9063 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009064
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009065 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009066
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01009067 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009068 /*
9069 * Mark the child context as a clone of the parent
9070 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009071 *
9072 * Note that if the parent is a clone, the holding of
9073 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009074 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009075 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009076 if (cloned_ctx) {
9077 child_ctx->parent_ctx = cloned_ctx;
9078 child_ctx->parent_gen = parent_ctx->parent_gen;
9079 } else {
9080 child_ctx->parent_ctx = parent_ctx;
9081 child_ctx->parent_gen = parent_ctx->generation;
9082 }
9083 get_ctx(child_ctx->parent_ctx);
9084 }
9085
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009086 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009087 mutex_unlock(&parent_ctx->mutex);
9088
9089 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009090 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009091
9092 return ret;
9093}
9094
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009095/*
9096 * Initialize the perf_event context in task_struct
9097 */
9098int perf_event_init_task(struct task_struct *child)
9099{
9100 int ctxn, ret;
9101
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01009102 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
9103 mutex_init(&child->perf_event_mutex);
9104 INIT_LIST_HEAD(&child->perf_event_list);
9105
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009106 for_each_task_context_nr(ctxn) {
9107 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07009108 if (ret) {
9109 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009110 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07009111 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009112 }
9113
9114 return 0;
9115}
9116
Paul Mackerras220b1402010-03-10 20:45:52 +11009117static void __init perf_event_init_all_cpus(void)
9118{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009119 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11009120 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11009121
9122 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009123 swhash = &per_cpu(swevent_htable, cpu);
9124 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00009125 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11009126 }
9127}
9128
Paul Gortmaker0db06282013-06-19 14:53:51 -04009129static void perf_event_init_cpu(int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009130{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009131 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009132
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009133 mutex_lock(&swhash->hlist_mutex);
Jiri Olsa39af6b12014-04-07 11:04:08 +02009134 swhash->online = true;
Linus Torvalds4536e4d2011-11-03 07:44:04 -07009135 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009136 struct swevent_hlist *hlist;
9137
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009138 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
9139 WARN_ON(!hlist);
9140 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009141 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009142 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009143}
9144
Dave Young2965faa2015-09-09 15:38:55 -07009145#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009146static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009147{
Mark Rutland226424e2014-11-05 16:11:44 +00009148 struct remove_event re = { .detach_group = true };
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009149 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009150
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009151 rcu_read_lock();
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02009152 list_for_each_entry_rcu(re.event, &ctx->event_list, event_entry)
9153 __perf_remove_from_context(&re);
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009154 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009155}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009156
9157static void perf_event_exit_cpu_context(int cpu)
9158{
9159 struct perf_event_context *ctx;
9160 struct pmu *pmu;
9161 int idx;
9162
9163 idx = srcu_read_lock(&pmus_srcu);
9164 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02009165 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009166
9167 mutex_lock(&ctx->mutex);
9168 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
9169 mutex_unlock(&ctx->mutex);
9170 }
9171 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009172}
9173
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009174static void perf_event_exit_cpu(int cpu)
9175{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009176 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009177
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009178 perf_event_exit_cpu_context(cpu);
9179
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009180 mutex_lock(&swhash->hlist_mutex);
Jiri Olsa39af6b12014-04-07 11:04:08 +02009181 swhash->online = false;
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009182 swevent_hlist_release(swhash);
9183 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009184}
9185#else
9186static inline void perf_event_exit_cpu(int cpu) { }
9187#endif
9188
Peter Zijlstrac2774432010-12-08 15:29:02 +01009189static int
9190perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
9191{
9192 int cpu;
9193
9194 for_each_online_cpu(cpu)
9195 perf_event_exit_cpu(cpu);
9196
9197 return NOTIFY_OK;
9198}
9199
9200/*
9201 * Run the perf reboot notifier at the very last possible moment so that
9202 * the generic watchdog code runs as long as possible.
9203 */
9204static struct notifier_block perf_reboot_notifier = {
9205 .notifier_call = perf_reboot,
9206 .priority = INT_MIN,
9207};
9208
Paul Gortmaker0db06282013-06-19 14:53:51 -04009209static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009210perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
9211{
9212 unsigned int cpu = (long)hcpu;
9213
Linus Torvalds4536e4d2011-11-03 07:44:04 -07009214 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009215
9216 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02009217 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009218 perf_event_init_cpu(cpu);
9219 break;
9220
Peter Zijlstra5e116372010-06-11 13:35:08 +02009221 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009222 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009223 perf_event_exit_cpu(cpu);
9224 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009225 default:
9226 break;
9227 }
9228
9229 return NOTIFY_OK;
9230}
9231
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009232void __init perf_event_init(void)
9233{
Jason Wessel3c502e72010-11-04 17:33:01 -05009234 int ret;
9235
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009236 idr_init(&pmu_idr);
9237
Paul Mackerras220b1402010-03-10 20:45:52 +11009238 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009239 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009240 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
9241 perf_pmu_register(&perf_cpu_clock, NULL, -1);
9242 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009243 perf_tp_register();
9244 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01009245 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05009246
9247 ret = init_hw_breakpoint();
9248 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02009249
9250 /* do not patch jump label more than once per second */
9251 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01009252
9253 /*
9254 * Build time assertion that we keep the data_head at the intended
9255 * location. IOW, validation we got the __reserved[] size right.
9256 */
9257 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
9258 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009259}
Peter Zijlstraabe43402010-11-17 23:17:37 +01009260
Cody P Schaferfd979c02015-01-30 13:45:57 -08009261ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
9262 char *page)
9263{
9264 struct perf_pmu_events_attr *pmu_attr =
9265 container_of(attr, struct perf_pmu_events_attr, attr);
9266
9267 if (pmu_attr->event_str)
9268 return sprintf(page, "%s\n", pmu_attr->event_str);
9269
9270 return 0;
9271}
9272
Peter Zijlstraabe43402010-11-17 23:17:37 +01009273static int __init perf_event_sysfs_init(void)
9274{
9275 struct pmu *pmu;
9276 int ret;
9277
9278 mutex_lock(&pmus_lock);
9279
9280 ret = bus_register(&pmu_bus);
9281 if (ret)
9282 goto unlock;
9283
9284 list_for_each_entry(pmu, &pmus, entry) {
9285 if (!pmu->name || pmu->type < 0)
9286 continue;
9287
9288 ret = pmu_dev_alloc(pmu);
9289 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
9290 }
9291 pmu_bus_running = 1;
9292 ret = 0;
9293
9294unlock:
9295 mutex_unlock(&pmus_lock);
9296
9297 return ret;
9298}
9299device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009300
9301#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -04009302static struct cgroup_subsys_state *
9303perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009304{
9305 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02009306
Li Zefan1b15d052011-03-03 14:26:06 +08009307 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009308 if (!jc)
9309 return ERR_PTR(-ENOMEM);
9310
Stephane Eraniane5d13672011-02-14 11:20:01 +02009311 jc->info = alloc_percpu(struct perf_cgroup_info);
9312 if (!jc->info) {
9313 kfree(jc);
9314 return ERR_PTR(-ENOMEM);
9315 }
9316
Stephane Eraniane5d13672011-02-14 11:20:01 +02009317 return &jc->css;
9318}
9319
Tejun Heoeb954192013-08-08 20:11:23 -04009320static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009321{
Tejun Heoeb954192013-08-08 20:11:23 -04009322 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
9323
Stephane Eraniane5d13672011-02-14 11:20:01 +02009324 free_percpu(jc->info);
9325 kfree(jc);
9326}
9327
9328static int __perf_cgroup_move(void *info)
9329{
9330 struct task_struct *task = info;
9331 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
9332 return 0;
9333}
9334
Tejun Heoeb954192013-08-08 20:11:23 -04009335static void perf_cgroup_attach(struct cgroup_subsys_state *css,
9336 struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009337{
Tejun Heobb9d97b2011-12-12 18:12:21 -08009338 struct task_struct *task;
9339
Tejun Heo924f0d9a2014-02-13 06:58:41 -05009340 cgroup_taskset_for_each(task, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08009341 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009342}
9343
Tejun Heoeb954192013-08-08 20:11:23 -04009344static void perf_cgroup_exit(struct cgroup_subsys_state *css,
9345 struct cgroup_subsys_state *old_css,
Li Zefan761b3ef52012-01-31 13:47:36 +08009346 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009347{
9348 /*
9349 * cgroup_exit() is called in the copy_process() failure path.
9350 * Ignore this case since the task hasn't ran yet, this avoids
9351 * trying to poke a half freed task state from generic code.
9352 */
9353 if (!(task->flags & PF_EXITING))
9354 return;
9355
Tejun Heobb9d97b2011-12-12 18:12:21 -08009356 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009357}
9358
Tejun Heo073219e2014-02-08 10:36:58 -05009359struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08009360 .css_alloc = perf_cgroup_css_alloc,
9361 .css_free = perf_cgroup_css_free,
Ingo Molnare7e7ee22011-05-04 08:42:29 +02009362 .exit = perf_cgroup_exit,
Tejun Heobb9d97b2011-12-12 18:12:21 -08009363 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +02009364};
9365#endif /* CONFIG_CGROUP_PERF */