blob: 64754bfecd700dd4a0fc7f6738f2d07a718100c6 [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) {
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005289 u32 raw_size = data->raw->size;
5290 u32 real_size = round_up(raw_size + sizeof(u32),
5291 sizeof(u64)) - sizeof(u32);
5292 u64 zero = 0;
5293
5294 perf_output_put(handle, real_size);
5295 __output_copy(handle, data->raw->data, raw_size);
5296 if (real_size - raw_size)
5297 __output_copy(handle, &zero, real_size - raw_size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005298 } else {
5299 struct {
5300 u32 size;
5301 u32 data;
5302 } raw = {
5303 .size = sizeof(u32),
5304 .data = 0,
5305 };
5306 perf_output_put(handle, raw);
5307 }
5308 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005309
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005310 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5311 if (data->br_stack) {
5312 size_t size;
5313
5314 size = data->br_stack->nr
5315 * sizeof(struct perf_branch_entry);
5316
5317 perf_output_put(handle, data->br_stack->nr);
5318 perf_output_copy(handle, data->br_stack->entries, size);
5319 } else {
5320 /*
5321 * we always store at least the value of nr
5322 */
5323 u64 nr = 0;
5324 perf_output_put(handle, nr);
5325 }
5326 }
Jiri Olsa40189942012-08-07 15:20:37 +02005327
5328 if (sample_type & PERF_SAMPLE_REGS_USER) {
5329 u64 abi = data->regs_user.abi;
5330
5331 /*
5332 * If there are no regs to dump, notice it through
5333 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5334 */
5335 perf_output_put(handle, abi);
5336
5337 if (abi) {
5338 u64 mask = event->attr.sample_regs_user;
5339 perf_output_sample_regs(handle,
5340 data->regs_user.regs,
5341 mask);
5342 }
5343 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005344
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005345 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005346 perf_output_sample_ustack(handle,
5347 data->stack_user_size,
5348 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005349 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005350
5351 if (sample_type & PERF_SAMPLE_WEIGHT)
5352 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005353
5354 if (sample_type & PERF_SAMPLE_DATA_SRC)
5355 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005356
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005357 if (sample_type & PERF_SAMPLE_TRANSACTION)
5358 perf_output_put(handle, data->txn);
5359
Stephane Eranian60e23642014-09-24 13:48:37 +02005360 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5361 u64 abi = data->regs_intr.abi;
5362 /*
5363 * If there are no regs to dump, notice it through
5364 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5365 */
5366 perf_output_put(handle, abi);
5367
5368 if (abi) {
5369 u64 mask = event->attr.sample_regs_intr;
5370
5371 perf_output_sample_regs(handle,
5372 data->regs_intr.regs,
5373 mask);
5374 }
5375 }
5376
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005377 if (!event->attr.watermark) {
5378 int wakeup_events = event->attr.wakeup_events;
5379
5380 if (wakeup_events) {
5381 struct ring_buffer *rb = handle->rb;
5382 int events = local_inc_return(&rb->events);
5383
5384 if (events >= wakeup_events) {
5385 local_sub(wakeup_events, &rb->events);
5386 local_inc(&rb->wakeup);
5387 }
5388 }
5389 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005390}
5391
5392void perf_prepare_sample(struct perf_event_header *header,
5393 struct perf_sample_data *data,
5394 struct perf_event *event,
5395 struct pt_regs *regs)
5396{
5397 u64 sample_type = event->attr.sample_type;
5398
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005399 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005400 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005401
5402 header->misc = 0;
5403 header->misc |= perf_misc_flags(regs);
5404
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005405 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005406
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005407 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005408 data->ip = perf_instruction_pointer(regs);
5409
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005410 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5411 int size = 1;
5412
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005413 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005414
5415 if (data->callchain)
5416 size += data->callchain->nr;
5417
5418 header->size += size * sizeof(u64);
5419 }
5420
5421 if (sample_type & PERF_SAMPLE_RAW) {
5422 int size = sizeof(u32);
5423
5424 if (data->raw)
5425 size += data->raw->size;
5426 else
5427 size += sizeof(u32);
5428
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005429 header->size += round_up(size, sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005430 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005431
5432 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5433 int size = sizeof(u64); /* nr */
5434 if (data->br_stack) {
5435 size += data->br_stack->nr
5436 * sizeof(struct perf_branch_entry);
5437 }
5438 header->size += size;
5439 }
Jiri Olsa40189942012-08-07 15:20:37 +02005440
Peter Zijlstra25657112014-09-24 13:48:42 +02005441 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005442 perf_sample_regs_user(&data->regs_user, regs,
5443 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005444
Jiri Olsa40189942012-08-07 15:20:37 +02005445 if (sample_type & PERF_SAMPLE_REGS_USER) {
5446 /* regs dump ABI info */
5447 int size = sizeof(u64);
5448
Jiri Olsa40189942012-08-07 15:20:37 +02005449 if (data->regs_user.regs) {
5450 u64 mask = event->attr.sample_regs_user;
5451 size += hweight64(mask) * sizeof(u64);
5452 }
5453
5454 header->size += size;
5455 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005456
5457 if (sample_type & PERF_SAMPLE_STACK_USER) {
5458 /*
5459 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
5460 * processed as the last one or have additional check added
5461 * in case new sample type is added, because we could eat
5462 * up the rest of the sample size.
5463 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02005464 u16 stack_size = event->attr.sample_stack_user;
5465 u16 size = sizeof(u64);
5466
Jiri Olsac5ebced2012-08-07 15:20:40 +02005467 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02005468 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02005469
5470 /*
5471 * If there is something to dump, add space for the dump
5472 * itself and for the field that tells the dynamic size,
5473 * which is how many have been actually dumped.
5474 */
5475 if (stack_size)
5476 size += sizeof(u64) + stack_size;
5477
5478 data->stack_user_size = stack_size;
5479 header->size += size;
5480 }
Stephane Eranian60e23642014-09-24 13:48:37 +02005481
5482 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5483 /* regs dump ABI info */
5484 int size = sizeof(u64);
5485
5486 perf_sample_regs_intr(&data->regs_intr, regs);
5487
5488 if (data->regs_intr.regs) {
5489 u64 mask = event->attr.sample_regs_intr;
5490
5491 size += hweight64(mask) * sizeof(u64);
5492 }
5493
5494 header->size += size;
5495 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005496}
5497
Yan, Zheng21509082015-05-06 15:33:49 -04005498void perf_event_output(struct perf_event *event,
5499 struct perf_sample_data *data,
5500 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005501{
5502 struct perf_output_handle handle;
5503 struct perf_event_header header;
5504
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005505 /* protect the callchain buffers */
5506 rcu_read_lock();
5507
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005508 perf_prepare_sample(&header, data, event, regs);
5509
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005510 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005511 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005512
5513 perf_output_sample(&handle, &header, data, event);
5514
5515 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005516
5517exit:
5518 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005519}
5520
5521/*
5522 * read event_id
5523 */
5524
5525struct perf_read_event {
5526 struct perf_event_header header;
5527
5528 u32 pid;
5529 u32 tid;
5530};
5531
5532static void
5533perf_event_read_event(struct perf_event *event,
5534 struct task_struct *task)
5535{
5536 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005537 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005538 struct perf_read_event read_event = {
5539 .header = {
5540 .type = PERF_RECORD_READ,
5541 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005542 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005543 },
5544 .pid = perf_event_pid(event, task),
5545 .tid = perf_event_tid(event, task),
5546 };
5547 int ret;
5548
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005549 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005550 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005551 if (ret)
5552 return;
5553
5554 perf_output_put(&handle, read_event);
5555 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005556 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005557
5558 perf_output_end(&handle);
5559}
5560
Jiri Olsa52d857a2013-05-06 18:27:18 +02005561typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
5562
5563static void
5564perf_event_aux_ctx(struct perf_event_context *ctx,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005565 perf_event_aux_output_cb output,
5566 void *data)
5567{
5568 struct perf_event *event;
5569
5570 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5571 if (event->state < PERF_EVENT_STATE_INACTIVE)
5572 continue;
5573 if (!event_filter_match(event))
5574 continue;
Jiri Olsa67516842013-07-09 18:56:31 +02005575 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005576 }
5577}
5578
5579static void
Jiri Olsa67516842013-07-09 18:56:31 +02005580perf_event_aux(perf_event_aux_output_cb output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005581 struct perf_event_context *task_ctx)
5582{
5583 struct perf_cpu_context *cpuctx;
5584 struct perf_event_context *ctx;
5585 struct pmu *pmu;
5586 int ctxn;
5587
5588 rcu_read_lock();
5589 list_for_each_entry_rcu(pmu, &pmus, entry) {
5590 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
5591 if (cpuctx->unique_pmu != pmu)
5592 goto next;
Jiri Olsa67516842013-07-09 18:56:31 +02005593 perf_event_aux_ctx(&cpuctx->ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005594 if (task_ctx)
5595 goto next;
5596 ctxn = pmu->task_ctx_nr;
5597 if (ctxn < 0)
5598 goto next;
5599 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
5600 if (ctx)
Jiri Olsa67516842013-07-09 18:56:31 +02005601 perf_event_aux_ctx(ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005602next:
5603 put_cpu_ptr(pmu->pmu_cpu_context);
5604 }
5605
5606 if (task_ctx) {
5607 preempt_disable();
Jiri Olsa67516842013-07-09 18:56:31 +02005608 perf_event_aux_ctx(task_ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005609 preempt_enable();
5610 }
5611 rcu_read_unlock();
5612}
5613
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005614/*
5615 * task tracking -- fork/exit
5616 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02005617 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005618 */
5619
5620struct perf_task_event {
5621 struct task_struct *task;
5622 struct perf_event_context *task_ctx;
5623
5624 struct {
5625 struct perf_event_header header;
5626
5627 u32 pid;
5628 u32 ppid;
5629 u32 tid;
5630 u32 ptid;
5631 u64 time;
5632 } event_id;
5633};
5634
Jiri Olsa67516842013-07-09 18:56:31 +02005635static int perf_event_task_match(struct perf_event *event)
5636{
Stephane Eranian13d7a242013-08-21 12:10:24 +02005637 return event->attr.comm || event->attr.mmap ||
5638 event->attr.mmap2 || event->attr.mmap_data ||
5639 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02005640}
5641
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005642static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005643 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005644{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005645 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005646 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005647 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005648 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005649 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01005650
Jiri Olsa67516842013-07-09 18:56:31 +02005651 if (!perf_event_task_match(event))
5652 return;
5653
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005654 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005655
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005656 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005657 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02005658 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005659 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005660
5661 task_event->event_id.pid = perf_event_pid(event, task);
5662 task_event->event_id.ppid = perf_event_pid(event, current);
5663
5664 task_event->event_id.tid = perf_event_tid(event, task);
5665 task_event->event_id.ptid = perf_event_tid(event, current);
5666
Peter Zijlstra34f43922015-02-20 14:05:38 +01005667 task_event->event_id.time = perf_event_clock(event);
5668
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005669 perf_output_put(&handle, task_event->event_id);
5670
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005671 perf_event__output_id_sample(event, &handle, &sample);
5672
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005673 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005674out:
5675 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005676}
5677
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005678static void perf_event_task(struct task_struct *task,
5679 struct perf_event_context *task_ctx,
5680 int new)
5681{
5682 struct perf_task_event task_event;
5683
5684 if (!atomic_read(&nr_comm_events) &&
5685 !atomic_read(&nr_mmap_events) &&
5686 !atomic_read(&nr_task_events))
5687 return;
5688
5689 task_event = (struct perf_task_event){
5690 .task = task,
5691 .task_ctx = task_ctx,
5692 .event_id = {
5693 .header = {
5694 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
5695 .misc = 0,
5696 .size = sizeof(task_event.event_id),
5697 },
5698 /* .pid */
5699 /* .ppid */
5700 /* .tid */
5701 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01005702 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005703 },
5704 };
5705
Jiri Olsa67516842013-07-09 18:56:31 +02005706 perf_event_aux(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005707 &task_event,
5708 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005709}
5710
5711void perf_event_fork(struct task_struct *task)
5712{
5713 perf_event_task(task, NULL, 1);
5714}
5715
5716/*
5717 * comm tracking
5718 */
5719
5720struct perf_comm_event {
5721 struct task_struct *task;
5722 char *comm;
5723 int comm_size;
5724
5725 struct {
5726 struct perf_event_header header;
5727
5728 u32 pid;
5729 u32 tid;
5730 } event_id;
5731};
5732
Jiri Olsa67516842013-07-09 18:56:31 +02005733static int perf_event_comm_match(struct perf_event *event)
5734{
5735 return event->attr.comm;
5736}
5737
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005738static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005739 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005740{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005741 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005742 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005743 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005744 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005745 int ret;
5746
Jiri Olsa67516842013-07-09 18:56:31 +02005747 if (!perf_event_comm_match(event))
5748 return;
5749
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005750 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
5751 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005752 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005753
5754 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005755 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005756
5757 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
5758 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
5759
5760 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005761 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005762 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005763
5764 perf_event__output_id_sample(event, &handle, &sample);
5765
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005766 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005767out:
5768 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005769}
5770
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005771static void perf_event_comm_event(struct perf_comm_event *comm_event)
5772{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005773 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005774 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005775
5776 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01005777 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005778 size = ALIGN(strlen(comm)+1, sizeof(u64));
5779
5780 comm_event->comm = comm;
5781 comm_event->comm_size = size;
5782
5783 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02005784
Jiri Olsa67516842013-07-09 18:56:31 +02005785 perf_event_aux(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005786 comm_event,
5787 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005788}
5789
Adrian Hunter82b89772014-05-28 11:45:04 +03005790void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005791{
5792 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005793
5794 if (!atomic_read(&nr_comm_events))
5795 return;
5796
5797 comm_event = (struct perf_comm_event){
5798 .task = task,
5799 /* .comm */
5800 /* .comm_size */
5801 .event_id = {
5802 .header = {
5803 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03005804 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005805 /* .size */
5806 },
5807 /* .pid */
5808 /* .tid */
5809 },
5810 };
5811
5812 perf_event_comm_event(&comm_event);
5813}
5814
5815/*
5816 * mmap tracking
5817 */
5818
5819struct perf_mmap_event {
5820 struct vm_area_struct *vma;
5821
5822 const char *file_name;
5823 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005824 int maj, min;
5825 u64 ino;
5826 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005827 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005828
5829 struct {
5830 struct perf_event_header header;
5831
5832 u32 pid;
5833 u32 tid;
5834 u64 start;
5835 u64 len;
5836 u64 pgoff;
5837 } event_id;
5838};
5839
Jiri Olsa67516842013-07-09 18:56:31 +02005840static int perf_event_mmap_match(struct perf_event *event,
5841 void *data)
5842{
5843 struct perf_mmap_event *mmap_event = data;
5844 struct vm_area_struct *vma = mmap_event->vma;
5845 int executable = vma->vm_flags & VM_EXEC;
5846
5847 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02005848 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02005849}
5850
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005851static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005852 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005853{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005854 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005855 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005856 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005857 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005858 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005859
Jiri Olsa67516842013-07-09 18:56:31 +02005860 if (!perf_event_mmap_match(event, data))
5861 return;
5862
Stephane Eranian13d7a242013-08-21 12:10:24 +02005863 if (event->attr.mmap2) {
5864 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
5865 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
5866 mmap_event->event_id.header.size += sizeof(mmap_event->min);
5867 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03005868 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005869 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
5870 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005871 }
5872
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005873 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
5874 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005875 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005876 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005877 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005878
5879 mmap_event->event_id.pid = perf_event_pid(event, current);
5880 mmap_event->event_id.tid = perf_event_tid(event, current);
5881
5882 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005883
5884 if (event->attr.mmap2) {
5885 perf_output_put(&handle, mmap_event->maj);
5886 perf_output_put(&handle, mmap_event->min);
5887 perf_output_put(&handle, mmap_event->ino);
5888 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005889 perf_output_put(&handle, mmap_event->prot);
5890 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005891 }
5892
Frederic Weisbecker76369132011-05-19 19:55:04 +02005893 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005894 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005895
5896 perf_event__output_id_sample(event, &handle, &sample);
5897
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005898 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005899out:
5900 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005901}
5902
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005903static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
5904{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005905 struct vm_area_struct *vma = mmap_event->vma;
5906 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005907 int maj = 0, min = 0;
5908 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005909 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005910 unsigned int size;
5911 char tmp[16];
5912 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005913 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005914
5915 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02005916 struct inode *inode;
5917 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005918
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005919 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005920 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005921 name = "//enomem";
5922 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005923 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005924 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005925 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005926 * need to add enough zero bytes after the string to handle
5927 * the 64bit alignment we do later.
5928 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02005929 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005930 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005931 name = "//toolong";
5932 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005933 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02005934 inode = file_inode(vma->vm_file);
5935 dev = inode->i_sb->s_dev;
5936 ino = inode->i_ino;
5937 gen = inode->i_generation;
5938 maj = MAJOR(dev);
5939 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005940
5941 if (vma->vm_flags & VM_READ)
5942 prot |= PROT_READ;
5943 if (vma->vm_flags & VM_WRITE)
5944 prot |= PROT_WRITE;
5945 if (vma->vm_flags & VM_EXEC)
5946 prot |= PROT_EXEC;
5947
5948 if (vma->vm_flags & VM_MAYSHARE)
5949 flags = MAP_SHARED;
5950 else
5951 flags = MAP_PRIVATE;
5952
5953 if (vma->vm_flags & VM_DENYWRITE)
5954 flags |= MAP_DENYWRITE;
5955 if (vma->vm_flags & VM_MAYEXEC)
5956 flags |= MAP_EXECUTABLE;
5957 if (vma->vm_flags & VM_LOCKED)
5958 flags |= MAP_LOCKED;
5959 if (vma->vm_flags & VM_HUGETLB)
5960 flags |= MAP_HUGETLB;
5961
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005962 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005963 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02005964 if (vma->vm_ops && vma->vm_ops->name) {
5965 name = (char *) vma->vm_ops->name(vma);
5966 if (name)
5967 goto cpy_name;
5968 }
5969
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005970 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005971 if (name)
5972 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005973
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005974 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005975 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005976 name = "[heap]";
5977 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005978 }
5979 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005980 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005981 name = "[stack]";
5982 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005983 }
5984
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005985 name = "//anon";
5986 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005987 }
5988
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005989cpy_name:
5990 strlcpy(tmp, name, sizeof(tmp));
5991 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005992got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005993 /*
5994 * Since our buffer works in 8 byte units we need to align our string
5995 * size to a multiple of 8. However, we must guarantee the tail end is
5996 * zero'd out to avoid leaking random bits to userspace.
5997 */
5998 size = strlen(name)+1;
5999 while (!IS_ALIGNED(size, sizeof(u64)))
6000 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006001
6002 mmap_event->file_name = name;
6003 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006004 mmap_event->maj = maj;
6005 mmap_event->min = min;
6006 mmap_event->ino = ino;
6007 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006008 mmap_event->prot = prot;
6009 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006010
Stephane Eranian2fe85422013-01-24 16:10:39 +01006011 if (!(vma->vm_flags & VM_EXEC))
6012 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
6013
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006014 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
6015
Jiri Olsa67516842013-07-09 18:56:31 +02006016 perf_event_aux(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006017 mmap_event,
6018 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006019
6020 kfree(buf);
6021}
6022
Eric B Munson3af9e852010-05-18 15:30:49 +01006023void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006024{
6025 struct perf_mmap_event mmap_event;
6026
6027 if (!atomic_read(&nr_mmap_events))
6028 return;
6029
6030 mmap_event = (struct perf_mmap_event){
6031 .vma = vma,
6032 /* .file_name */
6033 /* .file_size */
6034 .event_id = {
6035 .header = {
6036 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006037 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006038 /* .size */
6039 },
6040 /* .pid */
6041 /* .tid */
6042 .start = vma->vm_start,
6043 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01006044 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006045 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02006046 /* .maj (attr_mmap2 only) */
6047 /* .min (attr_mmap2 only) */
6048 /* .ino (attr_mmap2 only) */
6049 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006050 /* .prot (attr_mmap2 only) */
6051 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006052 };
6053
6054 perf_event_mmap_event(&mmap_event);
6055}
6056
Alexander Shishkin68db7e92015-01-14 14:18:15 +02006057void perf_event_aux_event(struct perf_event *event, unsigned long head,
6058 unsigned long size, u64 flags)
6059{
6060 struct perf_output_handle handle;
6061 struct perf_sample_data sample;
6062 struct perf_aux_event {
6063 struct perf_event_header header;
6064 u64 offset;
6065 u64 size;
6066 u64 flags;
6067 } rec = {
6068 .header = {
6069 .type = PERF_RECORD_AUX,
6070 .misc = 0,
6071 .size = sizeof(rec),
6072 },
6073 .offset = head,
6074 .size = size,
6075 .flags = flags,
6076 };
6077 int ret;
6078
6079 perf_event_header__init_id(&rec.header, &sample, event);
6080 ret = perf_output_begin(&handle, event, rec.header.size);
6081
6082 if (ret)
6083 return;
6084
6085 perf_output_put(&handle, rec);
6086 perf_event__output_id_sample(event, &handle, &sample);
6087
6088 perf_output_end(&handle);
6089}
6090
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006091/*
Kan Liangf38b0db2015-05-10 15:13:14 -04006092 * Lost/dropped samples logging
6093 */
6094void perf_log_lost_samples(struct perf_event *event, u64 lost)
6095{
6096 struct perf_output_handle handle;
6097 struct perf_sample_data sample;
6098 int ret;
6099
6100 struct {
6101 struct perf_event_header header;
6102 u64 lost;
6103 } lost_samples_event = {
6104 .header = {
6105 .type = PERF_RECORD_LOST_SAMPLES,
6106 .misc = 0,
6107 .size = sizeof(lost_samples_event),
6108 },
6109 .lost = lost,
6110 };
6111
6112 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
6113
6114 ret = perf_output_begin(&handle, event,
6115 lost_samples_event.header.size);
6116 if (ret)
6117 return;
6118
6119 perf_output_put(&handle, lost_samples_event);
6120 perf_event__output_id_sample(event, &handle, &sample);
6121 perf_output_end(&handle);
6122}
6123
6124/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03006125 * context_switch tracking
6126 */
6127
6128struct perf_switch_event {
6129 struct task_struct *task;
6130 struct task_struct *next_prev;
6131
6132 struct {
6133 struct perf_event_header header;
6134 u32 next_prev_pid;
6135 u32 next_prev_tid;
6136 } event_id;
6137};
6138
6139static int perf_event_switch_match(struct perf_event *event)
6140{
6141 return event->attr.context_switch;
6142}
6143
6144static void perf_event_switch_output(struct perf_event *event, void *data)
6145{
6146 struct perf_switch_event *se = data;
6147 struct perf_output_handle handle;
6148 struct perf_sample_data sample;
6149 int ret;
6150
6151 if (!perf_event_switch_match(event))
6152 return;
6153
6154 /* Only CPU-wide events are allowed to see next/prev pid/tid */
6155 if (event->ctx->task) {
6156 se->event_id.header.type = PERF_RECORD_SWITCH;
6157 se->event_id.header.size = sizeof(se->event_id.header);
6158 } else {
6159 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
6160 se->event_id.header.size = sizeof(se->event_id);
6161 se->event_id.next_prev_pid =
6162 perf_event_pid(event, se->next_prev);
6163 se->event_id.next_prev_tid =
6164 perf_event_tid(event, se->next_prev);
6165 }
6166
6167 perf_event_header__init_id(&se->event_id.header, &sample, event);
6168
6169 ret = perf_output_begin(&handle, event, se->event_id.header.size);
6170 if (ret)
6171 return;
6172
6173 if (event->ctx->task)
6174 perf_output_put(&handle, se->event_id.header);
6175 else
6176 perf_output_put(&handle, se->event_id);
6177
6178 perf_event__output_id_sample(event, &handle, &sample);
6179
6180 perf_output_end(&handle);
6181}
6182
6183static void perf_event_switch(struct task_struct *task,
6184 struct task_struct *next_prev, bool sched_in)
6185{
6186 struct perf_switch_event switch_event;
6187
6188 /* N.B. caller checks nr_switch_events != 0 */
6189
6190 switch_event = (struct perf_switch_event){
6191 .task = task,
6192 .next_prev = next_prev,
6193 .event_id = {
6194 .header = {
6195 /* .type */
6196 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
6197 /* .size */
6198 },
6199 /* .next_prev_pid */
6200 /* .next_prev_tid */
6201 },
6202 };
6203
6204 perf_event_aux(perf_event_switch_output,
6205 &switch_event,
6206 NULL);
6207}
6208
6209/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006210 * IRQ throttle logging
6211 */
6212
6213static void perf_log_throttle(struct perf_event *event, int enable)
6214{
6215 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006216 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006217 int ret;
6218
6219 struct {
6220 struct perf_event_header header;
6221 u64 time;
6222 u64 id;
6223 u64 stream_id;
6224 } throttle_event = {
6225 .header = {
6226 .type = PERF_RECORD_THROTTLE,
6227 .misc = 0,
6228 .size = sizeof(throttle_event),
6229 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01006230 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006231 .id = primary_event_id(event),
6232 .stream_id = event->id,
6233 };
6234
6235 if (enable)
6236 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
6237
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006238 perf_event_header__init_id(&throttle_event.header, &sample, event);
6239
6240 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006241 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006242 if (ret)
6243 return;
6244
6245 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006246 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006247 perf_output_end(&handle);
6248}
6249
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006250static void perf_log_itrace_start(struct perf_event *event)
6251{
6252 struct perf_output_handle handle;
6253 struct perf_sample_data sample;
6254 struct perf_aux_event {
6255 struct perf_event_header header;
6256 u32 pid;
6257 u32 tid;
6258 } rec;
6259 int ret;
6260
6261 if (event->parent)
6262 event = event->parent;
6263
6264 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
6265 event->hw.itrace_started)
6266 return;
6267
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006268 rec.header.type = PERF_RECORD_ITRACE_START;
6269 rec.header.misc = 0;
6270 rec.header.size = sizeof(rec);
6271 rec.pid = perf_event_pid(event, current);
6272 rec.tid = perf_event_tid(event, current);
6273
6274 perf_event_header__init_id(&rec.header, &sample, event);
6275 ret = perf_output_begin(&handle, event, rec.header.size);
6276
6277 if (ret)
6278 return;
6279
6280 perf_output_put(&handle, rec);
6281 perf_event__output_id_sample(event, &handle, &sample);
6282
6283 perf_output_end(&handle);
6284}
6285
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006286/*
6287 * Generic event overflow handling, sampling.
6288 */
6289
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006290static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006291 int throttle, struct perf_sample_data *data,
6292 struct pt_regs *regs)
6293{
6294 int events = atomic_read(&event->event_limit);
6295 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006296 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006297 int ret = 0;
6298
Peter Zijlstra96398822010-11-24 18:55:29 +01006299 /*
6300 * Non-sampling counters might still use the PMI to fold short
6301 * hardware counters, ignore those.
6302 */
6303 if (unlikely(!is_sampling_event(event)))
6304 return 0;
6305
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006306 seq = __this_cpu_read(perf_throttled_seq);
6307 if (seq != hwc->interrupts_seq) {
6308 hwc->interrupts_seq = seq;
6309 hwc->interrupts = 1;
6310 } else {
6311 hwc->interrupts++;
6312 if (unlikely(throttle
6313 && hwc->interrupts >= max_samples_per_tick)) {
6314 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01006315 hwc->interrupts = MAX_INTERRUPTS;
6316 perf_log_throttle(event, 0);
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02006317 tick_nohz_full_kick();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006318 ret = 1;
6319 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006320 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006321
6322 if (event->attr.freq) {
6323 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01006324 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006325
Peter Zijlstraabd50712010-01-26 18:50:16 +01006326 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006327
Peter Zijlstraabd50712010-01-26 18:50:16 +01006328 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01006329 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006330 }
6331
6332 /*
6333 * XXX event_limit might not quite work as expected on inherited
6334 * events
6335 */
6336
6337 event->pending_kill = POLL_IN;
6338 if (events && atomic_dec_and_test(&event->event_limit)) {
6339 ret = 1;
6340 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006341 event->pending_disable = 1;
6342 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006343 }
6344
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006345 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006346 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006347 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006348 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006349
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006350 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006351 event->pending_wakeup = 1;
6352 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02006353 }
6354
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006355 return ret;
6356}
6357
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006358int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006359 struct perf_sample_data *data,
6360 struct pt_regs *regs)
6361{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006362 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006363}
6364
6365/*
6366 * Generic software event infrastructure
6367 */
6368
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006369struct swevent_htable {
6370 struct swevent_hlist *swevent_hlist;
6371 struct mutex hlist_mutex;
6372 int hlist_refcount;
6373
6374 /* Recursion avoidance in each contexts */
6375 int recursion[PERF_NR_CONTEXTS];
Jiri Olsa39af6b12014-04-07 11:04:08 +02006376
6377 /* Keeps track of cpu being initialized/exited */
6378 bool online;
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006379};
6380
6381static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
6382
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006383/*
6384 * We directly increment event->count and keep a second value in
6385 * event->hw.period_left to count intervals. This period event
6386 * is kept in the range [-sample_period, 0] so that we can use the
6387 * sign as trigger.
6388 */
6389
Jiri Olsaab573842013-05-01 17:25:44 +02006390u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006391{
6392 struct hw_perf_event *hwc = &event->hw;
6393 u64 period = hwc->last_period;
6394 u64 nr, offset;
6395 s64 old, val;
6396
6397 hwc->last_period = hwc->sample_period;
6398
6399again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02006400 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006401 if (val < 0)
6402 return 0;
6403
6404 nr = div64_u64(period + val, period);
6405 offset = nr * period;
6406 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02006407 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006408 goto again;
6409
6410 return nr;
6411}
6412
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006413static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006414 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006415 struct pt_regs *regs)
6416{
6417 struct hw_perf_event *hwc = &event->hw;
6418 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006419
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006420 if (!overflow)
6421 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006422
6423 if (hwc->interrupts == MAX_INTERRUPTS)
6424 return;
6425
6426 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006427 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006428 data, regs)) {
6429 /*
6430 * We inhibit the overflow from happening when
6431 * hwc->interrupts == MAX_INTERRUPTS.
6432 */
6433 break;
6434 }
6435 throttle = 1;
6436 }
6437}
6438
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006439static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006440 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006441 struct pt_regs *regs)
6442{
6443 struct hw_perf_event *hwc = &event->hw;
6444
Peter Zijlstrae7850592010-05-21 14:43:08 +02006445 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006446
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006447 if (!regs)
6448 return;
6449
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006450 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006451 return;
6452
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03006453 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
6454 data->period = nr;
6455 return perf_swevent_overflow(event, 1, data, regs);
6456 } else
6457 data->period = event->hw.last_period;
6458
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006459 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006460 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006461
Peter Zijlstrae7850592010-05-21 14:43:08 +02006462 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006463 return;
6464
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006465 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006466}
6467
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006468static int perf_exclude_event(struct perf_event *event,
6469 struct pt_regs *regs)
6470{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006471 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01006472 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006473
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006474 if (regs) {
6475 if (event->attr.exclude_user && user_mode(regs))
6476 return 1;
6477
6478 if (event->attr.exclude_kernel && !user_mode(regs))
6479 return 1;
6480 }
6481
6482 return 0;
6483}
6484
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006485static int perf_swevent_match(struct perf_event *event,
6486 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08006487 u32 event_id,
6488 struct perf_sample_data *data,
6489 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006490{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006491 if (event->attr.type != type)
6492 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006493
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006494 if (event->attr.config != event_id)
6495 return 0;
6496
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006497 if (perf_exclude_event(event, regs))
6498 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006499
6500 return 1;
6501}
6502
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006503static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006504{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006505 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006506
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006507 return hash_64(val, SWEVENT_HLIST_BITS);
6508}
6509
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006510static inline struct hlist_head *
6511__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006512{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006513 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006514
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006515 return &hlist->heads[hash];
6516}
6517
6518/* For the read side: events when they trigger */
6519static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006520find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006521{
6522 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006523
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006524 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006525 if (!hlist)
6526 return NULL;
6527
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006528 return __find_swevent_head(hlist, type, event_id);
6529}
6530
6531/* For the event head insertion and removal in the hlist */
6532static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006533find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006534{
6535 struct swevent_hlist *hlist;
6536 u32 event_id = event->attr.config;
6537 u64 type = event->attr.type;
6538
6539 /*
6540 * Event scheduling is always serialized against hlist allocation
6541 * and release. Which makes the protected version suitable here.
6542 * The context lock guarantees that.
6543 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006544 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006545 lockdep_is_held(&event->ctx->lock));
6546 if (!hlist)
6547 return NULL;
6548
6549 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006550}
6551
6552static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006553 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006554 struct perf_sample_data *data,
6555 struct pt_regs *regs)
6556{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006557 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006558 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006559 struct hlist_head *head;
6560
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006561 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006562 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006563 if (!head)
6564 goto end;
6565
Sasha Levinb67bfe02013-02-27 17:06:00 -08006566 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08006567 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006568 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006569 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006570end:
6571 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006572}
6573
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006574DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
6575
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006576int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006577{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006578 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006579
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006580 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006581}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01006582EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006583
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01006584inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006585{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006586 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006587
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006588 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006589}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006590
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006591void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006592{
Ingo Molnara4234bf2009-11-23 10:57:59 +01006593 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006594
6595 if (WARN_ON_ONCE(!regs))
6596 return;
6597
6598 perf_sample_data_init(&data, addr, 0);
6599 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
6600}
6601
6602void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
6603{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006604 int rctx;
6605
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006606 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006607 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006608 if (unlikely(rctx < 0))
6609 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006610
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006611 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006612
6613 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006614fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006615 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006616}
6617
6618static void perf_swevent_read(struct perf_event *event)
6619{
6620}
6621
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006622static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006623{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006624 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006625 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006626 struct hlist_head *head;
6627
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006628 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006629 hwc->last_period = hwc->sample_period;
6630 perf_swevent_set_period(event);
6631 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006632
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006633 hwc->state = !(flags & PERF_EF_START);
6634
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006635 head = find_swevent_head(swhash, event);
Jiri Olsa39af6b12014-04-07 11:04:08 +02006636 if (!head) {
6637 /*
6638 * We can race with cpu hotplug code. Do not
6639 * WARN if the cpu just got unplugged.
6640 */
6641 WARN_ON_ONCE(swhash->online);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006642 return -EINVAL;
Jiri Olsa39af6b12014-04-07 11:04:08 +02006643 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006644
6645 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08006646 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006647
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006648 return 0;
6649}
6650
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006651static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006652{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006653 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006654}
6655
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006656static void perf_swevent_start(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 = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006659}
6660
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006661static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006662{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006663 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006664}
6665
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006666/* Deref the hlist from the update side */
6667static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006668swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006669{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006670 return rcu_dereference_protected(swhash->swevent_hlist,
6671 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006672}
6673
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006674static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006675{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006676 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006677
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006678 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006679 return;
6680
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03006681 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08006682 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006683}
6684
6685static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
6686{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006687 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006688
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006689 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006690
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006691 if (!--swhash->hlist_refcount)
6692 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006693
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006694 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006695}
6696
6697static void swevent_hlist_put(struct perf_event *event)
6698{
6699 int cpu;
6700
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006701 for_each_possible_cpu(cpu)
6702 swevent_hlist_put_cpu(event, cpu);
6703}
6704
6705static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
6706{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006707 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006708 int err = 0;
6709
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006710 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006711
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006712 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006713 struct swevent_hlist *hlist;
6714
6715 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
6716 if (!hlist) {
6717 err = -ENOMEM;
6718 goto exit;
6719 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006720 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006721 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006722 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006723exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006724 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006725
6726 return err;
6727}
6728
6729static int swevent_hlist_get(struct perf_event *event)
6730{
6731 int err;
6732 int cpu, failed_cpu;
6733
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006734 get_online_cpus();
6735 for_each_possible_cpu(cpu) {
6736 err = swevent_hlist_get_cpu(event, cpu);
6737 if (err) {
6738 failed_cpu = cpu;
6739 goto fail;
6740 }
6741 }
6742 put_online_cpus();
6743
6744 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006745fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006746 for_each_possible_cpu(cpu) {
6747 if (cpu == failed_cpu)
6748 break;
6749 swevent_hlist_put_cpu(event, cpu);
6750 }
6751
6752 put_online_cpus();
6753 return err;
6754}
6755
Ingo Molnarc5905af2012-02-24 08:31:31 +01006756struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006757
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006758static void sw_perf_event_destroy(struct perf_event *event)
6759{
6760 u64 event_id = event->attr.config;
6761
6762 WARN_ON(event->parent);
6763
Ingo Molnarc5905af2012-02-24 08:31:31 +01006764 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006765 swevent_hlist_put(event);
6766}
6767
6768static int perf_swevent_init(struct perf_event *event)
6769{
Tommi Rantala8176cce2013-04-13 22:49:14 +03006770 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006771
6772 if (event->attr.type != PERF_TYPE_SOFTWARE)
6773 return -ENOENT;
6774
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006775 /*
6776 * no branch sampling for software events
6777 */
6778 if (has_branch_stack(event))
6779 return -EOPNOTSUPP;
6780
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006781 switch (event_id) {
6782 case PERF_COUNT_SW_CPU_CLOCK:
6783 case PERF_COUNT_SW_TASK_CLOCK:
6784 return -ENOENT;
6785
6786 default:
6787 break;
6788 }
6789
Dan Carpenterce677832010-10-24 21:50:42 +02006790 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006791 return -ENOENT;
6792
6793 if (!event->parent) {
6794 int err;
6795
6796 err = swevent_hlist_get(event);
6797 if (err)
6798 return err;
6799
Ingo Molnarc5905af2012-02-24 08:31:31 +01006800 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006801 event->destroy = sw_perf_event_destroy;
6802 }
6803
6804 return 0;
6805}
6806
6807static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006808 .task_ctx_nr = perf_sw_context,
6809
Peter Zijlstra34f43922015-02-20 14:05:38 +01006810 .capabilities = PERF_PMU_CAP_NO_NMI,
6811
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006812 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006813 .add = perf_swevent_add,
6814 .del = perf_swevent_del,
6815 .start = perf_swevent_start,
6816 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006817 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006818};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006819
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006820#ifdef CONFIG_EVENT_TRACING
6821
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006822static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006823 struct perf_sample_data *data)
6824{
6825 void *record = data->raw->data;
6826
6827 if (likely(!event->filter) || filter_match_preds(event->filter, record))
6828 return 1;
6829 return 0;
6830}
6831
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006832static int perf_tp_event_match(struct perf_event *event,
6833 struct perf_sample_data *data,
6834 struct pt_regs *regs)
6835{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01006836 if (event->hw.state & PERF_HES_STOPPED)
6837 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02006838 /*
6839 * All tracepoints are from kernel-space.
6840 */
6841 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006842 return 0;
6843
6844 if (!perf_tp_filter_match(event, data))
6845 return 0;
6846
6847 return 1;
6848}
6849
6850void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006851 struct pt_regs *regs, struct hlist_head *head, int rctx,
6852 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006853{
6854 struct perf_sample_data data;
6855 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006856
6857 struct perf_raw_record raw = {
6858 .size = entry_size,
6859 .data = record,
6860 };
6861
Robert Richterfd0d0002012-04-02 20:19:08 +02006862 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006863 data.raw = &raw;
6864
Sasha Levinb67bfe02013-02-27 17:06:00 -08006865 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006866 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006867 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006868 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006869
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006870 /*
6871 * If we got specified a target task, also iterate its context and
6872 * deliver this event there too.
6873 */
6874 if (task && task != current) {
6875 struct perf_event_context *ctx;
6876 struct trace_entry *entry = record;
6877
6878 rcu_read_lock();
6879 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
6880 if (!ctx)
6881 goto unlock;
6882
6883 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
6884 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6885 continue;
6886 if (event->attr.config != entry->type)
6887 continue;
6888 if (perf_tp_event_match(event, &data, regs))
6889 perf_swevent_event(event, count, &data, regs);
6890 }
6891unlock:
6892 rcu_read_unlock();
6893 }
6894
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006895 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006896}
6897EXPORT_SYMBOL_GPL(perf_tp_event);
6898
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006899static void tp_perf_event_destroy(struct perf_event *event)
6900{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006901 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006902}
6903
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006904static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006905{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006906 int err;
6907
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006908 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6909 return -ENOENT;
6910
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006911 /*
6912 * no branch sampling for tracepoint events
6913 */
6914 if (has_branch_stack(event))
6915 return -EOPNOTSUPP;
6916
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006917 err = perf_trace_init(event);
6918 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006919 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006920
6921 event->destroy = tp_perf_event_destroy;
6922
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006923 return 0;
6924}
6925
6926static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006927 .task_ctx_nr = perf_sw_context,
6928
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006929 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006930 .add = perf_trace_add,
6931 .del = perf_trace_del,
6932 .start = perf_swevent_start,
6933 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006934 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006935};
6936
6937static inline void perf_tp_register(void)
6938{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006939 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006940}
Li Zefan6fb29152009-10-15 11:21:42 +08006941
6942static int perf_event_set_filter(struct perf_event *event, void __user *arg)
6943{
6944 char *filter_str;
6945 int ret;
6946
6947 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6948 return -EINVAL;
6949
6950 filter_str = strndup_user(arg, PAGE_SIZE);
6951 if (IS_ERR(filter_str))
6952 return PTR_ERR(filter_str);
6953
6954 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
6955
6956 kfree(filter_str);
6957 return ret;
6958}
6959
6960static void perf_event_free_filter(struct perf_event *event)
6961{
6962 ftrace_profile_free_filter(event);
6963}
6964
Alexei Starovoitov25415172015-03-25 12:49:20 -07006965static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
6966{
6967 struct bpf_prog *prog;
6968
6969 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6970 return -EINVAL;
6971
6972 if (event->tp_event->prog)
6973 return -EEXIST;
6974
Wang Nan04a22fa2015-07-01 02:13:50 +00006975 if (!(event->tp_event->flags & TRACE_EVENT_FL_UKPROBE))
6976 /* bpf programs can only be attached to u/kprobes */
Alexei Starovoitov25415172015-03-25 12:49:20 -07006977 return -EINVAL;
6978
6979 prog = bpf_prog_get(prog_fd);
6980 if (IS_ERR(prog))
6981 return PTR_ERR(prog);
6982
Linus Torvalds6c373ca2015-04-15 09:00:47 -07006983 if (prog->type != BPF_PROG_TYPE_KPROBE) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07006984 /* valid fd, but invalid bpf program type */
6985 bpf_prog_put(prog);
6986 return -EINVAL;
6987 }
6988
6989 event->tp_event->prog = prog;
6990
6991 return 0;
6992}
6993
6994static void perf_event_free_bpf_prog(struct perf_event *event)
6995{
6996 struct bpf_prog *prog;
6997
6998 if (!event->tp_event)
6999 return;
7000
7001 prog = event->tp_event->prog;
7002 if (prog) {
7003 event->tp_event->prog = NULL;
7004 bpf_prog_put(prog);
7005 }
7006}
7007
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007008#else
Li Zefan6fb29152009-10-15 11:21:42 +08007009
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007010static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007011{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007012}
Li Zefan6fb29152009-10-15 11:21:42 +08007013
7014static int perf_event_set_filter(struct perf_event *event, void __user *arg)
7015{
7016 return -ENOENT;
7017}
7018
7019static void perf_event_free_filter(struct perf_event *event)
7020{
7021}
7022
Alexei Starovoitov25415172015-03-25 12:49:20 -07007023static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7024{
7025 return -ENOENT;
7026}
7027
7028static void perf_event_free_bpf_prog(struct perf_event *event)
7029{
7030}
Li Zefan07b139c2009-12-21 14:27:35 +08007031#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007032
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007033#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007034void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007035{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007036 struct perf_sample_data sample;
7037 struct pt_regs *regs = data;
7038
Robert Richterfd0d0002012-04-02 20:19:08 +02007039 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007040
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007041 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007042 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007043}
7044#endif
7045
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007046/*
7047 * hrtimer based swevent callback
7048 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007049
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007050static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007051{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007052 enum hrtimer_restart ret = HRTIMER_RESTART;
7053 struct perf_sample_data data;
7054 struct pt_regs *regs;
7055 struct perf_event *event;
7056 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007057
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007058 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007059
7060 if (event->state != PERF_EVENT_STATE_ACTIVE)
7061 return HRTIMER_NORESTART;
7062
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007063 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007064
Robert Richterfd0d0002012-04-02 20:19:08 +02007065 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007066 regs = get_irq_regs();
7067
7068 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08007069 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02007070 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007071 ret = HRTIMER_NORESTART;
7072 }
7073
7074 period = max_t(u64, 10000, event->hw.sample_period);
7075 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
7076
7077 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007078}
7079
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007080static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007081{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007082 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007083 s64 period;
7084
7085 if (!is_sampling_event(event))
7086 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007087
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007088 period = local64_read(&hwc->period_left);
7089 if (period) {
7090 if (period < 0)
7091 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02007092
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007093 local64_set(&hwc->period_left, 0);
7094 } else {
7095 period = max_t(u64, 10000, hwc->sample_period);
7096 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00007097 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
7098 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007099}
7100
7101static void perf_swevent_cancel_hrtimer(struct perf_event *event)
7102{
7103 struct hw_perf_event *hwc = &event->hw;
7104
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007105 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007106 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02007107 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007108
7109 hrtimer_cancel(&hwc->hrtimer);
7110 }
7111}
7112
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007113static void perf_swevent_init_hrtimer(struct perf_event *event)
7114{
7115 struct hw_perf_event *hwc = &event->hw;
7116
7117 if (!is_sampling_event(event))
7118 return;
7119
7120 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
7121 hwc->hrtimer.function = perf_swevent_hrtimer;
7122
7123 /*
7124 * Since hrtimers have a fixed rate, we can do a static freq->period
7125 * mapping and avoid the whole period adjust feedback stuff.
7126 */
7127 if (event->attr.freq) {
7128 long freq = event->attr.sample_freq;
7129
7130 event->attr.sample_period = NSEC_PER_SEC / freq;
7131 hwc->sample_period = event->attr.sample_period;
7132 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09007133 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007134 event->attr.freq = 0;
7135 }
7136}
7137
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007138/*
7139 * Software event: cpu wall time clock
7140 */
7141
7142static void cpu_clock_event_update(struct perf_event *event)
7143{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007144 s64 prev;
7145 u64 now;
7146
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007147 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007148 prev = local64_xchg(&event->hw.prev_count, now);
7149 local64_add(now - prev, &event->count);
7150}
7151
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007152static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007153{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007154 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007155 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007156}
7157
7158static void cpu_clock_event_stop(struct perf_event *event, int flags)
7159{
7160 perf_swevent_cancel_hrtimer(event);
7161 cpu_clock_event_update(event);
7162}
7163
7164static int cpu_clock_event_add(struct perf_event *event, int flags)
7165{
7166 if (flags & PERF_EF_START)
7167 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08007168 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007169
7170 return 0;
7171}
7172
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007173static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007174{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007175 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007176}
7177
7178static void cpu_clock_event_read(struct perf_event *event)
7179{
7180 cpu_clock_event_update(event);
7181}
7182
7183static int cpu_clock_event_init(struct perf_event *event)
7184{
7185 if (event->attr.type != PERF_TYPE_SOFTWARE)
7186 return -ENOENT;
7187
7188 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
7189 return -ENOENT;
7190
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007191 /*
7192 * no branch sampling for software events
7193 */
7194 if (has_branch_stack(event))
7195 return -EOPNOTSUPP;
7196
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007197 perf_swevent_init_hrtimer(event);
7198
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007199 return 0;
7200}
7201
7202static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007203 .task_ctx_nr = perf_sw_context,
7204
Peter Zijlstra34f43922015-02-20 14:05:38 +01007205 .capabilities = PERF_PMU_CAP_NO_NMI,
7206
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007207 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007208 .add = cpu_clock_event_add,
7209 .del = cpu_clock_event_del,
7210 .start = cpu_clock_event_start,
7211 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007212 .read = cpu_clock_event_read,
7213};
7214
7215/*
7216 * Software event: task time clock
7217 */
7218
7219static void task_clock_event_update(struct perf_event *event, u64 now)
7220{
7221 u64 prev;
7222 s64 delta;
7223
7224 prev = local64_xchg(&event->hw.prev_count, now);
7225 delta = now - prev;
7226 local64_add(delta, &event->count);
7227}
7228
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007229static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007230{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007231 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007232 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007233}
7234
7235static void task_clock_event_stop(struct perf_event *event, int flags)
7236{
7237 perf_swevent_cancel_hrtimer(event);
7238 task_clock_event_update(event, event->ctx->time);
7239}
7240
7241static int task_clock_event_add(struct perf_event *event, int flags)
7242{
7243 if (flags & PERF_EF_START)
7244 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08007245 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007246
7247 return 0;
7248}
7249
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007250static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007251{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007252 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007253}
7254
7255static void task_clock_event_read(struct perf_event *event)
7256{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01007257 u64 now = perf_clock();
7258 u64 delta = now - event->ctx->timestamp;
7259 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007260
7261 task_clock_event_update(event, time);
7262}
7263
7264static int task_clock_event_init(struct perf_event *event)
7265{
7266 if (event->attr.type != PERF_TYPE_SOFTWARE)
7267 return -ENOENT;
7268
7269 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
7270 return -ENOENT;
7271
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007272 /*
7273 * no branch sampling for software events
7274 */
7275 if (has_branch_stack(event))
7276 return -EOPNOTSUPP;
7277
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007278 perf_swevent_init_hrtimer(event);
7279
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007280 return 0;
7281}
7282
7283static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007284 .task_ctx_nr = perf_sw_context,
7285
Peter Zijlstra34f43922015-02-20 14:05:38 +01007286 .capabilities = PERF_PMU_CAP_NO_NMI,
7287
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007288 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007289 .add = task_clock_event_add,
7290 .del = task_clock_event_del,
7291 .start = task_clock_event_start,
7292 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007293 .read = task_clock_event_read,
7294};
7295
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007296static void perf_pmu_nop_void(struct pmu *pmu)
7297{
7298}
7299
7300static int perf_pmu_nop_int(struct pmu *pmu)
7301{
7302 return 0;
7303}
7304
7305static void perf_pmu_start_txn(struct pmu *pmu)
7306{
7307 perf_pmu_disable(pmu);
7308}
7309
7310static int perf_pmu_commit_txn(struct pmu *pmu)
7311{
7312 perf_pmu_enable(pmu);
7313 return 0;
7314}
7315
7316static void perf_pmu_cancel_txn(struct pmu *pmu)
7317{
7318 perf_pmu_enable(pmu);
7319}
7320
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007321static int perf_event_idx_default(struct perf_event *event)
7322{
Peter Zijlstrac719f562014-10-21 11:10:21 +02007323 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007324}
7325
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007326/*
7327 * Ensures all contexts with the same task_ctx_nr have the same
7328 * pmu_cpu_context too.
7329 */
Mark Rutland9e317042014-02-10 17:44:18 +00007330static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007331{
7332 struct pmu *pmu;
7333
7334 if (ctxn < 0)
7335 return NULL;
7336
7337 list_for_each_entry(pmu, &pmus, entry) {
7338 if (pmu->task_ctx_nr == ctxn)
7339 return pmu->pmu_cpu_context;
7340 }
7341
7342 return NULL;
7343}
7344
Peter Zijlstra51676952010-12-07 14:18:20 +01007345static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007346{
Peter Zijlstra51676952010-12-07 14:18:20 +01007347 int cpu;
7348
7349 for_each_possible_cpu(cpu) {
7350 struct perf_cpu_context *cpuctx;
7351
7352 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
7353
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02007354 if (cpuctx->unique_pmu == old_pmu)
7355 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01007356 }
7357}
7358
7359static void free_pmu_context(struct pmu *pmu)
7360{
7361 struct pmu *i;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007362
7363 mutex_lock(&pmus_lock);
7364 /*
7365 * Like a real lame refcount.
7366 */
Peter Zijlstra51676952010-12-07 14:18:20 +01007367 list_for_each_entry(i, &pmus, entry) {
7368 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
7369 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007370 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01007371 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007372 }
7373
Peter Zijlstra51676952010-12-07 14:18:20 +01007374 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007375out:
7376 mutex_unlock(&pmus_lock);
7377}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007378static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007379
Peter Zijlstraabe43402010-11-17 23:17:37 +01007380static ssize_t
7381type_show(struct device *dev, struct device_attribute *attr, char *page)
7382{
7383 struct pmu *pmu = dev_get_drvdata(dev);
7384
7385 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
7386}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007387static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007388
Stephane Eranian62b85632013-04-03 14:21:34 +02007389static ssize_t
7390perf_event_mux_interval_ms_show(struct device *dev,
7391 struct device_attribute *attr,
7392 char *page)
7393{
7394 struct pmu *pmu = dev_get_drvdata(dev);
7395
7396 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
7397}
7398
Peter Zijlstra272325c2015-04-15 11:41:58 +02007399static DEFINE_MUTEX(mux_interval_mutex);
7400
Stephane Eranian62b85632013-04-03 14:21:34 +02007401static ssize_t
7402perf_event_mux_interval_ms_store(struct device *dev,
7403 struct device_attribute *attr,
7404 const char *buf, size_t count)
7405{
7406 struct pmu *pmu = dev_get_drvdata(dev);
7407 int timer, cpu, ret;
7408
7409 ret = kstrtoint(buf, 0, &timer);
7410 if (ret)
7411 return ret;
7412
7413 if (timer < 1)
7414 return -EINVAL;
7415
7416 /* same value, noting to do */
7417 if (timer == pmu->hrtimer_interval_ms)
7418 return count;
7419
Peter Zijlstra272325c2015-04-15 11:41:58 +02007420 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02007421 pmu->hrtimer_interval_ms = timer;
7422
7423 /* update all cpuctx for this PMU */
Peter Zijlstra272325c2015-04-15 11:41:58 +02007424 get_online_cpus();
7425 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02007426 struct perf_cpu_context *cpuctx;
7427 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
7428 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
7429
Peter Zijlstra272325c2015-04-15 11:41:58 +02007430 cpu_function_call(cpu,
7431 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02007432 }
Peter Zijlstra272325c2015-04-15 11:41:58 +02007433 put_online_cpus();
7434 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02007435
7436 return count;
7437}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007438static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02007439
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007440static struct attribute *pmu_dev_attrs[] = {
7441 &dev_attr_type.attr,
7442 &dev_attr_perf_event_mux_interval_ms.attr,
7443 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01007444};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007445ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007446
7447static int pmu_bus_running;
7448static struct bus_type pmu_bus = {
7449 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007450 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01007451};
7452
7453static void pmu_dev_release(struct device *dev)
7454{
7455 kfree(dev);
7456}
7457
7458static int pmu_dev_alloc(struct pmu *pmu)
7459{
7460 int ret = -ENOMEM;
7461
7462 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
7463 if (!pmu->dev)
7464 goto out;
7465
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01007466 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01007467 device_initialize(pmu->dev);
7468 ret = dev_set_name(pmu->dev, "%s", pmu->name);
7469 if (ret)
7470 goto free_dev;
7471
7472 dev_set_drvdata(pmu->dev, pmu);
7473 pmu->dev->bus = &pmu_bus;
7474 pmu->dev->release = pmu_dev_release;
7475 ret = device_add(pmu->dev);
7476 if (ret)
7477 goto free_dev;
7478
7479out:
7480 return ret;
7481
7482free_dev:
7483 put_device(pmu->dev);
7484 goto out;
7485}
7486
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007487static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02007488static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007489
Mischa Jonker03d8e802013-06-04 11:45:48 +02007490int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007491{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007492 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007493
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007494 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007495 ret = -ENOMEM;
7496 pmu->pmu_disable_count = alloc_percpu(int);
7497 if (!pmu->pmu_disable_count)
7498 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007499
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007500 pmu->type = -1;
7501 if (!name)
7502 goto skip_type;
7503 pmu->name = name;
7504
7505 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08007506 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
7507 if (type < 0) {
7508 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007509 goto free_pdc;
7510 }
7511 }
7512 pmu->type = type;
7513
Peter Zijlstraabe43402010-11-17 23:17:37 +01007514 if (pmu_bus_running) {
7515 ret = pmu_dev_alloc(pmu);
7516 if (ret)
7517 goto free_idr;
7518 }
7519
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007520skip_type:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007521 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
7522 if (pmu->pmu_cpu_context)
7523 goto got_cpu_context;
7524
Wei Yongjunc4814202013-04-12 11:05:54 +08007525 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007526 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
7527 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01007528 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007529
7530 for_each_possible_cpu(cpu) {
7531 struct perf_cpu_context *cpuctx;
7532
7533 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02007534 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007535 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02007536 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007537 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02007538
Peter Zijlstra272325c2015-04-15 11:41:58 +02007539 __perf_mux_hrtimer_init(cpuctx, cpu);
Stephane Eranian9e630202013-04-03 14:21:33 +02007540
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02007541 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007542 }
7543
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007544got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007545 if (!pmu->start_txn) {
7546 if (pmu->pmu_enable) {
7547 /*
7548 * If we have pmu_enable/pmu_disable calls, install
7549 * transaction stubs that use that to try and batch
7550 * hardware accesses.
7551 */
7552 pmu->start_txn = perf_pmu_start_txn;
7553 pmu->commit_txn = perf_pmu_commit_txn;
7554 pmu->cancel_txn = perf_pmu_cancel_txn;
7555 } else {
7556 pmu->start_txn = perf_pmu_nop_void;
7557 pmu->commit_txn = perf_pmu_nop_int;
7558 pmu->cancel_txn = perf_pmu_nop_void;
7559 }
7560 }
7561
7562 if (!pmu->pmu_enable) {
7563 pmu->pmu_enable = perf_pmu_nop_void;
7564 pmu->pmu_disable = perf_pmu_nop_void;
7565 }
7566
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007567 if (!pmu->event_idx)
7568 pmu->event_idx = perf_event_idx_default;
7569
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007570 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007571 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007572 ret = 0;
7573unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007574 mutex_unlock(&pmus_lock);
7575
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007576 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007577
Peter Zijlstraabe43402010-11-17 23:17:37 +01007578free_dev:
7579 device_del(pmu->dev);
7580 put_device(pmu->dev);
7581
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007582free_idr:
7583 if (pmu->type >= PERF_TYPE_MAX)
7584 idr_remove(&pmu_idr, pmu->type);
7585
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007586free_pdc:
7587 free_percpu(pmu->pmu_disable_count);
7588 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007589}
Yan, Zhengc464c762014-03-18 16:56:41 +08007590EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007591
7592void perf_pmu_unregister(struct pmu *pmu)
7593{
7594 mutex_lock(&pmus_lock);
7595 list_del_rcu(&pmu->entry);
7596 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007597
7598 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02007599 * We dereference the pmu list under both SRCU and regular RCU, so
7600 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007601 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007602 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02007603 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007604
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007605 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007606 if (pmu->type >= PERF_TYPE_MAX)
7607 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007608 device_del(pmu->dev);
7609 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01007610 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007611}
Yan, Zhengc464c762014-03-18 16:56:41 +08007612EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007613
Mark Rutlandcc34b982015-01-07 14:56:51 +00007614static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
7615{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007616 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00007617 int ret;
7618
7619 if (!try_module_get(pmu->module))
7620 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007621
7622 if (event->group_leader != event) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02007623 /*
7624 * This ctx->mutex can nest when we're called through
7625 * inheritance. See the perf_event_ctx_lock_nested() comment.
7626 */
7627 ctx = perf_event_ctx_lock_nested(event->group_leader,
7628 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007629 BUG_ON(!ctx);
7630 }
7631
Mark Rutlandcc34b982015-01-07 14:56:51 +00007632 event->pmu = pmu;
7633 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007634
7635 if (ctx)
7636 perf_event_ctx_unlock(event->group_leader, ctx);
7637
Mark Rutlandcc34b982015-01-07 14:56:51 +00007638 if (ret)
7639 module_put(pmu->module);
7640
7641 return ret;
7642}
7643
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007644struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007645{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007646 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007647 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08007648 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007649
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007650 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007651
7652 rcu_read_lock();
7653 pmu = idr_find(&pmu_idr, event->attr.type);
7654 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08007655 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007656 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08007657 if (ret)
7658 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007659 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08007660 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007661
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007662 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007663 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007664 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007665 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007666
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007667 if (ret != -ENOENT) {
7668 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007669 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007670 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007671 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007672 pmu = ERR_PTR(-ENOENT);
7673unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007674 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007675
7676 return pmu;
7677}
7678
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007679static void account_event_cpu(struct perf_event *event, int cpu)
7680{
7681 if (event->parent)
7682 return;
7683
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007684 if (is_cgroup_event(event))
7685 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
7686}
7687
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007688static void account_event(struct perf_event *event)
7689{
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007690 if (event->parent)
7691 return;
7692
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007693 if (event->attach_state & PERF_ATTACH_TASK)
7694 static_key_slow_inc(&perf_sched_events.key);
7695 if (event->attr.mmap || event->attr.mmap_data)
7696 atomic_inc(&nr_mmap_events);
7697 if (event->attr.comm)
7698 atomic_inc(&nr_comm_events);
7699 if (event->attr.task)
7700 atomic_inc(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02007701 if (event->attr.freq) {
7702 if (atomic_inc_return(&nr_freq_events) == 1)
7703 tick_nohz_full_kick_all();
7704 }
Adrian Hunter45ac1402015-07-21 12:44:02 +03007705 if (event->attr.context_switch) {
7706 atomic_inc(&nr_switch_events);
7707 static_key_slow_inc(&perf_sched_events.key);
7708 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007709 if (has_branch_stack(event))
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007710 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007711 if (is_cgroup_event(event))
7712 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007713
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007714 account_event_cpu(event, event->cpu);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007715}
7716
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007717/*
7718 * Allocate and initialize a event structure
7719 */
7720static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007721perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007722 struct task_struct *task,
7723 struct perf_event *group_leader,
7724 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007725 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00007726 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007727{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007728 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007729 struct perf_event *event;
7730 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007731 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007732
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007733 if ((unsigned)cpu >= nr_cpu_ids) {
7734 if (!task || cpu != -1)
7735 return ERR_PTR(-EINVAL);
7736 }
7737
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007738 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007739 if (!event)
7740 return ERR_PTR(-ENOMEM);
7741
7742 /*
7743 * Single events are their own group leaders, with an
7744 * empty sibling list:
7745 */
7746 if (!group_leader)
7747 group_leader = event;
7748
7749 mutex_init(&event->child_mutex);
7750 INIT_LIST_HEAD(&event->child_list);
7751
7752 INIT_LIST_HEAD(&event->group_entry);
7753 INIT_LIST_HEAD(&event->event_entry);
7754 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007755 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01007756 INIT_LIST_HEAD(&event->active_entry);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01007757 INIT_HLIST_NODE(&event->hlist_entry);
7758
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007759
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007760 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08007761 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007762
7763 mutex_init(&event->mmap_mutex);
7764
Al Viroa6fa9412012-08-20 14:59:25 +01007765 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007766 event->cpu = cpu;
7767 event->attr = *attr;
7768 event->group_leader = group_leader;
7769 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007770 event->oncpu = -1;
7771
7772 event->parent = parent_event;
7773
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08007774 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007775 event->id = atomic64_inc_return(&perf_event_id);
7776
7777 event->state = PERF_EVENT_STATE_INACTIVE;
7778
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007779 if (task) {
7780 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007781 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +01007782 * XXX pmu::event_init needs to know what task to account to
7783 * and we cannot use the ctx information because we need the
7784 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007785 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +01007786 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007787 }
7788
Peter Zijlstra34f43922015-02-20 14:05:38 +01007789 event->clock = &local_clock;
7790 if (parent_event)
7791 event->clock = parent_event->clock;
7792
Avi Kivity4dc0da82011-06-29 18:42:35 +03007793 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007794 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007795 context = parent_event->overflow_handler_context;
7796 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007797
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007798 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007799 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02007800
Jiri Olsa0231bb52013-02-01 11:23:45 +01007801 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007802
7803 pmu = NULL;
7804
7805 hwc = &event->hw;
7806 hwc->sample_period = attr->sample_period;
7807 if (attr->freq && attr->sample_freq)
7808 hwc->sample_period = 1;
7809 hwc->last_period = hwc->sample_period;
7810
Peter Zijlstrae7850592010-05-21 14:43:08 +02007811 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007812
7813 /*
7814 * we currently do not support PERF_FORMAT_GROUP on inherited events
7815 */
7816 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007817 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007818
Yan, Zhenga46a2302014-11-04 21:56:06 -05007819 if (!has_branch_stack(event))
7820 event->attr.branch_sample_type = 0;
7821
Matt Fleming79dff512015-01-23 18:45:42 +00007822 if (cgroup_fd != -1) {
7823 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
7824 if (err)
7825 goto err_ns;
7826 }
7827
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007828 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007829 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007830 goto err_ns;
7831 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007832 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007833 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007834 }
7835
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007836 err = exclusive_event_init(event);
7837 if (err)
7838 goto err_pmu;
7839
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007840 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007841 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
7842 err = get_callchain_buffers();
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007843 if (err)
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007844 goto err_per_task;
Stephane Eraniand010b332012-02-09 23:21:00 +01007845 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007846 }
7847
7848 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007849
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007850err_per_task:
7851 exclusive_event_destroy(event);
7852
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007853err_pmu:
7854 if (event->destroy)
7855 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08007856 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007857err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00007858 if (is_cgroup_event(event))
7859 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007860 if (event->ns)
7861 put_pid_ns(event->ns);
7862 kfree(event);
7863
7864 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007865}
7866
7867static int perf_copy_attr(struct perf_event_attr __user *uattr,
7868 struct perf_event_attr *attr)
7869{
7870 u32 size;
7871 int ret;
7872
7873 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
7874 return -EFAULT;
7875
7876 /*
7877 * zero the full structure, so that a short copy will be nice.
7878 */
7879 memset(attr, 0, sizeof(*attr));
7880
7881 ret = get_user(size, &uattr->size);
7882 if (ret)
7883 return ret;
7884
7885 if (size > PAGE_SIZE) /* silly large */
7886 goto err_size;
7887
7888 if (!size) /* abi compat */
7889 size = PERF_ATTR_SIZE_VER0;
7890
7891 if (size < PERF_ATTR_SIZE_VER0)
7892 goto err_size;
7893
7894 /*
7895 * If we're handed a bigger struct than we know of,
7896 * ensure all the unknown bits are 0 - i.e. new
7897 * user-space does not rely on any kernel feature
7898 * extensions we dont know about yet.
7899 */
7900 if (size > sizeof(*attr)) {
7901 unsigned char __user *addr;
7902 unsigned char __user *end;
7903 unsigned char val;
7904
7905 addr = (void __user *)uattr + sizeof(*attr);
7906 end = (void __user *)uattr + size;
7907
7908 for (; addr < end; addr++) {
7909 ret = get_user(val, addr);
7910 if (ret)
7911 return ret;
7912 if (val)
7913 goto err_size;
7914 }
7915 size = sizeof(*attr);
7916 }
7917
7918 ret = copy_from_user(attr, uattr, size);
7919 if (ret)
7920 return -EFAULT;
7921
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05307922 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007923 return -EINVAL;
7924
7925 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
7926 return -EINVAL;
7927
7928 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
7929 return -EINVAL;
7930
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007931 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
7932 u64 mask = attr->branch_sample_type;
7933
7934 /* only using defined bits */
7935 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
7936 return -EINVAL;
7937
7938 /* at least one branch bit must be set */
7939 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
7940 return -EINVAL;
7941
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007942 /* propagate priv level, when not set for branch */
7943 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
7944
7945 /* exclude_kernel checked on syscall entry */
7946 if (!attr->exclude_kernel)
7947 mask |= PERF_SAMPLE_BRANCH_KERNEL;
7948
7949 if (!attr->exclude_user)
7950 mask |= PERF_SAMPLE_BRANCH_USER;
7951
7952 if (!attr->exclude_hv)
7953 mask |= PERF_SAMPLE_BRANCH_HV;
7954 /*
7955 * adjust user setting (for HW filter setup)
7956 */
7957 attr->branch_sample_type = mask;
7958 }
Stephane Eraniane7122092013-06-06 11:02:04 +02007959 /* privileged levels capture (kernel, hv): check permissions */
7960 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02007961 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
7962 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007963 }
Jiri Olsa40189942012-08-07 15:20:37 +02007964
Jiri Olsac5ebced2012-08-07 15:20:40 +02007965 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02007966 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02007967 if (ret)
7968 return ret;
7969 }
7970
7971 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
7972 if (!arch_perf_have_user_stack_dump())
7973 return -ENOSYS;
7974
7975 /*
7976 * We have __u32 type for the size, but so far
7977 * we can only use __u16 as maximum due to the
7978 * __u16 sample size limit.
7979 */
7980 if (attr->sample_stack_user >= USHRT_MAX)
7981 ret = -EINVAL;
7982 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
7983 ret = -EINVAL;
7984 }
Jiri Olsa40189942012-08-07 15:20:37 +02007985
Stephane Eranian60e23642014-09-24 13:48:37 +02007986 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
7987 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007988out:
7989 return ret;
7990
7991err_size:
7992 put_user(sizeof(*attr), &uattr->size);
7993 ret = -E2BIG;
7994 goto out;
7995}
7996
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007997static int
7998perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007999{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01008000 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008001 int ret = -EINVAL;
8002
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008003 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008004 goto set;
8005
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008006 /* don't allow circular references */
8007 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008008 goto out;
8009
Peter Zijlstra0f139302010-05-20 14:35:15 +02008010 /*
8011 * Don't allow cross-cpu buffers
8012 */
8013 if (output_event->cpu != event->cpu)
8014 goto out;
8015
8016 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02008017 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02008018 */
8019 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
8020 goto out;
8021
Peter Zijlstra34f43922015-02-20 14:05:38 +01008022 /*
8023 * Mixing clocks in the same buffer is trouble you don't need.
8024 */
8025 if (output_event->clock != event->clock)
8026 goto out;
8027
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02008028 /*
8029 * If both events generate aux data, they must be on the same PMU
8030 */
8031 if (has_aux(event) && has_aux(output_event) &&
8032 event->pmu != output_event->pmu)
8033 goto out;
8034
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008035set:
8036 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008037 /* Can't redirect output if we've got an active mmap() */
8038 if (atomic_read(&event->mmap_count))
8039 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008040
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008041 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02008042 /* get the rb we want to redirect to */
8043 rb = ring_buffer_get(output_event);
8044 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008045 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008046 }
8047
Peter Zijlstrab69cf532014-03-14 10:50:33 +01008048 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02008049
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008050 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008051unlock:
8052 mutex_unlock(&event->mmap_mutex);
8053
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008054out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008055 return ret;
8056}
8057
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008058static void mutex_lock_double(struct mutex *a, struct mutex *b)
8059{
8060 if (b < a)
8061 swap(a, b);
8062
8063 mutex_lock(a);
8064 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
8065}
8066
Peter Zijlstra34f43922015-02-20 14:05:38 +01008067static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
8068{
8069 bool nmi_safe = false;
8070
8071 switch (clk_id) {
8072 case CLOCK_MONOTONIC:
8073 event->clock = &ktime_get_mono_fast_ns;
8074 nmi_safe = true;
8075 break;
8076
8077 case CLOCK_MONOTONIC_RAW:
8078 event->clock = &ktime_get_raw_fast_ns;
8079 nmi_safe = true;
8080 break;
8081
8082 case CLOCK_REALTIME:
8083 event->clock = &ktime_get_real_ns;
8084 break;
8085
8086 case CLOCK_BOOTTIME:
8087 event->clock = &ktime_get_boot_ns;
8088 break;
8089
8090 case CLOCK_TAI:
8091 event->clock = &ktime_get_tai_ns;
8092 break;
8093
8094 default:
8095 return -EINVAL;
8096 }
8097
8098 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
8099 return -EINVAL;
8100
8101 return 0;
8102}
8103
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008104/**
8105 * sys_perf_event_open - open a performance event, associate it to a task/cpu
8106 *
8107 * @attr_uptr: event_id type attributes for monitoring/sampling
8108 * @pid: target pid
8109 * @cpu: target cpu
8110 * @group_fd: group leader event fd
8111 */
8112SYSCALL_DEFINE5(perf_event_open,
8113 struct perf_event_attr __user *, attr_uptr,
8114 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
8115{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008116 struct perf_event *group_leader = NULL, *output_event = NULL;
8117 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008118 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008119 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008120 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04008121 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07008122 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008123 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04008124 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008125 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008126 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01008127 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00008128 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008129
8130 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02008131 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008132 return -EINVAL;
8133
8134 err = perf_copy_attr(attr_uptr, &attr);
8135 if (err)
8136 return err;
8137
8138 if (!attr.exclude_kernel) {
8139 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
8140 return -EACCES;
8141 }
8142
8143 if (attr.freq) {
8144 if (attr.sample_freq > sysctl_perf_event_sample_rate)
8145 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02008146 } else {
8147 if (attr.sample_period & (1ULL << 63))
8148 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008149 }
8150
Stephane Eraniane5d13672011-02-14 11:20:01 +02008151 /*
8152 * In cgroup mode, the pid argument is used to pass the fd
8153 * opened to the cgroup directory in cgroupfs. The cpu argument
8154 * designates the cpu on which to monitor threads from that
8155 * cgroup.
8156 */
8157 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
8158 return -EINVAL;
8159
Yann Droneauda21b0b32014-01-05 21:36:33 +01008160 if (flags & PERF_FLAG_FD_CLOEXEC)
8161 f_flags |= O_CLOEXEC;
8162
8163 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04008164 if (event_fd < 0)
8165 return event_fd;
8166
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008167 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04008168 err = perf_fget_light(group_fd, &group);
8169 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008170 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04008171 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008172 if (flags & PERF_FLAG_FD_OUTPUT)
8173 output_event = group_leader;
8174 if (flags & PERF_FLAG_FD_NO_GROUP)
8175 group_leader = NULL;
8176 }
8177
Stephane Eraniane5d13672011-02-14 11:20:01 +02008178 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008179 task = find_lively_task_by_vpid(pid);
8180 if (IS_ERR(task)) {
8181 err = PTR_ERR(task);
8182 goto err_group_fd;
8183 }
8184 }
8185
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008186 if (task && group_leader &&
8187 group_leader->attr.inherit != attr.inherit) {
8188 err = -EINVAL;
8189 goto err_task;
8190 }
8191
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008192 get_online_cpus();
8193
Matt Fleming79dff512015-01-23 18:45:42 +00008194 if (flags & PERF_FLAG_PID_CGROUP)
8195 cgroup_fd = pid;
8196
Avi Kivity4dc0da82011-06-29 18:42:35 +03008197 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00008198 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008199 if (IS_ERR(event)) {
8200 err = PTR_ERR(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008201 goto err_cpus;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008202 }
8203
Vince Weaver53b25332014-05-16 17:12:12 -04008204 if (is_sampling_event(event)) {
8205 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
8206 err = -ENOTSUPP;
8207 goto err_alloc;
8208 }
8209 }
8210
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008211 account_event(event);
8212
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008213 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008214 * Special case software events and allow them to be part of
8215 * any hardware group.
8216 */
8217 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008218
Peter Zijlstra34f43922015-02-20 14:05:38 +01008219 if (attr.use_clockid) {
8220 err = perf_event_set_clock(event, attr.clockid);
8221 if (err)
8222 goto err_alloc;
8223 }
8224
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008225 if (group_leader &&
8226 (is_software_event(event) != is_software_event(group_leader))) {
8227 if (is_software_event(event)) {
8228 /*
8229 * If event and group_leader are not both a software
8230 * event, and event is, then group leader is not.
8231 *
8232 * Allow the addition of software events to !software
8233 * groups, this is safe because software events never
8234 * fail to schedule.
8235 */
8236 pmu = group_leader->pmu;
8237 } else if (is_software_event(group_leader) &&
8238 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
8239 /*
8240 * In case the group is a pure software group, and we
8241 * try to add a hardware event, move the whole group to
8242 * the hardware context.
8243 */
8244 move_group = 1;
8245 }
8246 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008247
8248 /*
8249 * Get the target context (task or percpu):
8250 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -05008251 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008252 if (IS_ERR(ctx)) {
8253 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008254 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008255 }
8256
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008257 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
8258 err = -EBUSY;
8259 goto err_context;
8260 }
8261
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02008262 if (task) {
8263 put_task_struct(task);
8264 task = NULL;
8265 }
8266
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008267 /*
8268 * Look up the group leader (we will attach this event to it):
8269 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008270 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008271 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008272
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008273 /*
8274 * Do not allow a recursive hierarchy (this new sibling
8275 * becoming part of another group-sibling):
8276 */
8277 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008278 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +01008279
8280 /* All events in a group should have the same clock */
8281 if (group_leader->clock != event->clock)
8282 goto err_context;
8283
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008284 /*
8285 * Do not allow to attach to a group in a different
8286 * task or CPU context:
8287 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008288 if (move_group) {
Peter Zijlstrac3c87e72015-01-23 11:19:48 +01008289 /*
8290 * Make sure we're both on the same task, or both
8291 * per-cpu events.
8292 */
8293 if (group_leader->ctx->task != ctx->task)
8294 goto err_context;
8295
8296 /*
8297 * Make sure we're both events for the same CPU;
8298 * grouping events for different CPUs is broken; since
8299 * you can never concurrently schedule them anyhow.
8300 */
8301 if (group_leader->cpu != event->cpu)
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008302 goto err_context;
8303 } else {
8304 if (group_leader->ctx != ctx)
8305 goto err_context;
8306 }
8307
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008308 /*
8309 * Only a group leader can be exclusive or pinned
8310 */
8311 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008312 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008313 }
8314
8315 if (output_event) {
8316 err = perf_event_set_output(event, output_event);
8317 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008318 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008319 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008320
Yann Droneauda21b0b32014-01-05 21:36:33 +01008321 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
8322 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04008323 if (IS_ERR(event_file)) {
8324 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008325 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04008326 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008327
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008328 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008329 gctx = group_leader->ctx;
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008330 mutex_lock_double(&gctx->mutex, &ctx->mutex);
8331 } else {
8332 mutex_lock(&ctx->mutex);
8333 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008334
Peter Zijlstraa7239682015-09-09 19:06:33 +02008335 if (!perf_event_validate_size(event)) {
8336 err = -E2BIG;
8337 goto err_locked;
8338 }
8339
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008340 /*
8341 * Must be under the same ctx::mutex as perf_install_in_context(),
8342 * because we need to serialize with concurrent event creation.
8343 */
8344 if (!exclusive_event_installable(event, ctx)) {
8345 /* exclusive and group stuff are assumed mutually exclusive */
8346 WARN_ON_ONCE(move_group);
8347
8348 err = -EBUSY;
8349 goto err_locked;
8350 }
8351
8352 WARN_ON_ONCE(ctx->parent_ctx);
8353
8354 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008355 /*
8356 * See perf_event_ctx_lock() for comments on the details
8357 * of swizzling perf_event::ctx.
8358 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008359 perf_remove_from_context(group_leader, false);
Jiri Olsa0231bb52013-02-01 11:23:45 +01008360
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008361 list_for_each_entry(sibling, &group_leader->sibling_list,
8362 group_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008363 perf_remove_from_context(sibling, false);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008364 put_ctx(gctx);
8365 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008366
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008367 /*
8368 * Wait for everybody to stop referencing the events through
8369 * the old lists, before installing it on new lists.
8370 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008371 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008372
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008373 /*
8374 * Install the group siblings before the group leader.
8375 *
8376 * Because a group leader will try and install the entire group
8377 * (through the sibling list, which is still in-tact), we can
8378 * end up with siblings installed in the wrong context.
8379 *
8380 * By installing siblings first we NO-OP because they're not
8381 * reachable through the group lists.
8382 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008383 list_for_each_entry(sibling, &group_leader->sibling_list,
8384 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008385 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +01008386 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008387 get_ctx(ctx);
8388 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008389
8390 /*
8391 * Removing from the context ends up with disabled
8392 * event. What we want here is event in the initial
8393 * startup state, ready to be add into new context.
8394 */
8395 perf_event__state_init(group_leader);
8396 perf_install_in_context(ctx, group_leader, group_leader->cpu);
8397 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008398
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008399 /*
8400 * Now that all events are installed in @ctx, nothing
8401 * references @gctx anymore, so drop the last reference we have
8402 * on it.
8403 */
8404 put_ctx(gctx);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008405 }
8406
Peter Zijlstraf73e22a2015-09-09 20:48:22 +02008407 /*
8408 * Precalculate sample_data sizes; do while holding ctx::mutex such
8409 * that we're serialized against further additions and before
8410 * perf_install_in_context() which is the point the event is active and
8411 * can use these values.
8412 */
8413 perf_event__header_size(event);
8414 perf_event__id_header_size(event);
8415
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08008416 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008417 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008418
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008419 if (move_group)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008420 mutex_unlock(&gctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008421 mutex_unlock(&ctx->mutex);
8422
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008423 put_online_cpus();
8424
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008425 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01008426
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008427 mutex_lock(&current->perf_event_mutex);
8428 list_add_tail(&event->owner_entry, &current->perf_event_list);
8429 mutex_unlock(&current->perf_event_mutex);
8430
Peter Zijlstra8a495422010-05-27 15:47:49 +02008431 /*
8432 * Drop the reference on the group_event after placing the
8433 * new event on the sibling_list. This ensures destruction
8434 * of the group leader will find the pointer to itself in
8435 * perf_group_detach().
8436 */
Al Viro2903ff02012-08-28 12:52:22 -04008437 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04008438 fd_install(event_fd, event_file);
8439 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008440
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008441err_locked:
8442 if (move_group)
8443 mutex_unlock(&gctx->mutex);
8444 mutex_unlock(&ctx->mutex);
8445/* err_file: */
8446 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008447err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008448 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04008449 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008450err_alloc:
8451 free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008452err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008453 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008454err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02008455 if (task)
8456 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008457err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04008458 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04008459err_fd:
8460 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008461 return err;
8462}
8463
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008464/**
8465 * perf_event_create_kernel_counter
8466 *
8467 * @attr: attributes of the counter to create
8468 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07008469 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008470 */
8471struct perf_event *
8472perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07008473 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03008474 perf_overflow_handler_t overflow_handler,
8475 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008476{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008477 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008478 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008479 int err;
8480
8481 /*
8482 * Get the target context (task or percpu):
8483 */
8484
Avi Kivity4dc0da82011-06-29 18:42:35 +03008485 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00008486 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008487 if (IS_ERR(event)) {
8488 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008489 goto err;
8490 }
8491
Jiri Olsaf8697762014-08-01 14:33:01 +02008492 /* Mark owner so we could distinguish it from user events. */
8493 event->owner = EVENT_OWNER_KERNEL;
8494
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008495 account_event(event);
8496
Yan, Zheng4af57ef2014-11-04 21:56:01 -05008497 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008498 if (IS_ERR(ctx)) {
8499 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008500 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008501 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008502
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008503 WARN_ON_ONCE(ctx->parent_ctx);
8504 mutex_lock(&ctx->mutex);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008505 if (!exclusive_event_installable(event, ctx)) {
8506 mutex_unlock(&ctx->mutex);
8507 perf_unpin_context(ctx);
8508 put_ctx(ctx);
8509 err = -EBUSY;
8510 goto err_free;
8511 }
8512
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008513 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008514 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008515 mutex_unlock(&ctx->mutex);
8516
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008517 return event;
8518
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008519err_free:
8520 free_event(event);
8521err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008522 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008523}
8524EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
8525
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008526void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
8527{
8528 struct perf_event_context *src_ctx;
8529 struct perf_event_context *dst_ctx;
8530 struct perf_event *event, *tmp;
8531 LIST_HEAD(events);
8532
8533 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
8534 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
8535
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008536 /*
8537 * See perf_event_ctx_lock() for comments on the details
8538 * of swizzling perf_event::ctx.
8539 */
8540 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008541 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
8542 event_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008543 perf_remove_from_context(event, false);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02008544 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008545 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +02008546 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008547 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008548
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008549 /*
8550 * Wait for the events to quiesce before re-instating them.
8551 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008552 synchronize_rcu();
8553
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008554 /*
8555 * Re-instate events in 2 passes.
8556 *
8557 * Skip over group leaders and only install siblings on this first
8558 * pass, siblings will not get enabled without a leader, however a
8559 * leader will enable its siblings, even if those are still on the old
8560 * context.
8561 */
8562 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
8563 if (event->group_leader == event)
8564 continue;
8565
8566 list_del(&event->migrate_entry);
8567 if (event->state >= PERF_EVENT_STATE_OFF)
8568 event->state = PERF_EVENT_STATE_INACTIVE;
8569 account_event_cpu(event, dst_cpu);
8570 perf_install_in_context(dst_ctx, event, dst_cpu);
8571 get_ctx(dst_ctx);
8572 }
8573
8574 /*
8575 * Once all the siblings are setup properly, install the group leaders
8576 * to make it go.
8577 */
Peter Zijlstra98861672013-10-03 16:02:23 +02008578 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
8579 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008580 if (event->state >= PERF_EVENT_STATE_OFF)
8581 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02008582 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008583 perf_install_in_context(dst_ctx, event, dst_cpu);
8584 get_ctx(dst_ctx);
8585 }
8586 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008587 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008588}
8589EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
8590
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008591static void sync_child_event(struct perf_event *child_event,
8592 struct task_struct *child)
8593{
8594 struct perf_event *parent_event = child_event->parent;
8595 u64 child_val;
8596
8597 if (child_event->attr.inherit_stat)
8598 perf_event_read_event(child_event, child);
8599
Peter Zijlstrab5e58792010-05-21 14:43:12 +02008600 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008601
8602 /*
8603 * Add back the child's count to the parent's count:
8604 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02008605 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008606 atomic64_add(child_event->total_time_enabled,
8607 &parent_event->child_total_time_enabled);
8608 atomic64_add(child_event->total_time_running,
8609 &parent_event->child_total_time_running);
8610
8611 /*
8612 * Remove this event from the parent's list
8613 */
8614 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
8615 mutex_lock(&parent_event->child_mutex);
8616 list_del_init(&child_event->child_list);
8617 mutex_unlock(&parent_event->child_mutex);
8618
8619 /*
Jiri Olsadc633982014-09-12 13:18:26 +02008620 * Make sure user/parent get notified, that we just
8621 * lost one event.
8622 */
8623 perf_event_wakeup(parent_event);
8624
8625 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008626 * Release the parent event, if this was the last
8627 * reference to it.
8628 */
Al Viroa6fa9412012-08-20 14:59:25 +01008629 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008630}
8631
8632static void
8633__perf_event_exit_task(struct perf_event *child_event,
8634 struct perf_event_context *child_ctx,
8635 struct task_struct *child)
8636{
Peter Zijlstra1903d502014-07-15 17:27:27 +02008637 /*
8638 * Do not destroy the 'original' grouping; because of the context
8639 * switch optimization the original events could've ended up in a
8640 * random child task.
8641 *
8642 * If we were to destroy the original group, all group related
8643 * operations would cease to function properly after this random
8644 * child dies.
8645 *
8646 * Do destroy all inherited groups, we don't care about those
8647 * and being thorough is better.
8648 */
8649 perf_remove_from_context(child_event, !!child_event->parent);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008650
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008651 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008652 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008653 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008654 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008655 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008656 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008657 sync_child_event(child_event, child);
8658 free_event(child_event);
Jiri Olsa179033b2014-08-07 11:48:26 -04008659 } else {
8660 child_event->state = PERF_EVENT_STATE_EXIT;
8661 perf_event_wakeup(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008662 }
8663}
8664
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008665static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008666{
Peter Zijlstraebf905f2014-05-29 19:00:24 +02008667 struct perf_event *child_event, *next;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008668 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008669 unsigned long flags;
8670
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008671 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008672 perf_event_task(child, NULL, 0);
8673 return;
8674 }
8675
8676 local_irq_save(flags);
8677 /*
8678 * We can't reschedule here because interrupts are disabled,
8679 * and either child is current or it is a task that can't be
8680 * scheduled, so we are now safe from rescheduling changing
8681 * our context.
8682 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01008683 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008684
8685 /*
8686 * Take the context lock here so that if find_get_context is
8687 * reading child->perf_event_ctxp, we wait until it has
8688 * incremented the context's refcount before we do put_ctx below.
8689 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01008690 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02008691 task_ctx_sched_out(child_ctx);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008692 child->perf_event_ctxp[ctxn] = NULL;
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02008693
8694 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008695 * If this context is a clone; unclone it so it can't get
8696 * swapped to another process while we're removing all
8697 * the events from it.
8698 */
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008699 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01008700 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01008701 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008702
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008703 if (clone_ctx)
8704 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02008705
8706 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008707 * Report the task dead after unscheduling the events so that we
8708 * won't get any samples after PERF_RECORD_EXIT. We can however still
8709 * get a few PERF_RECORD_READ events.
8710 */
8711 perf_event_task(child, child_ctx, 0);
8712
8713 /*
8714 * We can recurse on the same lock type through:
8715 *
8716 * __perf_event_exit_task()
8717 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01008718 * put_event()
8719 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008720 *
8721 * But since its the parent context it won't be the same instance.
8722 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02008723 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008724
Peter Zijlstraebf905f2014-05-29 19:00:24 +02008725 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008726 __perf_event_exit_task(child_event, child_ctx, child);
8727
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008728 mutex_unlock(&child_ctx->mutex);
8729
8730 put_ctx(child_ctx);
8731}
8732
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008733/*
8734 * When a child task exits, feed back event values to parent events.
8735 */
8736void perf_event_exit_task(struct task_struct *child)
8737{
Peter Zijlstra88821352010-11-09 19:01:43 +01008738 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008739 int ctxn;
8740
Peter Zijlstra88821352010-11-09 19:01:43 +01008741 mutex_lock(&child->perf_event_mutex);
8742 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
8743 owner_entry) {
8744 list_del_init(&event->owner_entry);
8745
8746 /*
8747 * Ensure the list deletion is visible before we clear
8748 * the owner, closes a race against perf_release() where
8749 * we need to serialize on the owner->perf_event_mutex.
8750 */
8751 smp_wmb();
8752 event->owner = NULL;
8753 }
8754 mutex_unlock(&child->perf_event_mutex);
8755
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008756 for_each_task_context_nr(ctxn)
8757 perf_event_exit_task_context(child, ctxn);
8758}
8759
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008760static void perf_free_event(struct perf_event *event,
8761 struct perf_event_context *ctx)
8762{
8763 struct perf_event *parent = event->parent;
8764
8765 if (WARN_ON_ONCE(!parent))
8766 return;
8767
8768 mutex_lock(&parent->child_mutex);
8769 list_del_init(&event->child_list);
8770 mutex_unlock(&parent->child_mutex);
8771
Al Viroa6fa9412012-08-20 14:59:25 +01008772 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008773
Peter Zijlstra652884f2015-01-23 11:20:10 +01008774 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02008775 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008776 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +01008777 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008778 free_event(event);
8779}
8780
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008781/*
Peter Zijlstra652884f2015-01-23 11:20:10 +01008782 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008783 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +01008784 *
8785 * Not all locks are strictly required, but take them anyway to be nice and
8786 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008787 */
8788void perf_event_free_task(struct task_struct *task)
8789{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008790 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008791 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008792 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008793
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008794 for_each_task_context_nr(ctxn) {
8795 ctx = task->perf_event_ctxp[ctxn];
8796 if (!ctx)
8797 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008798
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008799 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008800again:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008801 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
8802 group_entry)
8803 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008804
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008805 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
8806 group_entry)
8807 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008808
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008809 if (!list_empty(&ctx->pinned_groups) ||
8810 !list_empty(&ctx->flexible_groups))
8811 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008812
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008813 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008814
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008815 put_ctx(ctx);
8816 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008817}
8818
Peter Zijlstra4e231c72010-09-09 21:01:59 +02008819void perf_event_delayed_put(struct task_struct *task)
8820{
8821 int ctxn;
8822
8823 for_each_task_context_nr(ctxn)
8824 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
8825}
8826
Kaixu Xiaffe86902015-08-06 07:02:32 +00008827struct perf_event *perf_event_get(unsigned int fd)
8828{
8829 int err;
8830 struct fd f;
8831 struct perf_event *event;
8832
8833 err = perf_fget_light(fd, &f);
8834 if (err)
8835 return ERR_PTR(err);
8836
8837 event = f.file->private_data;
8838 atomic_long_inc(&event->refcount);
8839 fdput(f);
8840
8841 return event;
8842}
8843
8844const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
8845{
8846 if (!event)
8847 return ERR_PTR(-EINVAL);
8848
8849 return &event->attr;
8850}
8851
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008852/*
8853 * inherit a event from parent task to child task:
8854 */
8855static struct perf_event *
8856inherit_event(struct perf_event *parent_event,
8857 struct task_struct *parent,
8858 struct perf_event_context *parent_ctx,
8859 struct task_struct *child,
8860 struct perf_event *group_leader,
8861 struct perf_event_context *child_ctx)
8862{
Jiri Olsa1929def2014-09-12 13:18:27 +02008863 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008864 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02008865 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008866
8867 /*
8868 * Instead of creating recursive hierarchies of events,
8869 * we link inherited events back to the original parent,
8870 * which has a filp for sure, which we use as the reference
8871 * count:
8872 */
8873 if (parent_event->parent)
8874 parent_event = parent_event->parent;
8875
8876 child_event = perf_event_alloc(&parent_event->attr,
8877 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008878 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008879 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +00008880 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008881 if (IS_ERR(child_event))
8882 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01008883
Jiri Olsafadfe7b2014-08-01 14:33:02 +02008884 if (is_orphaned_event(parent_event) ||
8885 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Al Viroa6fa9412012-08-20 14:59:25 +01008886 free_event(child_event);
8887 return NULL;
8888 }
8889
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008890 get_ctx(child_ctx);
8891
8892 /*
8893 * Make the child state follow the state of the parent event,
8894 * not its attr.disabled bit. We hold the parent's mutex,
8895 * so we won't race with perf_event_{en, dis}able_family.
8896 */
Jiri Olsa1929def2014-09-12 13:18:27 +02008897 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008898 child_event->state = PERF_EVENT_STATE_INACTIVE;
8899 else
8900 child_event->state = PERF_EVENT_STATE_OFF;
8901
8902 if (parent_event->attr.freq) {
8903 u64 sample_period = parent_event->hw.sample_period;
8904 struct hw_perf_event *hwc = &child_event->hw;
8905
8906 hwc->sample_period = sample_period;
8907 hwc->last_period = sample_period;
8908
8909 local64_set(&hwc->period_left, sample_period);
8910 }
8911
8912 child_event->ctx = child_ctx;
8913 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03008914 child_event->overflow_handler_context
8915 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008916
8917 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02008918 * Precalculate sample_data sizes
8919 */
8920 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02008921 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02008922
8923 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008924 * Link it up in the child's context:
8925 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02008926 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008927 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02008928 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008929
8930 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008931 * Link this into the parent event's child list
8932 */
8933 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
8934 mutex_lock(&parent_event->child_mutex);
8935 list_add_tail(&child_event->child_list, &parent_event->child_list);
8936 mutex_unlock(&parent_event->child_mutex);
8937
8938 return child_event;
8939}
8940
8941static int inherit_group(struct perf_event *parent_event,
8942 struct task_struct *parent,
8943 struct perf_event_context *parent_ctx,
8944 struct task_struct *child,
8945 struct perf_event_context *child_ctx)
8946{
8947 struct perf_event *leader;
8948 struct perf_event *sub;
8949 struct perf_event *child_ctr;
8950
8951 leader = inherit_event(parent_event, parent, parent_ctx,
8952 child, NULL, child_ctx);
8953 if (IS_ERR(leader))
8954 return PTR_ERR(leader);
8955 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
8956 child_ctr = inherit_event(sub, parent, parent_ctx,
8957 child, leader, child_ctx);
8958 if (IS_ERR(child_ctr))
8959 return PTR_ERR(child_ctr);
8960 }
8961 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008962}
8963
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008964static int
8965inherit_task_group(struct perf_event *event, struct task_struct *parent,
8966 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008967 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008968 int *inherited_all)
8969{
8970 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008971 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008972
8973 if (!event->attr.inherit) {
8974 *inherited_all = 0;
8975 return 0;
8976 }
8977
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008978 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008979 if (!child_ctx) {
8980 /*
8981 * This is executed from the parent task context, so
8982 * inherit events that have been marked for cloning.
8983 * First allocate and initialize a context for the
8984 * child.
8985 */
8986
Jiri Olsa734df5a2013-07-09 17:44:10 +02008987 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008988 if (!child_ctx)
8989 return -ENOMEM;
8990
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008991 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008992 }
8993
8994 ret = inherit_group(event, parent, parent_ctx,
8995 child, child_ctx);
8996
8997 if (ret)
8998 *inherited_all = 0;
8999
9000 return ret;
9001}
9002
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009003/*
9004 * Initialize the perf_event context in task_struct
9005 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +02009006static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009007{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009008 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009009 struct perf_event_context *cloned_ctx;
9010 struct perf_event *event;
9011 struct task_struct *parent = current;
9012 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009013 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009014 int ret = 0;
9015
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009016 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009017 return 0;
9018
9019 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009020 * If the parent's context is a clone, pin it so it won't get
9021 * swapped under us.
9022 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009023 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +02009024 if (!parent_ctx)
9025 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009026
9027 /*
9028 * No need to check if parent_ctx != NULL here; since we saw
9029 * it non-NULL earlier, the only reason for it to become NULL
9030 * is if we exit, and since we're currently in the middle of
9031 * a fork we can't be exiting at the same time.
9032 */
9033
9034 /*
9035 * Lock the parent list. No need to lock the child - not PID
9036 * hashed yet and not running, so nobody can access it.
9037 */
9038 mutex_lock(&parent_ctx->mutex);
9039
9040 /*
9041 * We dont have to disable NMIs - we are only looking at
9042 * the list, not manipulating it:
9043 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009044 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009045 ret = inherit_task_group(event, parent, parent_ctx,
9046 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009047 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009048 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009049 }
9050
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009051 /*
9052 * We can't hold ctx->lock when iterating the ->flexible_group list due
9053 * to allocations, but we need to prevent rotation because
9054 * rotate_ctx() will change the list from interrupt context.
9055 */
9056 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
9057 parent_ctx->rotate_disable = 1;
9058 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
9059
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009060 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009061 ret = inherit_task_group(event, parent, parent_ctx,
9062 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009063 if (ret)
9064 break;
9065 }
9066
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009067 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
9068 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009069
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009070 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009071
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01009072 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009073 /*
9074 * Mark the child context as a clone of the parent
9075 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009076 *
9077 * Note that if the parent is a clone, the holding of
9078 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009079 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009080 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009081 if (cloned_ctx) {
9082 child_ctx->parent_ctx = cloned_ctx;
9083 child_ctx->parent_gen = parent_ctx->parent_gen;
9084 } else {
9085 child_ctx->parent_ctx = parent_ctx;
9086 child_ctx->parent_gen = parent_ctx->generation;
9087 }
9088 get_ctx(child_ctx->parent_ctx);
9089 }
9090
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009091 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009092 mutex_unlock(&parent_ctx->mutex);
9093
9094 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009095 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009096
9097 return ret;
9098}
9099
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009100/*
9101 * Initialize the perf_event context in task_struct
9102 */
9103int perf_event_init_task(struct task_struct *child)
9104{
9105 int ctxn, ret;
9106
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01009107 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
9108 mutex_init(&child->perf_event_mutex);
9109 INIT_LIST_HEAD(&child->perf_event_list);
9110
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009111 for_each_task_context_nr(ctxn) {
9112 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07009113 if (ret) {
9114 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009115 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07009116 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009117 }
9118
9119 return 0;
9120}
9121
Paul Mackerras220b1402010-03-10 20:45:52 +11009122static void __init perf_event_init_all_cpus(void)
9123{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009124 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11009125 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11009126
9127 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009128 swhash = &per_cpu(swevent_htable, cpu);
9129 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00009130 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11009131 }
9132}
9133
Paul Gortmaker0db06282013-06-19 14:53:51 -04009134static void perf_event_init_cpu(int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009135{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009136 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009137
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009138 mutex_lock(&swhash->hlist_mutex);
Jiri Olsa39af6b12014-04-07 11:04:08 +02009139 swhash->online = true;
Linus Torvalds4536e4d2011-11-03 07:44:04 -07009140 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009141 struct swevent_hlist *hlist;
9142
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009143 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
9144 WARN_ON(!hlist);
9145 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009146 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009147 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009148}
9149
Dave Young2965faa2015-09-09 15:38:55 -07009150#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009151static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009152{
Mark Rutland226424e2014-11-05 16:11:44 +00009153 struct remove_event re = { .detach_group = true };
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009154 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009155
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009156 rcu_read_lock();
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02009157 list_for_each_entry_rcu(re.event, &ctx->event_list, event_entry)
9158 __perf_remove_from_context(&re);
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009159 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009160}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009161
9162static void perf_event_exit_cpu_context(int cpu)
9163{
9164 struct perf_event_context *ctx;
9165 struct pmu *pmu;
9166 int idx;
9167
9168 idx = srcu_read_lock(&pmus_srcu);
9169 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02009170 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009171
9172 mutex_lock(&ctx->mutex);
9173 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
9174 mutex_unlock(&ctx->mutex);
9175 }
9176 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009177}
9178
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009179static void perf_event_exit_cpu(int cpu)
9180{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009181 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009182
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009183 perf_event_exit_cpu_context(cpu);
9184
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009185 mutex_lock(&swhash->hlist_mutex);
Jiri Olsa39af6b12014-04-07 11:04:08 +02009186 swhash->online = false;
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009187 swevent_hlist_release(swhash);
9188 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009189}
9190#else
9191static inline void perf_event_exit_cpu(int cpu) { }
9192#endif
9193
Peter Zijlstrac2774432010-12-08 15:29:02 +01009194static int
9195perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
9196{
9197 int cpu;
9198
9199 for_each_online_cpu(cpu)
9200 perf_event_exit_cpu(cpu);
9201
9202 return NOTIFY_OK;
9203}
9204
9205/*
9206 * Run the perf reboot notifier at the very last possible moment so that
9207 * the generic watchdog code runs as long as possible.
9208 */
9209static struct notifier_block perf_reboot_notifier = {
9210 .notifier_call = perf_reboot,
9211 .priority = INT_MIN,
9212};
9213
Paul Gortmaker0db06282013-06-19 14:53:51 -04009214static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009215perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
9216{
9217 unsigned int cpu = (long)hcpu;
9218
Linus Torvalds4536e4d2011-11-03 07:44:04 -07009219 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009220
9221 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02009222 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009223 perf_event_init_cpu(cpu);
9224 break;
9225
Peter Zijlstra5e116372010-06-11 13:35:08 +02009226 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009227 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009228 perf_event_exit_cpu(cpu);
9229 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009230 default:
9231 break;
9232 }
9233
9234 return NOTIFY_OK;
9235}
9236
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009237void __init perf_event_init(void)
9238{
Jason Wessel3c502e72010-11-04 17:33:01 -05009239 int ret;
9240
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009241 idr_init(&pmu_idr);
9242
Paul Mackerras220b1402010-03-10 20:45:52 +11009243 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009244 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009245 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
9246 perf_pmu_register(&perf_cpu_clock, NULL, -1);
9247 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009248 perf_tp_register();
9249 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01009250 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05009251
9252 ret = init_hw_breakpoint();
9253 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02009254
9255 /* do not patch jump label more than once per second */
9256 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01009257
9258 /*
9259 * Build time assertion that we keep the data_head at the intended
9260 * location. IOW, validation we got the __reserved[] size right.
9261 */
9262 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
9263 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009264}
Peter Zijlstraabe43402010-11-17 23:17:37 +01009265
Cody P Schaferfd979c02015-01-30 13:45:57 -08009266ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
9267 char *page)
9268{
9269 struct perf_pmu_events_attr *pmu_attr =
9270 container_of(attr, struct perf_pmu_events_attr, attr);
9271
9272 if (pmu_attr->event_str)
9273 return sprintf(page, "%s\n", pmu_attr->event_str);
9274
9275 return 0;
9276}
9277
Peter Zijlstraabe43402010-11-17 23:17:37 +01009278static int __init perf_event_sysfs_init(void)
9279{
9280 struct pmu *pmu;
9281 int ret;
9282
9283 mutex_lock(&pmus_lock);
9284
9285 ret = bus_register(&pmu_bus);
9286 if (ret)
9287 goto unlock;
9288
9289 list_for_each_entry(pmu, &pmus, entry) {
9290 if (!pmu->name || pmu->type < 0)
9291 continue;
9292
9293 ret = pmu_dev_alloc(pmu);
9294 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
9295 }
9296 pmu_bus_running = 1;
9297 ret = 0;
9298
9299unlock:
9300 mutex_unlock(&pmus_lock);
9301
9302 return ret;
9303}
9304device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009305
9306#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -04009307static struct cgroup_subsys_state *
9308perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009309{
9310 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02009311
Li Zefan1b15d052011-03-03 14:26:06 +08009312 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009313 if (!jc)
9314 return ERR_PTR(-ENOMEM);
9315
Stephane Eraniane5d13672011-02-14 11:20:01 +02009316 jc->info = alloc_percpu(struct perf_cgroup_info);
9317 if (!jc->info) {
9318 kfree(jc);
9319 return ERR_PTR(-ENOMEM);
9320 }
9321
Stephane Eraniane5d13672011-02-14 11:20:01 +02009322 return &jc->css;
9323}
9324
Tejun Heoeb954192013-08-08 20:11:23 -04009325static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009326{
Tejun Heoeb954192013-08-08 20:11:23 -04009327 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
9328
Stephane Eraniane5d13672011-02-14 11:20:01 +02009329 free_percpu(jc->info);
9330 kfree(jc);
9331}
9332
9333static int __perf_cgroup_move(void *info)
9334{
9335 struct task_struct *task = info;
9336 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
9337 return 0;
9338}
9339
Tejun Heoeb954192013-08-08 20:11:23 -04009340static void perf_cgroup_attach(struct cgroup_subsys_state *css,
9341 struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009342{
Tejun Heobb9d97b2011-12-12 18:12:21 -08009343 struct task_struct *task;
9344
Tejun Heo924f0d9a2014-02-13 06:58:41 -05009345 cgroup_taskset_for_each(task, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08009346 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009347}
9348
Tejun Heoeb954192013-08-08 20:11:23 -04009349static void perf_cgroup_exit(struct cgroup_subsys_state *css,
9350 struct cgroup_subsys_state *old_css,
Li Zefan761b3ef52012-01-31 13:47:36 +08009351 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009352{
9353 /*
9354 * cgroup_exit() is called in the copy_process() failure path.
9355 * Ignore this case since the task hasn't ran yet, this avoids
9356 * trying to poke a half freed task state from generic code.
9357 */
9358 if (!(task->flags & PF_EXITING))
9359 return;
9360
Tejun Heobb9d97b2011-12-12 18:12:21 -08009361 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009362}
9363
Tejun Heo073219e2014-02-08 10:36:58 -05009364struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08009365 .css_alloc = perf_cgroup_css_alloc,
9366 .css_free = perf_cgroup_css_free,
Ingo Molnare7e7ee22011-05-04 08:42:29 +02009367 .exit = perf_cgroup_exit,
Tejun Heobb9d97b2011-12-12 18:12:21 -08009368 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +02009369};
9370#endif /* CONFIG_CGROUP_PERF */