blob: 1fc3bae5904ac77ede9889db98ba40f8a3881409 [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>
Li Zefan6fb29152009-10-15 11:21:42 +080039#include <linux/ftrace_event.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>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020045
Frederic Weisbecker76369132011-05-19 19:55:04 +020046#include "internal.h"
47
Ingo Molnarcdd6c482009-09-21 12:02:48 +020048#include <asm/irq_regs.h>
49
Jiri Olsafadfe7b2014-08-01 14:33:02 +020050static struct workqueue_struct *perf_wq;
51
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010052struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020053 struct task_struct *p;
54 int (*func)(void *info);
55 void *info;
56 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010057};
58
59static void remote_function(void *data)
60{
61 struct remote_function_call *tfc = data;
62 struct task_struct *p = tfc->p;
63
64 if (p) {
65 tfc->ret = -EAGAIN;
66 if (task_cpu(p) != smp_processor_id() || !task_curr(p))
67 return;
68 }
69
70 tfc->ret = tfc->func(tfc->info);
71}
72
73/**
74 * task_function_call - call a function on the cpu on which a task runs
75 * @p: the task to evaluate
76 * @func: the function to be called
77 * @info: the function call argument
78 *
79 * Calls the function @func when the task is currently running. This might
80 * be on the current CPU, which just calls the function directly
81 *
82 * returns: @func return value, or
83 * -ESRCH - when the process isn't running
84 * -EAGAIN - when the process moved away
85 */
86static int
87task_function_call(struct task_struct *p, int (*func) (void *info), void *info)
88{
89 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020090 .p = p,
91 .func = func,
92 .info = info,
93 .ret = -ESRCH, /* No such (running) process */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010094 };
95
96 if (task_curr(p))
97 smp_call_function_single(task_cpu(p), remote_function, &data, 1);
98
99 return data.ret;
100}
101
102/**
103 * cpu_function_call - call a function on the cpu
104 * @func: the function to be called
105 * @info: the function call argument
106 *
107 * Calls the function @func on the remote cpu.
108 *
109 * returns: @func return value or -ENXIO when the cpu is offline
110 */
111static int cpu_function_call(int cpu, int (*func) (void *info), void *info)
112{
113 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200114 .p = NULL,
115 .func = func,
116 .info = info,
117 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100118 };
119
120 smp_call_function_single(cpu, remote_function, &data, 1);
121
122 return data.ret;
123}
124
Jiri Olsaf8697762014-08-01 14:33:01 +0200125#define EVENT_OWNER_KERNEL ((void *) -1)
126
127static bool is_kernel_event(struct perf_event *event)
128{
129 return event->owner == EVENT_OWNER_KERNEL;
130}
131
Stephane Eraniane5d13672011-02-14 11:20:01 +0200132#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
133 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100134 PERF_FLAG_PID_CGROUP |\
135 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200136
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100137/*
138 * branch priv levels that need permission checks
139 */
140#define PERF_SAMPLE_BRANCH_PERM_PLM \
141 (PERF_SAMPLE_BRANCH_KERNEL |\
142 PERF_SAMPLE_BRANCH_HV)
143
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200144enum event_type_t {
145 EVENT_FLEXIBLE = 0x1,
146 EVENT_PINNED = 0x2,
147 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
148};
149
Stephane Eraniane5d13672011-02-14 11:20:01 +0200150/*
151 * perf_sched_events : >0 events exist
152 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
153 */
Ingo Molnarc5905af2012-02-24 08:31:31 +0100154struct static_key_deferred perf_sched_events __read_mostly;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200155static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500156static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200157
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200158static atomic_t nr_mmap_events __read_mostly;
159static atomic_t nr_comm_events __read_mostly;
160static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200161static atomic_t nr_freq_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200162
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200163static LIST_HEAD(pmus);
164static DEFINE_MUTEX(pmus_lock);
165static struct srcu_struct pmus_srcu;
166
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200167/*
168 * perf event paranoia level:
169 * -1 - not paranoid at all
170 * 0 - disallow raw tracepoint access for unpriv
171 * 1 - disallow cpu events for unpriv
172 * 2 - disallow kernel profiling for unpriv
173 */
174int sysctl_perf_event_paranoid __read_mostly = 1;
175
Frederic Weisbecker20443382011-03-31 03:33:29 +0200176/* Minimum for 512 kiB + 1 user control page */
177int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200178
179/*
180 * max perf event sample rate
181 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700182#define DEFAULT_MAX_SAMPLE_RATE 100000
183#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
184#define DEFAULT_CPU_TIME_MAX_PERCENT 25
185
186int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
187
188static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
189static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
190
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200191static int perf_sample_allowed_ns __read_mostly =
192 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700193
194void update_perf_cpu_limits(void)
195{
196 u64 tmp = perf_sample_period_ns;
197
198 tmp *= sysctl_perf_cpu_time_max_percent;
Stephane Eraniane5302922013-07-05 00:30:11 +0200199 do_div(tmp, 100);
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200200 ACCESS_ONCE(perf_sample_allowed_ns) = tmp;
Dave Hansen14c63f12013-06-21 08:51:36 -0700201}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100202
Stephane Eranian9e630202013-04-03 14:21:33 +0200203static int perf_rotate_context(struct perf_cpu_context *cpuctx);
204
Peter Zijlstra163ec432011-02-16 11:22:34 +0100205int perf_proc_update_handler(struct ctl_table *table, int write,
206 void __user *buffer, size_t *lenp,
207 loff_t *ppos)
208{
Knut Petersen723478c2013-09-25 14:29:37 +0200209 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100210
211 if (ret || !write)
212 return ret;
213
214 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700215 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
216 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100217
218 return 0;
219}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200220
Dave Hansen14c63f12013-06-21 08:51:36 -0700221int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
222
223int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
224 void __user *buffer, size_t *lenp,
225 loff_t *ppos)
226{
227 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
228
229 if (ret || !write)
230 return ret;
231
232 update_perf_cpu_limits();
233
234 return 0;
235}
236
237/*
238 * perf samples are done in some very critical code paths (NMIs).
239 * If they take too much CPU time, the system can lock up and not
240 * get any real work done. This will drop the sample rate when
241 * we detect that events are taking too long.
242 */
243#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200244static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700245
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100246static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700247{
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100248 u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
Dave Hansen14c63f12013-06-21 08:51:36 -0700249 u64 avg_local_sample_len;
Stephane Eraniane5302922013-07-05 00:30:11 +0200250 u64 local_samples_len;
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100251
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500252 local_samples_len = __this_cpu_read(running_sample_length);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100253 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
254
255 printk_ratelimited(KERN_WARNING
256 "perf interrupt took too long (%lld > %lld), lowering "
257 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100258 avg_local_sample_len, allowed_ns >> 1,
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100259 sysctl_perf_event_sample_rate);
260}
261
262static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
263
264void perf_sample_event_took(u64 sample_len_ns)
265{
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200266 u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100267 u64 avg_local_sample_len;
268 u64 local_samples_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700269
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200270 if (allowed_ns == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700271 return;
272
273 /* decay the counter by 1 average sample */
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500274 local_samples_len = __this_cpu_read(running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700275 local_samples_len -= local_samples_len/NR_ACCUMULATED_SAMPLES;
276 local_samples_len += sample_len_ns;
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500277 __this_cpu_write(running_sample_length, local_samples_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700278
279 /*
280 * note: this will be biased artifically low until we have
281 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
282 * from having to maintain a count.
283 */
284 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
285
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200286 if (avg_local_sample_len <= allowed_ns)
Dave Hansen14c63f12013-06-21 08:51:36 -0700287 return;
288
289 if (max_samples_per_tick <= 1)
290 return;
291
292 max_samples_per_tick = DIV_ROUND_UP(max_samples_per_tick, 2);
293 sysctl_perf_event_sample_rate = max_samples_per_tick * HZ;
294 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
295
Dave Hansen14c63f12013-06-21 08:51:36 -0700296 update_perf_cpu_limits();
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100297
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100298 if (!irq_work_queue(&perf_duration_work)) {
299 early_printk("perf interrupt took too long (%lld > %lld), lowering "
300 "kernel.perf_event_max_sample_rate to %d\n",
301 avg_local_sample_len, allowed_ns >> 1,
302 sysctl_perf_event_sample_rate);
303 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700304}
305
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200306static atomic64_t perf_event_id;
307
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200308static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
309 enum event_type_t event_type);
310
311static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200312 enum event_type_t event_type,
313 struct task_struct *task);
314
315static void update_context_time(struct perf_event_context *ctx);
316static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200317
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200318void __weak perf_event_print_debug(void) { }
319
Matt Fleming84c79912010-10-03 21:41:13 +0100320extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200321{
Matt Fleming84c79912010-10-03 21:41:13 +0100322 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200323}
324
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200325static inline u64 perf_clock(void)
326{
327 return local_clock();
328}
329
Stephane Eraniane5d13672011-02-14 11:20:01 +0200330static inline struct perf_cpu_context *
331__get_cpu_context(struct perf_event_context *ctx)
332{
333 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
334}
335
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200336static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
337 struct perf_event_context *ctx)
338{
339 raw_spin_lock(&cpuctx->ctx.lock);
340 if (ctx)
341 raw_spin_lock(&ctx->lock);
342}
343
344static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
345 struct perf_event_context *ctx)
346{
347 if (ctx)
348 raw_spin_unlock(&ctx->lock);
349 raw_spin_unlock(&cpuctx->ctx.lock);
350}
351
Stephane Eraniane5d13672011-02-14 11:20:01 +0200352#ifdef CONFIG_CGROUP_PERF
353
Stephane Eraniane5d13672011-02-14 11:20:01 +0200354static inline bool
355perf_cgroup_match(struct perf_event *event)
356{
357 struct perf_event_context *ctx = event->ctx;
358 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
359
Tejun Heoef824fa2013-04-08 19:00:38 -0700360 /* @event doesn't care about cgroup */
361 if (!event->cgrp)
362 return true;
363
364 /* wants specific cgroup scope but @cpuctx isn't associated with any */
365 if (!cpuctx->cgrp)
366 return false;
367
368 /*
369 * Cgroup scoping is recursive. An event enabled for a cgroup is
370 * also enabled for all its descendant cgroups. If @cpuctx's
371 * cgroup is a descendant of @event's (the test covers identity
372 * case), it's a match.
373 */
374 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
375 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200376}
377
Stephane Eraniane5d13672011-02-14 11:20:01 +0200378static inline void perf_detach_cgroup(struct perf_event *event)
379{
Zefan Li4e2ba652014-09-19 16:53:14 +0800380 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200381 event->cgrp = NULL;
382}
383
384static inline int is_cgroup_event(struct perf_event *event)
385{
386 return event->cgrp != NULL;
387}
388
389static inline u64 perf_cgroup_event_time(struct perf_event *event)
390{
391 struct perf_cgroup_info *t;
392
393 t = per_cpu_ptr(event->cgrp->info, event->cpu);
394 return t->time;
395}
396
397static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
398{
399 struct perf_cgroup_info *info;
400 u64 now;
401
402 now = perf_clock();
403
404 info = this_cpu_ptr(cgrp->info);
405
406 info->time += now - info->timestamp;
407 info->timestamp = now;
408}
409
410static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
411{
412 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
413 if (cgrp_out)
414 __update_cgrp_time(cgrp_out);
415}
416
417static inline void update_cgrp_time_from_event(struct perf_event *event)
418{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200419 struct perf_cgroup *cgrp;
420
Stephane Eraniane5d13672011-02-14 11:20:01 +0200421 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200422 * ensure we access cgroup data only when needed and
423 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200424 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200425 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200426 return;
427
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200428 cgrp = perf_cgroup_from_task(current);
429 /*
430 * Do not update time when cgroup is not active
431 */
432 if (cgrp == event->cgrp)
433 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200434}
435
436static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200437perf_cgroup_set_timestamp(struct task_struct *task,
438 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200439{
440 struct perf_cgroup *cgrp;
441 struct perf_cgroup_info *info;
442
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200443 /*
444 * ctx->lock held by caller
445 * ensure we do not access cgroup data
446 * unless we have the cgroup pinned (css_get)
447 */
448 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200449 return;
450
451 cgrp = perf_cgroup_from_task(task);
452 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200453 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200454}
455
456#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
457#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
458
459/*
460 * reschedule events based on the cgroup constraint of task.
461 *
462 * mode SWOUT : schedule out everything
463 * mode SWIN : schedule in based on cgroup for next
464 */
465void perf_cgroup_switch(struct task_struct *task, int mode)
466{
467 struct perf_cpu_context *cpuctx;
468 struct pmu *pmu;
469 unsigned long flags;
470
471 /*
472 * disable interrupts to avoid geting nr_cgroup
473 * changes via __perf_event_disable(). Also
474 * avoids preemption.
475 */
476 local_irq_save(flags);
477
478 /*
479 * we reschedule only in the presence of cgroup
480 * constrained events.
481 */
482 rcu_read_lock();
483
484 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200485 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200486 if (cpuctx->unique_pmu != pmu)
487 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200488
Stephane Eraniane5d13672011-02-14 11:20:01 +0200489 /*
490 * perf_cgroup_events says at least one
491 * context on this CPU has cgroup events.
492 *
493 * ctx->nr_cgroups reports the number of cgroup
494 * events for a context.
495 */
496 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200497 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
498 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200499
500 if (mode & PERF_CGROUP_SWOUT) {
501 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
502 /*
503 * must not be done before ctxswout due
504 * to event_filter_match() in event_sched_out()
505 */
506 cpuctx->cgrp = NULL;
507 }
508
509 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200510 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200511 /*
512 * set cgrp before ctxsw in to allow
513 * event_filter_match() to not have to pass
514 * task around
Stephane Eraniane5d13672011-02-14 11:20:01 +0200515 */
516 cpuctx->cgrp = perf_cgroup_from_task(task);
517 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
518 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200519 perf_pmu_enable(cpuctx->ctx.pmu);
520 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200521 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200522 }
523
524 rcu_read_unlock();
525
526 local_irq_restore(flags);
527}
528
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200529static inline void perf_cgroup_sched_out(struct task_struct *task,
530 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200531{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200532 struct perf_cgroup *cgrp1;
533 struct perf_cgroup *cgrp2 = NULL;
534
535 /*
536 * we come here when we know perf_cgroup_events > 0
537 */
538 cgrp1 = perf_cgroup_from_task(task);
539
540 /*
541 * next is NULL when called from perf_event_enable_on_exec()
542 * that will systematically cause a cgroup_switch()
543 */
544 if (next)
545 cgrp2 = perf_cgroup_from_task(next);
546
547 /*
548 * only schedule out current cgroup events if we know
549 * that we are switching to a different cgroup. Otherwise,
550 * do no touch the cgroup events.
551 */
552 if (cgrp1 != cgrp2)
553 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200554}
555
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200556static inline void perf_cgroup_sched_in(struct task_struct *prev,
557 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200558{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200559 struct perf_cgroup *cgrp1;
560 struct perf_cgroup *cgrp2 = NULL;
561
562 /*
563 * we come here when we know perf_cgroup_events > 0
564 */
565 cgrp1 = perf_cgroup_from_task(task);
566
567 /* prev can never be NULL */
568 cgrp2 = perf_cgroup_from_task(prev);
569
570 /*
571 * only need to schedule in cgroup events if we are changing
572 * cgroup during ctxsw. Cgroup events were not scheduled
573 * out of ctxsw out if that was not the case.
574 */
575 if (cgrp1 != cgrp2)
576 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200577}
578
579static inline int perf_cgroup_connect(int fd, struct perf_event *event,
580 struct perf_event_attr *attr,
581 struct perf_event *group_leader)
582{
583 struct perf_cgroup *cgrp;
584 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400585 struct fd f = fdget(fd);
586 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200587
Al Viro2903ff02012-08-28 12:52:22 -0400588 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200589 return -EBADF;
590
Al Virob5830432014-10-31 01:22:04 -0400591 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400592 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800593 if (IS_ERR(css)) {
594 ret = PTR_ERR(css);
595 goto out;
596 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200597
598 cgrp = container_of(css, struct perf_cgroup, css);
599 event->cgrp = cgrp;
600
601 /*
602 * all events in a group must monitor
603 * the same cgroup because a task belongs
604 * to only one perf cgroup at a time
605 */
606 if (group_leader && group_leader->cgrp != cgrp) {
607 perf_detach_cgroup(event);
608 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200609 }
Li Zefan3db272c2011-03-03 14:25:37 +0800610out:
Al Viro2903ff02012-08-28 12:52:22 -0400611 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200612 return ret;
613}
614
615static inline void
616perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
617{
618 struct perf_cgroup_info *t;
619 t = per_cpu_ptr(event->cgrp->info, event->cpu);
620 event->shadow_ctx_time = now - t->timestamp;
621}
622
623static inline void
624perf_cgroup_defer_enabled(struct perf_event *event)
625{
626 /*
627 * when the current task's perf cgroup does not match
628 * the event's, we need to remember to call the
629 * perf_mark_enable() function the first time a task with
630 * a matching perf cgroup is scheduled in.
631 */
632 if (is_cgroup_event(event) && !perf_cgroup_match(event))
633 event->cgrp_defer_enabled = 1;
634}
635
636static inline void
637perf_cgroup_mark_enabled(struct perf_event *event,
638 struct perf_event_context *ctx)
639{
640 struct perf_event *sub;
641 u64 tstamp = perf_event_time(event);
642
643 if (!event->cgrp_defer_enabled)
644 return;
645
646 event->cgrp_defer_enabled = 0;
647
648 event->tstamp_enabled = tstamp - event->total_time_enabled;
649 list_for_each_entry(sub, &event->sibling_list, group_entry) {
650 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
651 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
652 sub->cgrp_defer_enabled = 0;
653 }
654 }
655}
656#else /* !CONFIG_CGROUP_PERF */
657
658static inline bool
659perf_cgroup_match(struct perf_event *event)
660{
661 return true;
662}
663
664static inline void perf_detach_cgroup(struct perf_event *event)
665{}
666
667static inline int is_cgroup_event(struct perf_event *event)
668{
669 return 0;
670}
671
672static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
673{
674 return 0;
675}
676
677static inline void update_cgrp_time_from_event(struct perf_event *event)
678{
679}
680
681static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
682{
683}
684
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200685static inline void perf_cgroup_sched_out(struct task_struct *task,
686 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200687{
688}
689
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200690static inline void perf_cgroup_sched_in(struct task_struct *prev,
691 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200692{
693}
694
695static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
696 struct perf_event_attr *attr,
697 struct perf_event *group_leader)
698{
699 return -EINVAL;
700}
701
702static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200703perf_cgroup_set_timestamp(struct task_struct *task,
704 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200705{
706}
707
708void
709perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
710{
711}
712
713static inline void
714perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
715{
716}
717
718static inline u64 perf_cgroup_event_time(struct perf_event *event)
719{
720 return 0;
721}
722
723static inline void
724perf_cgroup_defer_enabled(struct perf_event *event)
725{
726}
727
728static inline void
729perf_cgroup_mark_enabled(struct perf_event *event,
730 struct perf_event_context *ctx)
731{
732}
733#endif
734
Stephane Eranian9e630202013-04-03 14:21:33 +0200735/*
736 * set default to be dependent on timer tick just
737 * like original code
738 */
739#define PERF_CPU_HRTIMER (1000 / HZ)
740/*
741 * function must be called with interrupts disbled
742 */
743static enum hrtimer_restart perf_cpu_hrtimer_handler(struct hrtimer *hr)
744{
745 struct perf_cpu_context *cpuctx;
746 enum hrtimer_restart ret = HRTIMER_NORESTART;
747 int rotations = 0;
748
749 WARN_ON(!irqs_disabled());
750
751 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
752
753 rotations = perf_rotate_context(cpuctx);
754
755 /*
756 * arm timer if needed
757 */
758 if (rotations) {
759 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
760 ret = HRTIMER_RESTART;
761 }
762
763 return ret;
764}
765
766/* CPU is going down */
767void perf_cpu_hrtimer_cancel(int cpu)
768{
769 struct perf_cpu_context *cpuctx;
770 struct pmu *pmu;
771 unsigned long flags;
772
773 if (WARN_ON(cpu != smp_processor_id()))
774 return;
775
776 local_irq_save(flags);
777
778 rcu_read_lock();
779
780 list_for_each_entry_rcu(pmu, &pmus, entry) {
781 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
782
783 if (pmu->task_ctx_nr == perf_sw_context)
784 continue;
785
786 hrtimer_cancel(&cpuctx->hrtimer);
787 }
788
789 rcu_read_unlock();
790
791 local_irq_restore(flags);
792}
793
794static void __perf_cpu_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
795{
796 struct hrtimer *hr = &cpuctx->hrtimer;
797 struct pmu *pmu = cpuctx->ctx.pmu;
Stephane Eranian62b85632013-04-03 14:21:34 +0200798 int timer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200799
800 /* no multiplexing needed for SW PMU */
801 if (pmu->task_ctx_nr == perf_sw_context)
802 return;
803
Stephane Eranian62b85632013-04-03 14:21:34 +0200804 /*
805 * check default is sane, if not set then force to
806 * default interval (1/tick)
807 */
808 timer = pmu->hrtimer_interval_ms;
809 if (timer < 1)
810 timer = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
811
812 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
Stephane Eranian9e630202013-04-03 14:21:33 +0200813
814 hrtimer_init(hr, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
815 hr->function = perf_cpu_hrtimer_handler;
816}
817
818static void perf_cpu_hrtimer_restart(struct perf_cpu_context *cpuctx)
819{
820 struct hrtimer *hr = &cpuctx->hrtimer;
821 struct pmu *pmu = cpuctx->ctx.pmu;
822
823 /* not for SW PMU */
824 if (pmu->task_ctx_nr == perf_sw_context)
825 return;
826
827 if (hrtimer_active(hr))
828 return;
829
830 if (!hrtimer_callback_running(hr))
831 __hrtimer_start_range_ns(hr, cpuctx->hrtimer_interval,
832 0, HRTIMER_MODE_REL_PINNED, 0);
833}
834
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200835void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200836{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200837 int *count = this_cpu_ptr(pmu->pmu_disable_count);
838 if (!(*count)++)
839 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200840}
841
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200842void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200843{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200844 int *count = this_cpu_ptr(pmu->pmu_disable_count);
845 if (!--(*count))
846 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200847}
848
Mark Rutland2fde4f92015-01-07 15:01:54 +0000849static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200850
851/*
Mark Rutland2fde4f92015-01-07 15:01:54 +0000852 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
853 * perf_event_task_tick() are fully serialized because they're strictly cpu
854 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
855 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200856 */
Mark Rutland2fde4f92015-01-07 15:01:54 +0000857static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200858{
Mark Rutland2fde4f92015-01-07 15:01:54 +0000859 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200860
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200861 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200862
Mark Rutland2fde4f92015-01-07 15:01:54 +0000863 WARN_ON(!list_empty(&ctx->active_ctx_list));
864
865 list_add(&ctx->active_ctx_list, head);
866}
867
868static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
869{
870 WARN_ON(!irqs_disabled());
871
872 WARN_ON(list_empty(&ctx->active_ctx_list));
873
874 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200875}
876
877static void get_ctx(struct perf_event_context *ctx)
878{
879 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
880}
881
Yan, Zheng4af57ef2014-11-04 21:56:01 -0500882static void free_ctx(struct rcu_head *head)
883{
884 struct perf_event_context *ctx;
885
886 ctx = container_of(head, struct perf_event_context, rcu_head);
887 kfree(ctx->task_ctx_data);
888 kfree(ctx);
889}
890
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200891static void put_ctx(struct perf_event_context *ctx)
892{
893 if (atomic_dec_and_test(&ctx->refcount)) {
894 if (ctx->parent_ctx)
895 put_ctx(ctx->parent_ctx);
896 if (ctx->task)
897 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -0500898 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200899 }
900}
901
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200902/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100903 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
904 * perf_pmu_migrate_context() we need some magic.
905 *
906 * Those places that change perf_event::ctx will hold both
907 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
908 *
909 * Lock ordering is by mutex address. There is one other site where
910 * perf_event_context::mutex nests and that is put_event(). But remember that
911 * that is a parent<->child context relation, and migration does not affect
912 * children, therefore these two orderings should not interact.
913 *
914 * The change in perf_event::ctx does not affect children (as claimed above)
915 * because the sys_perf_event_open() case will install a new event and break
916 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
917 * concerned with cpuctx and that doesn't have children.
918 *
919 * The places that change perf_event::ctx will issue:
920 *
921 * perf_remove_from_context();
922 * synchronize_rcu();
923 * perf_install_in_context();
924 *
925 * to affect the change. The remove_from_context() + synchronize_rcu() should
926 * quiesce the event, after which we can install it in the new location. This
927 * means that only external vectors (perf_fops, prctl) can perturb the event
928 * while in transit. Therefore all such accessors should also acquire
929 * perf_event_context::mutex to serialize against this.
930 *
931 * However; because event->ctx can change while we're waiting to acquire
932 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
933 * function.
934 *
935 * Lock order:
936 * task_struct::perf_event_mutex
937 * perf_event_context::mutex
938 * perf_event_context::lock
939 * perf_event::child_mutex;
940 * perf_event::mmap_mutex
941 * mmap_sem
942 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +0100943static struct perf_event_context *
944perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100945{
946 struct perf_event_context *ctx;
947
948again:
949 rcu_read_lock();
950 ctx = ACCESS_ONCE(event->ctx);
951 if (!atomic_inc_not_zero(&ctx->refcount)) {
952 rcu_read_unlock();
953 goto again;
954 }
955 rcu_read_unlock();
956
Peter Zijlstraa83fe282015-01-29 14:44:34 +0100957 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100958 if (event->ctx != ctx) {
959 mutex_unlock(&ctx->mutex);
960 put_ctx(ctx);
961 goto again;
962 }
963
964 return ctx;
965}
966
Peter Zijlstraa83fe282015-01-29 14:44:34 +0100967static inline struct perf_event_context *
968perf_event_ctx_lock(struct perf_event *event)
969{
970 return perf_event_ctx_lock_nested(event, 0);
971}
972
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100973static void perf_event_ctx_unlock(struct perf_event *event,
974 struct perf_event_context *ctx)
975{
976 mutex_unlock(&ctx->mutex);
977 put_ctx(ctx);
978}
979
980/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200981 * This must be done under the ctx->lock, such as to serialize against
982 * context_equiv(), therefore we cannot call put_ctx() since that might end up
983 * calling scheduler related locks and ctx->lock nests inside those.
984 */
985static __must_check struct perf_event_context *
986unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200987{
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200988 struct perf_event_context *parent_ctx = ctx->parent_ctx;
989
990 lockdep_assert_held(&ctx->lock);
991
992 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200993 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +0200994 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200995
996 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200997}
998
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200999static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1000{
1001 /*
1002 * only top level events have the pid namespace they were created in
1003 */
1004 if (event->parent)
1005 event = event->parent;
1006
1007 return task_tgid_nr_ns(p, event->ns);
1008}
1009
1010static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1011{
1012 /*
1013 * only top level events have the pid namespace they were created in
1014 */
1015 if (event->parent)
1016 event = event->parent;
1017
1018 return task_pid_nr_ns(p, event->ns);
1019}
1020
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001021/*
1022 * If we inherit events we want to return the parent event id
1023 * to userspace.
1024 */
1025static u64 primary_event_id(struct perf_event *event)
1026{
1027 u64 id = event->id;
1028
1029 if (event->parent)
1030 id = event->parent->id;
1031
1032 return id;
1033}
1034
1035/*
1036 * Get the perf_event_context for a task and lock it.
1037 * This has to cope with with the fact that until it is locked,
1038 * the context could get moved to another task.
1039 */
1040static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001041perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001042{
1043 struct perf_event_context *ctx;
1044
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001045retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001046 /*
1047 * One of the few rules of preemptible RCU is that one cannot do
1048 * rcu_read_unlock() while holding a scheduler (or nested) lock when
1049 * part of the read side critical section was preemptible -- see
1050 * rcu_read_unlock_special().
1051 *
1052 * Since ctx->lock nests under rq->lock we must ensure the entire read
1053 * side critical section is non-preemptible.
1054 */
1055 preempt_disable();
1056 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001057 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001058 if (ctx) {
1059 /*
1060 * If this context is a clone of another, it might
1061 * get swapped for another underneath us by
1062 * perf_event_task_sched_out, though the
1063 * rcu_read_lock() protects us from any context
1064 * getting freed. Lock the context and check if it
1065 * got swapped before we could get the lock, and retry
1066 * if so. If we locked the right context, then it
1067 * can't get swapped on us any more.
1068 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001069 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001070 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001071 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001072 rcu_read_unlock();
1073 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001074 goto retry;
1075 }
1076
1077 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001078 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001079 ctx = NULL;
1080 }
1081 }
1082 rcu_read_unlock();
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001083 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001084 return ctx;
1085}
1086
1087/*
1088 * Get the context for a task and increment its pin_count so it
1089 * can't get swapped to another task. This also increments its
1090 * reference count so that the context can't get freed.
1091 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001092static struct perf_event_context *
1093perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001094{
1095 struct perf_event_context *ctx;
1096 unsigned long flags;
1097
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001098 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001099 if (ctx) {
1100 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001101 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001102 }
1103 return ctx;
1104}
1105
1106static void perf_unpin_context(struct perf_event_context *ctx)
1107{
1108 unsigned long flags;
1109
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001110 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001111 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001112 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001113}
1114
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001115/*
1116 * Update the record of the current time in a context.
1117 */
1118static void update_context_time(struct perf_event_context *ctx)
1119{
1120 u64 now = perf_clock();
1121
1122 ctx->time += now - ctx->timestamp;
1123 ctx->timestamp = now;
1124}
1125
Stephane Eranian41587552011-01-03 18:20:01 +02001126static u64 perf_event_time(struct perf_event *event)
1127{
1128 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001129
1130 if (is_cgroup_event(event))
1131 return perf_cgroup_event_time(event);
1132
Stephane Eranian41587552011-01-03 18:20:01 +02001133 return ctx ? ctx->time : 0;
1134}
1135
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001136/*
1137 * Update the total_time_enabled and total_time_running fields for a event.
Eric B Munsonb7526f02011-06-23 16:34:37 -04001138 * The caller of this function needs to hold the ctx->lock.
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001139 */
1140static void update_event_times(struct perf_event *event)
1141{
1142 struct perf_event_context *ctx = event->ctx;
1143 u64 run_end;
1144
1145 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1146 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1147 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001148 /*
1149 * in cgroup mode, time_enabled represents
1150 * the time the event was enabled AND active
1151 * tasks were in the monitored cgroup. This is
1152 * independent of the activity of the context as
1153 * there may be a mix of cgroup and non-cgroup events.
1154 *
1155 * That is why we treat cgroup events differently
1156 * here.
1157 */
1158 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001159 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001160 else if (ctx->is_active)
1161 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001162 else
1163 run_end = event->tstamp_stopped;
1164
1165 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001166
1167 if (event->state == PERF_EVENT_STATE_INACTIVE)
1168 run_end = event->tstamp_stopped;
1169 else
Stephane Eranian41587552011-01-03 18:20:01 +02001170 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001171
1172 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001173
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001174}
1175
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001176/*
1177 * Update total_time_enabled and total_time_running for all events in a group.
1178 */
1179static void update_group_times(struct perf_event *leader)
1180{
1181 struct perf_event *event;
1182
1183 update_event_times(leader);
1184 list_for_each_entry(event, &leader->sibling_list, group_entry)
1185 update_event_times(event);
1186}
1187
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001188static struct list_head *
1189ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1190{
1191 if (event->attr.pinned)
1192 return &ctx->pinned_groups;
1193 else
1194 return &ctx->flexible_groups;
1195}
1196
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001197/*
1198 * Add a event from the lists for its context.
1199 * Must be called with ctx->mutex and ctx->lock held.
1200 */
1201static void
1202list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1203{
Peter Zijlstra8a495422010-05-27 15:47:49 +02001204 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1205 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001206
1207 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001208 * If we're a stand alone event or group leader, we go to the context
1209 * list, group events are kept attached to the group so that
1210 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001211 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001212 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001213 struct list_head *list;
1214
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001215 if (is_software_event(event))
1216 event->group_flags |= PERF_GROUP_SOFTWARE;
1217
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001218 list = ctx_group_list(event, ctx);
1219 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001220 }
1221
Peter Zijlstra08309372011-03-03 11:31:20 +01001222 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02001223 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001224
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001225 list_add_rcu(&event->event_entry, &ctx->event_list);
1226 ctx->nr_events++;
1227 if (event->attr.inherit_stat)
1228 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001229
1230 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001231}
1232
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001233/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001234 * Initialize event state based on the perf_event_attr::disabled.
1235 */
1236static inline void perf_event__state_init(struct perf_event *event)
1237{
1238 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1239 PERF_EVENT_STATE_INACTIVE;
1240}
1241
1242/*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001243 * Called at perf_event creation and when events are attached/detached from a
1244 * group.
1245 */
1246static void perf_event__read_size(struct perf_event *event)
1247{
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) {
1262 nr += event->group_leader->nr_siblings;
1263 size += sizeof(u64);
1264 }
1265
1266 size += entry * nr;
1267 event->read_size = size;
1268}
1269
1270static void perf_event__header_size(struct perf_event *event)
1271{
1272 struct perf_sample_data *data;
1273 u64 sample_type = event->attr.sample_type;
1274 u16 size = 0;
1275
1276 perf_event__read_size(event);
1277
1278 if (sample_type & PERF_SAMPLE_IP)
1279 size += sizeof(data->ip);
1280
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001281 if (sample_type & PERF_SAMPLE_ADDR)
1282 size += sizeof(data->addr);
1283
1284 if (sample_type & PERF_SAMPLE_PERIOD)
1285 size += sizeof(data->period);
1286
Andi Kleenc3feedf2013-01-24 16:10:28 +01001287 if (sample_type & PERF_SAMPLE_WEIGHT)
1288 size += sizeof(data->weight);
1289
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001290 if (sample_type & PERF_SAMPLE_READ)
1291 size += event->read_size;
1292
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001293 if (sample_type & PERF_SAMPLE_DATA_SRC)
1294 size += sizeof(data->data_src.val);
1295
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001296 if (sample_type & PERF_SAMPLE_TRANSACTION)
1297 size += sizeof(data->txn);
1298
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001299 event->header_size = size;
1300}
1301
1302static void perf_event__id_header_size(struct perf_event *event)
1303{
1304 struct perf_sample_data *data;
1305 u64 sample_type = event->attr.sample_type;
1306 u16 size = 0;
1307
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001308 if (sample_type & PERF_SAMPLE_TID)
1309 size += sizeof(data->tid_entry);
1310
1311 if (sample_type & PERF_SAMPLE_TIME)
1312 size += sizeof(data->time);
1313
Adrian Hunterff3d5272013-08-27 11:23:07 +03001314 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1315 size += sizeof(data->id);
1316
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001317 if (sample_type & PERF_SAMPLE_ID)
1318 size += sizeof(data->id);
1319
1320 if (sample_type & PERF_SAMPLE_STREAM_ID)
1321 size += sizeof(data->stream_id);
1322
1323 if (sample_type & PERF_SAMPLE_CPU)
1324 size += sizeof(data->cpu_entry);
1325
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001326 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001327}
1328
Peter Zijlstra8a495422010-05-27 15:47:49 +02001329static void perf_group_attach(struct perf_event *event)
1330{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001331 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001332
Peter Zijlstra74c33372010-10-15 11:40:29 +02001333 /*
1334 * We can have double attach due to group movement in perf_event_open.
1335 */
1336 if (event->attach_state & PERF_ATTACH_GROUP)
1337 return;
1338
Peter Zijlstra8a495422010-05-27 15:47:49 +02001339 event->attach_state |= PERF_ATTACH_GROUP;
1340
1341 if (group_leader == event)
1342 return;
1343
Peter Zijlstra652884f2015-01-23 11:20:10 +01001344 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1345
Peter Zijlstra8a495422010-05-27 15:47:49 +02001346 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1347 !is_software_event(event))
1348 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1349
1350 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1351 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001352
1353 perf_event__header_size(group_leader);
1354
1355 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1356 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001357}
1358
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001359/*
1360 * Remove a event from the lists for its context.
1361 * Must be called with ctx->mutex and ctx->lock held.
1362 */
1363static void
1364list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1365{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001366 struct perf_cpu_context *cpuctx;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001367
1368 WARN_ON_ONCE(event->ctx != ctx);
1369 lockdep_assert_held(&ctx->lock);
1370
Peter Zijlstra8a495422010-05-27 15:47:49 +02001371 /*
1372 * We can have double detach due to exit/hot-unplug + close.
1373 */
1374 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001375 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001376
1377 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1378
Stephane Eranian68cacd22011-03-23 16:03:06 +01001379 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001380 ctx->nr_cgroups--;
Stephane Eranian68cacd22011-03-23 16:03:06 +01001381 cpuctx = __get_cpu_context(ctx);
1382 /*
1383 * if there are no more cgroup events
1384 * then cler cgrp to avoid stale pointer
1385 * in update_cgrp_time_from_cpuctx()
1386 */
1387 if (!ctx->nr_cgroups)
1388 cpuctx->cgrp = NULL;
1389 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001390
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001391 ctx->nr_events--;
1392 if (event->attr.inherit_stat)
1393 ctx->nr_stat--;
1394
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001395 list_del_rcu(&event->event_entry);
1396
Peter Zijlstra8a495422010-05-27 15:47:49 +02001397 if (event->group_leader == event)
1398 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001399
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001400 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001401
1402 /*
1403 * If event was in error state, then keep it
1404 * that way, otherwise bogus counts will be
1405 * returned on read(). The only way to get out
1406 * of error state is by explicit re-enabling
1407 * of the event
1408 */
1409 if (event->state > PERF_EVENT_STATE_OFF)
1410 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001411
1412 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001413}
1414
Peter Zijlstra8a495422010-05-27 15:47:49 +02001415static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001416{
1417 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001418 struct list_head *list = NULL;
1419
1420 /*
1421 * We can have double detach due to exit/hot-unplug + close.
1422 */
1423 if (!(event->attach_state & PERF_ATTACH_GROUP))
1424 return;
1425
1426 event->attach_state &= ~PERF_ATTACH_GROUP;
1427
1428 /*
1429 * If this is a sibling, remove it from its group.
1430 */
1431 if (event->group_leader != event) {
1432 list_del_init(&event->group_entry);
1433 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001434 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001435 }
1436
1437 if (!list_empty(&event->group_entry))
1438 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001439
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001440 /*
1441 * If this was a group event with sibling events then
1442 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001443 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001444 */
1445 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001446 if (list)
1447 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001448 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001449
1450 /* Inherit group flags from the previous leader */
1451 sibling->group_flags = event->group_flags;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001452
1453 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001454 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001455
1456out:
1457 perf_event__header_size(event->group_leader);
1458
1459 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1460 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001461}
1462
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001463/*
1464 * User event without the task.
1465 */
1466static bool is_orphaned_event(struct perf_event *event)
1467{
1468 return event && !is_kernel_event(event) && !event->owner;
1469}
1470
1471/*
1472 * Event has a parent but parent's task finished and it's
1473 * alive only because of children holding refference.
1474 */
1475static bool is_orphaned_child(struct perf_event *event)
1476{
1477 return is_orphaned_event(event->parent);
1478}
1479
1480static void orphans_remove_work(struct work_struct *work);
1481
1482static void schedule_orphans_remove(struct perf_event_context *ctx)
1483{
1484 if (!ctx->task || ctx->orphans_remove_sched || !perf_wq)
1485 return;
1486
1487 if (queue_delayed_work(perf_wq, &ctx->orphans_remove, 1)) {
1488 get_ctx(ctx);
1489 ctx->orphans_remove_sched = true;
1490 }
1491}
1492
1493static int __init perf_workqueue_init(void)
1494{
1495 perf_wq = create_singlethread_workqueue("perf");
1496 WARN(!perf_wq, "failed to create perf workqueue\n");
1497 return perf_wq ? 0 : -1;
1498}
1499
1500core_initcall(perf_workqueue_init);
1501
Stephane Eranianfa66f072010-08-26 16:40:01 +02001502static inline int
1503event_filter_match(struct perf_event *event)
1504{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001505 return (event->cpu == -1 || event->cpu == smp_processor_id())
1506 && perf_cgroup_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001507}
1508
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001509static void
1510event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001511 struct perf_cpu_context *cpuctx,
1512 struct perf_event_context *ctx)
1513{
Stephane Eranian41587552011-01-03 18:20:01 +02001514 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001515 u64 delta;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001516
1517 WARN_ON_ONCE(event->ctx != ctx);
1518 lockdep_assert_held(&ctx->lock);
1519
Stephane Eranianfa66f072010-08-26 16:40:01 +02001520 /*
1521 * An event which could not be activated because of
1522 * filter mismatch still needs to have its timings
1523 * maintained, otherwise bogus information is return
1524 * via read() for time_enabled, time_running:
1525 */
1526 if (event->state == PERF_EVENT_STATE_INACTIVE
1527 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001528 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001529 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001530 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001531 }
1532
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001533 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001534 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001535
Alexander Shishkin44377272013-12-16 14:17:36 +02001536 perf_pmu_disable(event->pmu);
1537
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001538 event->state = PERF_EVENT_STATE_INACTIVE;
1539 if (event->pending_disable) {
1540 event->pending_disable = 0;
1541 event->state = PERF_EVENT_STATE_OFF;
1542 }
Stephane Eranian41587552011-01-03 18:20:01 +02001543 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001544 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001545 event->oncpu = -1;
1546
1547 if (!is_software_event(event))
1548 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001549 if (!--ctx->nr_active)
1550 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001551 if (event->attr.freq && event->attr.sample_freq)
1552 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001553 if (event->attr.exclusive || !cpuctx->active_oncpu)
1554 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001555
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001556 if (is_orphaned_child(event))
1557 schedule_orphans_remove(ctx);
1558
Alexander Shishkin44377272013-12-16 14:17:36 +02001559 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001560}
1561
1562static void
1563group_sched_out(struct perf_event *group_event,
1564 struct perf_cpu_context *cpuctx,
1565 struct perf_event_context *ctx)
1566{
1567 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001568 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001569
1570 event_sched_out(group_event, cpuctx, ctx);
1571
1572 /*
1573 * Schedule out siblings (if any):
1574 */
1575 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1576 event_sched_out(event, cpuctx, ctx);
1577
Stephane Eranianfa66f072010-08-26 16:40:01 +02001578 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001579 cpuctx->exclusive = 0;
1580}
1581
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001582struct remove_event {
1583 struct perf_event *event;
1584 bool detach_group;
1585};
1586
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001587/*
1588 * Cross CPU call to remove a performance event
1589 *
1590 * We disable the event on the hardware level first. After that we
1591 * remove it from the context list.
1592 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001593static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001594{
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001595 struct remove_event *re = info;
1596 struct perf_event *event = re->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001597 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001598 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001599
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001600 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001601 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001602 if (re->detach_group)
1603 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001604 list_del_event(event, ctx);
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001605 if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1606 ctx->is_active = 0;
1607 cpuctx->task_ctx = NULL;
1608 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001609 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001610
1611 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001612}
1613
1614
1615/*
1616 * Remove the event from a task's (or a CPU's) list of events.
1617 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001618 * CPU events are removed with a smp call. For task events we only
1619 * call when the task is on a CPU.
1620 *
1621 * If event->ctx is a cloned context, callers must make sure that
1622 * every task struct that event->ctx->task could possibly point to
1623 * remains valid. This is OK when called from perf_release since
1624 * that only calls us on the top-level context, which can't be a clone.
1625 * When called from perf_event_exit_task, it's OK because the
1626 * context has been detached from its task.
1627 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001628static void perf_remove_from_context(struct perf_event *event, bool detach_group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001629{
1630 struct perf_event_context *ctx = event->ctx;
1631 struct task_struct *task = ctx->task;
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001632 struct remove_event re = {
1633 .event = event,
1634 .detach_group = detach_group,
1635 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001636
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001637 lockdep_assert_held(&ctx->mutex);
1638
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001639 if (!task) {
1640 /*
Mark Rutland226424e2014-11-05 16:11:44 +00001641 * Per cpu events are removed via an smp call. The removal can
1642 * fail if the CPU is currently offline, but in that case we
1643 * already called __perf_remove_from_context from
1644 * perf_event_exit_cpu.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001645 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001646 cpu_function_call(event->cpu, __perf_remove_from_context, &re);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001647 return;
1648 }
1649
1650retry:
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001651 if (!task_function_call(task, __perf_remove_from_context, &re))
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001652 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001653
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001654 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001655 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001656 * If we failed to find a running task, but find the context active now
1657 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001658 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001659 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001660 raw_spin_unlock_irq(&ctx->lock);
Cong Wang3577af72014-09-02 15:27:20 -07001661 /*
1662 * Reload the task pointer, it might have been changed by
1663 * a concurrent perf_event_context_sched_out().
1664 */
1665 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001666 goto retry;
1667 }
1668
1669 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001670 * Since the task isn't running, its safe to remove the event, us
1671 * holding the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001672 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001673 if (detach_group)
1674 perf_group_detach(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001675 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001676 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001677}
1678
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001679/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001680 * Cross CPU call to disable a performance event
1681 */
K.Prasad500ad2d2012-08-02 13:46:35 +05301682int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001683{
1684 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001685 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001686 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001687
1688 /*
1689 * If this is a per-task event, need to check whether this
1690 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001691 *
1692 * Can trigger due to concurrent perf_event_context_sched_out()
1693 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001694 */
1695 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001696 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001697
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001698 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001699
1700 /*
1701 * If the event is on, turn it off.
1702 * If it is in error state, leave it in error state.
1703 */
1704 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1705 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001706 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001707 update_group_times(event);
1708 if (event == event->group_leader)
1709 group_sched_out(event, cpuctx, ctx);
1710 else
1711 event_sched_out(event, cpuctx, ctx);
1712 event->state = PERF_EVENT_STATE_OFF;
1713 }
1714
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001715 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001716
1717 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001718}
1719
1720/*
1721 * Disable a event.
1722 *
1723 * If event->ctx is a cloned context, callers must make sure that
1724 * every task struct that event->ctx->task could possibly point to
1725 * remains valid. This condition is satisifed when called through
1726 * perf_event_for_each_child or perf_event_for_each because they
1727 * hold the top-level event's child_mutex, so any descendant that
1728 * goes to exit will block in sync_child_event.
1729 * When called from perf_pending_event it's OK because event->ctx
1730 * is the current context on this CPU and preemption is disabled,
1731 * hence we can't get into perf_event_task_sched_out for this context.
1732 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001733static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001734{
1735 struct perf_event_context *ctx = event->ctx;
1736 struct task_struct *task = ctx->task;
1737
1738 if (!task) {
1739 /*
1740 * Disable the event on the cpu that it's on
1741 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001742 cpu_function_call(event->cpu, __perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001743 return;
1744 }
1745
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001746retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001747 if (!task_function_call(task, __perf_event_disable, event))
1748 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001749
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001750 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001751 /*
1752 * If the event is still active, we need to retry the cross-call.
1753 */
1754 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001755 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001756 /*
1757 * Reload the task pointer, it might have been changed by
1758 * a concurrent perf_event_context_sched_out().
1759 */
1760 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001761 goto retry;
1762 }
1763
1764 /*
1765 * Since we have the lock this context can't be scheduled
1766 * in, so we can change the state safely.
1767 */
1768 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1769 update_group_times(event);
1770 event->state = PERF_EVENT_STATE_OFF;
1771 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001772 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001773}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001774
1775/*
1776 * Strictly speaking kernel users cannot create groups and therefore this
1777 * interface does not need the perf_event_ctx_lock() magic.
1778 */
1779void perf_event_disable(struct perf_event *event)
1780{
1781 struct perf_event_context *ctx;
1782
1783 ctx = perf_event_ctx_lock(event);
1784 _perf_event_disable(event);
1785 perf_event_ctx_unlock(event, ctx);
1786}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001787EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001788
Stephane Eraniane5d13672011-02-14 11:20:01 +02001789static void perf_set_shadow_time(struct perf_event *event,
1790 struct perf_event_context *ctx,
1791 u64 tstamp)
1792{
1793 /*
1794 * use the correct time source for the time snapshot
1795 *
1796 * We could get by without this by leveraging the
1797 * fact that to get to this function, the caller
1798 * has most likely already called update_context_time()
1799 * and update_cgrp_time_xx() and thus both timestamp
1800 * are identical (or very close). Given that tstamp is,
1801 * already adjusted for cgroup, we could say that:
1802 * tstamp - ctx->timestamp
1803 * is equivalent to
1804 * tstamp - cgrp->timestamp.
1805 *
1806 * Then, in perf_output_read(), the calculation would
1807 * work with no changes because:
1808 * - event is guaranteed scheduled in
1809 * - no scheduled out in between
1810 * - thus the timestamp would be the same
1811 *
1812 * But this is a bit hairy.
1813 *
1814 * So instead, we have an explicit cgroup call to remain
1815 * within the time time source all along. We believe it
1816 * is cleaner and simpler to understand.
1817 */
1818 if (is_cgroup_event(event))
1819 perf_cgroup_set_shadow_time(event, tstamp);
1820 else
1821 event->shadow_ctx_time = tstamp - ctx->timestamp;
1822}
1823
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001824#define MAX_INTERRUPTS (~0ULL)
1825
1826static void perf_log_throttle(struct perf_event *event, int enable);
1827
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001828static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001829event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001830 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001831 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001832{
Stephane Eranian41587552011-01-03 18:20:01 +02001833 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02001834 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02001835
Peter Zijlstra63342412014-05-05 11:49:16 +02001836 lockdep_assert_held(&ctx->lock);
1837
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001838 if (event->state <= PERF_EVENT_STATE_OFF)
1839 return 0;
1840
1841 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001842 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001843
1844 /*
1845 * Unthrottle events, since we scheduled we might have missed several
1846 * ticks already, also for a heavily scheduling task there is little
1847 * guarantee it'll get a tick in a timely manner.
1848 */
1849 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1850 perf_log_throttle(event, 1);
1851 event->hw.interrupts = 0;
1852 }
1853
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001854 /*
1855 * The new state must be visible before we turn it on in the hardware:
1856 */
1857 smp_wmb();
1858
Alexander Shishkin44377272013-12-16 14:17:36 +02001859 perf_pmu_disable(event->pmu);
1860
Shaohua Li72f669c2015-02-05 15:55:31 -08001861 event->tstamp_running += tstamp - event->tstamp_stopped;
1862
1863 perf_set_shadow_time(event, ctx, tstamp);
1864
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001865 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001866 event->state = PERF_EVENT_STATE_INACTIVE;
1867 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02001868 ret = -EAGAIN;
1869 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001870 }
1871
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001872 if (!is_software_event(event))
1873 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001874 if (!ctx->nr_active++)
1875 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001876 if (event->attr.freq && event->attr.sample_freq)
1877 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001878
1879 if (event->attr.exclusive)
1880 cpuctx->exclusive = 1;
1881
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001882 if (is_orphaned_child(event))
1883 schedule_orphans_remove(ctx);
1884
Alexander Shishkin44377272013-12-16 14:17:36 +02001885out:
1886 perf_pmu_enable(event->pmu);
1887
1888 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001889}
1890
1891static int
1892group_sched_in(struct perf_event *group_event,
1893 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001894 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001895{
Lin Ming6bde9b62010-04-23 13:56:00 +08001896 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01001897 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001898 u64 now = ctx->time;
1899 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001900
1901 if (group_event->state == PERF_EVENT_STATE_OFF)
1902 return 0;
1903
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001904 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +08001905
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001906 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001907 pmu->cancel_txn(pmu);
Stephane Eranian9e630202013-04-03 14:21:33 +02001908 perf_cpu_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001909 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001910 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001911
1912 /*
1913 * Schedule in siblings as one group (if any):
1914 */
1915 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001916 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001917 partial_group = event;
1918 goto group_error;
1919 }
1920 }
1921
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001922 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001923 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001924
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001925group_error:
1926 /*
1927 * Groups can be scheduled in as one unit only, so undo any
1928 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001929 * The events up to the failed event are scheduled out normally,
1930 * tstamp_stopped will be updated.
1931 *
1932 * The failed events and the remaining siblings need to have
1933 * their timings updated as if they had gone thru event_sched_in()
1934 * and event_sched_out(). This is required to get consistent timings
1935 * across the group. This also takes care of the case where the group
1936 * could never be scheduled by ensuring tstamp_stopped is set to mark
1937 * the time the event was actually stopped, such that time delta
1938 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001939 */
1940 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1941 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001942 simulate = true;
1943
1944 if (simulate) {
1945 event->tstamp_running += now - event->tstamp_stopped;
1946 event->tstamp_stopped = now;
1947 } else {
1948 event_sched_out(event, cpuctx, ctx);
1949 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001950 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001951 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001952
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001953 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02001954
Stephane Eranian9e630202013-04-03 14:21:33 +02001955 perf_cpu_hrtimer_restart(cpuctx);
1956
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001957 return -EAGAIN;
1958}
1959
1960/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001961 * Work out whether we can put this event group on the CPU now.
1962 */
1963static int group_can_go_on(struct perf_event *event,
1964 struct perf_cpu_context *cpuctx,
1965 int can_add_hw)
1966{
1967 /*
1968 * Groups consisting entirely of software events can always go on.
1969 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001970 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001971 return 1;
1972 /*
1973 * If an exclusive group is already on, no other hardware
1974 * events can go on.
1975 */
1976 if (cpuctx->exclusive)
1977 return 0;
1978 /*
1979 * If this group is exclusive and there are already
1980 * events on the CPU, it can't go on.
1981 */
1982 if (event->attr.exclusive && cpuctx->active_oncpu)
1983 return 0;
1984 /*
1985 * Otherwise, try to add it if all previous groups were able
1986 * to go on.
1987 */
1988 return can_add_hw;
1989}
1990
1991static void add_event_to_ctx(struct perf_event *event,
1992 struct perf_event_context *ctx)
1993{
Stephane Eranian41587552011-01-03 18:20:01 +02001994 u64 tstamp = perf_event_time(event);
1995
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001996 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001997 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02001998 event->tstamp_enabled = tstamp;
1999 event->tstamp_running = tstamp;
2000 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002001}
2002
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002003static void task_ctx_sched_out(struct perf_event_context *ctx);
2004static void
2005ctx_sched_in(struct perf_event_context *ctx,
2006 struct perf_cpu_context *cpuctx,
2007 enum event_type_t event_type,
2008 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002009
Peter Zijlstradce58552011-04-09 21:17:46 +02002010static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2011 struct perf_event_context *ctx,
2012 struct task_struct *task)
2013{
2014 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2015 if (ctx)
2016 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2017 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2018 if (ctx)
2019 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2020}
2021
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002022/*
2023 * Cross CPU call to install and enable a performance event
2024 *
2025 * Must be called with ctx->mutex held
2026 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002027static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002028{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002029 struct perf_event *event = info;
2030 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002031 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002032 struct perf_event_context *task_ctx = cpuctx->task_ctx;
2033 struct task_struct *task = current;
2034
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002035 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002036 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002037
2038 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002039 * If there was an active task_ctx schedule it out.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002040 */
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002041 if (task_ctx)
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002042 task_ctx_sched_out(task_ctx);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002043
2044 /*
2045 * If the context we're installing events in is not the
2046 * active task_ctx, flip them.
2047 */
2048 if (ctx->task && task_ctx != ctx) {
2049 if (task_ctx)
2050 raw_spin_unlock(&task_ctx->lock);
2051 raw_spin_lock(&ctx->lock);
2052 task_ctx = ctx;
2053 }
2054
2055 if (task_ctx) {
2056 cpuctx->task_ctx = task_ctx;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002057 task = task_ctx->task;
2058 }
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002059
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002060 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002061
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002062 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002063 /*
2064 * update cgrp time only if current cgrp
2065 * matches event->cgrp. Must be done before
2066 * calling add_event_to_ctx()
2067 */
2068 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002069
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002070 add_event_to_ctx(event, ctx);
2071
2072 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002073 * Schedule everything back in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002074 */
Peter Zijlstradce58552011-04-09 21:17:46 +02002075 perf_event_sched_in(cpuctx, task_ctx, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002076
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002077 perf_pmu_enable(cpuctx->ctx.pmu);
2078 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002079
2080 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002081}
2082
2083/*
2084 * Attach a performance event to a context
2085 *
2086 * First we add the event to the list with the hardware enable bit
2087 * in event->hw_config cleared.
2088 *
2089 * If the event is attached to a task which is on a CPU we use a smp
2090 * call to enable it in the task context. The task might have been
2091 * scheduled away, but we check this in the smp call again.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002092 */
2093static void
2094perf_install_in_context(struct perf_event_context *ctx,
2095 struct perf_event *event,
2096 int cpu)
2097{
2098 struct task_struct *task = ctx->task;
2099
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002100 lockdep_assert_held(&ctx->mutex);
2101
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002102 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002103 if (event->cpu != -1)
2104 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002105
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002106 if (!task) {
2107 /*
2108 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002109 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002110 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002111 cpu_function_call(cpu, __perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002112 return;
2113 }
2114
2115retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002116 if (!task_function_call(task, __perf_install_in_context, event))
2117 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002118
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002119 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002120 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002121 * If we failed to find a running task, but find the context active now
2122 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002123 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002124 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002125 raw_spin_unlock_irq(&ctx->lock);
Cong Wang3577af72014-09-02 15:27:20 -07002126 /*
2127 * Reload the task pointer, it might have been changed by
2128 * a concurrent perf_event_context_sched_out().
2129 */
2130 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002131 goto retry;
2132 }
2133
2134 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002135 * Since the task isn't running, its safe to add the event, us holding
2136 * the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002137 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002138 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002139 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002140}
2141
2142/*
2143 * Put a event into inactive state and update time fields.
2144 * Enabling the leader of a group effectively enables all
2145 * the group members that aren't explicitly disabled, so we
2146 * have to update their ->tstamp_enabled also.
2147 * Note: this works for group members as well as group leaders
2148 * since the non-leader members' sibling_lists will be empty.
2149 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002150static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002151{
2152 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02002153 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002154
2155 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02002156 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002157 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02002158 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
2159 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002160 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002161}
2162
2163/*
2164 * Cross CPU call to enable a performance event
2165 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002166static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002167{
2168 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002169 struct perf_event_context *ctx = event->ctx;
2170 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002171 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002172 int err;
2173
Jiri Olsa06f41792013-07-09 17:44:11 +02002174 /*
2175 * There's a time window between 'ctx->is_active' check
2176 * in perf_event_enable function and this place having:
2177 * - IRQs on
2178 * - ctx->lock unlocked
2179 *
2180 * where the task could be killed and 'ctx' deactivated
2181 * by perf_event_exit_task.
2182 */
2183 if (!ctx->is_active)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002184 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002185
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002186 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002187 update_context_time(ctx);
2188
2189 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2190 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002191
2192 /*
2193 * set current task's cgroup time reference point
2194 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002195 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002196
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002197 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002198
Stephane Eraniane5d13672011-02-14 11:20:01 +02002199 if (!event_filter_match(event)) {
2200 if (is_cgroup_event(event))
2201 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002202 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002203 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002204
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002205 /*
2206 * If the event is in a group and isn't the group leader,
2207 * then don't put it on unless the group is on.
2208 */
2209 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
2210 goto unlock;
2211
2212 if (!group_can_go_on(event, cpuctx, 1)) {
2213 err = -EEXIST;
2214 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002215 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002216 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002217 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01002218 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002219 }
2220
2221 if (err) {
2222 /*
2223 * If this event can't go on and it's part of a
2224 * group, then the whole group has to come off.
2225 */
Stephane Eranian9e630202013-04-03 14:21:33 +02002226 if (leader != event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002227 group_sched_out(leader, cpuctx, ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002228 perf_cpu_hrtimer_restart(cpuctx);
2229 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002230 if (leader->attr.pinned) {
2231 update_group_times(leader);
2232 leader->state = PERF_EVENT_STATE_ERROR;
2233 }
2234 }
2235
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002236unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002237 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002238
2239 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002240}
2241
2242/*
2243 * Enable a event.
2244 *
2245 * If event->ctx is a cloned context, callers must make sure that
2246 * every task struct that event->ctx->task could possibly point to
2247 * remains valid. This condition is satisfied when called through
2248 * perf_event_for_each_child or perf_event_for_each as described
2249 * for perf_event_disable.
2250 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002251static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002252{
2253 struct perf_event_context *ctx = event->ctx;
2254 struct task_struct *task = ctx->task;
2255
2256 if (!task) {
2257 /*
2258 * Enable the event on the cpu that it's on
2259 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002260 cpu_function_call(event->cpu, __perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002261 return;
2262 }
2263
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002264 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002265 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2266 goto out;
2267
2268 /*
2269 * If the event is in error state, clear that first.
2270 * That way, if we see the event in error state below, we
2271 * know that it has gone back into error state, as distinct
2272 * from the task having been scheduled away before the
2273 * cross-call arrived.
2274 */
2275 if (event->state == PERF_EVENT_STATE_ERROR)
2276 event->state = PERF_EVENT_STATE_OFF;
2277
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002278retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002279 if (!ctx->is_active) {
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002280 __perf_event_mark_enabled(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002281 goto out;
2282 }
2283
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002284 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002285
2286 if (!task_function_call(task, __perf_event_enable, event))
2287 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002288
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002289 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002290
2291 /*
2292 * If the context is active and the event is still off,
2293 * we need to retry the cross-call.
2294 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002295 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
2296 /*
2297 * task could have been flipped by a concurrent
2298 * perf_event_context_sched_out()
2299 */
2300 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002301 goto retry;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002302 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002303
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002304out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002305 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002306}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002307
2308/*
2309 * See perf_event_disable();
2310 */
2311void perf_event_enable(struct perf_event *event)
2312{
2313 struct perf_event_context *ctx;
2314
2315 ctx = perf_event_ctx_lock(event);
2316 _perf_event_enable(event);
2317 perf_event_ctx_unlock(event, ctx);
2318}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002319EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002320
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002321static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002322{
2323 /*
2324 * not supported on inherited events
2325 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002326 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002327 return -EINVAL;
2328
2329 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002330 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002331
2332 return 0;
2333}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002334
2335/*
2336 * See perf_event_disable()
2337 */
2338int perf_event_refresh(struct perf_event *event, int refresh)
2339{
2340 struct perf_event_context *ctx;
2341 int ret;
2342
2343 ctx = perf_event_ctx_lock(event);
2344 ret = _perf_event_refresh(event, refresh);
2345 perf_event_ctx_unlock(event, ctx);
2346
2347 return ret;
2348}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002349EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002350
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002351static void ctx_sched_out(struct perf_event_context *ctx,
2352 struct perf_cpu_context *cpuctx,
2353 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002354{
2355 struct perf_event *event;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002356 int is_active = ctx->is_active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002357
Peter Zijlstradb24d332011-04-09 21:17:45 +02002358 ctx->is_active &= ~event_type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002359 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002360 return;
2361
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002362 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002363 update_cgrp_time_from_cpuctx(cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002364 if (!ctx->nr_active)
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002365 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002366
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002367 perf_pmu_disable(ctx->pmu);
Peter Zijlstradb24d332011-04-09 21:17:45 +02002368 if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002369 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2370 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002371 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002372
Peter Zijlstradb24d332011-04-09 21:17:45 +02002373 if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002374 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002375 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002376 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002377 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002378}
2379
2380/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002381 * Test whether two contexts are equivalent, i.e. whether they have both been
2382 * cloned from the same version of the same context.
2383 *
2384 * Equivalence is measured using a generation number in the context that is
2385 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2386 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002387 */
2388static int context_equiv(struct perf_event_context *ctx1,
2389 struct perf_event_context *ctx2)
2390{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002391 lockdep_assert_held(&ctx1->lock);
2392 lockdep_assert_held(&ctx2->lock);
2393
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002394 /* Pinning disables the swap optimization */
2395 if (ctx1->pin_count || ctx2->pin_count)
2396 return 0;
2397
2398 /* If ctx1 is the parent of ctx2 */
2399 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2400 return 1;
2401
2402 /* If ctx2 is the parent of ctx1 */
2403 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2404 return 1;
2405
2406 /*
2407 * If ctx1 and ctx2 have the same parent; we flatten the parent
2408 * hierarchy, see perf_event_init_context().
2409 */
2410 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2411 ctx1->parent_gen == ctx2->parent_gen)
2412 return 1;
2413
2414 /* Unmatched */
2415 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002416}
2417
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002418static void __perf_event_sync_stat(struct perf_event *event,
2419 struct perf_event *next_event)
2420{
2421 u64 value;
2422
2423 if (!event->attr.inherit_stat)
2424 return;
2425
2426 /*
2427 * Update the event value, we cannot use perf_event_read()
2428 * because we're in the middle of a context switch and have IRQs
2429 * disabled, which upsets smp_call_function_single(), however
2430 * we know the event must be on the current CPU, therefore we
2431 * don't need to use it.
2432 */
2433 switch (event->state) {
2434 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002435 event->pmu->read(event);
2436 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002437
2438 case PERF_EVENT_STATE_INACTIVE:
2439 update_event_times(event);
2440 break;
2441
2442 default:
2443 break;
2444 }
2445
2446 /*
2447 * In order to keep per-task stats reliable we need to flip the event
2448 * values when we flip the contexts.
2449 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002450 value = local64_read(&next_event->count);
2451 value = local64_xchg(&event->count, value);
2452 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002453
2454 swap(event->total_time_enabled, next_event->total_time_enabled);
2455 swap(event->total_time_running, next_event->total_time_running);
2456
2457 /*
2458 * Since we swizzled the values, update the user visible data too.
2459 */
2460 perf_event_update_userpage(event);
2461 perf_event_update_userpage(next_event);
2462}
2463
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002464static void perf_event_sync_stat(struct perf_event_context *ctx,
2465 struct perf_event_context *next_ctx)
2466{
2467 struct perf_event *event, *next_event;
2468
2469 if (!ctx->nr_stat)
2470 return;
2471
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002472 update_context_time(ctx);
2473
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002474 event = list_first_entry(&ctx->event_list,
2475 struct perf_event, event_entry);
2476
2477 next_event = list_first_entry(&next_ctx->event_list,
2478 struct perf_event, event_entry);
2479
2480 while (&event->event_entry != &ctx->event_list &&
2481 &next_event->event_entry != &next_ctx->event_list) {
2482
2483 __perf_event_sync_stat(event, next_event);
2484
2485 event = list_next_entry(event, event_entry);
2486 next_event = list_next_entry(next_event, event_entry);
2487 }
2488}
2489
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002490static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2491 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002492{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002493 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002494 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002495 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002496 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002497 int do_switch = 1;
2498
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002499 if (likely(!ctx))
2500 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002501
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002502 cpuctx = __get_cpu_context(ctx);
2503 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002504 return;
2505
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002506 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002507 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002508 if (!next_ctx)
2509 goto unlock;
2510
2511 parent = rcu_dereference(ctx->parent_ctx);
2512 next_parent = rcu_dereference(next_ctx->parent_ctx);
2513
2514 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002515 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002516 goto unlock;
2517
2518 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002519 /*
2520 * Looks like the two contexts are clones, so we might be
2521 * able to optimize the context switch. We lock both
2522 * contexts and check that they are clones under the
2523 * lock (including re-checking that neither has been
2524 * uncloned in the meantime). It doesn't matter which
2525 * order we take the locks because no other cpu could
2526 * be trying to lock both of these tasks.
2527 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002528 raw_spin_lock(&ctx->lock);
2529 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002530 if (context_equiv(ctx, next_ctx)) {
2531 /*
2532 * XXX do we need a memory barrier of sorts
2533 * wrt to rcu_dereference() of perf_event_ctxp
2534 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002535 task->perf_event_ctxp[ctxn] = next_ctx;
2536 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002537 ctx->task = next;
2538 next_ctx->task = task;
Yan, Zheng5a158c32014-11-04 21:56:02 -05002539
2540 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2541
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002542 do_switch = 0;
2543
2544 perf_event_sync_stat(ctx, next_ctx);
2545 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002546 raw_spin_unlock(&next_ctx->lock);
2547 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002548 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002549unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002550 rcu_read_unlock();
2551
2552 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002553 raw_spin_lock(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002554 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002555 cpuctx->task_ctx = NULL;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002556 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002557 }
2558}
2559
Yan, Zhengba532502014-11-04 21:55:58 -05002560void perf_sched_cb_dec(struct pmu *pmu)
2561{
2562 this_cpu_dec(perf_sched_cb_usages);
2563}
2564
2565void perf_sched_cb_inc(struct pmu *pmu)
2566{
2567 this_cpu_inc(perf_sched_cb_usages);
2568}
2569
2570/*
2571 * This function provides the context switch callback to the lower code
2572 * layer. It is invoked ONLY when the context switch callback is enabled.
2573 */
2574static void perf_pmu_sched_task(struct task_struct *prev,
2575 struct task_struct *next,
2576 bool sched_in)
2577{
2578 struct perf_cpu_context *cpuctx;
2579 struct pmu *pmu;
2580 unsigned long flags;
2581
2582 if (prev == next)
2583 return;
2584
2585 local_irq_save(flags);
2586
2587 rcu_read_lock();
2588
2589 list_for_each_entry_rcu(pmu, &pmus, entry) {
2590 if (pmu->sched_task) {
2591 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2592
2593 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2594
2595 perf_pmu_disable(pmu);
2596
2597 pmu->sched_task(cpuctx->task_ctx, sched_in);
2598
2599 perf_pmu_enable(pmu);
2600
2601 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2602 }
2603 }
2604
2605 rcu_read_unlock();
2606
2607 local_irq_restore(flags);
2608}
2609
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002610#define for_each_task_context_nr(ctxn) \
2611 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2612
2613/*
2614 * Called from scheduler to remove the events of the current task,
2615 * with interrupts disabled.
2616 *
2617 * We stop each event and update the event value in event->count.
2618 *
2619 * This does not protect us against NMI, but disable()
2620 * sets the disabled bit in the control field of event _before_
2621 * accessing the event control register. If a NMI hits, then it will
2622 * not restart the event.
2623 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002624void __perf_event_task_sched_out(struct task_struct *task,
2625 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002626{
2627 int ctxn;
2628
Yan, Zhengba532502014-11-04 21:55:58 -05002629 if (__this_cpu_read(perf_sched_cb_usages))
2630 perf_pmu_sched_task(task, next, false);
2631
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002632 for_each_task_context_nr(ctxn)
2633 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002634
2635 /*
2636 * if cgroup events exist on this CPU, then we need
2637 * to check if we have to switch out PMU state.
2638 * cgroup event are system-wide mode only
2639 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002640 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002641 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002642}
2643
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002644static void task_ctx_sched_out(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002645{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002646 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002647
2648 if (!cpuctx->task_ctx)
2649 return;
2650
2651 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2652 return;
2653
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002654 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002655 cpuctx->task_ctx = NULL;
2656}
2657
2658/*
2659 * Called with IRQs disabled
2660 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002661static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2662 enum event_type_t event_type)
2663{
2664 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002665}
2666
2667static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002668ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002669 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002670{
2671 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002672
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002673 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2674 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002675 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002676 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002677 continue;
2678
Stephane Eraniane5d13672011-02-14 11:20:01 +02002679 /* may need to reset tstamp_enabled */
2680 if (is_cgroup_event(event))
2681 perf_cgroup_mark_enabled(event, ctx);
2682
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002683 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002684 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002685
2686 /*
2687 * If this pinned group hasn't been scheduled,
2688 * put it in error state.
2689 */
2690 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2691 update_group_times(event);
2692 event->state = PERF_EVENT_STATE_ERROR;
2693 }
2694 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002695}
2696
2697static void
2698ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002699 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002700{
2701 struct perf_event *event;
2702 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002703
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002704 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2705 /* Ignore events in OFF or ERROR state */
2706 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002707 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002708 /*
2709 * Listen to the 'cpu' scheduling filter constraint
2710 * of events:
2711 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002712 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002713 continue;
2714
Stephane Eraniane5d13672011-02-14 11:20:01 +02002715 /* may need to reset tstamp_enabled */
2716 if (is_cgroup_event(event))
2717 perf_cgroup_mark_enabled(event, ctx);
2718
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002719 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002720 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002721 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002722 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002723 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002724}
2725
2726static void
2727ctx_sched_in(struct perf_event_context *ctx,
2728 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002729 enum event_type_t event_type,
2730 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002731{
Stephane Eraniane5d13672011-02-14 11:20:01 +02002732 u64 now;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002733 int is_active = ctx->is_active;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002734
Peter Zijlstradb24d332011-04-09 21:17:45 +02002735 ctx->is_active |= event_type;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002736 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002737 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002738
Stephane Eraniane5d13672011-02-14 11:20:01 +02002739 now = perf_clock();
2740 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002741 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002742 /*
2743 * First go through the list and put on any pinned groups
2744 * in order to give them the best chance of going on.
2745 */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002746 if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002747 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002748
2749 /* Then walk through the lower prio flexible groups */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002750 if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002751 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002752}
2753
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002754static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002755 enum event_type_t event_type,
2756 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002757{
2758 struct perf_event_context *ctx = &cpuctx->ctx;
2759
Stephane Eraniane5d13672011-02-14 11:20:01 +02002760 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002761}
2762
Stephane Eraniane5d13672011-02-14 11:20:01 +02002763static void perf_event_context_sched_in(struct perf_event_context *ctx,
2764 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002765{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002766 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002767
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002768 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002769 if (cpuctx->task_ctx == ctx)
2770 return;
2771
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002772 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002773 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002774 /*
2775 * We want to keep the following priority order:
2776 * cpu pinned (that don't need to move), task pinned,
2777 * cpu flexible, task flexible.
2778 */
2779 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2780
Gleb Natapov1d5f0032011-10-23 19:10:33 +02002781 if (ctx->nr_events)
2782 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002783
Gleb Natapov86b47c22011-11-22 16:08:21 +02002784 perf_event_sched_in(cpuctx, cpuctx->task_ctx, task);
2785
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002786 perf_pmu_enable(ctx->pmu);
2787 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002788}
2789
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002790/*
2791 * Called from scheduler to add the events of the current task
2792 * with interrupts disabled.
2793 *
2794 * We restore the event value and then enable it.
2795 *
2796 * This does not protect us against NMI, but enable()
2797 * sets the enabled bit in the control field of event _before_
2798 * accessing the event control register. If a NMI hits, then it will
2799 * keep the event running.
2800 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002801void __perf_event_task_sched_in(struct task_struct *prev,
2802 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002803{
2804 struct perf_event_context *ctx;
2805 int ctxn;
2806
2807 for_each_task_context_nr(ctxn) {
2808 ctx = task->perf_event_ctxp[ctxn];
2809 if (likely(!ctx))
2810 continue;
2811
Stephane Eraniane5d13672011-02-14 11:20:01 +02002812 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002813 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02002814 /*
2815 * if cgroup events exist on this CPU, then we need
2816 * to check if we have to switch in PMU state.
2817 * cgroup event are system-wide mode only
2818 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002819 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002820 perf_cgroup_sched_in(prev, task);
Stephane Eraniand010b332012-02-09 23:21:00 +01002821
Yan, Zhengba532502014-11-04 21:55:58 -05002822 if (__this_cpu_read(perf_sched_cb_usages))
2823 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002824}
2825
Peter Zijlstraabd50712010-01-26 18:50:16 +01002826static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2827{
2828 u64 frequency = event->attr.sample_freq;
2829 u64 sec = NSEC_PER_SEC;
2830 u64 divisor, dividend;
2831
2832 int count_fls, nsec_fls, frequency_fls, sec_fls;
2833
2834 count_fls = fls64(count);
2835 nsec_fls = fls64(nsec);
2836 frequency_fls = fls64(frequency);
2837 sec_fls = 30;
2838
2839 /*
2840 * We got @count in @nsec, with a target of sample_freq HZ
2841 * the target period becomes:
2842 *
2843 * @count * 10^9
2844 * period = -------------------
2845 * @nsec * sample_freq
2846 *
2847 */
2848
2849 /*
2850 * Reduce accuracy by one bit such that @a and @b converge
2851 * to a similar magnitude.
2852 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002853#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002854do { \
2855 if (a##_fls > b##_fls) { \
2856 a >>= 1; \
2857 a##_fls--; \
2858 } else { \
2859 b >>= 1; \
2860 b##_fls--; \
2861 } \
2862} while (0)
2863
2864 /*
2865 * Reduce accuracy until either term fits in a u64, then proceed with
2866 * the other, so that finally we can do a u64/u64 division.
2867 */
2868 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2869 REDUCE_FLS(nsec, frequency);
2870 REDUCE_FLS(sec, count);
2871 }
2872
2873 if (count_fls + sec_fls > 64) {
2874 divisor = nsec * frequency;
2875
2876 while (count_fls + sec_fls > 64) {
2877 REDUCE_FLS(count, sec);
2878 divisor >>= 1;
2879 }
2880
2881 dividend = count * sec;
2882 } else {
2883 dividend = count * sec;
2884
2885 while (nsec_fls + frequency_fls > 64) {
2886 REDUCE_FLS(nsec, frequency);
2887 dividend >>= 1;
2888 }
2889
2890 divisor = nsec * frequency;
2891 }
2892
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02002893 if (!divisor)
2894 return dividend;
2895
Peter Zijlstraabd50712010-01-26 18:50:16 +01002896 return div64_u64(dividend, divisor);
2897}
2898
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002899static DEFINE_PER_CPU(int, perf_throttled_count);
2900static DEFINE_PER_CPU(u64, perf_throttled_seq);
2901
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002902static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002903{
2904 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02002905 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002906 s64 delta;
2907
Peter Zijlstraabd50712010-01-26 18:50:16 +01002908 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002909
2910 delta = (s64)(period - hwc->sample_period);
2911 delta = (delta + 7) / 8; /* low pass filter */
2912
2913 sample_period = hwc->sample_period + delta;
2914
2915 if (!sample_period)
2916 sample_period = 1;
2917
2918 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002919
Peter Zijlstrae7850592010-05-21 14:43:08 +02002920 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002921 if (disable)
2922 event->pmu->stop(event, PERF_EF_UPDATE);
2923
Peter Zijlstrae7850592010-05-21 14:43:08 +02002924 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002925
2926 if (disable)
2927 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002928 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002929}
2930
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002931/*
2932 * combine freq adjustment with unthrottling to avoid two passes over the
2933 * events. At the same time, make sure, having freq events does not change
2934 * the rate of unthrottling as that would introduce bias.
2935 */
2936static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
2937 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002938{
2939 struct perf_event *event;
2940 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002941 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002942 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002943
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002944 /*
2945 * only need to iterate over all events iff:
2946 * - context have events in frequency mode (needs freq adjust)
2947 * - there are events to unthrottle on this cpu
2948 */
2949 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002950 return;
2951
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002952 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002953 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002954
Paul Mackerras03541f82009-10-14 16:58:03 +11002955 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002956 if (event->state != PERF_EVENT_STATE_ACTIVE)
2957 continue;
2958
Stephane Eranian5632ab12011-01-03 18:20:01 +02002959 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002960 continue;
2961
Alexander Shishkin44377272013-12-16 14:17:36 +02002962 perf_pmu_disable(event->pmu);
2963
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002964 hwc = &event->hw;
2965
Jiri Olsaae23bff2013-08-24 16:45:54 +02002966 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002967 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002968 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002969 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002970 }
2971
2972 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02002973 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002974
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002975 /*
2976 * stop the event and update event->count
2977 */
2978 event->pmu->stop(event, PERF_EF_UPDATE);
2979
Peter Zijlstrae7850592010-05-21 14:43:08 +02002980 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002981 delta = now - hwc->freq_count_stamp;
2982 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002983
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002984 /*
2985 * restart the event
2986 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002987 * we have stopped the event so tell that
2988 * to perf_adjust_period() to avoid stopping it
2989 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002990 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01002991 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002992 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002993
2994 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02002995 next:
2996 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002997 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002998
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002999 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003000 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003001}
3002
3003/*
3004 * Round-robin a context's events:
3005 */
3006static void rotate_ctx(struct perf_event_context *ctx)
3007{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003008 /*
3009 * Rotate the first entry last of non-pinned groups. Rotation might be
3010 * disabled by the inheritance code.
3011 */
3012 if (!ctx->rotate_disable)
3013 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003014}
3015
Stephane Eranian9e630202013-04-03 14:21:33 +02003016static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003017{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003018 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003019 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003020
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003021 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003022 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3023 rotate = 1;
3024 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003025
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003026 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003027 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003028 if (ctx->nr_events != ctx->nr_active)
3029 rotate = 1;
3030 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003031
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003032 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003033 goto done;
3034
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003035 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003036 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003037
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003038 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3039 if (ctx)
3040 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003041
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003042 rotate_ctx(&cpuctx->ctx);
3043 if (ctx)
3044 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003045
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003046 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003047
3048 perf_pmu_enable(cpuctx->ctx.pmu);
3049 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003050done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003051
3052 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003053}
3054
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003055#ifdef CONFIG_NO_HZ_FULL
3056bool perf_event_can_stop_tick(void)
3057{
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003058 if (atomic_read(&nr_freq_events) ||
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02003059 __this_cpu_read(perf_throttled_count))
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003060 return false;
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02003061 else
3062 return true;
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003063}
3064#endif
3065
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003066void perf_event_task_tick(void)
3067{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003068 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3069 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003070 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003071
3072 WARN_ON(!irqs_disabled());
3073
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003074 __this_cpu_inc(perf_throttled_seq);
3075 throttled = __this_cpu_xchg(perf_throttled_count, 0);
3076
Mark Rutland2fde4f92015-01-07 15:01:54 +00003077 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003078 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003079}
3080
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003081static int event_enable_on_exec(struct perf_event *event,
3082 struct perf_event_context *ctx)
3083{
3084 if (!event->attr.enable_on_exec)
3085 return 0;
3086
3087 event->attr.enable_on_exec = 0;
3088 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3089 return 0;
3090
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01003091 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003092
3093 return 1;
3094}
3095
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003096/*
3097 * Enable all of a task's events that have been marked enable-on-exec.
3098 * This expects task == current.
3099 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003100static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003101{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003102 struct perf_event_context *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003103 struct perf_event *event;
3104 unsigned long flags;
3105 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003106 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003107
3108 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003109 if (!ctx || !ctx->nr_events)
3110 goto out;
3111
Stephane Eraniane566b762011-04-06 02:54:54 +02003112 /*
3113 * We must ctxsw out cgroup events to avoid conflict
3114 * when invoking perf_task_event_sched_in() later on
3115 * in this function. Otherwise we end up trying to
3116 * ctxswin cgroup events which are already scheduled
3117 * in.
3118 */
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003119 perf_cgroup_sched_out(current, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003120
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003121 raw_spin_lock(&ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02003122 task_ctx_sched_out(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003123
Peter Zijlstrab79387e2011-11-22 11:25:43 +01003124 list_for_each_entry(event, &ctx->event_list, event_entry) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003125 ret = event_enable_on_exec(event, ctx);
3126 if (ret)
3127 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003128 }
3129
3130 /*
3131 * Unclone this context if we enabled any event.
3132 */
3133 if (enabled)
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003134 clone_ctx = unclone_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003135
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003136 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003137
Stephane Eraniane566b762011-04-06 02:54:54 +02003138 /*
3139 * Also calls ctxswin for cgroup events, if any:
3140 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003141 perf_event_context_sched_in(ctx, ctx->task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003142out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003143 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003144
3145 if (clone_ctx)
3146 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003147}
3148
Peter Zijlstrae041e322014-05-21 17:32:19 +02003149void perf_event_exec(void)
3150{
3151 struct perf_event_context *ctx;
3152 int ctxn;
3153
3154 rcu_read_lock();
3155 for_each_task_context_nr(ctxn) {
3156 ctx = current->perf_event_ctxp[ctxn];
3157 if (!ctx)
3158 continue;
3159
3160 perf_event_enable_on_exec(ctx);
3161 }
3162 rcu_read_unlock();
3163}
3164
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003165/*
3166 * Cross CPU call to read the hardware event
3167 */
3168static void __perf_event_read(void *info)
3169{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003170 struct perf_event *event = info;
3171 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003172 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003173
3174 /*
3175 * If this is a task context, we need to check whether it is
3176 * the current task context of this cpu. If not it has been
3177 * scheduled out before the smp call arrived. In that case
3178 * event->count would have been updated to a recent sample
3179 * when the event was scheduled out.
3180 */
3181 if (ctx->task && cpuctx->task_ctx != ctx)
3182 return;
3183
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003184 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003185 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003186 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003187 update_cgrp_time_from_event(event);
3188 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003189 update_event_times(event);
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003190 if (event->state == PERF_EVENT_STATE_ACTIVE)
3191 event->pmu->read(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003192 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003193}
3194
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003195static inline u64 perf_event_count(struct perf_event *event)
3196{
Matt Flemingeacd3ec2015-01-23 18:45:41 +00003197 if (event->pmu->count)
3198 return event->pmu->count(event);
3199
3200 return __perf_event_count(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003201}
3202
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003203static u64 perf_event_read(struct perf_event *event)
3204{
3205 /*
3206 * If event is enabled and currently active on a CPU, update the
3207 * value in the event structure:
3208 */
3209 if (event->state == PERF_EVENT_STATE_ACTIVE) {
3210 smp_call_function_single(event->oncpu,
3211 __perf_event_read, event, 1);
3212 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003213 struct perf_event_context *ctx = event->ctx;
3214 unsigned long flags;
3215
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003216 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003217 /*
3218 * may read while context is not active
3219 * (e.g., thread is blocked), in that case
3220 * we cannot update context time
3221 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003222 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003223 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003224 update_cgrp_time_from_event(event);
3225 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003226 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003227 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003228 }
3229
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003230 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003231}
3232
3233/*
3234 * Initialize the perf_event context in a task_struct:
3235 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003236static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003237{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003238 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003239 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003240 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003241 INIT_LIST_HEAD(&ctx->pinned_groups);
3242 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003243 INIT_LIST_HEAD(&ctx->event_list);
3244 atomic_set(&ctx->refcount, 1);
Jiri Olsafadfe7b2014-08-01 14:33:02 +02003245 INIT_DELAYED_WORK(&ctx->orphans_remove, orphans_remove_work);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003246}
3247
Peter Zijlstraeb184472010-09-07 15:55:13 +02003248static struct perf_event_context *
3249alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003250{
3251 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003252
3253 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3254 if (!ctx)
3255 return NULL;
3256
3257 __perf_event_init_context(ctx);
3258 if (task) {
3259 ctx->task = task;
3260 get_task_struct(task);
3261 }
3262 ctx->pmu = pmu;
3263
3264 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003265}
3266
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003267static struct task_struct *
3268find_lively_task_by_vpid(pid_t vpid)
3269{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003270 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003271 int err;
3272
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003273 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003274 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003275 task = current;
3276 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003277 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003278 if (task)
3279 get_task_struct(task);
3280 rcu_read_unlock();
3281
3282 if (!task)
3283 return ERR_PTR(-ESRCH);
3284
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003285 /* Reuse ptrace permission checks for now. */
3286 err = -EACCES;
3287 if (!ptrace_may_access(task, PTRACE_MODE_READ))
3288 goto errout;
3289
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003290 return task;
3291errout:
3292 put_task_struct(task);
3293 return ERR_PTR(err);
3294
3295}
3296
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003297/*
3298 * Returns a matching context with refcount and pincount.
3299 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003300static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003301find_get_context(struct pmu *pmu, struct task_struct *task,
3302 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003303{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003304 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003305 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003306 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003307 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003308 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003309 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003310
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003311 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003312 /* Must be root to operate on a CPU event: */
3313 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3314 return ERR_PTR(-EACCES);
3315
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003316 /*
3317 * We could be clever and allow to attach a event to an
3318 * offline CPU and activate it when the CPU comes up, but
3319 * that's for later.
3320 */
3321 if (!cpu_online(cpu))
3322 return ERR_PTR(-ENODEV);
3323
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003324 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003325 ctx = &cpuctx->ctx;
3326 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003327 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003328
3329 return ctx;
3330 }
3331
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003332 err = -EINVAL;
3333 ctxn = pmu->task_ctx_nr;
3334 if (ctxn < 0)
3335 goto errout;
3336
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003337 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3338 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3339 if (!task_ctx_data) {
3340 err = -ENOMEM;
3341 goto errout;
3342 }
3343 }
3344
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003345retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003346 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003347 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003348 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003349 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003350
3351 if (task_ctx_data && !ctx->task_ctx_data) {
3352 ctx->task_ctx_data = task_ctx_data;
3353 task_ctx_data = NULL;
3354 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003355 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003356
3357 if (clone_ctx)
3358 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003359 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003360 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003361 err = -ENOMEM;
3362 if (!ctx)
3363 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003364
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003365 if (task_ctx_data) {
3366 ctx->task_ctx_data = task_ctx_data;
3367 task_ctx_data = NULL;
3368 }
3369
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003370 err = 0;
3371 mutex_lock(&task->perf_event_mutex);
3372 /*
3373 * If it has already passed perf_event_exit_task().
3374 * we must see PF_EXITING, it takes this mutex too.
3375 */
3376 if (task->flags & PF_EXITING)
3377 err = -ESRCH;
3378 else if (task->perf_event_ctxp[ctxn])
3379 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003380 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003381 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003382 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003383 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003384 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003385 mutex_unlock(&task->perf_event_mutex);
3386
3387 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003388 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003389
3390 if (err == -EAGAIN)
3391 goto retry;
3392 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003393 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003394 }
3395
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003396 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003397 return ctx;
3398
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003399errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003400 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003401 return ERR_PTR(err);
3402}
3403
Li Zefan6fb29152009-10-15 11:21:42 +08003404static void perf_event_free_filter(struct perf_event *event);
3405
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003406static void free_event_rcu(struct rcu_head *head)
3407{
3408 struct perf_event *event;
3409
3410 event = container_of(head, struct perf_event, rcu_head);
3411 if (event->ns)
3412 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003413 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003414 kfree(event);
3415}
3416
Frederic Weisbecker76369132011-05-19 19:55:04 +02003417static void ring_buffer_put(struct ring_buffer *rb);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003418static void ring_buffer_attach(struct perf_event *event,
3419 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003420
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003421static void unaccount_event_cpu(struct perf_event *event, int cpu)
3422{
3423 if (event->parent)
3424 return;
3425
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003426 if (is_cgroup_event(event))
3427 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3428}
3429
3430static void unaccount_event(struct perf_event *event)
3431{
3432 if (event->parent)
3433 return;
3434
3435 if (event->attach_state & PERF_ATTACH_TASK)
3436 static_key_slow_dec_deferred(&perf_sched_events);
3437 if (event->attr.mmap || event->attr.mmap_data)
3438 atomic_dec(&nr_mmap_events);
3439 if (event->attr.comm)
3440 atomic_dec(&nr_comm_events);
3441 if (event->attr.task)
3442 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003443 if (event->attr.freq)
3444 atomic_dec(&nr_freq_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003445 if (is_cgroup_event(event))
3446 static_key_slow_dec_deferred(&perf_sched_events);
3447 if (has_branch_stack(event))
3448 static_key_slow_dec_deferred(&perf_sched_events);
3449
3450 unaccount_event_cpu(event, event->cpu);
3451}
3452
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003453static void __free_event(struct perf_event *event)
3454{
3455 if (!event->parent) {
3456 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
3457 put_callchain_buffers();
3458 }
3459
3460 if (event->destroy)
3461 event->destroy(event);
3462
3463 if (event->ctx)
3464 put_ctx(event->ctx);
3465
Yan, Zhengc464c762014-03-18 16:56:41 +08003466 if (event->pmu)
3467 module_put(event->pmu->module);
3468
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003469 call_rcu(&event->rcu_head, free_event_rcu);
3470}
Peter Zijlstra683ede42014-05-05 12:11:24 +02003471
3472static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003473{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003474 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003475
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003476 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003477
Frederic Weisbecker76369132011-05-19 19:55:04 +02003478 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003479 /*
3480 * Can happen when we close an event with re-directed output.
3481 *
3482 * Since we have a 0 refcount, perf_mmap_close() will skip
3483 * over us; possibly making our ring_buffer_put() the last.
3484 */
3485 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003486 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003487 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003488 }
3489
Stephane Eraniane5d13672011-02-14 11:20:01 +02003490 if (is_cgroup_event(event))
3491 perf_detach_cgroup(event);
3492
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003493 __free_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003494}
3495
Peter Zijlstra683ede42014-05-05 12:11:24 +02003496/*
3497 * Used to free events which have a known refcount of 1, such as in error paths
3498 * where the event isn't exposed yet and inherited events.
3499 */
3500static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003501{
Peter Zijlstra683ede42014-05-05 12:11:24 +02003502 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
3503 "unexpected event refcount: %ld; ptr=%p\n",
3504 atomic_long_read(&event->refcount), event)) {
3505 /* leak to avoid use-after-free */
3506 return;
3507 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003508
Peter Zijlstra683ede42014-05-05 12:11:24 +02003509 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003510}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003511
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003512/*
Jiri Olsaf8697762014-08-01 14:33:01 +02003513 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003514 */
Jiri Olsaf8697762014-08-01 14:33:01 +02003515static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003516{
Peter Zijlstra88821352010-11-09 19:01:43 +01003517 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003518
Peter Zijlstra88821352010-11-09 19:01:43 +01003519 rcu_read_lock();
3520 owner = ACCESS_ONCE(event->owner);
3521 /*
3522 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
3523 * !owner it means the list deletion is complete and we can indeed
3524 * free this event, otherwise we need to serialize on
3525 * owner->perf_event_mutex.
3526 */
3527 smp_read_barrier_depends();
3528 if (owner) {
3529 /*
3530 * Since delayed_put_task_struct() also drops the last
3531 * task reference we can safely take a new reference
3532 * while holding the rcu_read_lock().
3533 */
3534 get_task_struct(owner);
3535 }
3536 rcu_read_unlock();
3537
3538 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003539 /*
3540 * If we're here through perf_event_exit_task() we're already
3541 * holding ctx->mutex which would be an inversion wrt. the
3542 * normal lock order.
3543 *
3544 * However we can safely take this lock because its the child
3545 * ctx->mutex.
3546 */
3547 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
3548
Peter Zijlstra88821352010-11-09 19:01:43 +01003549 /*
3550 * We have to re-check the event->owner field, if it is cleared
3551 * we raced with perf_event_exit_task(), acquiring the mutex
3552 * ensured they're done, and we can proceed with freeing the
3553 * event.
3554 */
3555 if (event->owner)
3556 list_del_init(&event->owner_entry);
3557 mutex_unlock(&owner->perf_event_mutex);
3558 put_task_struct(owner);
3559 }
Jiri Olsaf8697762014-08-01 14:33:01 +02003560}
3561
3562/*
3563 * Called when the last reference to the file is gone.
3564 */
3565static void put_event(struct perf_event *event)
3566{
Peter Zijlstraa83fe282015-01-29 14:44:34 +01003567 struct perf_event_context *ctx;
Jiri Olsaf8697762014-08-01 14:33:01 +02003568
3569 if (!atomic_long_dec_and_test(&event->refcount))
3570 return;
3571
3572 if (!is_kernel_event(event))
3573 perf_remove_from_owner(event);
Peter Zijlstra88821352010-11-09 19:01:43 +01003574
Peter Zijlstra683ede42014-05-05 12:11:24 +02003575 /*
3576 * There are two ways this annotation is useful:
3577 *
3578 * 1) there is a lock recursion from perf_event_exit_task
3579 * see the comment there.
3580 *
3581 * 2) there is a lock-inversion with mmap_sem through
3582 * perf_event_read_group(), which takes faults while
3583 * holding ctx->mutex, however this is called after
3584 * the last filedesc died, so there is no possibility
3585 * to trigger the AB-BA case.
3586 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01003587 ctx = perf_event_ctx_lock_nested(event, SINGLE_DEPTH_NESTING);
3588 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstra683ede42014-05-05 12:11:24 +02003589 perf_remove_from_context(event, true);
3590 mutex_unlock(&ctx->mutex);
3591
3592 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01003593}
3594
Peter Zijlstra683ede42014-05-05 12:11:24 +02003595int perf_event_release_kernel(struct perf_event *event)
3596{
3597 put_event(event);
3598 return 0;
3599}
3600EXPORT_SYMBOL_GPL(perf_event_release_kernel);
3601
Al Viroa6fa9412012-08-20 14:59:25 +01003602static int perf_release(struct inode *inode, struct file *file)
3603{
3604 put_event(file->private_data);
3605 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003606}
3607
Jiri Olsafadfe7b2014-08-01 14:33:02 +02003608/*
3609 * Remove all orphanes events from the context.
3610 */
3611static void orphans_remove_work(struct work_struct *work)
3612{
3613 struct perf_event_context *ctx;
3614 struct perf_event *event, *tmp;
3615
3616 ctx = container_of(work, struct perf_event_context,
3617 orphans_remove.work);
3618
3619 mutex_lock(&ctx->mutex);
3620 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry) {
3621 struct perf_event *parent_event = event->parent;
3622
3623 if (!is_orphaned_child(event))
3624 continue;
3625
3626 perf_remove_from_context(event, true);
3627
3628 mutex_lock(&parent_event->child_mutex);
3629 list_del_init(&event->child_list);
3630 mutex_unlock(&parent_event->child_mutex);
3631
3632 free_event(event);
3633 put_event(parent_event);
3634 }
3635
3636 raw_spin_lock_irq(&ctx->lock);
3637 ctx->orphans_remove_sched = false;
3638 raw_spin_unlock_irq(&ctx->lock);
3639 mutex_unlock(&ctx->mutex);
3640
3641 put_ctx(ctx);
3642}
3643
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003644u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003645{
3646 struct perf_event *child;
3647 u64 total = 0;
3648
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003649 *enabled = 0;
3650 *running = 0;
3651
Peter Zijlstra6f105812009-11-20 22:19:56 +01003652 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003653 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003654 *enabled += event->total_time_enabled +
3655 atomic64_read(&event->child_total_time_enabled);
3656 *running += event->total_time_running +
3657 atomic64_read(&event->child_total_time_running);
3658
3659 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003660 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003661 *enabled += child->total_time_enabled;
3662 *running += child->total_time_running;
3663 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003664 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003665
3666 return total;
3667}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003668EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003669
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003670static int perf_event_read_group(struct perf_event *event,
3671 u64 read_format, char __user *buf)
3672{
3673 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003674 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003675 int n = 0, size = 0, ret;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003676 u64 count, enabled, running;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003677 u64 values[5];
Peter Zijlstraabf48682009-11-20 22:19:49 +01003678
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003679 lockdep_assert_held(&ctx->mutex);
3680
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003681 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003682
3683 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003684 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3685 values[n++] = enabled;
3686 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3687 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003688 values[n++] = count;
3689 if (read_format & PERF_FORMAT_ID)
3690 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003691
3692 size = n * sizeof(u64);
3693
3694 if (copy_to_user(buf, values, size))
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003695 return -EFAULT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003696
Peter Zijlstra6f105812009-11-20 22:19:56 +01003697 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003698
3699 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01003700 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003701
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003702 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003703 if (read_format & PERF_FORMAT_ID)
3704 values[n++] = primary_event_id(sub);
3705
3706 size = n * sizeof(u64);
3707
Stephane Eranian184d3da2009-11-23 21:40:49 -08003708 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003709 return -EFAULT;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003710 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01003711
3712 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003713 }
3714
Peter Zijlstraabf48682009-11-20 22:19:49 +01003715 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003716}
3717
3718static int perf_event_read_one(struct perf_event *event,
3719 u64 read_format, char __user *buf)
3720{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003721 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003722 u64 values[4];
3723 int n = 0;
3724
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003725 values[n++] = perf_event_read_value(event, &enabled, &running);
3726 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3727 values[n++] = enabled;
3728 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3729 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003730 if (read_format & PERF_FORMAT_ID)
3731 values[n++] = primary_event_id(event);
3732
3733 if (copy_to_user(buf, values, n * sizeof(u64)))
3734 return -EFAULT;
3735
3736 return n * sizeof(u64);
3737}
3738
Jiri Olsadc633982014-09-12 13:18:26 +02003739static bool is_event_hup(struct perf_event *event)
3740{
3741 bool no_children;
3742
3743 if (event->state != PERF_EVENT_STATE_EXIT)
3744 return false;
3745
3746 mutex_lock(&event->child_mutex);
3747 no_children = list_empty(&event->child_list);
3748 mutex_unlock(&event->child_mutex);
3749 return no_children;
3750}
3751
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003752/*
3753 * Read the performance event - simple non blocking version for now
3754 */
3755static ssize_t
3756perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
3757{
3758 u64 read_format = event->attr.read_format;
3759 int ret;
3760
3761 /*
3762 * Return end-of-file for a read on a event that is in
3763 * error state (i.e. because it was pinned but it couldn't be
3764 * scheduled on to the CPU at some point).
3765 */
3766 if (event->state == PERF_EVENT_STATE_ERROR)
3767 return 0;
3768
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003769 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003770 return -ENOSPC;
3771
3772 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003773 if (read_format & PERF_FORMAT_GROUP)
3774 ret = perf_event_read_group(event, read_format, buf);
3775 else
3776 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003777
3778 return ret;
3779}
3780
3781static ssize_t
3782perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3783{
3784 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003785 struct perf_event_context *ctx;
3786 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003787
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003788 ctx = perf_event_ctx_lock(event);
3789 ret = perf_read_hw(event, buf, count);
3790 perf_event_ctx_unlock(event, ctx);
3791
3792 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003793}
3794
3795static unsigned int perf_poll(struct file *file, poll_table *wait)
3796{
3797 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003798 struct ring_buffer *rb;
Jiri Olsa61b67682014-08-13 19:39:56 +02003799 unsigned int events = POLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003800
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02003801 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04003802
Jiri Olsadc633982014-09-12 13:18:26 +02003803 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04003804 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003805
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003806 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003807 * Pin the event->rb by taking event->mmap_mutex; otherwise
3808 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003809 */
3810 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003811 rb = event->rb;
3812 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02003813 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003814 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003815 return events;
3816}
3817
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003818static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003819{
3820 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02003821 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003822 perf_event_update_userpage(event);
3823}
3824
3825/*
3826 * Holding the top-level event's child_mutex means that any
3827 * descendant process that has inherited this event will block
3828 * in sync_child_event if it goes to exit, thus satisfying the
3829 * task existence requirements of perf_event_enable/disable.
3830 */
3831static void perf_event_for_each_child(struct perf_event *event,
3832 void (*func)(struct perf_event *))
3833{
3834 struct perf_event *child;
3835
3836 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003837
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003838 mutex_lock(&event->child_mutex);
3839 func(event);
3840 list_for_each_entry(child, &event->child_list, child_list)
3841 func(child);
3842 mutex_unlock(&event->child_mutex);
3843}
3844
3845static void perf_event_for_each(struct perf_event *event,
3846 void (*func)(struct perf_event *))
3847{
3848 struct perf_event_context *ctx = event->ctx;
3849 struct perf_event *sibling;
3850
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003851 lockdep_assert_held(&ctx->mutex);
3852
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003853 event = event->group_leader;
3854
3855 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003856 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10003857 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003858}
3859
3860static int perf_event_period(struct perf_event *event, u64 __user *arg)
3861{
3862 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrabad71922013-11-27 13:54:38 +00003863 int ret = 0, active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003864 u64 value;
3865
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01003866 if (!is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003867 return -EINVAL;
3868
John Blackwoodad0cf342010-09-28 18:03:11 -04003869 if (copy_from_user(&value, arg, sizeof(value)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003870 return -EFAULT;
3871
3872 if (!value)
3873 return -EINVAL;
3874
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003875 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003876 if (event->attr.freq) {
3877 if (value > sysctl_perf_event_sample_rate) {
3878 ret = -EINVAL;
3879 goto unlock;
3880 }
3881
3882 event->attr.sample_freq = value;
3883 } else {
3884 event->attr.sample_period = value;
3885 event->hw.sample_period = value;
3886 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00003887
3888 active = (event->state == PERF_EVENT_STATE_ACTIVE);
3889 if (active) {
3890 perf_pmu_disable(ctx->pmu);
3891 event->pmu->stop(event, PERF_EF_UPDATE);
3892 }
3893
3894 local64_set(&event->hw.period_left, 0);
3895
3896 if (active) {
3897 event->pmu->start(event, PERF_EF_RELOAD);
3898 perf_pmu_enable(ctx->pmu);
3899 }
3900
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003901unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003902 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003903
3904 return ret;
3905}
3906
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003907static const struct file_operations perf_fops;
3908
Al Viro2903ff02012-08-28 12:52:22 -04003909static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003910{
Al Viro2903ff02012-08-28 12:52:22 -04003911 struct fd f = fdget(fd);
3912 if (!f.file)
3913 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003914
Al Viro2903ff02012-08-28 12:52:22 -04003915 if (f.file->f_op != &perf_fops) {
3916 fdput(f);
3917 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003918 }
Al Viro2903ff02012-08-28 12:52:22 -04003919 *p = f;
3920 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003921}
3922
3923static int perf_event_set_output(struct perf_event *event,
3924 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08003925static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003926
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003927static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003928{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003929 void (*func)(struct perf_event *);
3930 u32 flags = arg;
3931
3932 switch (cmd) {
3933 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003934 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003935 break;
3936 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003937 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003938 break;
3939 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003940 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003941 break;
3942
3943 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003944 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003945
3946 case PERF_EVENT_IOC_PERIOD:
3947 return perf_event_period(event, (u64 __user *)arg);
3948
Jiri Olsacf4957f2012-10-24 13:37:58 +02003949 case PERF_EVENT_IOC_ID:
3950 {
3951 u64 id = primary_event_id(event);
3952
3953 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
3954 return -EFAULT;
3955 return 0;
3956 }
3957
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003958 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003959 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003960 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003961 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04003962 struct perf_event *output_event;
3963 struct fd output;
3964 ret = perf_fget_light(arg, &output);
3965 if (ret)
3966 return ret;
3967 output_event = output.file->private_data;
3968 ret = perf_event_set_output(event, output_event);
3969 fdput(output);
3970 } else {
3971 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003972 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003973 return ret;
3974 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003975
Li Zefan6fb29152009-10-15 11:21:42 +08003976 case PERF_EVENT_IOC_SET_FILTER:
3977 return perf_event_set_filter(event, (void __user *)arg);
3978
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003979 default:
3980 return -ENOTTY;
3981 }
3982
3983 if (flags & PERF_IOC_FLAG_GROUP)
3984 perf_event_for_each(event, func);
3985 else
3986 perf_event_for_each_child(event, func);
3987
3988 return 0;
3989}
3990
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003991static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3992{
3993 struct perf_event *event = file->private_data;
3994 struct perf_event_context *ctx;
3995 long ret;
3996
3997 ctx = perf_event_ctx_lock(event);
3998 ret = _perf_ioctl(event, cmd, arg);
3999 perf_event_ctx_unlock(event, ctx);
4000
4001 return ret;
4002}
4003
Pawel Mollb3f20782014-06-13 16:03:32 +01004004#ifdef CONFIG_COMPAT
4005static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4006 unsigned long arg)
4007{
4008 switch (_IOC_NR(cmd)) {
4009 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4010 case _IOC_NR(PERF_EVENT_IOC_ID):
4011 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4012 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4013 cmd &= ~IOCSIZE_MASK;
4014 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4015 }
4016 break;
4017 }
4018 return perf_ioctl(file, cmd, arg);
4019}
4020#else
4021# define perf_compat_ioctl NULL
4022#endif
4023
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004024int perf_event_task_enable(void)
4025{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004026 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004027 struct perf_event *event;
4028
4029 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004030 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4031 ctx = perf_event_ctx_lock(event);
4032 perf_event_for_each_child(event, _perf_event_enable);
4033 perf_event_ctx_unlock(event, ctx);
4034 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004035 mutex_unlock(&current->perf_event_mutex);
4036
4037 return 0;
4038}
4039
4040int perf_event_task_disable(void)
4041{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004042 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004043 struct perf_event *event;
4044
4045 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004046 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4047 ctx = perf_event_ctx_lock(event);
4048 perf_event_for_each_child(event, _perf_event_disable);
4049 perf_event_ctx_unlock(event, ctx);
4050 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004051 mutex_unlock(&current->perf_event_mutex);
4052
4053 return 0;
4054}
4055
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004056static int perf_event_index(struct perf_event *event)
4057{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004058 if (event->hw.state & PERF_HES_STOPPED)
4059 return 0;
4060
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004061 if (event->state != PERF_EVENT_STATE_ACTIVE)
4062 return 0;
4063
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004064 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004065}
4066
Eric B Munsonc4794292011-06-23 16:34:38 -04004067static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004068 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004069 u64 *enabled,
4070 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004071{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004072 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004073
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004074 *now = perf_clock();
4075 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04004076 *enabled = ctx_time - event->tstamp_enabled;
4077 *running = ctx_time - event->tstamp_running;
4078}
4079
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004080static void perf_event_init_userpage(struct perf_event *event)
4081{
4082 struct perf_event_mmap_page *userpg;
4083 struct ring_buffer *rb;
4084
4085 rcu_read_lock();
4086 rb = rcu_dereference(event->rb);
4087 if (!rb)
4088 goto unlock;
4089
4090 userpg = rb->user_page;
4091
4092 /* Allow new userspace to detect that bit 0 is deprecated */
4093 userpg->cap_bit0_is_deprecated = 1;
4094 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
4095
4096unlock:
4097 rcu_read_unlock();
4098}
4099
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004100void __weak arch_perf_update_userpage(
4101 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004102{
4103}
4104
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004105/*
4106 * Callers need to ensure there can be no nesting of this function, otherwise
4107 * the seqlock logic goes bad. We can not serialize this because the arch
4108 * code calls this from NMI context.
4109 */
4110void perf_event_update_userpage(struct perf_event *event)
4111{
4112 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004113 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004114 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004115
4116 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004117 rb = rcu_dereference(event->rb);
4118 if (!rb)
4119 goto unlock;
4120
Eric B Munson0d641202011-06-24 12:26:26 -04004121 /*
4122 * compute total_time_enabled, total_time_running
4123 * based on snapshot values taken when the event
4124 * was last scheduled in.
4125 *
4126 * we cannot simply called update_context_time()
4127 * because of locking issue as we can be called in
4128 * NMI context
4129 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004130 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004131
Frederic Weisbecker76369132011-05-19 19:55:04 +02004132 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004133 /*
4134 * Disable preemption so as to not let the corresponding user-space
4135 * spin too long if we get preempted.
4136 */
4137 preempt_disable();
4138 ++userpg->lock;
4139 barrier();
4140 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004141 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004142 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004143 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004144
Eric B Munson0d641202011-06-24 12:26:26 -04004145 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004146 atomic64_read(&event->child_total_time_enabled);
4147
Eric B Munson0d641202011-06-24 12:26:26 -04004148 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004149 atomic64_read(&event->child_total_time_running);
4150
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004151 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004152
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004153 barrier();
4154 ++userpg->lock;
4155 preempt_enable();
4156unlock:
4157 rcu_read_unlock();
4158}
4159
Peter Zijlstra906010b2009-09-21 16:08:49 +02004160static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
4161{
4162 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004163 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004164 int ret = VM_FAULT_SIGBUS;
4165
4166 if (vmf->flags & FAULT_FLAG_MKWRITE) {
4167 if (vmf->pgoff == 0)
4168 ret = 0;
4169 return ret;
4170 }
4171
4172 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004173 rb = rcu_dereference(event->rb);
4174 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004175 goto unlock;
4176
4177 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4178 goto unlock;
4179
Frederic Weisbecker76369132011-05-19 19:55:04 +02004180 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004181 if (!vmf->page)
4182 goto unlock;
4183
4184 get_page(vmf->page);
4185 vmf->page->mapping = vma->vm_file->f_mapping;
4186 vmf->page->index = vmf->pgoff;
4187
4188 ret = 0;
4189unlock:
4190 rcu_read_unlock();
4191
4192 return ret;
4193}
4194
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004195static void ring_buffer_attach(struct perf_event *event,
4196 struct ring_buffer *rb)
4197{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004198 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004199 unsigned long flags;
4200
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004201 if (event->rb) {
4202 /*
4203 * Should be impossible, we set this when removing
4204 * event->rb_entry and wait/clear when adding event->rb_entry.
4205 */
4206 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004207
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004208 old_rb = event->rb;
4209 event->rcu_batches = get_state_synchronize_rcu();
4210 event->rcu_pending = 1;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004211
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004212 spin_lock_irqsave(&old_rb->event_lock, flags);
4213 list_del_rcu(&event->rb_entry);
4214 spin_unlock_irqrestore(&old_rb->event_lock, flags);
4215 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004216
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004217 if (event->rcu_pending && rb) {
4218 cond_synchronize_rcu(event->rcu_batches);
4219 event->rcu_pending = 0;
4220 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004221
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004222 if (rb) {
4223 spin_lock_irqsave(&rb->event_lock, flags);
4224 list_add_rcu(&event->rb_entry, &rb->event_list);
4225 spin_unlock_irqrestore(&rb->event_lock, flags);
4226 }
4227
4228 rcu_assign_pointer(event->rb, rb);
4229
4230 if (old_rb) {
4231 ring_buffer_put(old_rb);
4232 /*
4233 * Since we detached before setting the new rb, so that we
4234 * could attach the new rb, we could have missed a wakeup.
4235 * Provide it now.
4236 */
4237 wake_up_all(&event->waitq);
4238 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004239}
4240
4241static void ring_buffer_wakeup(struct perf_event *event)
4242{
4243 struct ring_buffer *rb;
4244
4245 rcu_read_lock();
4246 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004247 if (rb) {
4248 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
4249 wake_up_all(&event->waitq);
4250 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004251 rcu_read_unlock();
4252}
4253
Frederic Weisbecker76369132011-05-19 19:55:04 +02004254static void rb_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004255{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004256 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004257
Frederic Weisbecker76369132011-05-19 19:55:04 +02004258 rb = container_of(rcu_head, struct ring_buffer, rcu_head);
4259 rb_free(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004260}
4261
Frederic Weisbecker76369132011-05-19 19:55:04 +02004262static struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004263{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004264 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004265
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004266 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004267 rb = rcu_dereference(event->rb);
4268 if (rb) {
4269 if (!atomic_inc_not_zero(&rb->refcount))
4270 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004271 }
4272 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004273
Frederic Weisbecker76369132011-05-19 19:55:04 +02004274 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004275}
4276
Frederic Weisbecker76369132011-05-19 19:55:04 +02004277static void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004278{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004279 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004280 return;
4281
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004282 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004283
Frederic Weisbecker76369132011-05-19 19:55:04 +02004284 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004285}
4286
4287static void perf_mmap_open(struct vm_area_struct *vma)
4288{
4289 struct perf_event *event = vma->vm_file->private_data;
4290
4291 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004292 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004293
4294 if (event->pmu->event_mapped)
4295 event->pmu->event_mapped(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004296}
4297
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004298/*
4299 * A buffer can be mmap()ed multiple times; either directly through the same
4300 * event, or through other events by use of perf_event_set_output().
4301 *
4302 * In order to undo the VM accounting done by perf_mmap() we need to destroy
4303 * the buffer here, where we still have a VM context. This means we need
4304 * to detach all events redirecting to us.
4305 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004306static void perf_mmap_close(struct vm_area_struct *vma)
4307{
4308 struct perf_event *event = vma->vm_file->private_data;
4309
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004310 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004311 struct user_struct *mmap_user = rb->mmap_user;
4312 int mmap_locked = rb->mmap_locked;
4313 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004314
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004315 if (event->pmu->event_unmapped)
4316 event->pmu->event_unmapped(event);
4317
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004318 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004319
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004320 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004321 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004322
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004323 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004324 mutex_unlock(&event->mmap_mutex);
4325
4326 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004327 if (atomic_read(&rb->mmap_count))
4328 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004329
4330 /*
4331 * No other mmap()s, detach from all other events that might redirect
4332 * into the now unreachable buffer. Somewhat complicated by the
4333 * fact that rb::event_lock otherwise nests inside mmap_mutex.
4334 */
4335again:
4336 rcu_read_lock();
4337 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
4338 if (!atomic_long_inc_not_zero(&event->refcount)) {
4339 /*
4340 * This event is en-route to free_event() which will
4341 * detach it and remove it from the list.
4342 */
4343 continue;
4344 }
4345 rcu_read_unlock();
4346
4347 mutex_lock(&event->mmap_mutex);
4348 /*
4349 * Check we didn't race with perf_event_set_output() which can
4350 * swizzle the rb from under us while we were waiting to
4351 * acquire mmap_mutex.
4352 *
4353 * If we find a different rb; ignore this event, a next
4354 * iteration will no longer find it on the list. We have to
4355 * still restart the iteration to make sure we're not now
4356 * iterating the wrong list.
4357 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004358 if (event->rb == rb)
4359 ring_buffer_attach(event, NULL);
4360
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004361 mutex_unlock(&event->mmap_mutex);
4362 put_event(event);
4363
4364 /*
4365 * Restart the iteration; either we're on the wrong list or
4366 * destroyed its integrity by doing a deletion.
4367 */
4368 goto again;
4369 }
4370 rcu_read_unlock();
4371
4372 /*
4373 * It could be there's still a few 0-ref events on the list; they'll
4374 * get cleaned up by free_event() -- they'll also still have their
4375 * ref on the rb and will free it whenever they are done with it.
4376 *
4377 * Aside from that, this buffer is 'fully' detached and unmapped,
4378 * undo the VM accounting.
4379 */
4380
4381 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
4382 vma->vm_mm->pinned_vm -= mmap_locked;
4383 free_uid(mmap_user);
4384
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004385out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004386 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004387}
4388
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04004389static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004390 .open = perf_mmap_open,
4391 .close = perf_mmap_close,
4392 .fault = perf_mmap_fault,
4393 .page_mkwrite = perf_mmap_fault,
4394};
4395
4396static int perf_mmap(struct file *file, struct vm_area_struct *vma)
4397{
4398 struct perf_event *event = file->private_data;
4399 unsigned long user_locked, user_lock_limit;
4400 struct user_struct *user = current_user();
4401 unsigned long locked, lock_limit;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004402 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004403 unsigned long vma_size;
4404 unsigned long nr_pages;
4405 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004406 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004407
Peter Zijlstrac7920612010-05-18 10:33:24 +02004408 /*
4409 * Don't allow mmap() of inherited per-task counters. This would
4410 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02004411 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02004412 */
4413 if (event->cpu == -1 && event->attr.inherit)
4414 return -EINVAL;
4415
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004416 if (!(vma->vm_flags & VM_SHARED))
4417 return -EINVAL;
4418
4419 vma_size = vma->vm_end - vma->vm_start;
4420 nr_pages = (vma_size / PAGE_SIZE) - 1;
4421
4422 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02004423 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004424 * can do bitmasks instead of modulo.
4425 */
Kaixu Xia74390aa2015-01-27 17:55:12 +08004426 if (!is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004427 return -EINVAL;
4428
4429 if (vma_size != PAGE_SIZE * (1 + nr_pages))
4430 return -EINVAL;
4431
4432 if (vma->vm_pgoff != 0)
4433 return -EINVAL;
4434
4435 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004436again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004437 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004438 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004439 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004440 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004441 goto unlock;
4442 }
4443
4444 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
4445 /*
4446 * Raced against perf_mmap_close() through
4447 * perf_event_set_output(). Try again, hope for better
4448 * luck.
4449 */
4450 mutex_unlock(&event->mmap_mutex);
4451 goto again;
4452 }
4453
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004454 goto unlock;
4455 }
4456
4457 user_extra = nr_pages + 1;
4458 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
4459
4460 /*
4461 * Increase the limit linearly with more CPUs:
4462 */
4463 user_lock_limit *= num_online_cpus();
4464
4465 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
4466
4467 extra = 0;
4468 if (user_locked > user_lock_limit)
4469 extra = user_locked - user_lock_limit;
4470
Jiri Slaby78d7d402010-03-05 13:42:54 -08004471 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004472 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07004473 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004474
4475 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
4476 !capable(CAP_IPC_LOCK)) {
4477 ret = -EPERM;
4478 goto unlock;
4479 }
4480
Frederic Weisbecker76369132011-05-19 19:55:04 +02004481 WARN_ON(event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004482
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004483 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004484 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004485
Vince Weaver4ec83632011-06-01 15:15:36 -04004486 rb = rb_alloc(nr_pages,
4487 event->attr.watermark ? event->attr.wakeup_watermark : 0,
4488 event->cpu, flags);
4489
Frederic Weisbecker76369132011-05-19 19:55:04 +02004490 if (!rb) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004491 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004492 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004493 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004494
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004495 atomic_set(&rb->mmap_count, 1);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004496 rb->mmap_locked = extra;
4497 rb->mmap_user = get_current_user();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004498
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004499 atomic_long_add(user_extra, &user->locked_vm);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004500 vma->vm_mm->pinned_vm += extra;
4501
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004502 ring_buffer_attach(event, rb);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004503
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004504 perf_event_init_userpage(event);
Peter Zijlstra9a0f05c2011-11-21 15:13:29 +01004505 perf_event_update_userpage(event);
4506
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004507unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004508 if (!ret)
4509 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004510 mutex_unlock(&event->mmap_mutex);
4511
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004512 /*
4513 * Since pinned accounting is per vm we cannot allow fork() to copy our
4514 * vma.
4515 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004516 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004517 vma->vm_ops = &perf_mmap_vmops;
4518
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004519 if (event->pmu->event_mapped)
4520 event->pmu->event_mapped(event);
4521
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004522 return ret;
4523}
4524
4525static int perf_fasync(int fd, struct file *filp, int on)
4526{
Al Viro496ad9a2013-01-23 17:07:38 -05004527 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004528 struct perf_event *event = filp->private_data;
4529 int retval;
4530
4531 mutex_lock(&inode->i_mutex);
4532 retval = fasync_helper(fd, filp, on, &event->fasync);
4533 mutex_unlock(&inode->i_mutex);
4534
4535 if (retval < 0)
4536 return retval;
4537
4538 return 0;
4539}
4540
4541static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01004542 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004543 .release = perf_release,
4544 .read = perf_read,
4545 .poll = perf_poll,
4546 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01004547 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004548 .mmap = perf_mmap,
4549 .fasync = perf_fasync,
4550};
4551
4552/*
4553 * Perf event wakeup
4554 *
4555 * If there's data, ensure we set the poll() state and publish everything
4556 * to user-space before waking everybody up.
4557 */
4558
4559void perf_event_wakeup(struct perf_event *event)
4560{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004561 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004562
4563 if (event->pending_kill) {
4564 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
4565 event->pending_kill = 0;
4566 }
4567}
4568
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004569static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004570{
4571 struct perf_event *event = container_of(entry,
4572 struct perf_event, pending);
4573
4574 if (event->pending_disable) {
4575 event->pending_disable = 0;
4576 __perf_event_disable(event);
4577 }
4578
4579 if (event->pending_wakeup) {
4580 event->pending_wakeup = 0;
4581 perf_event_wakeup(event);
4582 }
4583}
4584
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004585/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004586 * We assume there is only KVM supporting the callbacks.
4587 * Later on, we might change it to a list if there is
4588 * another virtualization implementation supporting the callbacks.
4589 */
4590struct perf_guest_info_callbacks *perf_guest_cbs;
4591
4592int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4593{
4594 perf_guest_cbs = cbs;
4595 return 0;
4596}
4597EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
4598
4599int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4600{
4601 perf_guest_cbs = NULL;
4602 return 0;
4603}
4604EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
4605
Jiri Olsa40189942012-08-07 15:20:37 +02004606static void
4607perf_output_sample_regs(struct perf_output_handle *handle,
4608 struct pt_regs *regs, u64 mask)
4609{
4610 int bit;
4611
4612 for_each_set_bit(bit, (const unsigned long *) &mask,
4613 sizeof(mask) * BITS_PER_BYTE) {
4614 u64 val;
4615
4616 val = perf_reg_value(regs, bit);
4617 perf_output_put(handle, val);
4618 }
4619}
4620
Stephane Eranian60e23642014-09-24 13:48:37 +02004621static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004622 struct pt_regs *regs,
4623 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02004624{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004625 if (user_mode(regs)) {
4626 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02004627 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004628 } else if (current->mm) {
4629 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02004630 } else {
4631 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
4632 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02004633 }
4634}
4635
Stephane Eranian60e23642014-09-24 13:48:37 +02004636static void perf_sample_regs_intr(struct perf_regs *regs_intr,
4637 struct pt_regs *regs)
4638{
4639 regs_intr->regs = regs;
4640 regs_intr->abi = perf_reg_abi(current);
4641}
4642
4643
Jiri Olsac5ebced2012-08-07 15:20:40 +02004644/*
4645 * Get remaining task size from user stack pointer.
4646 *
4647 * It'd be better to take stack vma map and limit this more
4648 * precisly, but there's no way to get it safely under interrupt,
4649 * so using TASK_SIZE as limit.
4650 */
4651static u64 perf_ustack_task_size(struct pt_regs *regs)
4652{
4653 unsigned long addr = perf_user_stack_pointer(regs);
4654
4655 if (!addr || addr >= TASK_SIZE)
4656 return 0;
4657
4658 return TASK_SIZE - addr;
4659}
4660
4661static u16
4662perf_sample_ustack_size(u16 stack_size, u16 header_size,
4663 struct pt_regs *regs)
4664{
4665 u64 task_size;
4666
4667 /* No regs, no stack pointer, no dump. */
4668 if (!regs)
4669 return 0;
4670
4671 /*
4672 * Check if we fit in with the requested stack size into the:
4673 * - TASK_SIZE
4674 * If we don't, we limit the size to the TASK_SIZE.
4675 *
4676 * - remaining sample size
4677 * If we don't, we customize the stack size to
4678 * fit in to the remaining sample size.
4679 */
4680
4681 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
4682 stack_size = min(stack_size, (u16) task_size);
4683
4684 /* Current header size plus static size and dynamic size. */
4685 header_size += 2 * sizeof(u64);
4686
4687 /* Do we fit in with the current stack dump size? */
4688 if ((u16) (header_size + stack_size) < header_size) {
4689 /*
4690 * If we overflow the maximum size for the sample,
4691 * we customize the stack dump size to fit in.
4692 */
4693 stack_size = USHRT_MAX - header_size - sizeof(u64);
4694 stack_size = round_up(stack_size, sizeof(u64));
4695 }
4696
4697 return stack_size;
4698}
4699
4700static void
4701perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
4702 struct pt_regs *regs)
4703{
4704 /* Case of a kernel thread, nothing to dump */
4705 if (!regs) {
4706 u64 size = 0;
4707 perf_output_put(handle, size);
4708 } else {
4709 unsigned long sp;
4710 unsigned int rem;
4711 u64 dyn_size;
4712
4713 /*
4714 * We dump:
4715 * static size
4716 * - the size requested by user or the best one we can fit
4717 * in to the sample max size
4718 * data
4719 * - user stack dump data
4720 * dynamic size
4721 * - the actual dumped size
4722 */
4723
4724 /* Static size. */
4725 perf_output_put(handle, dump_size);
4726
4727 /* Data. */
4728 sp = perf_user_stack_pointer(regs);
4729 rem = __output_copy_user(handle, (void *) sp, dump_size);
4730 dyn_size = dump_size - rem;
4731
4732 perf_output_skip(handle, rem);
4733
4734 /* Dynamic size. */
4735 perf_output_put(handle, dyn_size);
4736 }
4737}
4738
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004739static void __perf_event_header__init_id(struct perf_event_header *header,
4740 struct perf_sample_data *data,
4741 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004742{
4743 u64 sample_type = event->attr.sample_type;
4744
4745 data->type = sample_type;
4746 header->size += event->id_header_size;
4747
4748 if (sample_type & PERF_SAMPLE_TID) {
4749 /* namespace issues */
4750 data->tid_entry.pid = perf_event_pid(event, current);
4751 data->tid_entry.tid = perf_event_tid(event, current);
4752 }
4753
4754 if (sample_type & PERF_SAMPLE_TIME)
4755 data->time = perf_clock();
4756
Adrian Hunterff3d5272013-08-27 11:23:07 +03004757 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004758 data->id = primary_event_id(event);
4759
4760 if (sample_type & PERF_SAMPLE_STREAM_ID)
4761 data->stream_id = event->id;
4762
4763 if (sample_type & PERF_SAMPLE_CPU) {
4764 data->cpu_entry.cpu = raw_smp_processor_id();
4765 data->cpu_entry.reserved = 0;
4766 }
4767}
4768
Frederic Weisbecker76369132011-05-19 19:55:04 +02004769void perf_event_header__init_id(struct perf_event_header *header,
4770 struct perf_sample_data *data,
4771 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004772{
4773 if (event->attr.sample_id_all)
4774 __perf_event_header__init_id(header, data, event);
4775}
4776
4777static void __perf_event__output_id_sample(struct perf_output_handle *handle,
4778 struct perf_sample_data *data)
4779{
4780 u64 sample_type = data->type;
4781
4782 if (sample_type & PERF_SAMPLE_TID)
4783 perf_output_put(handle, data->tid_entry);
4784
4785 if (sample_type & PERF_SAMPLE_TIME)
4786 perf_output_put(handle, data->time);
4787
4788 if (sample_type & PERF_SAMPLE_ID)
4789 perf_output_put(handle, data->id);
4790
4791 if (sample_type & PERF_SAMPLE_STREAM_ID)
4792 perf_output_put(handle, data->stream_id);
4793
4794 if (sample_type & PERF_SAMPLE_CPU)
4795 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03004796
4797 if (sample_type & PERF_SAMPLE_IDENTIFIER)
4798 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004799}
4800
Frederic Weisbecker76369132011-05-19 19:55:04 +02004801void perf_event__output_id_sample(struct perf_event *event,
4802 struct perf_output_handle *handle,
4803 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004804{
4805 if (event->attr.sample_id_all)
4806 __perf_event__output_id_sample(handle, sample);
4807}
4808
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004809static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004810 struct perf_event *event,
4811 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004812{
4813 u64 read_format = event->attr.read_format;
4814 u64 values[4];
4815 int n = 0;
4816
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004817 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004818 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004819 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004820 atomic64_read(&event->child_total_time_enabled);
4821 }
4822 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004823 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004824 atomic64_read(&event->child_total_time_running);
4825 }
4826 if (read_format & PERF_FORMAT_ID)
4827 values[n++] = primary_event_id(event);
4828
Frederic Weisbecker76369132011-05-19 19:55:04 +02004829 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004830}
4831
4832/*
4833 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
4834 */
4835static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004836 struct perf_event *event,
4837 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004838{
4839 struct perf_event *leader = event->group_leader, *sub;
4840 u64 read_format = event->attr.read_format;
4841 u64 values[5];
4842 int n = 0;
4843
4844 values[n++] = 1 + leader->nr_siblings;
4845
4846 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02004847 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004848
4849 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02004850 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004851
4852 if (leader != event)
4853 leader->pmu->read(leader);
4854
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004855 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004856 if (read_format & PERF_FORMAT_ID)
4857 values[n++] = primary_event_id(leader);
4858
Frederic Weisbecker76369132011-05-19 19:55:04 +02004859 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004860
4861 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
4862 n = 0;
4863
Jiri Olsa6f5ab002012-10-15 20:13:45 +02004864 if ((sub != event) &&
4865 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004866 sub->pmu->read(sub);
4867
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004868 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004869 if (read_format & PERF_FORMAT_ID)
4870 values[n++] = primary_event_id(sub);
4871
Frederic Weisbecker76369132011-05-19 19:55:04 +02004872 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004873 }
4874}
4875
Stephane Eranianeed01522010-10-26 16:08:01 +02004876#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
4877 PERF_FORMAT_TOTAL_TIME_RUNNING)
4878
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004879static void perf_output_read(struct perf_output_handle *handle,
4880 struct perf_event *event)
4881{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004882 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02004883 u64 read_format = event->attr.read_format;
4884
4885 /*
4886 * compute total_time_enabled, total_time_running
4887 * based on snapshot values taken when the event
4888 * was last scheduled in.
4889 *
4890 * we cannot simply called update_context_time()
4891 * because of locking issue as we are called in
4892 * NMI context
4893 */
Eric B Munsonc4794292011-06-23 16:34:38 -04004894 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004895 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02004896
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004897 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02004898 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004899 else
Stephane Eranianeed01522010-10-26 16:08:01 +02004900 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004901}
4902
4903void perf_output_sample(struct perf_output_handle *handle,
4904 struct perf_event_header *header,
4905 struct perf_sample_data *data,
4906 struct perf_event *event)
4907{
4908 u64 sample_type = data->type;
4909
4910 perf_output_put(handle, *header);
4911
Adrian Hunterff3d5272013-08-27 11:23:07 +03004912 if (sample_type & PERF_SAMPLE_IDENTIFIER)
4913 perf_output_put(handle, data->id);
4914
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004915 if (sample_type & PERF_SAMPLE_IP)
4916 perf_output_put(handle, data->ip);
4917
4918 if (sample_type & PERF_SAMPLE_TID)
4919 perf_output_put(handle, data->tid_entry);
4920
4921 if (sample_type & PERF_SAMPLE_TIME)
4922 perf_output_put(handle, data->time);
4923
4924 if (sample_type & PERF_SAMPLE_ADDR)
4925 perf_output_put(handle, data->addr);
4926
4927 if (sample_type & PERF_SAMPLE_ID)
4928 perf_output_put(handle, data->id);
4929
4930 if (sample_type & PERF_SAMPLE_STREAM_ID)
4931 perf_output_put(handle, data->stream_id);
4932
4933 if (sample_type & PERF_SAMPLE_CPU)
4934 perf_output_put(handle, data->cpu_entry);
4935
4936 if (sample_type & PERF_SAMPLE_PERIOD)
4937 perf_output_put(handle, data->period);
4938
4939 if (sample_type & PERF_SAMPLE_READ)
4940 perf_output_read(handle, event);
4941
4942 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4943 if (data->callchain) {
4944 int size = 1;
4945
4946 if (data->callchain)
4947 size += data->callchain->nr;
4948
4949 size *= sizeof(u64);
4950
Frederic Weisbecker76369132011-05-19 19:55:04 +02004951 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004952 } else {
4953 u64 nr = 0;
4954 perf_output_put(handle, nr);
4955 }
4956 }
4957
4958 if (sample_type & PERF_SAMPLE_RAW) {
4959 if (data->raw) {
4960 perf_output_put(handle, data->raw->size);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004961 __output_copy(handle, data->raw->data,
4962 data->raw->size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004963 } else {
4964 struct {
4965 u32 size;
4966 u32 data;
4967 } raw = {
4968 .size = sizeof(u32),
4969 .data = 0,
4970 };
4971 perf_output_put(handle, raw);
4972 }
4973 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004974
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004975 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4976 if (data->br_stack) {
4977 size_t size;
4978
4979 size = data->br_stack->nr
4980 * sizeof(struct perf_branch_entry);
4981
4982 perf_output_put(handle, data->br_stack->nr);
4983 perf_output_copy(handle, data->br_stack->entries, size);
4984 } else {
4985 /*
4986 * we always store at least the value of nr
4987 */
4988 u64 nr = 0;
4989 perf_output_put(handle, nr);
4990 }
4991 }
Jiri Olsa40189942012-08-07 15:20:37 +02004992
4993 if (sample_type & PERF_SAMPLE_REGS_USER) {
4994 u64 abi = data->regs_user.abi;
4995
4996 /*
4997 * If there are no regs to dump, notice it through
4998 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
4999 */
5000 perf_output_put(handle, abi);
5001
5002 if (abi) {
5003 u64 mask = event->attr.sample_regs_user;
5004 perf_output_sample_regs(handle,
5005 data->regs_user.regs,
5006 mask);
5007 }
5008 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005009
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005010 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005011 perf_output_sample_ustack(handle,
5012 data->stack_user_size,
5013 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005014 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005015
5016 if (sample_type & PERF_SAMPLE_WEIGHT)
5017 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005018
5019 if (sample_type & PERF_SAMPLE_DATA_SRC)
5020 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005021
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005022 if (sample_type & PERF_SAMPLE_TRANSACTION)
5023 perf_output_put(handle, data->txn);
5024
Stephane Eranian60e23642014-09-24 13:48:37 +02005025 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5026 u64 abi = data->regs_intr.abi;
5027 /*
5028 * If there are no regs to dump, notice it through
5029 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5030 */
5031 perf_output_put(handle, abi);
5032
5033 if (abi) {
5034 u64 mask = event->attr.sample_regs_intr;
5035
5036 perf_output_sample_regs(handle,
5037 data->regs_intr.regs,
5038 mask);
5039 }
5040 }
5041
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005042 if (!event->attr.watermark) {
5043 int wakeup_events = event->attr.wakeup_events;
5044
5045 if (wakeup_events) {
5046 struct ring_buffer *rb = handle->rb;
5047 int events = local_inc_return(&rb->events);
5048
5049 if (events >= wakeup_events) {
5050 local_sub(wakeup_events, &rb->events);
5051 local_inc(&rb->wakeup);
5052 }
5053 }
5054 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005055}
5056
5057void perf_prepare_sample(struct perf_event_header *header,
5058 struct perf_sample_data *data,
5059 struct perf_event *event,
5060 struct pt_regs *regs)
5061{
5062 u64 sample_type = event->attr.sample_type;
5063
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005064 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005065 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005066
5067 header->misc = 0;
5068 header->misc |= perf_misc_flags(regs);
5069
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005070 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005071
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005072 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005073 data->ip = perf_instruction_pointer(regs);
5074
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005075 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5076 int size = 1;
5077
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005078 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005079
5080 if (data->callchain)
5081 size += data->callchain->nr;
5082
5083 header->size += size * sizeof(u64);
5084 }
5085
5086 if (sample_type & PERF_SAMPLE_RAW) {
5087 int size = sizeof(u32);
5088
5089 if (data->raw)
5090 size += data->raw->size;
5091 else
5092 size += sizeof(u32);
5093
5094 WARN_ON_ONCE(size & (sizeof(u64)-1));
5095 header->size += size;
5096 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005097
5098 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5099 int size = sizeof(u64); /* nr */
5100 if (data->br_stack) {
5101 size += data->br_stack->nr
5102 * sizeof(struct perf_branch_entry);
5103 }
5104 header->size += size;
5105 }
Jiri Olsa40189942012-08-07 15:20:37 +02005106
Peter Zijlstra25657112014-09-24 13:48:42 +02005107 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005108 perf_sample_regs_user(&data->regs_user, regs,
5109 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005110
Jiri Olsa40189942012-08-07 15:20:37 +02005111 if (sample_type & PERF_SAMPLE_REGS_USER) {
5112 /* regs dump ABI info */
5113 int size = sizeof(u64);
5114
Jiri Olsa40189942012-08-07 15:20:37 +02005115 if (data->regs_user.regs) {
5116 u64 mask = event->attr.sample_regs_user;
5117 size += hweight64(mask) * sizeof(u64);
5118 }
5119
5120 header->size += size;
5121 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005122
5123 if (sample_type & PERF_SAMPLE_STACK_USER) {
5124 /*
5125 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
5126 * processed as the last one or have additional check added
5127 * in case new sample type is added, because we could eat
5128 * up the rest of the sample size.
5129 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02005130 u16 stack_size = event->attr.sample_stack_user;
5131 u16 size = sizeof(u64);
5132
Jiri Olsac5ebced2012-08-07 15:20:40 +02005133 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02005134 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02005135
5136 /*
5137 * If there is something to dump, add space for the dump
5138 * itself and for the field that tells the dynamic size,
5139 * which is how many have been actually dumped.
5140 */
5141 if (stack_size)
5142 size += sizeof(u64) + stack_size;
5143
5144 data->stack_user_size = stack_size;
5145 header->size += size;
5146 }
Stephane Eranian60e23642014-09-24 13:48:37 +02005147
5148 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5149 /* regs dump ABI info */
5150 int size = sizeof(u64);
5151
5152 perf_sample_regs_intr(&data->regs_intr, regs);
5153
5154 if (data->regs_intr.regs) {
5155 u64 mask = event->attr.sample_regs_intr;
5156
5157 size += hweight64(mask) * sizeof(u64);
5158 }
5159
5160 header->size += size;
5161 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005162}
5163
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005164static void perf_event_output(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005165 struct perf_sample_data *data,
5166 struct pt_regs *regs)
5167{
5168 struct perf_output_handle handle;
5169 struct perf_event_header header;
5170
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005171 /* protect the callchain buffers */
5172 rcu_read_lock();
5173
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005174 perf_prepare_sample(&header, data, event, regs);
5175
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005176 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005177 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005178
5179 perf_output_sample(&handle, &header, data, event);
5180
5181 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005182
5183exit:
5184 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005185}
5186
5187/*
5188 * read event_id
5189 */
5190
5191struct perf_read_event {
5192 struct perf_event_header header;
5193
5194 u32 pid;
5195 u32 tid;
5196};
5197
5198static void
5199perf_event_read_event(struct perf_event *event,
5200 struct task_struct *task)
5201{
5202 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005203 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005204 struct perf_read_event read_event = {
5205 .header = {
5206 .type = PERF_RECORD_READ,
5207 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005208 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005209 },
5210 .pid = perf_event_pid(event, task),
5211 .tid = perf_event_tid(event, task),
5212 };
5213 int ret;
5214
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005215 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005216 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005217 if (ret)
5218 return;
5219
5220 perf_output_put(&handle, read_event);
5221 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005222 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005223
5224 perf_output_end(&handle);
5225}
5226
Jiri Olsa52d857a2013-05-06 18:27:18 +02005227typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
5228
5229static void
5230perf_event_aux_ctx(struct perf_event_context *ctx,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005231 perf_event_aux_output_cb output,
5232 void *data)
5233{
5234 struct perf_event *event;
5235
5236 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5237 if (event->state < PERF_EVENT_STATE_INACTIVE)
5238 continue;
5239 if (!event_filter_match(event))
5240 continue;
Jiri Olsa67516842013-07-09 18:56:31 +02005241 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005242 }
5243}
5244
5245static void
Jiri Olsa67516842013-07-09 18:56:31 +02005246perf_event_aux(perf_event_aux_output_cb output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005247 struct perf_event_context *task_ctx)
5248{
5249 struct perf_cpu_context *cpuctx;
5250 struct perf_event_context *ctx;
5251 struct pmu *pmu;
5252 int ctxn;
5253
5254 rcu_read_lock();
5255 list_for_each_entry_rcu(pmu, &pmus, entry) {
5256 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
5257 if (cpuctx->unique_pmu != pmu)
5258 goto next;
Jiri Olsa67516842013-07-09 18:56:31 +02005259 perf_event_aux_ctx(&cpuctx->ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005260 if (task_ctx)
5261 goto next;
5262 ctxn = pmu->task_ctx_nr;
5263 if (ctxn < 0)
5264 goto next;
5265 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
5266 if (ctx)
Jiri Olsa67516842013-07-09 18:56:31 +02005267 perf_event_aux_ctx(ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005268next:
5269 put_cpu_ptr(pmu->pmu_cpu_context);
5270 }
5271
5272 if (task_ctx) {
5273 preempt_disable();
Jiri Olsa67516842013-07-09 18:56:31 +02005274 perf_event_aux_ctx(task_ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005275 preempt_enable();
5276 }
5277 rcu_read_unlock();
5278}
5279
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005280/*
5281 * task tracking -- fork/exit
5282 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02005283 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005284 */
5285
5286struct perf_task_event {
5287 struct task_struct *task;
5288 struct perf_event_context *task_ctx;
5289
5290 struct {
5291 struct perf_event_header header;
5292
5293 u32 pid;
5294 u32 ppid;
5295 u32 tid;
5296 u32 ptid;
5297 u64 time;
5298 } event_id;
5299};
5300
Jiri Olsa67516842013-07-09 18:56:31 +02005301static int perf_event_task_match(struct perf_event *event)
5302{
Stephane Eranian13d7a242013-08-21 12:10:24 +02005303 return event->attr.comm || event->attr.mmap ||
5304 event->attr.mmap2 || event->attr.mmap_data ||
5305 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02005306}
5307
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005308static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005309 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005310{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005311 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005312 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005313 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005314 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005315 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01005316
Jiri Olsa67516842013-07-09 18:56:31 +02005317 if (!perf_event_task_match(event))
5318 return;
5319
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005320 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005321
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005322 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005323 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02005324 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005325 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005326
5327 task_event->event_id.pid = perf_event_pid(event, task);
5328 task_event->event_id.ppid = perf_event_pid(event, current);
5329
5330 task_event->event_id.tid = perf_event_tid(event, task);
5331 task_event->event_id.ptid = perf_event_tid(event, current);
5332
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005333 perf_output_put(&handle, task_event->event_id);
5334
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005335 perf_event__output_id_sample(event, &handle, &sample);
5336
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005337 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005338out:
5339 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005340}
5341
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005342static void perf_event_task(struct task_struct *task,
5343 struct perf_event_context *task_ctx,
5344 int new)
5345{
5346 struct perf_task_event task_event;
5347
5348 if (!atomic_read(&nr_comm_events) &&
5349 !atomic_read(&nr_mmap_events) &&
5350 !atomic_read(&nr_task_events))
5351 return;
5352
5353 task_event = (struct perf_task_event){
5354 .task = task,
5355 .task_ctx = task_ctx,
5356 .event_id = {
5357 .header = {
5358 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
5359 .misc = 0,
5360 .size = sizeof(task_event.event_id),
5361 },
5362 /* .pid */
5363 /* .ppid */
5364 /* .tid */
5365 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01005366 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005367 },
5368 };
5369
Jiri Olsa67516842013-07-09 18:56:31 +02005370 perf_event_aux(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005371 &task_event,
5372 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005373}
5374
5375void perf_event_fork(struct task_struct *task)
5376{
5377 perf_event_task(task, NULL, 1);
5378}
5379
5380/*
5381 * comm tracking
5382 */
5383
5384struct perf_comm_event {
5385 struct task_struct *task;
5386 char *comm;
5387 int comm_size;
5388
5389 struct {
5390 struct perf_event_header header;
5391
5392 u32 pid;
5393 u32 tid;
5394 } event_id;
5395};
5396
Jiri Olsa67516842013-07-09 18:56:31 +02005397static int perf_event_comm_match(struct perf_event *event)
5398{
5399 return event->attr.comm;
5400}
5401
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005402static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005403 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005404{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005405 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005406 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005407 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005408 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005409 int ret;
5410
Jiri Olsa67516842013-07-09 18:56:31 +02005411 if (!perf_event_comm_match(event))
5412 return;
5413
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005414 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
5415 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005416 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005417
5418 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005419 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005420
5421 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
5422 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
5423
5424 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005425 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005426 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005427
5428 perf_event__output_id_sample(event, &handle, &sample);
5429
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005430 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005431out:
5432 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005433}
5434
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005435static void perf_event_comm_event(struct perf_comm_event *comm_event)
5436{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005437 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005438 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005439
5440 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01005441 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005442 size = ALIGN(strlen(comm)+1, sizeof(u64));
5443
5444 comm_event->comm = comm;
5445 comm_event->comm_size = size;
5446
5447 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02005448
Jiri Olsa67516842013-07-09 18:56:31 +02005449 perf_event_aux(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005450 comm_event,
5451 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005452}
5453
Adrian Hunter82b89772014-05-28 11:45:04 +03005454void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005455{
5456 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005457
5458 if (!atomic_read(&nr_comm_events))
5459 return;
5460
5461 comm_event = (struct perf_comm_event){
5462 .task = task,
5463 /* .comm */
5464 /* .comm_size */
5465 .event_id = {
5466 .header = {
5467 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03005468 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005469 /* .size */
5470 },
5471 /* .pid */
5472 /* .tid */
5473 },
5474 };
5475
5476 perf_event_comm_event(&comm_event);
5477}
5478
5479/*
5480 * mmap tracking
5481 */
5482
5483struct perf_mmap_event {
5484 struct vm_area_struct *vma;
5485
5486 const char *file_name;
5487 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005488 int maj, min;
5489 u64 ino;
5490 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005491 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005492
5493 struct {
5494 struct perf_event_header header;
5495
5496 u32 pid;
5497 u32 tid;
5498 u64 start;
5499 u64 len;
5500 u64 pgoff;
5501 } event_id;
5502};
5503
Jiri Olsa67516842013-07-09 18:56:31 +02005504static int perf_event_mmap_match(struct perf_event *event,
5505 void *data)
5506{
5507 struct perf_mmap_event *mmap_event = data;
5508 struct vm_area_struct *vma = mmap_event->vma;
5509 int executable = vma->vm_flags & VM_EXEC;
5510
5511 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02005512 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02005513}
5514
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005515static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005516 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005517{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005518 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005519 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005520 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005521 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005522 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005523
Jiri Olsa67516842013-07-09 18:56:31 +02005524 if (!perf_event_mmap_match(event, data))
5525 return;
5526
Stephane Eranian13d7a242013-08-21 12:10:24 +02005527 if (event->attr.mmap2) {
5528 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
5529 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
5530 mmap_event->event_id.header.size += sizeof(mmap_event->min);
5531 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03005532 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005533 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
5534 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005535 }
5536
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005537 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
5538 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005539 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005540 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005541 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005542
5543 mmap_event->event_id.pid = perf_event_pid(event, current);
5544 mmap_event->event_id.tid = perf_event_tid(event, current);
5545
5546 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005547
5548 if (event->attr.mmap2) {
5549 perf_output_put(&handle, mmap_event->maj);
5550 perf_output_put(&handle, mmap_event->min);
5551 perf_output_put(&handle, mmap_event->ino);
5552 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005553 perf_output_put(&handle, mmap_event->prot);
5554 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005555 }
5556
Frederic Weisbecker76369132011-05-19 19:55:04 +02005557 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005558 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005559
5560 perf_event__output_id_sample(event, &handle, &sample);
5561
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005562 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005563out:
5564 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005565}
5566
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005567static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
5568{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005569 struct vm_area_struct *vma = mmap_event->vma;
5570 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005571 int maj = 0, min = 0;
5572 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005573 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005574 unsigned int size;
5575 char tmp[16];
5576 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005577 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005578
5579 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02005580 struct inode *inode;
5581 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005582
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005583 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005584 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005585 name = "//enomem";
5586 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005587 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005588 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005589 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005590 * need to add enough zero bytes after the string to handle
5591 * the 64bit alignment we do later.
5592 */
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005593 name = d_path(&file->f_path, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005594 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005595 name = "//toolong";
5596 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005597 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02005598 inode = file_inode(vma->vm_file);
5599 dev = inode->i_sb->s_dev;
5600 ino = inode->i_ino;
5601 gen = inode->i_generation;
5602 maj = MAJOR(dev);
5603 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005604
5605 if (vma->vm_flags & VM_READ)
5606 prot |= PROT_READ;
5607 if (vma->vm_flags & VM_WRITE)
5608 prot |= PROT_WRITE;
5609 if (vma->vm_flags & VM_EXEC)
5610 prot |= PROT_EXEC;
5611
5612 if (vma->vm_flags & VM_MAYSHARE)
5613 flags = MAP_SHARED;
5614 else
5615 flags = MAP_PRIVATE;
5616
5617 if (vma->vm_flags & VM_DENYWRITE)
5618 flags |= MAP_DENYWRITE;
5619 if (vma->vm_flags & VM_MAYEXEC)
5620 flags |= MAP_EXECUTABLE;
5621 if (vma->vm_flags & VM_LOCKED)
5622 flags |= MAP_LOCKED;
5623 if (vma->vm_flags & VM_HUGETLB)
5624 flags |= MAP_HUGETLB;
5625
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005626 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005627 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02005628 if (vma->vm_ops && vma->vm_ops->name) {
5629 name = (char *) vma->vm_ops->name(vma);
5630 if (name)
5631 goto cpy_name;
5632 }
5633
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005634 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005635 if (name)
5636 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005637
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005638 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005639 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005640 name = "[heap]";
5641 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005642 }
5643 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005644 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005645 name = "[stack]";
5646 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005647 }
5648
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005649 name = "//anon";
5650 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005651 }
5652
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005653cpy_name:
5654 strlcpy(tmp, name, sizeof(tmp));
5655 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005656got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005657 /*
5658 * Since our buffer works in 8 byte units we need to align our string
5659 * size to a multiple of 8. However, we must guarantee the tail end is
5660 * zero'd out to avoid leaking random bits to userspace.
5661 */
5662 size = strlen(name)+1;
5663 while (!IS_ALIGNED(size, sizeof(u64)))
5664 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005665
5666 mmap_event->file_name = name;
5667 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005668 mmap_event->maj = maj;
5669 mmap_event->min = min;
5670 mmap_event->ino = ino;
5671 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005672 mmap_event->prot = prot;
5673 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005674
Stephane Eranian2fe85422013-01-24 16:10:39 +01005675 if (!(vma->vm_flags & VM_EXEC))
5676 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
5677
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005678 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
5679
Jiri Olsa67516842013-07-09 18:56:31 +02005680 perf_event_aux(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005681 mmap_event,
5682 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005683
5684 kfree(buf);
5685}
5686
Eric B Munson3af9e852010-05-18 15:30:49 +01005687void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005688{
5689 struct perf_mmap_event mmap_event;
5690
5691 if (!atomic_read(&nr_mmap_events))
5692 return;
5693
5694 mmap_event = (struct perf_mmap_event){
5695 .vma = vma,
5696 /* .file_name */
5697 /* .file_size */
5698 .event_id = {
5699 .header = {
5700 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005701 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005702 /* .size */
5703 },
5704 /* .pid */
5705 /* .tid */
5706 .start = vma->vm_start,
5707 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01005708 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005709 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02005710 /* .maj (attr_mmap2 only) */
5711 /* .min (attr_mmap2 only) */
5712 /* .ino (attr_mmap2 only) */
5713 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005714 /* .prot (attr_mmap2 only) */
5715 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005716 };
5717
5718 perf_event_mmap_event(&mmap_event);
5719}
5720
5721/*
5722 * IRQ throttle logging
5723 */
5724
5725static void perf_log_throttle(struct perf_event *event, int enable)
5726{
5727 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005728 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005729 int ret;
5730
5731 struct {
5732 struct perf_event_header header;
5733 u64 time;
5734 u64 id;
5735 u64 stream_id;
5736 } throttle_event = {
5737 .header = {
5738 .type = PERF_RECORD_THROTTLE,
5739 .misc = 0,
5740 .size = sizeof(throttle_event),
5741 },
5742 .time = perf_clock(),
5743 .id = primary_event_id(event),
5744 .stream_id = event->id,
5745 };
5746
5747 if (enable)
5748 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
5749
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005750 perf_event_header__init_id(&throttle_event.header, &sample, event);
5751
5752 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005753 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005754 if (ret)
5755 return;
5756
5757 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005758 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005759 perf_output_end(&handle);
5760}
5761
5762/*
5763 * Generic event overflow handling, sampling.
5764 */
5765
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005766static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005767 int throttle, struct perf_sample_data *data,
5768 struct pt_regs *regs)
5769{
5770 int events = atomic_read(&event->event_limit);
5771 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005772 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005773 int ret = 0;
5774
Peter Zijlstra96398822010-11-24 18:55:29 +01005775 /*
5776 * Non-sampling counters might still use the PMI to fold short
5777 * hardware counters, ignore those.
5778 */
5779 if (unlikely(!is_sampling_event(event)))
5780 return 0;
5781
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005782 seq = __this_cpu_read(perf_throttled_seq);
5783 if (seq != hwc->interrupts_seq) {
5784 hwc->interrupts_seq = seq;
5785 hwc->interrupts = 1;
5786 } else {
5787 hwc->interrupts++;
5788 if (unlikely(throttle
5789 && hwc->interrupts >= max_samples_per_tick)) {
5790 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01005791 hwc->interrupts = MAX_INTERRUPTS;
5792 perf_log_throttle(event, 0);
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02005793 tick_nohz_full_kick();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005794 ret = 1;
5795 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005796 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005797
5798 if (event->attr.freq) {
5799 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01005800 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005801
Peter Zijlstraabd50712010-01-26 18:50:16 +01005802 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005803
Peter Zijlstraabd50712010-01-26 18:50:16 +01005804 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01005805 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005806 }
5807
5808 /*
5809 * XXX event_limit might not quite work as expected on inherited
5810 * events
5811 */
5812
5813 event->pending_kill = POLL_IN;
5814 if (events && atomic_dec_and_test(&event->event_limit)) {
5815 ret = 1;
5816 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005817 event->pending_disable = 1;
5818 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005819 }
5820
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005821 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005822 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005823 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005824 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005825
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005826 if (event->fasync && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005827 event->pending_wakeup = 1;
5828 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005829 }
5830
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005831 return ret;
5832}
5833
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005834int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005835 struct perf_sample_data *data,
5836 struct pt_regs *regs)
5837{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005838 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005839}
5840
5841/*
5842 * Generic software event infrastructure
5843 */
5844
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005845struct swevent_htable {
5846 struct swevent_hlist *swevent_hlist;
5847 struct mutex hlist_mutex;
5848 int hlist_refcount;
5849
5850 /* Recursion avoidance in each contexts */
5851 int recursion[PERF_NR_CONTEXTS];
Jiri Olsa39af6b12014-04-07 11:04:08 +02005852
5853 /* Keeps track of cpu being initialized/exited */
5854 bool online;
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005855};
5856
5857static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
5858
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005859/*
5860 * We directly increment event->count and keep a second value in
5861 * event->hw.period_left to count intervals. This period event
5862 * is kept in the range [-sample_period, 0] so that we can use the
5863 * sign as trigger.
5864 */
5865
Jiri Olsaab573842013-05-01 17:25:44 +02005866u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005867{
5868 struct hw_perf_event *hwc = &event->hw;
5869 u64 period = hwc->last_period;
5870 u64 nr, offset;
5871 s64 old, val;
5872
5873 hwc->last_period = hwc->sample_period;
5874
5875again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02005876 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005877 if (val < 0)
5878 return 0;
5879
5880 nr = div64_u64(period + val, period);
5881 offset = nr * period;
5882 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02005883 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005884 goto again;
5885
5886 return nr;
5887}
5888
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005889static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005890 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005891 struct pt_regs *regs)
5892{
5893 struct hw_perf_event *hwc = &event->hw;
5894 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005895
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005896 if (!overflow)
5897 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005898
5899 if (hwc->interrupts == MAX_INTERRUPTS)
5900 return;
5901
5902 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005903 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005904 data, regs)) {
5905 /*
5906 * We inhibit the overflow from happening when
5907 * hwc->interrupts == MAX_INTERRUPTS.
5908 */
5909 break;
5910 }
5911 throttle = 1;
5912 }
5913}
5914
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005915static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005916 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005917 struct pt_regs *regs)
5918{
5919 struct hw_perf_event *hwc = &event->hw;
5920
Peter Zijlstrae7850592010-05-21 14:43:08 +02005921 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005922
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005923 if (!regs)
5924 return;
5925
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005926 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005927 return;
5928
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03005929 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
5930 data->period = nr;
5931 return perf_swevent_overflow(event, 1, data, regs);
5932 } else
5933 data->period = event->hw.last_period;
5934
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005935 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005936 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005937
Peter Zijlstrae7850592010-05-21 14:43:08 +02005938 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005939 return;
5940
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005941 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005942}
5943
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005944static int perf_exclude_event(struct perf_event *event,
5945 struct pt_regs *regs)
5946{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005947 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01005948 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005949
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005950 if (regs) {
5951 if (event->attr.exclude_user && user_mode(regs))
5952 return 1;
5953
5954 if (event->attr.exclude_kernel && !user_mode(regs))
5955 return 1;
5956 }
5957
5958 return 0;
5959}
5960
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005961static int perf_swevent_match(struct perf_event *event,
5962 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08005963 u32 event_id,
5964 struct perf_sample_data *data,
5965 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005966{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005967 if (event->attr.type != type)
5968 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005969
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005970 if (event->attr.config != event_id)
5971 return 0;
5972
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005973 if (perf_exclude_event(event, regs))
5974 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005975
5976 return 1;
5977}
5978
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005979static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005980{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005981 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005982
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005983 return hash_64(val, SWEVENT_HLIST_BITS);
5984}
5985
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005986static inline struct hlist_head *
5987__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005988{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005989 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005990
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005991 return &hlist->heads[hash];
5992}
5993
5994/* For the read side: events when they trigger */
5995static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005996find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005997{
5998 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005999
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006000 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006001 if (!hlist)
6002 return NULL;
6003
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006004 return __find_swevent_head(hlist, type, event_id);
6005}
6006
6007/* For the event head insertion and removal in the hlist */
6008static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006009find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006010{
6011 struct swevent_hlist *hlist;
6012 u32 event_id = event->attr.config;
6013 u64 type = event->attr.type;
6014
6015 /*
6016 * Event scheduling is always serialized against hlist allocation
6017 * and release. Which makes the protected version suitable here.
6018 * The context lock guarantees that.
6019 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006020 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006021 lockdep_is_held(&event->ctx->lock));
6022 if (!hlist)
6023 return NULL;
6024
6025 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006026}
6027
6028static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006029 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006030 struct perf_sample_data *data,
6031 struct pt_regs *regs)
6032{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006033 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006034 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006035 struct hlist_head *head;
6036
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006037 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006038 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006039 if (!head)
6040 goto end;
6041
Sasha Levinb67bfe02013-02-27 17:06:00 -08006042 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08006043 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006044 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006045 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006046end:
6047 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006048}
6049
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006050DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
6051
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006052int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006053{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006054 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006055
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006056 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006057}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01006058EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006059
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01006060inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006061{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006062 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006063
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006064 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006065}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006066
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006067void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006068{
Ingo Molnara4234bf2009-11-23 10:57:59 +01006069 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006070
6071 if (WARN_ON_ONCE(!regs))
6072 return;
6073
6074 perf_sample_data_init(&data, addr, 0);
6075 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
6076}
6077
6078void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
6079{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006080 int rctx;
6081
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006082 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006083 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006084 if (unlikely(rctx < 0))
6085 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006086
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006087 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006088
6089 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006090fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006091 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006092}
6093
6094static void perf_swevent_read(struct perf_event *event)
6095{
6096}
6097
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006098static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006099{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006100 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006101 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006102 struct hlist_head *head;
6103
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006104 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006105 hwc->last_period = hwc->sample_period;
6106 perf_swevent_set_period(event);
6107 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006108
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006109 hwc->state = !(flags & PERF_EF_START);
6110
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006111 head = find_swevent_head(swhash, event);
Jiri Olsa39af6b12014-04-07 11:04:08 +02006112 if (!head) {
6113 /*
6114 * We can race with cpu hotplug code. Do not
6115 * WARN if the cpu just got unplugged.
6116 */
6117 WARN_ON_ONCE(swhash->online);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006118 return -EINVAL;
Jiri Olsa39af6b12014-04-07 11:04:08 +02006119 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006120
6121 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08006122 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006123
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006124 return 0;
6125}
6126
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006127static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006128{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006129 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006130}
6131
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006132static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006133{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006134 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006135}
6136
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006137static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006138{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006139 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006140}
6141
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006142/* Deref the hlist from the update side */
6143static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006144swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006145{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006146 return rcu_dereference_protected(swhash->swevent_hlist,
6147 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006148}
6149
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006150static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006151{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006152 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006153
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006154 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006155 return;
6156
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03006157 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08006158 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006159}
6160
6161static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
6162{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006163 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006164
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006165 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006166
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006167 if (!--swhash->hlist_refcount)
6168 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006169
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006170 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006171}
6172
6173static void swevent_hlist_put(struct perf_event *event)
6174{
6175 int cpu;
6176
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006177 for_each_possible_cpu(cpu)
6178 swevent_hlist_put_cpu(event, cpu);
6179}
6180
6181static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
6182{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006183 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006184 int err = 0;
6185
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006186 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006187
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006188 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006189 struct swevent_hlist *hlist;
6190
6191 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
6192 if (!hlist) {
6193 err = -ENOMEM;
6194 goto exit;
6195 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006196 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006197 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006198 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006199exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006200 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006201
6202 return err;
6203}
6204
6205static int swevent_hlist_get(struct perf_event *event)
6206{
6207 int err;
6208 int cpu, failed_cpu;
6209
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006210 get_online_cpus();
6211 for_each_possible_cpu(cpu) {
6212 err = swevent_hlist_get_cpu(event, cpu);
6213 if (err) {
6214 failed_cpu = cpu;
6215 goto fail;
6216 }
6217 }
6218 put_online_cpus();
6219
6220 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006221fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006222 for_each_possible_cpu(cpu) {
6223 if (cpu == failed_cpu)
6224 break;
6225 swevent_hlist_put_cpu(event, cpu);
6226 }
6227
6228 put_online_cpus();
6229 return err;
6230}
6231
Ingo Molnarc5905af2012-02-24 08:31:31 +01006232struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006233
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006234static void sw_perf_event_destroy(struct perf_event *event)
6235{
6236 u64 event_id = event->attr.config;
6237
6238 WARN_ON(event->parent);
6239
Ingo Molnarc5905af2012-02-24 08:31:31 +01006240 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006241 swevent_hlist_put(event);
6242}
6243
6244static int perf_swevent_init(struct perf_event *event)
6245{
Tommi Rantala8176cce2013-04-13 22:49:14 +03006246 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006247
6248 if (event->attr.type != PERF_TYPE_SOFTWARE)
6249 return -ENOENT;
6250
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006251 /*
6252 * no branch sampling for software events
6253 */
6254 if (has_branch_stack(event))
6255 return -EOPNOTSUPP;
6256
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006257 switch (event_id) {
6258 case PERF_COUNT_SW_CPU_CLOCK:
6259 case PERF_COUNT_SW_TASK_CLOCK:
6260 return -ENOENT;
6261
6262 default:
6263 break;
6264 }
6265
Dan Carpenterce677832010-10-24 21:50:42 +02006266 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006267 return -ENOENT;
6268
6269 if (!event->parent) {
6270 int err;
6271
6272 err = swevent_hlist_get(event);
6273 if (err)
6274 return err;
6275
Ingo Molnarc5905af2012-02-24 08:31:31 +01006276 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006277 event->destroy = sw_perf_event_destroy;
6278 }
6279
6280 return 0;
6281}
6282
6283static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006284 .task_ctx_nr = perf_sw_context,
6285
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006286 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006287 .add = perf_swevent_add,
6288 .del = perf_swevent_del,
6289 .start = perf_swevent_start,
6290 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006291 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006292};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006293
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006294#ifdef CONFIG_EVENT_TRACING
6295
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006296static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006297 struct perf_sample_data *data)
6298{
6299 void *record = data->raw->data;
6300
6301 if (likely(!event->filter) || filter_match_preds(event->filter, record))
6302 return 1;
6303 return 0;
6304}
6305
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006306static int perf_tp_event_match(struct perf_event *event,
6307 struct perf_sample_data *data,
6308 struct pt_regs *regs)
6309{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01006310 if (event->hw.state & PERF_HES_STOPPED)
6311 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02006312 /*
6313 * All tracepoints are from kernel-space.
6314 */
6315 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006316 return 0;
6317
6318 if (!perf_tp_filter_match(event, data))
6319 return 0;
6320
6321 return 1;
6322}
6323
6324void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006325 struct pt_regs *regs, struct hlist_head *head, int rctx,
6326 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006327{
6328 struct perf_sample_data data;
6329 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006330
6331 struct perf_raw_record raw = {
6332 .size = entry_size,
6333 .data = record,
6334 };
6335
Robert Richterfd0d0002012-04-02 20:19:08 +02006336 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006337 data.raw = &raw;
6338
Sasha Levinb67bfe02013-02-27 17:06:00 -08006339 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006340 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006341 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006342 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006343
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006344 /*
6345 * If we got specified a target task, also iterate its context and
6346 * deliver this event there too.
6347 */
6348 if (task && task != current) {
6349 struct perf_event_context *ctx;
6350 struct trace_entry *entry = record;
6351
6352 rcu_read_lock();
6353 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
6354 if (!ctx)
6355 goto unlock;
6356
6357 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
6358 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6359 continue;
6360 if (event->attr.config != entry->type)
6361 continue;
6362 if (perf_tp_event_match(event, &data, regs))
6363 perf_swevent_event(event, count, &data, regs);
6364 }
6365unlock:
6366 rcu_read_unlock();
6367 }
6368
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006369 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006370}
6371EXPORT_SYMBOL_GPL(perf_tp_event);
6372
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006373static void tp_perf_event_destroy(struct perf_event *event)
6374{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006375 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006376}
6377
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006378static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006379{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006380 int err;
6381
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006382 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6383 return -ENOENT;
6384
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006385 /*
6386 * no branch sampling for tracepoint events
6387 */
6388 if (has_branch_stack(event))
6389 return -EOPNOTSUPP;
6390
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006391 err = perf_trace_init(event);
6392 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006393 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006394
6395 event->destroy = tp_perf_event_destroy;
6396
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006397 return 0;
6398}
6399
6400static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006401 .task_ctx_nr = perf_sw_context,
6402
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006403 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006404 .add = perf_trace_add,
6405 .del = perf_trace_del,
6406 .start = perf_swevent_start,
6407 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006408 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006409};
6410
6411static inline void perf_tp_register(void)
6412{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006413 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006414}
Li Zefan6fb29152009-10-15 11:21:42 +08006415
6416static int perf_event_set_filter(struct perf_event *event, void __user *arg)
6417{
6418 char *filter_str;
6419 int ret;
6420
6421 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6422 return -EINVAL;
6423
6424 filter_str = strndup_user(arg, PAGE_SIZE);
6425 if (IS_ERR(filter_str))
6426 return PTR_ERR(filter_str);
6427
6428 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
6429
6430 kfree(filter_str);
6431 return ret;
6432}
6433
6434static void perf_event_free_filter(struct perf_event *event)
6435{
6436 ftrace_profile_free_filter(event);
6437}
6438
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006439#else
Li Zefan6fb29152009-10-15 11:21:42 +08006440
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006441static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006442{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006443}
Li Zefan6fb29152009-10-15 11:21:42 +08006444
6445static int perf_event_set_filter(struct perf_event *event, void __user *arg)
6446{
6447 return -ENOENT;
6448}
6449
6450static void perf_event_free_filter(struct perf_event *event)
6451{
6452}
6453
Li Zefan07b139c2009-12-21 14:27:35 +08006454#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006455
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006456#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006457void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006458{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006459 struct perf_sample_data sample;
6460 struct pt_regs *regs = data;
6461
Robert Richterfd0d0002012-04-02 20:19:08 +02006462 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006463
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006464 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006465 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006466}
6467#endif
6468
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006469/*
6470 * hrtimer based swevent callback
6471 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006472
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006473static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006474{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006475 enum hrtimer_restart ret = HRTIMER_RESTART;
6476 struct perf_sample_data data;
6477 struct pt_regs *regs;
6478 struct perf_event *event;
6479 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006480
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006481 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006482
6483 if (event->state != PERF_EVENT_STATE_ACTIVE)
6484 return HRTIMER_NORESTART;
6485
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006486 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006487
Robert Richterfd0d0002012-04-02 20:19:08 +02006488 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006489 regs = get_irq_regs();
6490
6491 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08006492 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02006493 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006494 ret = HRTIMER_NORESTART;
6495 }
6496
6497 period = max_t(u64, 10000, event->hw.sample_period);
6498 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
6499
6500 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006501}
6502
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006503static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006504{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006505 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006506 s64 period;
6507
6508 if (!is_sampling_event(event))
6509 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006510
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006511 period = local64_read(&hwc->period_left);
6512 if (period) {
6513 if (period < 0)
6514 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02006515
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006516 local64_set(&hwc->period_left, 0);
6517 } else {
6518 period = max_t(u64, 10000, hwc->sample_period);
6519 }
6520 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006521 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02006522 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006523}
6524
6525static void perf_swevent_cancel_hrtimer(struct perf_event *event)
6526{
6527 struct hw_perf_event *hwc = &event->hw;
6528
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006529 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006530 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02006531 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006532
6533 hrtimer_cancel(&hwc->hrtimer);
6534 }
6535}
6536
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006537static void perf_swevent_init_hrtimer(struct perf_event *event)
6538{
6539 struct hw_perf_event *hwc = &event->hw;
6540
6541 if (!is_sampling_event(event))
6542 return;
6543
6544 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
6545 hwc->hrtimer.function = perf_swevent_hrtimer;
6546
6547 /*
6548 * Since hrtimers have a fixed rate, we can do a static freq->period
6549 * mapping and avoid the whole period adjust feedback stuff.
6550 */
6551 if (event->attr.freq) {
6552 long freq = event->attr.sample_freq;
6553
6554 event->attr.sample_period = NSEC_PER_SEC / freq;
6555 hwc->sample_period = event->attr.sample_period;
6556 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09006557 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006558 event->attr.freq = 0;
6559 }
6560}
6561
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006562/*
6563 * Software event: cpu wall time clock
6564 */
6565
6566static void cpu_clock_event_update(struct perf_event *event)
6567{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006568 s64 prev;
6569 u64 now;
6570
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006571 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006572 prev = local64_xchg(&event->hw.prev_count, now);
6573 local64_add(now - prev, &event->count);
6574}
6575
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006576static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006577{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006578 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006579 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006580}
6581
6582static void cpu_clock_event_stop(struct perf_event *event, int flags)
6583{
6584 perf_swevent_cancel_hrtimer(event);
6585 cpu_clock_event_update(event);
6586}
6587
6588static int cpu_clock_event_add(struct perf_event *event, int flags)
6589{
6590 if (flags & PERF_EF_START)
6591 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08006592 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006593
6594 return 0;
6595}
6596
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006597static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006598{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006599 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006600}
6601
6602static void cpu_clock_event_read(struct perf_event *event)
6603{
6604 cpu_clock_event_update(event);
6605}
6606
6607static int cpu_clock_event_init(struct perf_event *event)
6608{
6609 if (event->attr.type != PERF_TYPE_SOFTWARE)
6610 return -ENOENT;
6611
6612 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
6613 return -ENOENT;
6614
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006615 /*
6616 * no branch sampling for software events
6617 */
6618 if (has_branch_stack(event))
6619 return -EOPNOTSUPP;
6620
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006621 perf_swevent_init_hrtimer(event);
6622
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006623 return 0;
6624}
6625
6626static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006627 .task_ctx_nr = perf_sw_context,
6628
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006629 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006630 .add = cpu_clock_event_add,
6631 .del = cpu_clock_event_del,
6632 .start = cpu_clock_event_start,
6633 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006634 .read = cpu_clock_event_read,
6635};
6636
6637/*
6638 * Software event: task time clock
6639 */
6640
6641static void task_clock_event_update(struct perf_event *event, u64 now)
6642{
6643 u64 prev;
6644 s64 delta;
6645
6646 prev = local64_xchg(&event->hw.prev_count, now);
6647 delta = now - prev;
6648 local64_add(delta, &event->count);
6649}
6650
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006651static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006652{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006653 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006654 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006655}
6656
6657static void task_clock_event_stop(struct perf_event *event, int flags)
6658{
6659 perf_swevent_cancel_hrtimer(event);
6660 task_clock_event_update(event, event->ctx->time);
6661}
6662
6663static int task_clock_event_add(struct perf_event *event, int flags)
6664{
6665 if (flags & PERF_EF_START)
6666 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08006667 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006668
6669 return 0;
6670}
6671
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006672static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006673{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006674 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006675}
6676
6677static void task_clock_event_read(struct perf_event *event)
6678{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01006679 u64 now = perf_clock();
6680 u64 delta = now - event->ctx->timestamp;
6681 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006682
6683 task_clock_event_update(event, time);
6684}
6685
6686static int task_clock_event_init(struct perf_event *event)
6687{
6688 if (event->attr.type != PERF_TYPE_SOFTWARE)
6689 return -ENOENT;
6690
6691 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
6692 return -ENOENT;
6693
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006694 /*
6695 * no branch sampling for software events
6696 */
6697 if (has_branch_stack(event))
6698 return -EOPNOTSUPP;
6699
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006700 perf_swevent_init_hrtimer(event);
6701
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006702 return 0;
6703}
6704
6705static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006706 .task_ctx_nr = perf_sw_context,
6707
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006708 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006709 .add = task_clock_event_add,
6710 .del = task_clock_event_del,
6711 .start = task_clock_event_start,
6712 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006713 .read = task_clock_event_read,
6714};
6715
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006716static void perf_pmu_nop_void(struct pmu *pmu)
6717{
6718}
6719
6720static int perf_pmu_nop_int(struct pmu *pmu)
6721{
6722 return 0;
6723}
6724
6725static void perf_pmu_start_txn(struct pmu *pmu)
6726{
6727 perf_pmu_disable(pmu);
6728}
6729
6730static int perf_pmu_commit_txn(struct pmu *pmu)
6731{
6732 perf_pmu_enable(pmu);
6733 return 0;
6734}
6735
6736static void perf_pmu_cancel_txn(struct pmu *pmu)
6737{
6738 perf_pmu_enable(pmu);
6739}
6740
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006741static int perf_event_idx_default(struct perf_event *event)
6742{
Peter Zijlstrac719f562014-10-21 11:10:21 +02006743 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006744}
6745
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006746/*
6747 * Ensures all contexts with the same task_ctx_nr have the same
6748 * pmu_cpu_context too.
6749 */
Mark Rutland9e317042014-02-10 17:44:18 +00006750static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006751{
6752 struct pmu *pmu;
6753
6754 if (ctxn < 0)
6755 return NULL;
6756
6757 list_for_each_entry(pmu, &pmus, entry) {
6758 if (pmu->task_ctx_nr == ctxn)
6759 return pmu->pmu_cpu_context;
6760 }
6761
6762 return NULL;
6763}
6764
Peter Zijlstra51676952010-12-07 14:18:20 +01006765static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006766{
Peter Zijlstra51676952010-12-07 14:18:20 +01006767 int cpu;
6768
6769 for_each_possible_cpu(cpu) {
6770 struct perf_cpu_context *cpuctx;
6771
6772 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6773
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006774 if (cpuctx->unique_pmu == old_pmu)
6775 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01006776 }
6777}
6778
6779static void free_pmu_context(struct pmu *pmu)
6780{
6781 struct pmu *i;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006782
6783 mutex_lock(&pmus_lock);
6784 /*
6785 * Like a real lame refcount.
6786 */
Peter Zijlstra51676952010-12-07 14:18:20 +01006787 list_for_each_entry(i, &pmus, entry) {
6788 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
6789 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006790 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01006791 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006792 }
6793
Peter Zijlstra51676952010-12-07 14:18:20 +01006794 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006795out:
6796 mutex_unlock(&pmus_lock);
6797}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006798static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006799
Peter Zijlstraabe43402010-11-17 23:17:37 +01006800static ssize_t
6801type_show(struct device *dev, struct device_attribute *attr, char *page)
6802{
6803 struct pmu *pmu = dev_get_drvdata(dev);
6804
6805 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
6806}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006807static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006808
Stephane Eranian62b85632013-04-03 14:21:34 +02006809static ssize_t
6810perf_event_mux_interval_ms_show(struct device *dev,
6811 struct device_attribute *attr,
6812 char *page)
6813{
6814 struct pmu *pmu = dev_get_drvdata(dev);
6815
6816 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
6817}
6818
6819static ssize_t
6820perf_event_mux_interval_ms_store(struct device *dev,
6821 struct device_attribute *attr,
6822 const char *buf, size_t count)
6823{
6824 struct pmu *pmu = dev_get_drvdata(dev);
6825 int timer, cpu, ret;
6826
6827 ret = kstrtoint(buf, 0, &timer);
6828 if (ret)
6829 return ret;
6830
6831 if (timer < 1)
6832 return -EINVAL;
6833
6834 /* same value, noting to do */
6835 if (timer == pmu->hrtimer_interval_ms)
6836 return count;
6837
6838 pmu->hrtimer_interval_ms = timer;
6839
6840 /* update all cpuctx for this PMU */
6841 for_each_possible_cpu(cpu) {
6842 struct perf_cpu_context *cpuctx;
6843 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6844 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
6845
6846 if (hrtimer_active(&cpuctx->hrtimer))
6847 hrtimer_forward_now(&cpuctx->hrtimer, cpuctx->hrtimer_interval);
6848 }
6849
6850 return count;
6851}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006852static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02006853
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006854static struct attribute *pmu_dev_attrs[] = {
6855 &dev_attr_type.attr,
6856 &dev_attr_perf_event_mux_interval_ms.attr,
6857 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01006858};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006859ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006860
6861static int pmu_bus_running;
6862static struct bus_type pmu_bus = {
6863 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006864 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01006865};
6866
6867static void pmu_dev_release(struct device *dev)
6868{
6869 kfree(dev);
6870}
6871
6872static int pmu_dev_alloc(struct pmu *pmu)
6873{
6874 int ret = -ENOMEM;
6875
6876 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
6877 if (!pmu->dev)
6878 goto out;
6879
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01006880 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01006881 device_initialize(pmu->dev);
6882 ret = dev_set_name(pmu->dev, "%s", pmu->name);
6883 if (ret)
6884 goto free_dev;
6885
6886 dev_set_drvdata(pmu->dev, pmu);
6887 pmu->dev->bus = &pmu_bus;
6888 pmu->dev->release = pmu_dev_release;
6889 ret = device_add(pmu->dev);
6890 if (ret)
6891 goto free_dev;
6892
6893out:
6894 return ret;
6895
6896free_dev:
6897 put_device(pmu->dev);
6898 goto out;
6899}
6900
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006901static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006902static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006903
Mischa Jonker03d8e802013-06-04 11:45:48 +02006904int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006905{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006906 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006907
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006908 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006909 ret = -ENOMEM;
6910 pmu->pmu_disable_count = alloc_percpu(int);
6911 if (!pmu->pmu_disable_count)
6912 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006913
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006914 pmu->type = -1;
6915 if (!name)
6916 goto skip_type;
6917 pmu->name = name;
6918
6919 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08006920 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
6921 if (type < 0) {
6922 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006923 goto free_pdc;
6924 }
6925 }
6926 pmu->type = type;
6927
Peter Zijlstraabe43402010-11-17 23:17:37 +01006928 if (pmu_bus_running) {
6929 ret = pmu_dev_alloc(pmu);
6930 if (ret)
6931 goto free_idr;
6932 }
6933
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006934skip_type:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006935 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
6936 if (pmu->pmu_cpu_context)
6937 goto got_cpu_context;
6938
Wei Yongjunc4814202013-04-12 11:05:54 +08006939 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006940 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
6941 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01006942 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006943
6944 for_each_possible_cpu(cpu) {
6945 struct perf_cpu_context *cpuctx;
6946
6947 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02006948 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006949 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006950 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006951 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02006952
6953 __perf_cpu_hrtimer_init(cpuctx, cpu);
6954
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006955 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006956 }
6957
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006958got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006959 if (!pmu->start_txn) {
6960 if (pmu->pmu_enable) {
6961 /*
6962 * If we have pmu_enable/pmu_disable calls, install
6963 * transaction stubs that use that to try and batch
6964 * hardware accesses.
6965 */
6966 pmu->start_txn = perf_pmu_start_txn;
6967 pmu->commit_txn = perf_pmu_commit_txn;
6968 pmu->cancel_txn = perf_pmu_cancel_txn;
6969 } else {
6970 pmu->start_txn = perf_pmu_nop_void;
6971 pmu->commit_txn = perf_pmu_nop_int;
6972 pmu->cancel_txn = perf_pmu_nop_void;
6973 }
6974 }
6975
6976 if (!pmu->pmu_enable) {
6977 pmu->pmu_enable = perf_pmu_nop_void;
6978 pmu->pmu_disable = perf_pmu_nop_void;
6979 }
6980
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006981 if (!pmu->event_idx)
6982 pmu->event_idx = perf_event_idx_default;
6983
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006984 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006985 ret = 0;
6986unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006987 mutex_unlock(&pmus_lock);
6988
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006989 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006990
Peter Zijlstraabe43402010-11-17 23:17:37 +01006991free_dev:
6992 device_del(pmu->dev);
6993 put_device(pmu->dev);
6994
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006995free_idr:
6996 if (pmu->type >= PERF_TYPE_MAX)
6997 idr_remove(&pmu_idr, pmu->type);
6998
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006999free_pdc:
7000 free_percpu(pmu->pmu_disable_count);
7001 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007002}
Yan, Zhengc464c762014-03-18 16:56:41 +08007003EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007004
7005void perf_pmu_unregister(struct pmu *pmu)
7006{
7007 mutex_lock(&pmus_lock);
7008 list_del_rcu(&pmu->entry);
7009 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007010
7011 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02007012 * We dereference the pmu list under both SRCU and regular RCU, so
7013 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007014 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007015 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02007016 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007017
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007018 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007019 if (pmu->type >= PERF_TYPE_MAX)
7020 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007021 device_del(pmu->dev);
7022 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01007023 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007024}
Yan, Zhengc464c762014-03-18 16:56:41 +08007025EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007026
Mark Rutlandcc34b982015-01-07 14:56:51 +00007027static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
7028{
7029 int ret;
7030
7031 if (!try_module_get(pmu->module))
7032 return -ENODEV;
7033 event->pmu = pmu;
7034 ret = pmu->event_init(event);
7035 if (ret)
7036 module_put(pmu->module);
7037
7038 return ret;
7039}
7040
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007041struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007042{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007043 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007044 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08007045 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007046
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007047 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007048
7049 rcu_read_lock();
7050 pmu = idr_find(&pmu_idr, event->attr.type);
7051 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08007052 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007053 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08007054 if (ret)
7055 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007056 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08007057 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007058
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007059 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007060 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007061 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007062 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007063
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007064 if (ret != -ENOENT) {
7065 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007066 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007067 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007068 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007069 pmu = ERR_PTR(-ENOENT);
7070unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007071 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007072
7073 return pmu;
7074}
7075
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007076static void account_event_cpu(struct perf_event *event, int cpu)
7077{
7078 if (event->parent)
7079 return;
7080
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007081 if (is_cgroup_event(event))
7082 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
7083}
7084
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007085static void account_event(struct perf_event *event)
7086{
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007087 if (event->parent)
7088 return;
7089
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007090 if (event->attach_state & PERF_ATTACH_TASK)
7091 static_key_slow_inc(&perf_sched_events.key);
7092 if (event->attr.mmap || event->attr.mmap_data)
7093 atomic_inc(&nr_mmap_events);
7094 if (event->attr.comm)
7095 atomic_inc(&nr_comm_events);
7096 if (event->attr.task)
7097 atomic_inc(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02007098 if (event->attr.freq) {
7099 if (atomic_inc_return(&nr_freq_events) == 1)
7100 tick_nohz_full_kick_all();
7101 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007102 if (has_branch_stack(event))
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007103 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007104 if (is_cgroup_event(event))
7105 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007106
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007107 account_event_cpu(event, event->cpu);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007108}
7109
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007110/*
7111 * Allocate and initialize a event structure
7112 */
7113static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007114perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007115 struct task_struct *task,
7116 struct perf_event *group_leader,
7117 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007118 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00007119 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007120{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007121 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007122 struct perf_event *event;
7123 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007124 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007125
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007126 if ((unsigned)cpu >= nr_cpu_ids) {
7127 if (!task || cpu != -1)
7128 return ERR_PTR(-EINVAL);
7129 }
7130
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007131 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007132 if (!event)
7133 return ERR_PTR(-ENOMEM);
7134
7135 /*
7136 * Single events are their own group leaders, with an
7137 * empty sibling list:
7138 */
7139 if (!group_leader)
7140 group_leader = event;
7141
7142 mutex_init(&event->child_mutex);
7143 INIT_LIST_HEAD(&event->child_list);
7144
7145 INIT_LIST_HEAD(&event->group_entry);
7146 INIT_LIST_HEAD(&event->event_entry);
7147 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007148 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01007149 INIT_LIST_HEAD(&event->active_entry);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01007150 INIT_HLIST_NODE(&event->hlist_entry);
7151
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007152
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007153 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08007154 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007155
7156 mutex_init(&event->mmap_mutex);
7157
Al Viroa6fa9412012-08-20 14:59:25 +01007158 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007159 event->cpu = cpu;
7160 event->attr = *attr;
7161 event->group_leader = group_leader;
7162 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007163 event->oncpu = -1;
7164
7165 event->parent = parent_event;
7166
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08007167 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007168 event->id = atomic64_inc_return(&perf_event_id);
7169
7170 event->state = PERF_EVENT_STATE_INACTIVE;
7171
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007172 if (task) {
7173 event->attach_state = PERF_ATTACH_TASK;
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01007174
7175 if (attr->type == PERF_TYPE_TRACEPOINT)
7176 event->hw.tp_target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007177#ifdef CONFIG_HAVE_HW_BREAKPOINT
7178 /*
7179 * hw_breakpoint is a bit difficult here..
7180 */
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01007181 else if (attr->type == PERF_TYPE_BREAKPOINT)
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007182 event->hw.bp_target = task;
7183#endif
7184 }
7185
Avi Kivity4dc0da82011-06-29 18:42:35 +03007186 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007187 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007188 context = parent_event->overflow_handler_context;
7189 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007190
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007191 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007192 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02007193
Jiri Olsa0231bb52013-02-01 11:23:45 +01007194 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007195
7196 pmu = NULL;
7197
7198 hwc = &event->hw;
7199 hwc->sample_period = attr->sample_period;
7200 if (attr->freq && attr->sample_freq)
7201 hwc->sample_period = 1;
7202 hwc->last_period = hwc->sample_period;
7203
Peter Zijlstrae7850592010-05-21 14:43:08 +02007204 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007205
7206 /*
7207 * we currently do not support PERF_FORMAT_GROUP on inherited events
7208 */
7209 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007210 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007211
Yan, Zhenga46a2302014-11-04 21:56:06 -05007212 if (!has_branch_stack(event))
7213 event->attr.branch_sample_type = 0;
7214
Matt Fleming79dff512015-01-23 18:45:42 +00007215 if (cgroup_fd != -1) {
7216 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
7217 if (err)
7218 goto err_ns;
7219 }
7220
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007221 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007222 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007223 goto err_ns;
7224 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007225 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007226 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007227 }
7228
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007229 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007230 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
7231 err = get_callchain_buffers();
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007232 if (err)
7233 goto err_pmu;
Stephane Eraniand010b332012-02-09 23:21:00 +01007234 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007235 }
7236
7237 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007238
7239err_pmu:
7240 if (event->destroy)
7241 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08007242 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007243err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00007244 if (is_cgroup_event(event))
7245 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007246 if (event->ns)
7247 put_pid_ns(event->ns);
7248 kfree(event);
7249
7250 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007251}
7252
7253static int perf_copy_attr(struct perf_event_attr __user *uattr,
7254 struct perf_event_attr *attr)
7255{
7256 u32 size;
7257 int ret;
7258
7259 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
7260 return -EFAULT;
7261
7262 /*
7263 * zero the full structure, so that a short copy will be nice.
7264 */
7265 memset(attr, 0, sizeof(*attr));
7266
7267 ret = get_user(size, &uattr->size);
7268 if (ret)
7269 return ret;
7270
7271 if (size > PAGE_SIZE) /* silly large */
7272 goto err_size;
7273
7274 if (!size) /* abi compat */
7275 size = PERF_ATTR_SIZE_VER0;
7276
7277 if (size < PERF_ATTR_SIZE_VER0)
7278 goto err_size;
7279
7280 /*
7281 * If we're handed a bigger struct than we know of,
7282 * ensure all the unknown bits are 0 - i.e. new
7283 * user-space does not rely on any kernel feature
7284 * extensions we dont know about yet.
7285 */
7286 if (size > sizeof(*attr)) {
7287 unsigned char __user *addr;
7288 unsigned char __user *end;
7289 unsigned char val;
7290
7291 addr = (void __user *)uattr + sizeof(*attr);
7292 end = (void __user *)uattr + size;
7293
7294 for (; addr < end; addr++) {
7295 ret = get_user(val, addr);
7296 if (ret)
7297 return ret;
7298 if (val)
7299 goto err_size;
7300 }
7301 size = sizeof(*attr);
7302 }
7303
7304 ret = copy_from_user(attr, uattr, size);
7305 if (ret)
7306 return -EFAULT;
7307
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05307308 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007309 return -EINVAL;
7310
7311 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
7312 return -EINVAL;
7313
7314 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
7315 return -EINVAL;
7316
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007317 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
7318 u64 mask = attr->branch_sample_type;
7319
7320 /* only using defined bits */
7321 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
7322 return -EINVAL;
7323
7324 /* at least one branch bit must be set */
7325 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
7326 return -EINVAL;
7327
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007328 /* propagate priv level, when not set for branch */
7329 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
7330
7331 /* exclude_kernel checked on syscall entry */
7332 if (!attr->exclude_kernel)
7333 mask |= PERF_SAMPLE_BRANCH_KERNEL;
7334
7335 if (!attr->exclude_user)
7336 mask |= PERF_SAMPLE_BRANCH_USER;
7337
7338 if (!attr->exclude_hv)
7339 mask |= PERF_SAMPLE_BRANCH_HV;
7340 /*
7341 * adjust user setting (for HW filter setup)
7342 */
7343 attr->branch_sample_type = mask;
7344 }
Stephane Eraniane7122092013-06-06 11:02:04 +02007345 /* privileged levels capture (kernel, hv): check permissions */
7346 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02007347 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
7348 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007349 }
Jiri Olsa40189942012-08-07 15:20:37 +02007350
Jiri Olsac5ebced2012-08-07 15:20:40 +02007351 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02007352 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02007353 if (ret)
7354 return ret;
7355 }
7356
7357 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
7358 if (!arch_perf_have_user_stack_dump())
7359 return -ENOSYS;
7360
7361 /*
7362 * We have __u32 type for the size, but so far
7363 * we can only use __u16 as maximum due to the
7364 * __u16 sample size limit.
7365 */
7366 if (attr->sample_stack_user >= USHRT_MAX)
7367 ret = -EINVAL;
7368 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
7369 ret = -EINVAL;
7370 }
Jiri Olsa40189942012-08-07 15:20:37 +02007371
Stephane Eranian60e23642014-09-24 13:48:37 +02007372 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
7373 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007374out:
7375 return ret;
7376
7377err_size:
7378 put_user(sizeof(*attr), &uattr->size);
7379 ret = -E2BIG;
7380 goto out;
7381}
7382
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007383static int
7384perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007385{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01007386 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007387 int ret = -EINVAL;
7388
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007389 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007390 goto set;
7391
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007392 /* don't allow circular references */
7393 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007394 goto out;
7395
Peter Zijlstra0f139302010-05-20 14:35:15 +02007396 /*
7397 * Don't allow cross-cpu buffers
7398 */
7399 if (output_event->cpu != event->cpu)
7400 goto out;
7401
7402 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02007403 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02007404 */
7405 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
7406 goto out;
7407
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007408set:
7409 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007410 /* Can't redirect output if we've got an active mmap() */
7411 if (atomic_read(&event->mmap_count))
7412 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007413
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007414 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02007415 /* get the rb we want to redirect to */
7416 rb = ring_buffer_get(output_event);
7417 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007418 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007419 }
7420
Peter Zijlstrab69cf532014-03-14 10:50:33 +01007421 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02007422
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007423 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007424unlock:
7425 mutex_unlock(&event->mmap_mutex);
7426
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007427out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007428 return ret;
7429}
7430
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007431static void mutex_lock_double(struct mutex *a, struct mutex *b)
7432{
7433 if (b < a)
7434 swap(a, b);
7435
7436 mutex_lock(a);
7437 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
7438}
7439
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007440/**
7441 * sys_perf_event_open - open a performance event, associate it to a task/cpu
7442 *
7443 * @attr_uptr: event_id type attributes for monitoring/sampling
7444 * @pid: target pid
7445 * @cpu: target cpu
7446 * @group_fd: group leader event fd
7447 */
7448SYSCALL_DEFINE5(perf_event_open,
7449 struct perf_event_attr __user *, attr_uptr,
7450 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
7451{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007452 struct perf_event *group_leader = NULL, *output_event = NULL;
7453 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007454 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007455 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007456 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04007457 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07007458 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007459 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04007460 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007461 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007462 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01007463 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00007464 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007465
7466 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02007467 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007468 return -EINVAL;
7469
7470 err = perf_copy_attr(attr_uptr, &attr);
7471 if (err)
7472 return err;
7473
7474 if (!attr.exclude_kernel) {
7475 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
7476 return -EACCES;
7477 }
7478
7479 if (attr.freq) {
7480 if (attr.sample_freq > sysctl_perf_event_sample_rate)
7481 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02007482 } else {
7483 if (attr.sample_period & (1ULL << 63))
7484 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007485 }
7486
Stephane Eraniane5d13672011-02-14 11:20:01 +02007487 /*
7488 * In cgroup mode, the pid argument is used to pass the fd
7489 * opened to the cgroup directory in cgroupfs. The cpu argument
7490 * designates the cpu on which to monitor threads from that
7491 * cgroup.
7492 */
7493 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
7494 return -EINVAL;
7495
Yann Droneauda21b0b32014-01-05 21:36:33 +01007496 if (flags & PERF_FLAG_FD_CLOEXEC)
7497 f_flags |= O_CLOEXEC;
7498
7499 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04007500 if (event_fd < 0)
7501 return event_fd;
7502
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007503 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04007504 err = perf_fget_light(group_fd, &group);
7505 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02007506 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04007507 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007508 if (flags & PERF_FLAG_FD_OUTPUT)
7509 output_event = group_leader;
7510 if (flags & PERF_FLAG_FD_NO_GROUP)
7511 group_leader = NULL;
7512 }
7513
Stephane Eraniane5d13672011-02-14 11:20:01 +02007514 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007515 task = find_lively_task_by_vpid(pid);
7516 if (IS_ERR(task)) {
7517 err = PTR_ERR(task);
7518 goto err_group_fd;
7519 }
7520 }
7521
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007522 if (task && group_leader &&
7523 group_leader->attr.inherit != attr.inherit) {
7524 err = -EINVAL;
7525 goto err_task;
7526 }
7527
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007528 get_online_cpus();
7529
Matt Fleming79dff512015-01-23 18:45:42 +00007530 if (flags & PERF_FLAG_PID_CGROUP)
7531 cgroup_fd = pid;
7532
Avi Kivity4dc0da82011-06-29 18:42:35 +03007533 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00007534 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02007535 if (IS_ERR(event)) {
7536 err = PTR_ERR(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007537 goto err_cpus;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02007538 }
7539
Vince Weaver53b25332014-05-16 17:12:12 -04007540 if (is_sampling_event(event)) {
7541 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
7542 err = -ENOTSUPP;
7543 goto err_alloc;
7544 }
7545 }
7546
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007547 account_event(event);
7548
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007549 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007550 * Special case software events and allow them to be part of
7551 * any hardware group.
7552 */
7553 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007554
7555 if (group_leader &&
7556 (is_software_event(event) != is_software_event(group_leader))) {
7557 if (is_software_event(event)) {
7558 /*
7559 * If event and group_leader are not both a software
7560 * event, and event is, then group leader is not.
7561 *
7562 * Allow the addition of software events to !software
7563 * groups, this is safe because software events never
7564 * fail to schedule.
7565 */
7566 pmu = group_leader->pmu;
7567 } else if (is_software_event(group_leader) &&
7568 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
7569 /*
7570 * In case the group is a pure software group, and we
7571 * try to add a hardware event, move the whole group to
7572 * the hardware context.
7573 */
7574 move_group = 1;
7575 }
7576 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007577
7578 /*
7579 * Get the target context (task or percpu):
7580 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -05007581 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007582 if (IS_ERR(ctx)) {
7583 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007584 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007585 }
7586
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02007587 if (task) {
7588 put_task_struct(task);
7589 task = NULL;
7590 }
7591
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007592 /*
7593 * Look up the group leader (we will attach this event to it):
7594 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007595 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007596 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007597
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007598 /*
7599 * Do not allow a recursive hierarchy (this new sibling
7600 * becoming part of another group-sibling):
7601 */
7602 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007603 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007604 /*
7605 * Do not allow to attach to a group in a different
7606 * task or CPU context:
7607 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007608 if (move_group) {
Peter Zijlstrac3c87e72015-01-23 11:19:48 +01007609 /*
7610 * Make sure we're both on the same task, or both
7611 * per-cpu events.
7612 */
7613 if (group_leader->ctx->task != ctx->task)
7614 goto err_context;
7615
7616 /*
7617 * Make sure we're both events for the same CPU;
7618 * grouping events for different CPUs is broken; since
7619 * you can never concurrently schedule them anyhow.
7620 */
7621 if (group_leader->cpu != event->cpu)
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007622 goto err_context;
7623 } else {
7624 if (group_leader->ctx != ctx)
7625 goto err_context;
7626 }
7627
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007628 /*
7629 * Only a group leader can be exclusive or pinned
7630 */
7631 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007632 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007633 }
7634
7635 if (output_event) {
7636 err = perf_event_set_output(event, output_event);
7637 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007638 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007639 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007640
Yann Droneauda21b0b32014-01-05 21:36:33 +01007641 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
7642 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04007643 if (IS_ERR(event_file)) {
7644 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007645 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04007646 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007647
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007648 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007649 gctx = group_leader->ctx;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007650
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007651 /*
7652 * See perf_event_ctx_lock() for comments on the details
7653 * of swizzling perf_event::ctx.
7654 */
7655 mutex_lock_double(&gctx->mutex, &ctx->mutex);
7656
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02007657 perf_remove_from_context(group_leader, false);
Jiri Olsa0231bb52013-02-01 11:23:45 +01007658
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007659 list_for_each_entry(sibling, &group_leader->sibling_list,
7660 group_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02007661 perf_remove_from_context(sibling, false);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007662 put_ctx(gctx);
7663 }
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007664 } else {
7665 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007666 }
7667
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007668 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007669
7670 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007671 /*
7672 * Wait for everybody to stop referencing the events through
7673 * the old lists, before installing it on new lists.
7674 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007675 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007676
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01007677 /*
7678 * Install the group siblings before the group leader.
7679 *
7680 * Because a group leader will try and install the entire group
7681 * (through the sibling list, which is still in-tact), we can
7682 * end up with siblings installed in the wrong context.
7683 *
7684 * By installing siblings first we NO-OP because they're not
7685 * reachable through the group lists.
7686 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007687 list_for_each_entry(sibling, &group_leader->sibling_list,
7688 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01007689 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +01007690 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007691 get_ctx(ctx);
7692 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01007693
7694 /*
7695 * Removing from the context ends up with disabled
7696 * event. What we want here is event in the initial
7697 * startup state, ready to be add into new context.
7698 */
7699 perf_event__state_init(group_leader);
7700 perf_install_in_context(ctx, group_leader, group_leader->cpu);
7701 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007702 }
7703
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007704 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007705 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007706
7707 if (move_group) {
7708 mutex_unlock(&gctx->mutex);
7709 put_ctx(gctx);
7710 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007711 mutex_unlock(&ctx->mutex);
7712
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007713 put_online_cpus();
7714
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007715 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01007716
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007717 mutex_lock(&current->perf_event_mutex);
7718 list_add_tail(&event->owner_entry, &current->perf_event_list);
7719 mutex_unlock(&current->perf_event_mutex);
7720
Peter Zijlstra8a495422010-05-27 15:47:49 +02007721 /*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007722 * Precalculate sample_data sizes
7723 */
7724 perf_event__header_size(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007725 perf_event__id_header_size(event);
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007726
7727 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02007728 * Drop the reference on the group_event after placing the
7729 * new event on the sibling_list. This ensures destruction
7730 * of the group leader will find the pointer to itself in
7731 * perf_group_detach().
7732 */
Al Viro2903ff02012-08-28 12:52:22 -04007733 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007734 fd_install(event_fd, event_file);
7735 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007736
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007737err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007738 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04007739 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007740err_alloc:
7741 free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007742err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007743 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007744err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02007745 if (task)
7746 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007747err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04007748 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007749err_fd:
7750 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007751 return err;
7752}
7753
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007754/**
7755 * perf_event_create_kernel_counter
7756 *
7757 * @attr: attributes of the counter to create
7758 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07007759 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007760 */
7761struct perf_event *
7762perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07007763 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007764 perf_overflow_handler_t overflow_handler,
7765 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007766{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007767 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007768 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007769 int err;
7770
7771 /*
7772 * Get the target context (task or percpu):
7773 */
7774
Avi Kivity4dc0da82011-06-29 18:42:35 +03007775 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00007776 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007777 if (IS_ERR(event)) {
7778 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007779 goto err;
7780 }
7781
Jiri Olsaf8697762014-08-01 14:33:01 +02007782 /* Mark owner so we could distinguish it from user events. */
7783 event->owner = EVENT_OWNER_KERNEL;
7784
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007785 account_event(event);
7786
Yan, Zheng4af57ef2014-11-04 21:56:01 -05007787 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007788 if (IS_ERR(ctx)) {
7789 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007790 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007791 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007792
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007793 WARN_ON_ONCE(ctx->parent_ctx);
7794 mutex_lock(&ctx->mutex);
7795 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007796 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007797 mutex_unlock(&ctx->mutex);
7798
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007799 return event;
7800
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007801err_free:
7802 free_event(event);
7803err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007804 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007805}
7806EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
7807
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007808void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
7809{
7810 struct perf_event_context *src_ctx;
7811 struct perf_event_context *dst_ctx;
7812 struct perf_event *event, *tmp;
7813 LIST_HEAD(events);
7814
7815 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
7816 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
7817
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007818 /*
7819 * See perf_event_ctx_lock() for comments on the details
7820 * of swizzling perf_event::ctx.
7821 */
7822 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007823 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
7824 event_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02007825 perf_remove_from_context(event, false);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02007826 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007827 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +02007828 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007829 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007830
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01007831 /*
7832 * Wait for the events to quiesce before re-instating them.
7833 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007834 synchronize_rcu();
7835
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01007836 /*
7837 * Re-instate events in 2 passes.
7838 *
7839 * Skip over group leaders and only install siblings on this first
7840 * pass, siblings will not get enabled without a leader, however a
7841 * leader will enable its siblings, even if those are still on the old
7842 * context.
7843 */
7844 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
7845 if (event->group_leader == event)
7846 continue;
7847
7848 list_del(&event->migrate_entry);
7849 if (event->state >= PERF_EVENT_STATE_OFF)
7850 event->state = PERF_EVENT_STATE_INACTIVE;
7851 account_event_cpu(event, dst_cpu);
7852 perf_install_in_context(dst_ctx, event, dst_cpu);
7853 get_ctx(dst_ctx);
7854 }
7855
7856 /*
7857 * Once all the siblings are setup properly, install the group leaders
7858 * to make it go.
7859 */
Peter Zijlstra98861672013-10-03 16:02:23 +02007860 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
7861 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007862 if (event->state >= PERF_EVENT_STATE_OFF)
7863 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02007864 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007865 perf_install_in_context(dst_ctx, event, dst_cpu);
7866 get_ctx(dst_ctx);
7867 }
7868 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007869 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007870}
7871EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
7872
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007873static void sync_child_event(struct perf_event *child_event,
7874 struct task_struct *child)
7875{
7876 struct perf_event *parent_event = child_event->parent;
7877 u64 child_val;
7878
7879 if (child_event->attr.inherit_stat)
7880 perf_event_read_event(child_event, child);
7881
Peter Zijlstrab5e58792010-05-21 14:43:12 +02007882 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007883
7884 /*
7885 * Add back the child's count to the parent's count:
7886 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02007887 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007888 atomic64_add(child_event->total_time_enabled,
7889 &parent_event->child_total_time_enabled);
7890 atomic64_add(child_event->total_time_running,
7891 &parent_event->child_total_time_running);
7892
7893 /*
7894 * Remove this event from the parent's list
7895 */
7896 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7897 mutex_lock(&parent_event->child_mutex);
7898 list_del_init(&child_event->child_list);
7899 mutex_unlock(&parent_event->child_mutex);
7900
7901 /*
Jiri Olsadc633982014-09-12 13:18:26 +02007902 * Make sure user/parent get notified, that we just
7903 * lost one event.
7904 */
7905 perf_event_wakeup(parent_event);
7906
7907 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007908 * Release the parent event, if this was the last
7909 * reference to it.
7910 */
Al Viroa6fa9412012-08-20 14:59:25 +01007911 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007912}
7913
7914static void
7915__perf_event_exit_task(struct perf_event *child_event,
7916 struct perf_event_context *child_ctx,
7917 struct task_struct *child)
7918{
Peter Zijlstra1903d502014-07-15 17:27:27 +02007919 /*
7920 * Do not destroy the 'original' grouping; because of the context
7921 * switch optimization the original events could've ended up in a
7922 * random child task.
7923 *
7924 * If we were to destroy the original group, all group related
7925 * operations would cease to function properly after this random
7926 * child dies.
7927 *
7928 * Do destroy all inherited groups, we don't care about those
7929 * and being thorough is better.
7930 */
7931 perf_remove_from_context(child_event, !!child_event->parent);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007932
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007933 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007934 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007935 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007936 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007937 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007938 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007939 sync_child_event(child_event, child);
7940 free_event(child_event);
Jiri Olsa179033b2014-08-07 11:48:26 -04007941 } else {
7942 child_event->state = PERF_EVENT_STATE_EXIT;
7943 perf_event_wakeup(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007944 }
7945}
7946
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007947static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007948{
Peter Zijlstraebf905f2014-05-29 19:00:24 +02007949 struct perf_event *child_event, *next;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02007950 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007951 unsigned long flags;
7952
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007953 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007954 perf_event_task(child, NULL, 0);
7955 return;
7956 }
7957
7958 local_irq_save(flags);
7959 /*
7960 * We can't reschedule here because interrupts are disabled,
7961 * and either child is current or it is a task that can't be
7962 * scheduled, so we are now safe from rescheduling changing
7963 * our context.
7964 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01007965 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007966
7967 /*
7968 * Take the context lock here so that if find_get_context is
7969 * reading child->perf_event_ctxp, we wait until it has
7970 * incremented the context's refcount before we do put_ctx below.
7971 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007972 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02007973 task_ctx_sched_out(child_ctx);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007974 child->perf_event_ctxp[ctxn] = NULL;
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02007975
7976 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007977 * If this context is a clone; unclone it so it can't get
7978 * swapped to another process while we're removing all
7979 * the events from it.
7980 */
Peter Zijlstra211de6e2014-09-30 19:23:08 +02007981 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01007982 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007983 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007984
Peter Zijlstra211de6e2014-09-30 19:23:08 +02007985 if (clone_ctx)
7986 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02007987
7988 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007989 * Report the task dead after unscheduling the events so that we
7990 * won't get any samples after PERF_RECORD_EXIT. We can however still
7991 * get a few PERF_RECORD_READ events.
7992 */
7993 perf_event_task(child, child_ctx, 0);
7994
7995 /*
7996 * We can recurse on the same lock type through:
7997 *
7998 * __perf_event_exit_task()
7999 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01008000 * put_event()
8001 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008002 *
8003 * But since its the parent context it won't be the same instance.
8004 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02008005 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008006
Peter Zijlstraebf905f2014-05-29 19:00:24 +02008007 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008008 __perf_event_exit_task(child_event, child_ctx, child);
8009
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008010 mutex_unlock(&child_ctx->mutex);
8011
8012 put_ctx(child_ctx);
8013}
8014
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008015/*
8016 * When a child task exits, feed back event values to parent events.
8017 */
8018void perf_event_exit_task(struct task_struct *child)
8019{
Peter Zijlstra88821352010-11-09 19:01:43 +01008020 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008021 int ctxn;
8022
Peter Zijlstra88821352010-11-09 19:01:43 +01008023 mutex_lock(&child->perf_event_mutex);
8024 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
8025 owner_entry) {
8026 list_del_init(&event->owner_entry);
8027
8028 /*
8029 * Ensure the list deletion is visible before we clear
8030 * the owner, closes a race against perf_release() where
8031 * we need to serialize on the owner->perf_event_mutex.
8032 */
8033 smp_wmb();
8034 event->owner = NULL;
8035 }
8036 mutex_unlock(&child->perf_event_mutex);
8037
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008038 for_each_task_context_nr(ctxn)
8039 perf_event_exit_task_context(child, ctxn);
8040}
8041
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008042static void perf_free_event(struct perf_event *event,
8043 struct perf_event_context *ctx)
8044{
8045 struct perf_event *parent = event->parent;
8046
8047 if (WARN_ON_ONCE(!parent))
8048 return;
8049
8050 mutex_lock(&parent->child_mutex);
8051 list_del_init(&event->child_list);
8052 mutex_unlock(&parent->child_mutex);
8053
Al Viroa6fa9412012-08-20 14:59:25 +01008054 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008055
Peter Zijlstra652884f2015-01-23 11:20:10 +01008056 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02008057 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008058 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +01008059 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008060 free_event(event);
8061}
8062
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008063/*
Peter Zijlstra652884f2015-01-23 11:20:10 +01008064 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008065 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +01008066 *
8067 * Not all locks are strictly required, but take them anyway to be nice and
8068 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008069 */
8070void perf_event_free_task(struct task_struct *task)
8071{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008072 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008073 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008074 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008075
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008076 for_each_task_context_nr(ctxn) {
8077 ctx = task->perf_event_ctxp[ctxn];
8078 if (!ctx)
8079 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008080
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008081 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008082again:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008083 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
8084 group_entry)
8085 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008086
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008087 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
8088 group_entry)
8089 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008090
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008091 if (!list_empty(&ctx->pinned_groups) ||
8092 !list_empty(&ctx->flexible_groups))
8093 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008094
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008095 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008096
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008097 put_ctx(ctx);
8098 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008099}
8100
Peter Zijlstra4e231c72010-09-09 21:01:59 +02008101void perf_event_delayed_put(struct task_struct *task)
8102{
8103 int ctxn;
8104
8105 for_each_task_context_nr(ctxn)
8106 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
8107}
8108
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008109/*
8110 * inherit a event from parent task to child task:
8111 */
8112static struct perf_event *
8113inherit_event(struct perf_event *parent_event,
8114 struct task_struct *parent,
8115 struct perf_event_context *parent_ctx,
8116 struct task_struct *child,
8117 struct perf_event *group_leader,
8118 struct perf_event_context *child_ctx)
8119{
Jiri Olsa1929def2014-09-12 13:18:27 +02008120 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008121 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02008122 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008123
8124 /*
8125 * Instead of creating recursive hierarchies of events,
8126 * we link inherited events back to the original parent,
8127 * which has a filp for sure, which we use as the reference
8128 * count:
8129 */
8130 if (parent_event->parent)
8131 parent_event = parent_event->parent;
8132
8133 child_event = perf_event_alloc(&parent_event->attr,
8134 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008135 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008136 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +00008137 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008138 if (IS_ERR(child_event))
8139 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01008140
Jiri Olsafadfe7b2014-08-01 14:33:02 +02008141 if (is_orphaned_event(parent_event) ||
8142 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Al Viroa6fa9412012-08-20 14:59:25 +01008143 free_event(child_event);
8144 return NULL;
8145 }
8146
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008147 get_ctx(child_ctx);
8148
8149 /*
8150 * Make the child state follow the state of the parent event,
8151 * not its attr.disabled bit. We hold the parent's mutex,
8152 * so we won't race with perf_event_{en, dis}able_family.
8153 */
Jiri Olsa1929def2014-09-12 13:18:27 +02008154 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008155 child_event->state = PERF_EVENT_STATE_INACTIVE;
8156 else
8157 child_event->state = PERF_EVENT_STATE_OFF;
8158
8159 if (parent_event->attr.freq) {
8160 u64 sample_period = parent_event->hw.sample_period;
8161 struct hw_perf_event *hwc = &child_event->hw;
8162
8163 hwc->sample_period = sample_period;
8164 hwc->last_period = sample_period;
8165
8166 local64_set(&hwc->period_left, sample_period);
8167 }
8168
8169 child_event->ctx = child_ctx;
8170 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03008171 child_event->overflow_handler_context
8172 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008173
8174 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02008175 * Precalculate sample_data sizes
8176 */
8177 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02008178 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02008179
8180 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008181 * Link it up in the child's context:
8182 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02008183 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008184 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02008185 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008186
8187 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008188 * Link this into the parent event's child list
8189 */
8190 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
8191 mutex_lock(&parent_event->child_mutex);
8192 list_add_tail(&child_event->child_list, &parent_event->child_list);
8193 mutex_unlock(&parent_event->child_mutex);
8194
8195 return child_event;
8196}
8197
8198static int inherit_group(struct perf_event *parent_event,
8199 struct task_struct *parent,
8200 struct perf_event_context *parent_ctx,
8201 struct task_struct *child,
8202 struct perf_event_context *child_ctx)
8203{
8204 struct perf_event *leader;
8205 struct perf_event *sub;
8206 struct perf_event *child_ctr;
8207
8208 leader = inherit_event(parent_event, parent, parent_ctx,
8209 child, NULL, child_ctx);
8210 if (IS_ERR(leader))
8211 return PTR_ERR(leader);
8212 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
8213 child_ctr = inherit_event(sub, parent, parent_ctx,
8214 child, leader, child_ctx);
8215 if (IS_ERR(child_ctr))
8216 return PTR_ERR(child_ctr);
8217 }
8218 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008219}
8220
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008221static int
8222inherit_task_group(struct perf_event *event, struct task_struct *parent,
8223 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008224 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008225 int *inherited_all)
8226{
8227 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008228 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008229
8230 if (!event->attr.inherit) {
8231 *inherited_all = 0;
8232 return 0;
8233 }
8234
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008235 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008236 if (!child_ctx) {
8237 /*
8238 * This is executed from the parent task context, so
8239 * inherit events that have been marked for cloning.
8240 * First allocate and initialize a context for the
8241 * child.
8242 */
8243
Jiri Olsa734df5a2013-07-09 17:44:10 +02008244 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008245 if (!child_ctx)
8246 return -ENOMEM;
8247
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008248 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008249 }
8250
8251 ret = inherit_group(event, parent, parent_ctx,
8252 child, child_ctx);
8253
8254 if (ret)
8255 *inherited_all = 0;
8256
8257 return ret;
8258}
8259
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008260/*
8261 * Initialize the perf_event context in task_struct
8262 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +02008263static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008264{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008265 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008266 struct perf_event_context *cloned_ctx;
8267 struct perf_event *event;
8268 struct task_struct *parent = current;
8269 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01008270 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008271 int ret = 0;
8272
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008273 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008274 return 0;
8275
8276 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008277 * If the parent's context is a clone, pin it so it won't get
8278 * swapped under us.
8279 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008280 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +02008281 if (!parent_ctx)
8282 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008283
8284 /*
8285 * No need to check if parent_ctx != NULL here; since we saw
8286 * it non-NULL earlier, the only reason for it to become NULL
8287 * is if we exit, and since we're currently in the middle of
8288 * a fork we can't be exiting at the same time.
8289 */
8290
8291 /*
8292 * Lock the parent list. No need to lock the child - not PID
8293 * hashed yet and not running, so nobody can access it.
8294 */
8295 mutex_lock(&parent_ctx->mutex);
8296
8297 /*
8298 * We dont have to disable NMIs - we are only looking at
8299 * the list, not manipulating it:
8300 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008301 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008302 ret = inherit_task_group(event, parent, parent_ctx,
8303 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008304 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008305 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008306 }
8307
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01008308 /*
8309 * We can't hold ctx->lock when iterating the ->flexible_group list due
8310 * to allocations, but we need to prevent rotation because
8311 * rotate_ctx() will change the list from interrupt context.
8312 */
8313 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
8314 parent_ctx->rotate_disable = 1;
8315 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
8316
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008317 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008318 ret = inherit_task_group(event, parent, parent_ctx,
8319 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008320 if (ret)
8321 break;
8322 }
8323
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01008324 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
8325 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01008326
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008327 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008328
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01008329 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008330 /*
8331 * Mark the child context as a clone of the parent
8332 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01008333 *
8334 * Note that if the parent is a clone, the holding of
8335 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008336 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01008337 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008338 if (cloned_ctx) {
8339 child_ctx->parent_ctx = cloned_ctx;
8340 child_ctx->parent_gen = parent_ctx->parent_gen;
8341 } else {
8342 child_ctx->parent_ctx = parent_ctx;
8343 child_ctx->parent_gen = parent_ctx->generation;
8344 }
8345 get_ctx(child_ctx->parent_ctx);
8346 }
8347
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01008348 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008349 mutex_unlock(&parent_ctx->mutex);
8350
8351 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008352 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008353
8354 return ret;
8355}
8356
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008357/*
8358 * Initialize the perf_event context in task_struct
8359 */
8360int perf_event_init_task(struct task_struct *child)
8361{
8362 int ctxn, ret;
8363
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01008364 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
8365 mutex_init(&child->perf_event_mutex);
8366 INIT_LIST_HEAD(&child->perf_event_list);
8367
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008368 for_each_task_context_nr(ctxn) {
8369 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07008370 if (ret) {
8371 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008372 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07008373 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008374 }
8375
8376 return 0;
8377}
8378
Paul Mackerras220b1402010-03-10 20:45:52 +11008379static void __init perf_event_init_all_cpus(void)
8380{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008381 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11008382 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11008383
8384 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008385 swhash = &per_cpu(swevent_htable, cpu);
8386 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00008387 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11008388 }
8389}
8390
Paul Gortmaker0db06282013-06-19 14:53:51 -04008391static void perf_event_init_cpu(int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008392{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008393 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008394
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008395 mutex_lock(&swhash->hlist_mutex);
Jiri Olsa39af6b12014-04-07 11:04:08 +02008396 swhash->online = true;
Linus Torvalds4536e4d2011-11-03 07:44:04 -07008397 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008398 struct swevent_hlist *hlist;
8399
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008400 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
8401 WARN_ON(!hlist);
8402 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008403 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008404 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008405}
8406
Peter Zijlstrac2774432010-12-08 15:29:02 +01008407#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008408static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008409{
Mark Rutland226424e2014-11-05 16:11:44 +00008410 struct remove_event re = { .detach_group = true };
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008411 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008412
Peter Zijlstrae3703f82014-02-24 12:06:12 +01008413 rcu_read_lock();
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008414 list_for_each_entry_rcu(re.event, &ctx->event_list, event_entry)
8415 __perf_remove_from_context(&re);
Peter Zijlstrae3703f82014-02-24 12:06:12 +01008416 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008417}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008418
8419static void perf_event_exit_cpu_context(int cpu)
8420{
8421 struct perf_event_context *ctx;
8422 struct pmu *pmu;
8423 int idx;
8424
8425 idx = srcu_read_lock(&pmus_srcu);
8426 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02008427 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008428
8429 mutex_lock(&ctx->mutex);
8430 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
8431 mutex_unlock(&ctx->mutex);
8432 }
8433 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008434}
8435
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008436static void perf_event_exit_cpu(int cpu)
8437{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008438 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008439
Peter Zijlstrae3703f82014-02-24 12:06:12 +01008440 perf_event_exit_cpu_context(cpu);
8441
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008442 mutex_lock(&swhash->hlist_mutex);
Jiri Olsa39af6b12014-04-07 11:04:08 +02008443 swhash->online = false;
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008444 swevent_hlist_release(swhash);
8445 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008446}
8447#else
8448static inline void perf_event_exit_cpu(int cpu) { }
8449#endif
8450
Peter Zijlstrac2774432010-12-08 15:29:02 +01008451static int
8452perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
8453{
8454 int cpu;
8455
8456 for_each_online_cpu(cpu)
8457 perf_event_exit_cpu(cpu);
8458
8459 return NOTIFY_OK;
8460}
8461
8462/*
8463 * Run the perf reboot notifier at the very last possible moment so that
8464 * the generic watchdog code runs as long as possible.
8465 */
8466static struct notifier_block perf_reboot_notifier = {
8467 .notifier_call = perf_reboot,
8468 .priority = INT_MIN,
8469};
8470
Paul Gortmaker0db06282013-06-19 14:53:51 -04008471static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008472perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
8473{
8474 unsigned int cpu = (long)hcpu;
8475
Linus Torvalds4536e4d2011-11-03 07:44:04 -07008476 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008477
8478 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02008479 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008480 perf_event_init_cpu(cpu);
8481 break;
8482
Peter Zijlstra5e116372010-06-11 13:35:08 +02008483 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008484 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008485 perf_event_exit_cpu(cpu);
8486 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008487 default:
8488 break;
8489 }
8490
8491 return NOTIFY_OK;
8492}
8493
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008494void __init perf_event_init(void)
8495{
Jason Wessel3c502e72010-11-04 17:33:01 -05008496 int ret;
8497
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008498 idr_init(&pmu_idr);
8499
Paul Mackerras220b1402010-03-10 20:45:52 +11008500 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008501 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008502 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
8503 perf_pmu_register(&perf_cpu_clock, NULL, -1);
8504 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008505 perf_tp_register();
8506 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01008507 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05008508
8509 ret = init_hw_breakpoint();
8510 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02008511
8512 /* do not patch jump label more than once per second */
8513 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01008514
8515 /*
8516 * Build time assertion that we keep the data_head at the intended
8517 * location. IOW, validation we got the __reserved[] size right.
8518 */
8519 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
8520 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008521}
Peter Zijlstraabe43402010-11-17 23:17:37 +01008522
8523static int __init perf_event_sysfs_init(void)
8524{
8525 struct pmu *pmu;
8526 int ret;
8527
8528 mutex_lock(&pmus_lock);
8529
8530 ret = bus_register(&pmu_bus);
8531 if (ret)
8532 goto unlock;
8533
8534 list_for_each_entry(pmu, &pmus, entry) {
8535 if (!pmu->name || pmu->type < 0)
8536 continue;
8537
8538 ret = pmu_dev_alloc(pmu);
8539 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
8540 }
8541 pmu_bus_running = 1;
8542 ret = 0;
8543
8544unlock:
8545 mutex_unlock(&pmus_lock);
8546
8547 return ret;
8548}
8549device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008550
8551#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -04008552static struct cgroup_subsys_state *
8553perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008554{
8555 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02008556
Li Zefan1b15d052011-03-03 14:26:06 +08008557 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008558 if (!jc)
8559 return ERR_PTR(-ENOMEM);
8560
Stephane Eraniane5d13672011-02-14 11:20:01 +02008561 jc->info = alloc_percpu(struct perf_cgroup_info);
8562 if (!jc->info) {
8563 kfree(jc);
8564 return ERR_PTR(-ENOMEM);
8565 }
8566
Stephane Eraniane5d13672011-02-14 11:20:01 +02008567 return &jc->css;
8568}
8569
Tejun Heoeb954192013-08-08 20:11:23 -04008570static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008571{
Tejun Heoeb954192013-08-08 20:11:23 -04008572 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
8573
Stephane Eraniane5d13672011-02-14 11:20:01 +02008574 free_percpu(jc->info);
8575 kfree(jc);
8576}
8577
8578static int __perf_cgroup_move(void *info)
8579{
8580 struct task_struct *task = info;
8581 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
8582 return 0;
8583}
8584
Tejun Heoeb954192013-08-08 20:11:23 -04008585static void perf_cgroup_attach(struct cgroup_subsys_state *css,
8586 struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008587{
Tejun Heobb9d97b2011-12-12 18:12:21 -08008588 struct task_struct *task;
8589
Tejun Heo924f0d9a2014-02-13 06:58:41 -05008590 cgroup_taskset_for_each(task, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08008591 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008592}
8593
Tejun Heoeb954192013-08-08 20:11:23 -04008594static void perf_cgroup_exit(struct cgroup_subsys_state *css,
8595 struct cgroup_subsys_state *old_css,
Li Zefan761b3ef52012-01-31 13:47:36 +08008596 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008597{
8598 /*
8599 * cgroup_exit() is called in the copy_process() failure path.
8600 * Ignore this case since the task hasn't ran yet, this avoids
8601 * trying to poke a half freed task state from generic code.
8602 */
8603 if (!(task->flags & PF_EXITING))
8604 return;
8605
Tejun Heobb9d97b2011-12-12 18:12:21 -08008606 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008607}
8608
Tejun Heo073219e2014-02-08 10:36:58 -05008609struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08008610 .css_alloc = perf_cgroup_css_alloc,
8611 .css_free = perf_cgroup_css_free,
Ingo Molnare7e7ee22011-05-04 08:42:29 +02008612 .exit = perf_cgroup_exit,
Tejun Heobb9d97b2011-12-12 18:12:21 -08008613 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +02008614};
8615#endif /* CONFIG_CGROUP_PERF */