blob: 2fabc062716591e960dbab2c9cfc16a755895773 [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>
37#include <linux/perf_event.h>
Li Zefan6fb29152009-10-15 11:21:42 +080038#include <linux/ftrace_event.h>
Jason Wessel3c502e72010-11-04 17:33:01 -050039#include <linux/hw_breakpoint.h>
Jiri Olsac5ebced2012-08-07 15:20:40 +020040#include <linux/mm_types.h>
Li Zefan877c6852013-03-05 11:38:08 +080041#include <linux/cgroup.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);
Stephane Eraniand010b332012-02-09 23:21:00 +0100156static DEFINE_PER_CPU(atomic_t, perf_branch_stack_events);
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 Eranian3f7cce32011-02-18 14:40:01 +0200354/*
Li Zefan877c6852013-03-05 11:38:08 +0800355 * perf_cgroup_info keeps track of time_enabled for a cgroup.
356 * This is a per-cpu dynamically allocated data structure.
357 */
358struct perf_cgroup_info {
359 u64 time;
360 u64 timestamp;
361};
362
363struct perf_cgroup {
364 struct cgroup_subsys_state css;
Namhyung Kim86e213e2013-03-18 18:56:34 +0900365 struct perf_cgroup_info __percpu *info;
Li Zefan877c6852013-03-05 11:38:08 +0800366};
367
368/*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200369 * Must ensure cgroup is pinned (css_get) before calling
370 * this function. In other words, we cannot call this function
371 * if there is no cgroup event for the current CPU context.
372 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200373static inline struct perf_cgroup *
374perf_cgroup_from_task(struct task_struct *task)
375{
Tejun Heo073219e2014-02-08 10:36:58 -0500376 return container_of(task_css(task, perf_event_cgrp_id),
Tejun Heo8af01f52013-08-08 20:11:22 -0400377 struct perf_cgroup, css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200378}
379
380static inline bool
381perf_cgroup_match(struct perf_event *event)
382{
383 struct perf_event_context *ctx = event->ctx;
384 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
385
Tejun Heoef824fa2013-04-08 19:00:38 -0700386 /* @event doesn't care about cgroup */
387 if (!event->cgrp)
388 return true;
389
390 /* wants specific cgroup scope but @cpuctx isn't associated with any */
391 if (!cpuctx->cgrp)
392 return false;
393
394 /*
395 * Cgroup scoping is recursive. An event enabled for a cgroup is
396 * also enabled for all its descendant cgroups. If @cpuctx's
397 * cgroup is a descendant of @event's (the test covers identity
398 * case), it's a match.
399 */
400 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
401 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200402}
403
Stephane Eraniane5d13672011-02-14 11:20:01 +0200404static inline void perf_detach_cgroup(struct perf_event *event)
405{
Zefan Li4e2ba652014-09-19 16:53:14 +0800406 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200407 event->cgrp = NULL;
408}
409
410static inline int is_cgroup_event(struct perf_event *event)
411{
412 return event->cgrp != NULL;
413}
414
415static inline u64 perf_cgroup_event_time(struct perf_event *event)
416{
417 struct perf_cgroup_info *t;
418
419 t = per_cpu_ptr(event->cgrp->info, event->cpu);
420 return t->time;
421}
422
423static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
424{
425 struct perf_cgroup_info *info;
426 u64 now;
427
428 now = perf_clock();
429
430 info = this_cpu_ptr(cgrp->info);
431
432 info->time += now - info->timestamp;
433 info->timestamp = now;
434}
435
436static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
437{
438 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
439 if (cgrp_out)
440 __update_cgrp_time(cgrp_out);
441}
442
443static inline void update_cgrp_time_from_event(struct perf_event *event)
444{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200445 struct perf_cgroup *cgrp;
446
Stephane Eraniane5d13672011-02-14 11:20:01 +0200447 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200448 * ensure we access cgroup data only when needed and
449 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200450 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200451 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200452 return;
453
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200454 cgrp = perf_cgroup_from_task(current);
455 /*
456 * Do not update time when cgroup is not active
457 */
458 if (cgrp == event->cgrp)
459 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200460}
461
462static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200463perf_cgroup_set_timestamp(struct task_struct *task,
464 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200465{
466 struct perf_cgroup *cgrp;
467 struct perf_cgroup_info *info;
468
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200469 /*
470 * ctx->lock held by caller
471 * ensure we do not access cgroup data
472 * unless we have the cgroup pinned (css_get)
473 */
474 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200475 return;
476
477 cgrp = perf_cgroup_from_task(task);
478 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200479 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200480}
481
482#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
483#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
484
485/*
486 * reschedule events based on the cgroup constraint of task.
487 *
488 * mode SWOUT : schedule out everything
489 * mode SWIN : schedule in based on cgroup for next
490 */
491void perf_cgroup_switch(struct task_struct *task, int mode)
492{
493 struct perf_cpu_context *cpuctx;
494 struct pmu *pmu;
495 unsigned long flags;
496
497 /*
498 * disable interrupts to avoid geting nr_cgroup
499 * changes via __perf_event_disable(). Also
500 * avoids preemption.
501 */
502 local_irq_save(flags);
503
504 /*
505 * we reschedule only in the presence of cgroup
506 * constrained events.
507 */
508 rcu_read_lock();
509
510 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200511 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200512 if (cpuctx->unique_pmu != pmu)
513 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200514
Stephane Eraniane5d13672011-02-14 11:20:01 +0200515 /*
516 * perf_cgroup_events says at least one
517 * context on this CPU has cgroup events.
518 *
519 * ctx->nr_cgroups reports the number of cgroup
520 * events for a context.
521 */
522 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200523 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
524 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200525
526 if (mode & PERF_CGROUP_SWOUT) {
527 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
528 /*
529 * must not be done before ctxswout due
530 * to event_filter_match() in event_sched_out()
531 */
532 cpuctx->cgrp = NULL;
533 }
534
535 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200536 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200537 /*
538 * set cgrp before ctxsw in to allow
539 * event_filter_match() to not have to pass
540 * task around
Stephane Eraniane5d13672011-02-14 11:20:01 +0200541 */
542 cpuctx->cgrp = perf_cgroup_from_task(task);
543 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
544 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200545 perf_pmu_enable(cpuctx->ctx.pmu);
546 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200547 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200548 }
549
550 rcu_read_unlock();
551
552 local_irq_restore(flags);
553}
554
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200555static inline void perf_cgroup_sched_out(struct task_struct *task,
556 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200557{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200558 struct perf_cgroup *cgrp1;
559 struct perf_cgroup *cgrp2 = NULL;
560
561 /*
562 * we come here when we know perf_cgroup_events > 0
563 */
564 cgrp1 = perf_cgroup_from_task(task);
565
566 /*
567 * next is NULL when called from perf_event_enable_on_exec()
568 * that will systematically cause a cgroup_switch()
569 */
570 if (next)
571 cgrp2 = perf_cgroup_from_task(next);
572
573 /*
574 * only schedule out current cgroup events if we know
575 * that we are switching to a different cgroup. Otherwise,
576 * do no touch the cgroup events.
577 */
578 if (cgrp1 != cgrp2)
579 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200580}
581
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200582static inline void perf_cgroup_sched_in(struct task_struct *prev,
583 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200584{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200585 struct perf_cgroup *cgrp1;
586 struct perf_cgroup *cgrp2 = NULL;
587
588 /*
589 * we come here when we know perf_cgroup_events > 0
590 */
591 cgrp1 = perf_cgroup_from_task(task);
592
593 /* prev can never be NULL */
594 cgrp2 = perf_cgroup_from_task(prev);
595
596 /*
597 * only need to schedule in cgroup events if we are changing
598 * cgroup during ctxsw. Cgroup events were not scheduled
599 * out of ctxsw out if that was not the case.
600 */
601 if (cgrp1 != cgrp2)
602 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200603}
604
605static inline int perf_cgroup_connect(int fd, struct perf_event *event,
606 struct perf_event_attr *attr,
607 struct perf_event *group_leader)
608{
609 struct perf_cgroup *cgrp;
610 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400611 struct fd f = fdget(fd);
612 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200613
Al Viro2903ff02012-08-28 12:52:22 -0400614 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200615 return -EBADF;
616
Al Virob5830432014-10-31 01:22:04 -0400617 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400618 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800619 if (IS_ERR(css)) {
620 ret = PTR_ERR(css);
621 goto out;
622 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200623
624 cgrp = container_of(css, struct perf_cgroup, css);
625 event->cgrp = cgrp;
626
627 /*
628 * all events in a group must monitor
629 * the same cgroup because a task belongs
630 * to only one perf cgroup at a time
631 */
632 if (group_leader && group_leader->cgrp != cgrp) {
633 perf_detach_cgroup(event);
634 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200635 }
Li Zefan3db272c2011-03-03 14:25:37 +0800636out:
Al Viro2903ff02012-08-28 12:52:22 -0400637 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200638 return ret;
639}
640
641static inline void
642perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
643{
644 struct perf_cgroup_info *t;
645 t = per_cpu_ptr(event->cgrp->info, event->cpu);
646 event->shadow_ctx_time = now - t->timestamp;
647}
648
649static inline void
650perf_cgroup_defer_enabled(struct perf_event *event)
651{
652 /*
653 * when the current task's perf cgroup does not match
654 * the event's, we need to remember to call the
655 * perf_mark_enable() function the first time a task with
656 * a matching perf cgroup is scheduled in.
657 */
658 if (is_cgroup_event(event) && !perf_cgroup_match(event))
659 event->cgrp_defer_enabled = 1;
660}
661
662static inline void
663perf_cgroup_mark_enabled(struct perf_event *event,
664 struct perf_event_context *ctx)
665{
666 struct perf_event *sub;
667 u64 tstamp = perf_event_time(event);
668
669 if (!event->cgrp_defer_enabled)
670 return;
671
672 event->cgrp_defer_enabled = 0;
673
674 event->tstamp_enabled = tstamp - event->total_time_enabled;
675 list_for_each_entry(sub, &event->sibling_list, group_entry) {
676 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
677 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
678 sub->cgrp_defer_enabled = 0;
679 }
680 }
681}
682#else /* !CONFIG_CGROUP_PERF */
683
684static inline bool
685perf_cgroup_match(struct perf_event *event)
686{
687 return true;
688}
689
690static inline void perf_detach_cgroup(struct perf_event *event)
691{}
692
693static inline int is_cgroup_event(struct perf_event *event)
694{
695 return 0;
696}
697
698static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
699{
700 return 0;
701}
702
703static inline void update_cgrp_time_from_event(struct perf_event *event)
704{
705}
706
707static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
708{
709}
710
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200711static inline void perf_cgroup_sched_out(struct task_struct *task,
712 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200713{
714}
715
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200716static inline void perf_cgroup_sched_in(struct task_struct *prev,
717 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200718{
719}
720
721static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
722 struct perf_event_attr *attr,
723 struct perf_event *group_leader)
724{
725 return -EINVAL;
726}
727
728static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200729perf_cgroup_set_timestamp(struct task_struct *task,
730 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200731{
732}
733
734void
735perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
736{
737}
738
739static inline void
740perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
741{
742}
743
744static inline u64 perf_cgroup_event_time(struct perf_event *event)
745{
746 return 0;
747}
748
749static inline void
750perf_cgroup_defer_enabled(struct perf_event *event)
751{
752}
753
754static inline void
755perf_cgroup_mark_enabled(struct perf_event *event,
756 struct perf_event_context *ctx)
757{
758}
759#endif
760
Stephane Eranian9e630202013-04-03 14:21:33 +0200761/*
762 * set default to be dependent on timer tick just
763 * like original code
764 */
765#define PERF_CPU_HRTIMER (1000 / HZ)
766/*
767 * function must be called with interrupts disbled
768 */
769static enum hrtimer_restart perf_cpu_hrtimer_handler(struct hrtimer *hr)
770{
771 struct perf_cpu_context *cpuctx;
772 enum hrtimer_restart ret = HRTIMER_NORESTART;
773 int rotations = 0;
774
775 WARN_ON(!irqs_disabled());
776
777 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
778
779 rotations = perf_rotate_context(cpuctx);
780
781 /*
782 * arm timer if needed
783 */
784 if (rotations) {
785 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
786 ret = HRTIMER_RESTART;
787 }
788
789 return ret;
790}
791
792/* CPU is going down */
793void perf_cpu_hrtimer_cancel(int cpu)
794{
795 struct perf_cpu_context *cpuctx;
796 struct pmu *pmu;
797 unsigned long flags;
798
799 if (WARN_ON(cpu != smp_processor_id()))
800 return;
801
802 local_irq_save(flags);
803
804 rcu_read_lock();
805
806 list_for_each_entry_rcu(pmu, &pmus, entry) {
807 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
808
809 if (pmu->task_ctx_nr == perf_sw_context)
810 continue;
811
812 hrtimer_cancel(&cpuctx->hrtimer);
813 }
814
815 rcu_read_unlock();
816
817 local_irq_restore(flags);
818}
819
820static void __perf_cpu_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
821{
822 struct hrtimer *hr = &cpuctx->hrtimer;
823 struct pmu *pmu = cpuctx->ctx.pmu;
Stephane Eranian62b85632013-04-03 14:21:34 +0200824 int timer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200825
826 /* no multiplexing needed for SW PMU */
827 if (pmu->task_ctx_nr == perf_sw_context)
828 return;
829
Stephane Eranian62b85632013-04-03 14:21:34 +0200830 /*
831 * check default is sane, if not set then force to
832 * default interval (1/tick)
833 */
834 timer = pmu->hrtimer_interval_ms;
835 if (timer < 1)
836 timer = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
837
838 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
Stephane Eranian9e630202013-04-03 14:21:33 +0200839
840 hrtimer_init(hr, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
841 hr->function = perf_cpu_hrtimer_handler;
842}
843
844static void perf_cpu_hrtimer_restart(struct perf_cpu_context *cpuctx)
845{
846 struct hrtimer *hr = &cpuctx->hrtimer;
847 struct pmu *pmu = cpuctx->ctx.pmu;
848
849 /* not for SW PMU */
850 if (pmu->task_ctx_nr == perf_sw_context)
851 return;
852
853 if (hrtimer_active(hr))
854 return;
855
856 if (!hrtimer_callback_running(hr))
857 __hrtimer_start_range_ns(hr, cpuctx->hrtimer_interval,
858 0, HRTIMER_MODE_REL_PINNED, 0);
859}
860
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200861void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200862{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200863 int *count = this_cpu_ptr(pmu->pmu_disable_count);
864 if (!(*count)++)
865 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200866}
867
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200868void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200869{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200870 int *count = this_cpu_ptr(pmu->pmu_disable_count);
871 if (!--(*count))
872 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200873}
874
Mark Rutland2fde4f92015-01-07 15:01:54 +0000875static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200876
877/*
Mark Rutland2fde4f92015-01-07 15:01:54 +0000878 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
879 * perf_event_task_tick() are fully serialized because they're strictly cpu
880 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
881 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200882 */
Mark Rutland2fde4f92015-01-07 15:01:54 +0000883static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200884{
Mark Rutland2fde4f92015-01-07 15:01:54 +0000885 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200886
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200887 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200888
Mark Rutland2fde4f92015-01-07 15:01:54 +0000889 WARN_ON(!list_empty(&ctx->active_ctx_list));
890
891 list_add(&ctx->active_ctx_list, head);
892}
893
894static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
895{
896 WARN_ON(!irqs_disabled());
897
898 WARN_ON(list_empty(&ctx->active_ctx_list));
899
900 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200901}
902
903static void get_ctx(struct perf_event_context *ctx)
904{
905 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
906}
907
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200908static void put_ctx(struct perf_event_context *ctx)
909{
910 if (atomic_dec_and_test(&ctx->refcount)) {
911 if (ctx->parent_ctx)
912 put_ctx(ctx->parent_ctx);
913 if (ctx->task)
914 put_task_struct(ctx->task);
Lai Jiangshancb796ff2011-03-18 12:07:41 +0800915 kfree_rcu(ctx, rcu_head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200916 }
917}
918
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200919/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100920 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
921 * perf_pmu_migrate_context() we need some magic.
922 *
923 * Those places that change perf_event::ctx will hold both
924 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
925 *
926 * Lock ordering is by mutex address. There is one other site where
927 * perf_event_context::mutex nests and that is put_event(). But remember that
928 * that is a parent<->child context relation, and migration does not affect
929 * children, therefore these two orderings should not interact.
930 *
931 * The change in perf_event::ctx does not affect children (as claimed above)
932 * because the sys_perf_event_open() case will install a new event and break
933 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
934 * concerned with cpuctx and that doesn't have children.
935 *
936 * The places that change perf_event::ctx will issue:
937 *
938 * perf_remove_from_context();
939 * synchronize_rcu();
940 * perf_install_in_context();
941 *
942 * to affect the change. The remove_from_context() + synchronize_rcu() should
943 * quiesce the event, after which we can install it in the new location. This
944 * means that only external vectors (perf_fops, prctl) can perturb the event
945 * while in transit. Therefore all such accessors should also acquire
946 * perf_event_context::mutex to serialize against this.
947 *
948 * However; because event->ctx can change while we're waiting to acquire
949 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
950 * function.
951 *
952 * Lock order:
953 * task_struct::perf_event_mutex
954 * perf_event_context::mutex
955 * perf_event_context::lock
956 * perf_event::child_mutex;
957 * perf_event::mmap_mutex
958 * mmap_sem
959 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +0100960static struct perf_event_context *
961perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100962{
963 struct perf_event_context *ctx;
964
965again:
966 rcu_read_lock();
967 ctx = ACCESS_ONCE(event->ctx);
968 if (!atomic_inc_not_zero(&ctx->refcount)) {
969 rcu_read_unlock();
970 goto again;
971 }
972 rcu_read_unlock();
973
Peter Zijlstraa83fe282015-01-29 14:44:34 +0100974 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100975 if (event->ctx != ctx) {
976 mutex_unlock(&ctx->mutex);
977 put_ctx(ctx);
978 goto again;
979 }
980
981 return ctx;
982}
983
Peter Zijlstraa83fe282015-01-29 14:44:34 +0100984static inline struct perf_event_context *
985perf_event_ctx_lock(struct perf_event *event)
986{
987 return perf_event_ctx_lock_nested(event, 0);
988}
989
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100990static void perf_event_ctx_unlock(struct perf_event *event,
991 struct perf_event_context *ctx)
992{
993 mutex_unlock(&ctx->mutex);
994 put_ctx(ctx);
995}
996
997/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200998 * This must be done under the ctx->lock, such as to serialize against
999 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1000 * calling scheduler related locks and ctx->lock nests inside those.
1001 */
1002static __must_check struct perf_event_context *
1003unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001004{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001005 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1006
1007 lockdep_assert_held(&ctx->lock);
1008
1009 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001010 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001011 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001012
1013 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001014}
1015
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001016static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1017{
1018 /*
1019 * only top level events have the pid namespace they were created in
1020 */
1021 if (event->parent)
1022 event = event->parent;
1023
1024 return task_tgid_nr_ns(p, event->ns);
1025}
1026
1027static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1028{
1029 /*
1030 * only top level events have the pid namespace they were created in
1031 */
1032 if (event->parent)
1033 event = event->parent;
1034
1035 return task_pid_nr_ns(p, event->ns);
1036}
1037
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001038/*
1039 * If we inherit events we want to return the parent event id
1040 * to userspace.
1041 */
1042static u64 primary_event_id(struct perf_event *event)
1043{
1044 u64 id = event->id;
1045
1046 if (event->parent)
1047 id = event->parent->id;
1048
1049 return id;
1050}
1051
1052/*
1053 * Get the perf_event_context for a task and lock it.
1054 * This has to cope with with the fact that until it is locked,
1055 * the context could get moved to another task.
1056 */
1057static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001058perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001059{
1060 struct perf_event_context *ctx;
1061
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001062retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001063 /*
1064 * One of the few rules of preemptible RCU is that one cannot do
1065 * rcu_read_unlock() while holding a scheduler (or nested) lock when
1066 * part of the read side critical section was preemptible -- see
1067 * rcu_read_unlock_special().
1068 *
1069 * Since ctx->lock nests under rq->lock we must ensure the entire read
1070 * side critical section is non-preemptible.
1071 */
1072 preempt_disable();
1073 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001074 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001075 if (ctx) {
1076 /*
1077 * If this context is a clone of another, it might
1078 * get swapped for another underneath us by
1079 * perf_event_task_sched_out, though the
1080 * rcu_read_lock() protects us from any context
1081 * getting freed. Lock the context and check if it
1082 * got swapped before we could get the lock, and retry
1083 * if so. If we locked the right context, then it
1084 * can't get swapped on us any more.
1085 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001086 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001087 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001088 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001089 rcu_read_unlock();
1090 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001091 goto retry;
1092 }
1093
1094 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001095 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001096 ctx = NULL;
1097 }
1098 }
1099 rcu_read_unlock();
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001100 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001101 return ctx;
1102}
1103
1104/*
1105 * Get the context for a task and increment its pin_count so it
1106 * can't get swapped to another task. This also increments its
1107 * reference count so that the context can't get freed.
1108 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001109static struct perf_event_context *
1110perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001111{
1112 struct perf_event_context *ctx;
1113 unsigned long flags;
1114
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001115 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001116 if (ctx) {
1117 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001118 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001119 }
1120 return ctx;
1121}
1122
1123static void perf_unpin_context(struct perf_event_context *ctx)
1124{
1125 unsigned long flags;
1126
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001127 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001128 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001129 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001130}
1131
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001132/*
1133 * Update the record of the current time in a context.
1134 */
1135static void update_context_time(struct perf_event_context *ctx)
1136{
1137 u64 now = perf_clock();
1138
1139 ctx->time += now - ctx->timestamp;
1140 ctx->timestamp = now;
1141}
1142
Stephane Eranian41587552011-01-03 18:20:01 +02001143static u64 perf_event_time(struct perf_event *event)
1144{
1145 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001146
1147 if (is_cgroup_event(event))
1148 return perf_cgroup_event_time(event);
1149
Stephane Eranian41587552011-01-03 18:20:01 +02001150 return ctx ? ctx->time : 0;
1151}
1152
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001153/*
1154 * Update the total_time_enabled and total_time_running fields for a event.
Eric B Munsonb7526f02011-06-23 16:34:37 -04001155 * The caller of this function needs to hold the ctx->lock.
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001156 */
1157static void update_event_times(struct perf_event *event)
1158{
1159 struct perf_event_context *ctx = event->ctx;
1160 u64 run_end;
1161
1162 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1163 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1164 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001165 /*
1166 * in cgroup mode, time_enabled represents
1167 * the time the event was enabled AND active
1168 * tasks were in the monitored cgroup. This is
1169 * independent of the activity of the context as
1170 * there may be a mix of cgroup and non-cgroup events.
1171 *
1172 * That is why we treat cgroup events differently
1173 * here.
1174 */
1175 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001176 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001177 else if (ctx->is_active)
1178 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001179 else
1180 run_end = event->tstamp_stopped;
1181
1182 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001183
1184 if (event->state == PERF_EVENT_STATE_INACTIVE)
1185 run_end = event->tstamp_stopped;
1186 else
Stephane Eranian41587552011-01-03 18:20:01 +02001187 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001188
1189 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001190
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001191}
1192
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001193/*
1194 * Update total_time_enabled and total_time_running for all events in a group.
1195 */
1196static void update_group_times(struct perf_event *leader)
1197{
1198 struct perf_event *event;
1199
1200 update_event_times(leader);
1201 list_for_each_entry(event, &leader->sibling_list, group_entry)
1202 update_event_times(event);
1203}
1204
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001205static struct list_head *
1206ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1207{
1208 if (event->attr.pinned)
1209 return &ctx->pinned_groups;
1210 else
1211 return &ctx->flexible_groups;
1212}
1213
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001214/*
1215 * Add a event from the lists for its context.
1216 * Must be called with ctx->mutex and ctx->lock held.
1217 */
1218static void
1219list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1220{
Peter Zijlstra8a495422010-05-27 15:47:49 +02001221 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1222 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001223
1224 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001225 * If we're a stand alone event or group leader, we go to the context
1226 * list, group events are kept attached to the group so that
1227 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001228 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001229 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001230 struct list_head *list;
1231
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001232 if (is_software_event(event))
1233 event->group_flags |= PERF_GROUP_SOFTWARE;
1234
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001235 list = ctx_group_list(event, ctx);
1236 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001237 }
1238
Peter Zijlstra08309372011-03-03 11:31:20 +01001239 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02001240 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001241
Stephane Eraniand010b332012-02-09 23:21:00 +01001242 if (has_branch_stack(event))
1243 ctx->nr_branch_stack++;
1244
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001245 list_add_rcu(&event->event_entry, &ctx->event_list);
1246 ctx->nr_events++;
1247 if (event->attr.inherit_stat)
1248 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001249
1250 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001251}
1252
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001253/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001254 * Initialize event state based on the perf_event_attr::disabled.
1255 */
1256static inline void perf_event__state_init(struct perf_event *event)
1257{
1258 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1259 PERF_EVENT_STATE_INACTIVE;
1260}
1261
1262/*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001263 * Called at perf_event creation and when events are attached/detached from a
1264 * group.
1265 */
1266static void perf_event__read_size(struct perf_event *event)
1267{
1268 int entry = sizeof(u64); /* value */
1269 int size = 0;
1270 int nr = 1;
1271
1272 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1273 size += sizeof(u64);
1274
1275 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1276 size += sizeof(u64);
1277
1278 if (event->attr.read_format & PERF_FORMAT_ID)
1279 entry += sizeof(u64);
1280
1281 if (event->attr.read_format & PERF_FORMAT_GROUP) {
1282 nr += event->group_leader->nr_siblings;
1283 size += sizeof(u64);
1284 }
1285
1286 size += entry * nr;
1287 event->read_size = size;
1288}
1289
1290static void perf_event__header_size(struct perf_event *event)
1291{
1292 struct perf_sample_data *data;
1293 u64 sample_type = event->attr.sample_type;
1294 u16 size = 0;
1295
1296 perf_event__read_size(event);
1297
1298 if (sample_type & PERF_SAMPLE_IP)
1299 size += sizeof(data->ip);
1300
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001301 if (sample_type & PERF_SAMPLE_ADDR)
1302 size += sizeof(data->addr);
1303
1304 if (sample_type & PERF_SAMPLE_PERIOD)
1305 size += sizeof(data->period);
1306
Andi Kleenc3feedf2013-01-24 16:10:28 +01001307 if (sample_type & PERF_SAMPLE_WEIGHT)
1308 size += sizeof(data->weight);
1309
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001310 if (sample_type & PERF_SAMPLE_READ)
1311 size += event->read_size;
1312
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001313 if (sample_type & PERF_SAMPLE_DATA_SRC)
1314 size += sizeof(data->data_src.val);
1315
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001316 if (sample_type & PERF_SAMPLE_TRANSACTION)
1317 size += sizeof(data->txn);
1318
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001319 event->header_size = size;
1320}
1321
1322static void perf_event__id_header_size(struct perf_event *event)
1323{
1324 struct perf_sample_data *data;
1325 u64 sample_type = event->attr.sample_type;
1326 u16 size = 0;
1327
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001328 if (sample_type & PERF_SAMPLE_TID)
1329 size += sizeof(data->tid_entry);
1330
1331 if (sample_type & PERF_SAMPLE_TIME)
1332 size += sizeof(data->time);
1333
Adrian Hunterff3d5272013-08-27 11:23:07 +03001334 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1335 size += sizeof(data->id);
1336
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001337 if (sample_type & PERF_SAMPLE_ID)
1338 size += sizeof(data->id);
1339
1340 if (sample_type & PERF_SAMPLE_STREAM_ID)
1341 size += sizeof(data->stream_id);
1342
1343 if (sample_type & PERF_SAMPLE_CPU)
1344 size += sizeof(data->cpu_entry);
1345
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001346 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001347}
1348
Peter Zijlstra8a495422010-05-27 15:47:49 +02001349static void perf_group_attach(struct perf_event *event)
1350{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001351 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001352
Peter Zijlstra74c33372010-10-15 11:40:29 +02001353 /*
1354 * We can have double attach due to group movement in perf_event_open.
1355 */
1356 if (event->attach_state & PERF_ATTACH_GROUP)
1357 return;
1358
Peter Zijlstra8a495422010-05-27 15:47:49 +02001359 event->attach_state |= PERF_ATTACH_GROUP;
1360
1361 if (group_leader == event)
1362 return;
1363
Peter Zijlstra652884f2015-01-23 11:20:10 +01001364 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1365
Peter Zijlstra8a495422010-05-27 15:47:49 +02001366 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1367 !is_software_event(event))
1368 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1369
1370 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1371 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001372
1373 perf_event__header_size(group_leader);
1374
1375 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1376 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001377}
1378
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001379/*
1380 * Remove a event from the lists for its context.
1381 * Must be called with ctx->mutex and ctx->lock held.
1382 */
1383static void
1384list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1385{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001386 struct perf_cpu_context *cpuctx;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001387
1388 WARN_ON_ONCE(event->ctx != ctx);
1389 lockdep_assert_held(&ctx->lock);
1390
Peter Zijlstra8a495422010-05-27 15:47:49 +02001391 /*
1392 * We can have double detach due to exit/hot-unplug + close.
1393 */
1394 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001395 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001396
1397 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1398
Stephane Eranian68cacd22011-03-23 16:03:06 +01001399 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001400 ctx->nr_cgroups--;
Stephane Eranian68cacd22011-03-23 16:03:06 +01001401 cpuctx = __get_cpu_context(ctx);
1402 /*
1403 * if there are no more cgroup events
1404 * then cler cgrp to avoid stale pointer
1405 * in update_cgrp_time_from_cpuctx()
1406 */
1407 if (!ctx->nr_cgroups)
1408 cpuctx->cgrp = NULL;
1409 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001410
Stephane Eraniand010b332012-02-09 23:21:00 +01001411 if (has_branch_stack(event))
1412 ctx->nr_branch_stack--;
1413
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001414 ctx->nr_events--;
1415 if (event->attr.inherit_stat)
1416 ctx->nr_stat--;
1417
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001418 list_del_rcu(&event->event_entry);
1419
Peter Zijlstra8a495422010-05-27 15:47:49 +02001420 if (event->group_leader == event)
1421 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001422
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001423 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001424
1425 /*
1426 * If event was in error state, then keep it
1427 * that way, otherwise bogus counts will be
1428 * returned on read(). The only way to get out
1429 * of error state is by explicit re-enabling
1430 * of the event
1431 */
1432 if (event->state > PERF_EVENT_STATE_OFF)
1433 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001434
1435 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001436}
1437
Peter Zijlstra8a495422010-05-27 15:47:49 +02001438static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001439{
1440 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001441 struct list_head *list = NULL;
1442
1443 /*
1444 * We can have double detach due to exit/hot-unplug + close.
1445 */
1446 if (!(event->attach_state & PERF_ATTACH_GROUP))
1447 return;
1448
1449 event->attach_state &= ~PERF_ATTACH_GROUP;
1450
1451 /*
1452 * If this is a sibling, remove it from its group.
1453 */
1454 if (event->group_leader != event) {
1455 list_del_init(&event->group_entry);
1456 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001457 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001458 }
1459
1460 if (!list_empty(&event->group_entry))
1461 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001462
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001463 /*
1464 * If this was a group event with sibling events then
1465 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001466 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001467 */
1468 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001469 if (list)
1470 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001471 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001472
1473 /* Inherit group flags from the previous leader */
1474 sibling->group_flags = event->group_flags;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001475
1476 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001477 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001478
1479out:
1480 perf_event__header_size(event->group_leader);
1481
1482 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1483 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001484}
1485
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001486/*
1487 * User event without the task.
1488 */
1489static bool is_orphaned_event(struct perf_event *event)
1490{
1491 return event && !is_kernel_event(event) && !event->owner;
1492}
1493
1494/*
1495 * Event has a parent but parent's task finished and it's
1496 * alive only because of children holding refference.
1497 */
1498static bool is_orphaned_child(struct perf_event *event)
1499{
1500 return is_orphaned_event(event->parent);
1501}
1502
1503static void orphans_remove_work(struct work_struct *work);
1504
1505static void schedule_orphans_remove(struct perf_event_context *ctx)
1506{
1507 if (!ctx->task || ctx->orphans_remove_sched || !perf_wq)
1508 return;
1509
1510 if (queue_delayed_work(perf_wq, &ctx->orphans_remove, 1)) {
1511 get_ctx(ctx);
1512 ctx->orphans_remove_sched = true;
1513 }
1514}
1515
1516static int __init perf_workqueue_init(void)
1517{
1518 perf_wq = create_singlethread_workqueue("perf");
1519 WARN(!perf_wq, "failed to create perf workqueue\n");
1520 return perf_wq ? 0 : -1;
1521}
1522
1523core_initcall(perf_workqueue_init);
1524
Stephane Eranianfa66f072010-08-26 16:40:01 +02001525static inline int
1526event_filter_match(struct perf_event *event)
1527{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001528 return (event->cpu == -1 || event->cpu == smp_processor_id())
1529 && perf_cgroup_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001530}
1531
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001532static void
1533event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001534 struct perf_cpu_context *cpuctx,
1535 struct perf_event_context *ctx)
1536{
Stephane Eranian41587552011-01-03 18:20:01 +02001537 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001538 u64 delta;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001539
1540 WARN_ON_ONCE(event->ctx != ctx);
1541 lockdep_assert_held(&ctx->lock);
1542
Stephane Eranianfa66f072010-08-26 16:40:01 +02001543 /*
1544 * An event which could not be activated because of
1545 * filter mismatch still needs to have its timings
1546 * maintained, otherwise bogus information is return
1547 * via read() for time_enabled, time_running:
1548 */
1549 if (event->state == PERF_EVENT_STATE_INACTIVE
1550 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001551 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001552 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001553 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001554 }
1555
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001556 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001557 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001558
Alexander Shishkin44377272013-12-16 14:17:36 +02001559 perf_pmu_disable(event->pmu);
1560
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001561 event->state = PERF_EVENT_STATE_INACTIVE;
1562 if (event->pending_disable) {
1563 event->pending_disable = 0;
1564 event->state = PERF_EVENT_STATE_OFF;
1565 }
Stephane Eranian41587552011-01-03 18:20:01 +02001566 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001567 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001568 event->oncpu = -1;
1569
1570 if (!is_software_event(event))
1571 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001572 if (!--ctx->nr_active)
1573 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001574 if (event->attr.freq && event->attr.sample_freq)
1575 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001576 if (event->attr.exclusive || !cpuctx->active_oncpu)
1577 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001578
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001579 if (is_orphaned_child(event))
1580 schedule_orphans_remove(ctx);
1581
Alexander Shishkin44377272013-12-16 14:17:36 +02001582 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001583}
1584
1585static void
1586group_sched_out(struct perf_event *group_event,
1587 struct perf_cpu_context *cpuctx,
1588 struct perf_event_context *ctx)
1589{
1590 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001591 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001592
1593 event_sched_out(group_event, cpuctx, ctx);
1594
1595 /*
1596 * Schedule out siblings (if any):
1597 */
1598 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1599 event_sched_out(event, cpuctx, ctx);
1600
Stephane Eranianfa66f072010-08-26 16:40:01 +02001601 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001602 cpuctx->exclusive = 0;
1603}
1604
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001605struct remove_event {
1606 struct perf_event *event;
1607 bool detach_group;
1608};
1609
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001610/*
1611 * Cross CPU call to remove a performance event
1612 *
1613 * We disable the event on the hardware level first. After that we
1614 * remove it from the context list.
1615 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001616static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001617{
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001618 struct remove_event *re = info;
1619 struct perf_event *event = re->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001620 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001621 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001622
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001623 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001624 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001625 if (re->detach_group)
1626 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001627 list_del_event(event, ctx);
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001628 if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1629 ctx->is_active = 0;
1630 cpuctx->task_ctx = NULL;
1631 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001632 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001633
1634 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001635}
1636
1637
1638/*
1639 * Remove the event from a task's (or a CPU's) list of events.
1640 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001641 * CPU events are removed with a smp call. For task events we only
1642 * call when the task is on a CPU.
1643 *
1644 * If event->ctx is a cloned context, callers must make sure that
1645 * every task struct that event->ctx->task could possibly point to
1646 * remains valid. This is OK when called from perf_release since
1647 * that only calls us on the top-level context, which can't be a clone.
1648 * When called from perf_event_exit_task, it's OK because the
1649 * context has been detached from its task.
1650 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001651static void perf_remove_from_context(struct perf_event *event, bool detach_group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001652{
1653 struct perf_event_context *ctx = event->ctx;
1654 struct task_struct *task = ctx->task;
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001655 struct remove_event re = {
1656 .event = event,
1657 .detach_group = detach_group,
1658 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001659
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001660 lockdep_assert_held(&ctx->mutex);
1661
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001662 if (!task) {
1663 /*
Mark Rutland226424e2014-11-05 16:11:44 +00001664 * Per cpu events are removed via an smp call. The removal can
1665 * fail if the CPU is currently offline, but in that case we
1666 * already called __perf_remove_from_context from
1667 * perf_event_exit_cpu.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001668 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001669 cpu_function_call(event->cpu, __perf_remove_from_context, &re);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001670 return;
1671 }
1672
1673retry:
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001674 if (!task_function_call(task, __perf_remove_from_context, &re))
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001675 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001676
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001677 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001678 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001679 * If we failed to find a running task, but find the context active now
1680 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001681 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001682 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001683 raw_spin_unlock_irq(&ctx->lock);
Cong Wang3577af72014-09-02 15:27:20 -07001684 /*
1685 * Reload the task pointer, it might have been changed by
1686 * a concurrent perf_event_context_sched_out().
1687 */
1688 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001689 goto retry;
1690 }
1691
1692 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001693 * Since the task isn't running, its safe to remove the event, us
1694 * holding the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001695 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001696 if (detach_group)
1697 perf_group_detach(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001698 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001699 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001700}
1701
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001702/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001703 * Cross CPU call to disable a performance event
1704 */
K.Prasad500ad2d2012-08-02 13:46:35 +05301705int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001706{
1707 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001708 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001709 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001710
1711 /*
1712 * If this is a per-task event, need to check whether this
1713 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001714 *
1715 * Can trigger due to concurrent perf_event_context_sched_out()
1716 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001717 */
1718 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001719 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001720
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001721 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001722
1723 /*
1724 * If the event is on, turn it off.
1725 * If it is in error state, leave it in error state.
1726 */
1727 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1728 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001729 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001730 update_group_times(event);
1731 if (event == event->group_leader)
1732 group_sched_out(event, cpuctx, ctx);
1733 else
1734 event_sched_out(event, cpuctx, ctx);
1735 event->state = PERF_EVENT_STATE_OFF;
1736 }
1737
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001738 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001739
1740 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001741}
1742
1743/*
1744 * Disable a event.
1745 *
1746 * If event->ctx is a cloned context, callers must make sure that
1747 * every task struct that event->ctx->task could possibly point to
1748 * remains valid. This condition is satisifed when called through
1749 * perf_event_for_each_child or perf_event_for_each because they
1750 * hold the top-level event's child_mutex, so any descendant that
1751 * goes to exit will block in sync_child_event.
1752 * When called from perf_pending_event it's OK because event->ctx
1753 * is the current context on this CPU and preemption is disabled,
1754 * hence we can't get into perf_event_task_sched_out for this context.
1755 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001756static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001757{
1758 struct perf_event_context *ctx = event->ctx;
1759 struct task_struct *task = ctx->task;
1760
1761 if (!task) {
1762 /*
1763 * Disable the event on the cpu that it's on
1764 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001765 cpu_function_call(event->cpu, __perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001766 return;
1767 }
1768
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001769retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001770 if (!task_function_call(task, __perf_event_disable, event))
1771 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001772
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001773 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001774 /*
1775 * If the event is still active, we need to retry the cross-call.
1776 */
1777 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001778 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001779 /*
1780 * Reload the task pointer, it might have been changed by
1781 * a concurrent perf_event_context_sched_out().
1782 */
1783 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001784 goto retry;
1785 }
1786
1787 /*
1788 * Since we have the lock this context can't be scheduled
1789 * in, so we can change the state safely.
1790 */
1791 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1792 update_group_times(event);
1793 event->state = PERF_EVENT_STATE_OFF;
1794 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001795 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001796}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001797
1798/*
1799 * Strictly speaking kernel users cannot create groups and therefore this
1800 * interface does not need the perf_event_ctx_lock() magic.
1801 */
1802void perf_event_disable(struct perf_event *event)
1803{
1804 struct perf_event_context *ctx;
1805
1806 ctx = perf_event_ctx_lock(event);
1807 _perf_event_disable(event);
1808 perf_event_ctx_unlock(event, ctx);
1809}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001810EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001811
Stephane Eraniane5d13672011-02-14 11:20:01 +02001812static void perf_set_shadow_time(struct perf_event *event,
1813 struct perf_event_context *ctx,
1814 u64 tstamp)
1815{
1816 /*
1817 * use the correct time source for the time snapshot
1818 *
1819 * We could get by without this by leveraging the
1820 * fact that to get to this function, the caller
1821 * has most likely already called update_context_time()
1822 * and update_cgrp_time_xx() and thus both timestamp
1823 * are identical (or very close). Given that tstamp is,
1824 * already adjusted for cgroup, we could say that:
1825 * tstamp - ctx->timestamp
1826 * is equivalent to
1827 * tstamp - cgrp->timestamp.
1828 *
1829 * Then, in perf_output_read(), the calculation would
1830 * work with no changes because:
1831 * - event is guaranteed scheduled in
1832 * - no scheduled out in between
1833 * - thus the timestamp would be the same
1834 *
1835 * But this is a bit hairy.
1836 *
1837 * So instead, we have an explicit cgroup call to remain
1838 * within the time time source all along. We believe it
1839 * is cleaner and simpler to understand.
1840 */
1841 if (is_cgroup_event(event))
1842 perf_cgroup_set_shadow_time(event, tstamp);
1843 else
1844 event->shadow_ctx_time = tstamp - ctx->timestamp;
1845}
1846
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001847#define MAX_INTERRUPTS (~0ULL)
1848
1849static void perf_log_throttle(struct perf_event *event, int enable);
1850
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001851static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001852event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001853 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001854 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001855{
Stephane Eranian41587552011-01-03 18:20:01 +02001856 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02001857 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02001858
Peter Zijlstra63342412014-05-05 11:49:16 +02001859 lockdep_assert_held(&ctx->lock);
1860
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001861 if (event->state <= PERF_EVENT_STATE_OFF)
1862 return 0;
1863
1864 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001865 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001866
1867 /*
1868 * Unthrottle events, since we scheduled we might have missed several
1869 * ticks already, also for a heavily scheduling task there is little
1870 * guarantee it'll get a tick in a timely manner.
1871 */
1872 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1873 perf_log_throttle(event, 1);
1874 event->hw.interrupts = 0;
1875 }
1876
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001877 /*
1878 * The new state must be visible before we turn it on in the hardware:
1879 */
1880 smp_wmb();
1881
Alexander Shishkin44377272013-12-16 14:17:36 +02001882 perf_pmu_disable(event->pmu);
1883
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001884 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001885 event->state = PERF_EVENT_STATE_INACTIVE;
1886 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02001887 ret = -EAGAIN;
1888 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001889 }
1890
Stephane Eranian41587552011-01-03 18:20:01 +02001891 event->tstamp_running += tstamp - event->tstamp_stopped;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001892
Stephane Eraniane5d13672011-02-14 11:20:01 +02001893 perf_set_shadow_time(event, ctx, tstamp);
Stephane Eranianeed01522010-10-26 16:08:01 +02001894
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001895 if (!is_software_event(event))
1896 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001897 if (!ctx->nr_active++)
1898 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001899 if (event->attr.freq && event->attr.sample_freq)
1900 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001901
1902 if (event->attr.exclusive)
1903 cpuctx->exclusive = 1;
1904
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001905 if (is_orphaned_child(event))
1906 schedule_orphans_remove(ctx);
1907
Alexander Shishkin44377272013-12-16 14:17:36 +02001908out:
1909 perf_pmu_enable(event->pmu);
1910
1911 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001912}
1913
1914static int
1915group_sched_in(struct perf_event *group_event,
1916 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001917 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001918{
Lin Ming6bde9b62010-04-23 13:56:00 +08001919 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01001920 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001921 u64 now = ctx->time;
1922 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001923
1924 if (group_event->state == PERF_EVENT_STATE_OFF)
1925 return 0;
1926
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001927 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +08001928
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001929 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001930 pmu->cancel_txn(pmu);
Stephane Eranian9e630202013-04-03 14:21:33 +02001931 perf_cpu_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001932 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001933 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001934
1935 /*
1936 * Schedule in siblings as one group (if any):
1937 */
1938 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001939 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001940 partial_group = event;
1941 goto group_error;
1942 }
1943 }
1944
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001945 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001946 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001947
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001948group_error:
1949 /*
1950 * Groups can be scheduled in as one unit only, so undo any
1951 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001952 * The events up to the failed event are scheduled out normally,
1953 * tstamp_stopped will be updated.
1954 *
1955 * The failed events and the remaining siblings need to have
1956 * their timings updated as if they had gone thru event_sched_in()
1957 * and event_sched_out(). This is required to get consistent timings
1958 * across the group. This also takes care of the case where the group
1959 * could never be scheduled by ensuring tstamp_stopped is set to mark
1960 * the time the event was actually stopped, such that time delta
1961 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001962 */
1963 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1964 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001965 simulate = true;
1966
1967 if (simulate) {
1968 event->tstamp_running += now - event->tstamp_stopped;
1969 event->tstamp_stopped = now;
1970 } else {
1971 event_sched_out(event, cpuctx, ctx);
1972 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001973 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001974 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001975
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001976 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02001977
Stephane Eranian9e630202013-04-03 14:21:33 +02001978 perf_cpu_hrtimer_restart(cpuctx);
1979
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001980 return -EAGAIN;
1981}
1982
1983/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001984 * Work out whether we can put this event group on the CPU now.
1985 */
1986static int group_can_go_on(struct perf_event *event,
1987 struct perf_cpu_context *cpuctx,
1988 int can_add_hw)
1989{
1990 /*
1991 * Groups consisting entirely of software events can always go on.
1992 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001993 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001994 return 1;
1995 /*
1996 * If an exclusive group is already on, no other hardware
1997 * events can go on.
1998 */
1999 if (cpuctx->exclusive)
2000 return 0;
2001 /*
2002 * If this group is exclusive and there are already
2003 * events on the CPU, it can't go on.
2004 */
2005 if (event->attr.exclusive && cpuctx->active_oncpu)
2006 return 0;
2007 /*
2008 * Otherwise, try to add it if all previous groups were able
2009 * to go on.
2010 */
2011 return can_add_hw;
2012}
2013
2014static void add_event_to_ctx(struct perf_event *event,
2015 struct perf_event_context *ctx)
2016{
Stephane Eranian41587552011-01-03 18:20:01 +02002017 u64 tstamp = perf_event_time(event);
2018
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002019 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002020 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02002021 event->tstamp_enabled = tstamp;
2022 event->tstamp_running = tstamp;
2023 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002024}
2025
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002026static void task_ctx_sched_out(struct perf_event_context *ctx);
2027static void
2028ctx_sched_in(struct perf_event_context *ctx,
2029 struct perf_cpu_context *cpuctx,
2030 enum event_type_t event_type,
2031 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002032
Peter Zijlstradce58552011-04-09 21:17:46 +02002033static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2034 struct perf_event_context *ctx,
2035 struct task_struct *task)
2036{
2037 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2038 if (ctx)
2039 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2040 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2041 if (ctx)
2042 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2043}
2044
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002045/*
2046 * Cross CPU call to install and enable a performance event
2047 *
2048 * Must be called with ctx->mutex held
2049 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002050static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002051{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002052 struct perf_event *event = info;
2053 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002054 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002055 struct perf_event_context *task_ctx = cpuctx->task_ctx;
2056 struct task_struct *task = current;
2057
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002058 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002059 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002060
2061 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002062 * If there was an active task_ctx schedule it out.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002063 */
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002064 if (task_ctx)
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002065 task_ctx_sched_out(task_ctx);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002066
2067 /*
2068 * If the context we're installing events in is not the
2069 * active task_ctx, flip them.
2070 */
2071 if (ctx->task && task_ctx != ctx) {
2072 if (task_ctx)
2073 raw_spin_unlock(&task_ctx->lock);
2074 raw_spin_lock(&ctx->lock);
2075 task_ctx = ctx;
2076 }
2077
2078 if (task_ctx) {
2079 cpuctx->task_ctx = task_ctx;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002080 task = task_ctx->task;
2081 }
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002082
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002083 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002084
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002085 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002086 /*
2087 * update cgrp time only if current cgrp
2088 * matches event->cgrp. Must be done before
2089 * calling add_event_to_ctx()
2090 */
2091 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002092
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002093 add_event_to_ctx(event, ctx);
2094
2095 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002096 * Schedule everything back in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002097 */
Peter Zijlstradce58552011-04-09 21:17:46 +02002098 perf_event_sched_in(cpuctx, task_ctx, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002099
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002100 perf_pmu_enable(cpuctx->ctx.pmu);
2101 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002102
2103 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002104}
2105
2106/*
2107 * Attach a performance event to a context
2108 *
2109 * First we add the event to the list with the hardware enable bit
2110 * in event->hw_config cleared.
2111 *
2112 * If the event is attached to a task which is on a CPU we use a smp
2113 * call to enable it in the task context. The task might have been
2114 * scheduled away, but we check this in the smp call again.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002115 */
2116static void
2117perf_install_in_context(struct perf_event_context *ctx,
2118 struct perf_event *event,
2119 int cpu)
2120{
2121 struct task_struct *task = ctx->task;
2122
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002123 lockdep_assert_held(&ctx->mutex);
2124
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002125 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002126 if (event->cpu != -1)
2127 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002128
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002129 if (!task) {
2130 /*
2131 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002132 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002133 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002134 cpu_function_call(cpu, __perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002135 return;
2136 }
2137
2138retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002139 if (!task_function_call(task, __perf_install_in_context, event))
2140 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002141
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002142 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002143 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002144 * If we failed to find a running task, but find the context active now
2145 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002146 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002147 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002148 raw_spin_unlock_irq(&ctx->lock);
Cong Wang3577af72014-09-02 15:27:20 -07002149 /*
2150 * Reload the task pointer, it might have been changed by
2151 * a concurrent perf_event_context_sched_out().
2152 */
2153 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002154 goto retry;
2155 }
2156
2157 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002158 * Since the task isn't running, its safe to add the event, us holding
2159 * the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002160 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002161 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002162 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002163}
2164
2165/*
2166 * Put a event into inactive state and update time fields.
2167 * Enabling the leader of a group effectively enables all
2168 * the group members that aren't explicitly disabled, so we
2169 * have to update their ->tstamp_enabled also.
2170 * Note: this works for group members as well as group leaders
2171 * since the non-leader members' sibling_lists will be empty.
2172 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002173static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002174{
2175 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02002176 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002177
2178 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02002179 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002180 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02002181 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
2182 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002183 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002184}
2185
2186/*
2187 * Cross CPU call to enable a performance event
2188 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002189static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002190{
2191 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002192 struct perf_event_context *ctx = event->ctx;
2193 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002194 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002195 int err;
2196
Jiri Olsa06f41792013-07-09 17:44:11 +02002197 /*
2198 * There's a time window between 'ctx->is_active' check
2199 * in perf_event_enable function and this place having:
2200 * - IRQs on
2201 * - ctx->lock unlocked
2202 *
2203 * where the task could be killed and 'ctx' deactivated
2204 * by perf_event_exit_task.
2205 */
2206 if (!ctx->is_active)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002207 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002208
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002209 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002210 update_context_time(ctx);
2211
2212 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2213 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002214
2215 /*
2216 * set current task's cgroup time reference point
2217 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002218 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002219
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002220 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002221
Stephane Eraniane5d13672011-02-14 11:20:01 +02002222 if (!event_filter_match(event)) {
2223 if (is_cgroup_event(event))
2224 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002225 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002226 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002227
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002228 /*
2229 * If the event is in a group and isn't the group leader,
2230 * then don't put it on unless the group is on.
2231 */
2232 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
2233 goto unlock;
2234
2235 if (!group_can_go_on(event, cpuctx, 1)) {
2236 err = -EEXIST;
2237 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002238 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002239 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002240 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01002241 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002242 }
2243
2244 if (err) {
2245 /*
2246 * If this event can't go on and it's part of a
2247 * group, then the whole group has to come off.
2248 */
Stephane Eranian9e630202013-04-03 14:21:33 +02002249 if (leader != event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002250 group_sched_out(leader, cpuctx, ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002251 perf_cpu_hrtimer_restart(cpuctx);
2252 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002253 if (leader->attr.pinned) {
2254 update_group_times(leader);
2255 leader->state = PERF_EVENT_STATE_ERROR;
2256 }
2257 }
2258
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002259unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002260 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002261
2262 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002263}
2264
2265/*
2266 * Enable a event.
2267 *
2268 * If event->ctx is a cloned context, callers must make sure that
2269 * every task struct that event->ctx->task could possibly point to
2270 * remains valid. This condition is satisfied when called through
2271 * perf_event_for_each_child or perf_event_for_each as described
2272 * for perf_event_disable.
2273 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002274static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002275{
2276 struct perf_event_context *ctx = event->ctx;
2277 struct task_struct *task = ctx->task;
2278
2279 if (!task) {
2280 /*
2281 * Enable the event on the cpu that it's on
2282 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002283 cpu_function_call(event->cpu, __perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002284 return;
2285 }
2286
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002287 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002288 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2289 goto out;
2290
2291 /*
2292 * If the event is in error state, clear that first.
2293 * That way, if we see the event in error state below, we
2294 * know that it has gone back into error state, as distinct
2295 * from the task having been scheduled away before the
2296 * cross-call arrived.
2297 */
2298 if (event->state == PERF_EVENT_STATE_ERROR)
2299 event->state = PERF_EVENT_STATE_OFF;
2300
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002301retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002302 if (!ctx->is_active) {
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002303 __perf_event_mark_enabled(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002304 goto out;
2305 }
2306
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002307 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002308
2309 if (!task_function_call(task, __perf_event_enable, event))
2310 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002311
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002312 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002313
2314 /*
2315 * If the context is active and the event is still off,
2316 * we need to retry the cross-call.
2317 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002318 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
2319 /*
2320 * task could have been flipped by a concurrent
2321 * perf_event_context_sched_out()
2322 */
2323 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002324 goto retry;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002325 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002326
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002327out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002328 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002329}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002330
2331/*
2332 * See perf_event_disable();
2333 */
2334void perf_event_enable(struct perf_event *event)
2335{
2336 struct perf_event_context *ctx;
2337
2338 ctx = perf_event_ctx_lock(event);
2339 _perf_event_enable(event);
2340 perf_event_ctx_unlock(event, ctx);
2341}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002342EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002343
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002344static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002345{
2346 /*
2347 * not supported on inherited events
2348 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002349 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002350 return -EINVAL;
2351
2352 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002353 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002354
2355 return 0;
2356}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002357
2358/*
2359 * See perf_event_disable()
2360 */
2361int perf_event_refresh(struct perf_event *event, int refresh)
2362{
2363 struct perf_event_context *ctx;
2364 int ret;
2365
2366 ctx = perf_event_ctx_lock(event);
2367 ret = _perf_event_refresh(event, refresh);
2368 perf_event_ctx_unlock(event, ctx);
2369
2370 return ret;
2371}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002372EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002373
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002374static void ctx_sched_out(struct perf_event_context *ctx,
2375 struct perf_cpu_context *cpuctx,
2376 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002377{
2378 struct perf_event *event;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002379 int is_active = ctx->is_active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002380
Peter Zijlstradb24d332011-04-09 21:17:45 +02002381 ctx->is_active &= ~event_type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002382 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002383 return;
2384
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002385 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002386 update_cgrp_time_from_cpuctx(cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002387 if (!ctx->nr_active)
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002388 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002389
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002390 perf_pmu_disable(ctx->pmu);
Peter Zijlstradb24d332011-04-09 21:17:45 +02002391 if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002392 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2393 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002394 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002395
Peter Zijlstradb24d332011-04-09 21:17:45 +02002396 if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002397 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002398 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002399 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002400 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002401}
2402
2403/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002404 * Test whether two contexts are equivalent, i.e. whether they have both been
2405 * cloned from the same version of the same context.
2406 *
2407 * Equivalence is measured using a generation number in the context that is
2408 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2409 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002410 */
2411static int context_equiv(struct perf_event_context *ctx1,
2412 struct perf_event_context *ctx2)
2413{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002414 lockdep_assert_held(&ctx1->lock);
2415 lockdep_assert_held(&ctx2->lock);
2416
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002417 /* Pinning disables the swap optimization */
2418 if (ctx1->pin_count || ctx2->pin_count)
2419 return 0;
2420
2421 /* If ctx1 is the parent of ctx2 */
2422 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2423 return 1;
2424
2425 /* If ctx2 is the parent of ctx1 */
2426 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2427 return 1;
2428
2429 /*
2430 * If ctx1 and ctx2 have the same parent; we flatten the parent
2431 * hierarchy, see perf_event_init_context().
2432 */
2433 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2434 ctx1->parent_gen == ctx2->parent_gen)
2435 return 1;
2436
2437 /* Unmatched */
2438 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002439}
2440
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002441static void __perf_event_sync_stat(struct perf_event *event,
2442 struct perf_event *next_event)
2443{
2444 u64 value;
2445
2446 if (!event->attr.inherit_stat)
2447 return;
2448
2449 /*
2450 * Update the event value, we cannot use perf_event_read()
2451 * because we're in the middle of a context switch and have IRQs
2452 * disabled, which upsets smp_call_function_single(), however
2453 * we know the event must be on the current CPU, therefore we
2454 * don't need to use it.
2455 */
2456 switch (event->state) {
2457 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002458 event->pmu->read(event);
2459 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002460
2461 case PERF_EVENT_STATE_INACTIVE:
2462 update_event_times(event);
2463 break;
2464
2465 default:
2466 break;
2467 }
2468
2469 /*
2470 * In order to keep per-task stats reliable we need to flip the event
2471 * values when we flip the contexts.
2472 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002473 value = local64_read(&next_event->count);
2474 value = local64_xchg(&event->count, value);
2475 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002476
2477 swap(event->total_time_enabled, next_event->total_time_enabled);
2478 swap(event->total_time_running, next_event->total_time_running);
2479
2480 /*
2481 * Since we swizzled the values, update the user visible data too.
2482 */
2483 perf_event_update_userpage(event);
2484 perf_event_update_userpage(next_event);
2485}
2486
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002487static void perf_event_sync_stat(struct perf_event_context *ctx,
2488 struct perf_event_context *next_ctx)
2489{
2490 struct perf_event *event, *next_event;
2491
2492 if (!ctx->nr_stat)
2493 return;
2494
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002495 update_context_time(ctx);
2496
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002497 event = list_first_entry(&ctx->event_list,
2498 struct perf_event, event_entry);
2499
2500 next_event = list_first_entry(&next_ctx->event_list,
2501 struct perf_event, event_entry);
2502
2503 while (&event->event_entry != &ctx->event_list &&
2504 &next_event->event_entry != &next_ctx->event_list) {
2505
2506 __perf_event_sync_stat(event, next_event);
2507
2508 event = list_next_entry(event, event_entry);
2509 next_event = list_next_entry(next_event, event_entry);
2510 }
2511}
2512
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002513static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2514 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002515{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002516 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002517 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002518 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002519 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002520 int do_switch = 1;
2521
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002522 if (likely(!ctx))
2523 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002524
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002525 cpuctx = __get_cpu_context(ctx);
2526 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002527 return;
2528
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002529 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002530 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002531 if (!next_ctx)
2532 goto unlock;
2533
2534 parent = rcu_dereference(ctx->parent_ctx);
2535 next_parent = rcu_dereference(next_ctx->parent_ctx);
2536
2537 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002538 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002539 goto unlock;
2540
2541 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002542 /*
2543 * Looks like the two contexts are clones, so we might be
2544 * able to optimize the context switch. We lock both
2545 * contexts and check that they are clones under the
2546 * lock (including re-checking that neither has been
2547 * uncloned in the meantime). It doesn't matter which
2548 * order we take the locks because no other cpu could
2549 * be trying to lock both of these tasks.
2550 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002551 raw_spin_lock(&ctx->lock);
2552 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002553 if (context_equiv(ctx, next_ctx)) {
2554 /*
2555 * XXX do we need a memory barrier of sorts
2556 * wrt to rcu_dereference() of perf_event_ctxp
2557 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002558 task->perf_event_ctxp[ctxn] = next_ctx;
2559 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002560 ctx->task = next;
2561 next_ctx->task = task;
2562 do_switch = 0;
2563
2564 perf_event_sync_stat(ctx, next_ctx);
2565 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002566 raw_spin_unlock(&next_ctx->lock);
2567 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002568 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002569unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002570 rcu_read_unlock();
2571
2572 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002573 raw_spin_lock(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002574 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002575 cpuctx->task_ctx = NULL;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002576 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002577 }
2578}
2579
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002580#define for_each_task_context_nr(ctxn) \
2581 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2582
2583/*
2584 * Called from scheduler to remove the events of the current task,
2585 * with interrupts disabled.
2586 *
2587 * We stop each event and update the event value in event->count.
2588 *
2589 * This does not protect us against NMI, but disable()
2590 * sets the disabled bit in the control field of event _before_
2591 * accessing the event control register. If a NMI hits, then it will
2592 * not restart the event.
2593 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002594void __perf_event_task_sched_out(struct task_struct *task,
2595 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002596{
2597 int ctxn;
2598
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002599 for_each_task_context_nr(ctxn)
2600 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002601
2602 /*
2603 * if cgroup events exist on this CPU, then we need
2604 * to check if we have to switch out PMU state.
2605 * cgroup event are system-wide mode only
2606 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002607 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002608 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002609}
2610
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002611static void task_ctx_sched_out(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002612{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002613 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002614
2615 if (!cpuctx->task_ctx)
2616 return;
2617
2618 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2619 return;
2620
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002621 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002622 cpuctx->task_ctx = NULL;
2623}
2624
2625/*
2626 * Called with IRQs disabled
2627 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002628static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2629 enum event_type_t event_type)
2630{
2631 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002632}
2633
2634static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002635ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002636 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002637{
2638 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002639
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002640 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2641 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002642 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002643 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002644 continue;
2645
Stephane Eraniane5d13672011-02-14 11:20:01 +02002646 /* may need to reset tstamp_enabled */
2647 if (is_cgroup_event(event))
2648 perf_cgroup_mark_enabled(event, ctx);
2649
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002650 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002651 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002652
2653 /*
2654 * If this pinned group hasn't been scheduled,
2655 * put it in error state.
2656 */
2657 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2658 update_group_times(event);
2659 event->state = PERF_EVENT_STATE_ERROR;
2660 }
2661 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002662}
2663
2664static void
2665ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002666 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002667{
2668 struct perf_event *event;
2669 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002670
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002671 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2672 /* Ignore events in OFF or ERROR state */
2673 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002674 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002675 /*
2676 * Listen to the 'cpu' scheduling filter constraint
2677 * of events:
2678 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002679 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002680 continue;
2681
Stephane Eraniane5d13672011-02-14 11:20:01 +02002682 /* may need to reset tstamp_enabled */
2683 if (is_cgroup_event(event))
2684 perf_cgroup_mark_enabled(event, ctx);
2685
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002686 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002687 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002688 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002689 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002690 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002691}
2692
2693static void
2694ctx_sched_in(struct perf_event_context *ctx,
2695 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002696 enum event_type_t event_type,
2697 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002698{
Stephane Eraniane5d13672011-02-14 11:20:01 +02002699 u64 now;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002700 int is_active = ctx->is_active;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002701
Peter Zijlstradb24d332011-04-09 21:17:45 +02002702 ctx->is_active |= event_type;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002703 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002704 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002705
Stephane Eraniane5d13672011-02-14 11:20:01 +02002706 now = perf_clock();
2707 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002708 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002709 /*
2710 * First go through the list and put on any pinned groups
2711 * in order to give them the best chance of going on.
2712 */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002713 if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002714 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002715
2716 /* Then walk through the lower prio flexible groups */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002717 if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002718 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002719}
2720
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002721static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002722 enum event_type_t event_type,
2723 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002724{
2725 struct perf_event_context *ctx = &cpuctx->ctx;
2726
Stephane Eraniane5d13672011-02-14 11:20:01 +02002727 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002728}
2729
Stephane Eraniane5d13672011-02-14 11:20:01 +02002730static void perf_event_context_sched_in(struct perf_event_context *ctx,
2731 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002732{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002733 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002734
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002735 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002736 if (cpuctx->task_ctx == ctx)
2737 return;
2738
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002739 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002740 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002741 /*
2742 * We want to keep the following priority order:
2743 * cpu pinned (that don't need to move), task pinned,
2744 * cpu flexible, task flexible.
2745 */
2746 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2747
Gleb Natapov1d5f0032011-10-23 19:10:33 +02002748 if (ctx->nr_events)
2749 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002750
Gleb Natapov86b47c22011-11-22 16:08:21 +02002751 perf_event_sched_in(cpuctx, cpuctx->task_ctx, task);
2752
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002753 perf_pmu_enable(ctx->pmu);
2754 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002755}
2756
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002757/*
Stephane Eraniand010b332012-02-09 23:21:00 +01002758 * When sampling the branck stack in system-wide, it may be necessary
2759 * to flush the stack on context switch. This happens when the branch
2760 * stack does not tag its entries with the pid of the current task.
2761 * Otherwise it becomes impossible to associate a branch entry with a
2762 * task. This ambiguity is more likely to appear when the branch stack
2763 * supports priv level filtering and the user sets it to monitor only
2764 * at the user level (which could be a useful measurement in system-wide
2765 * mode). In that case, the risk is high of having a branch stack with
2766 * branch from multiple tasks. Flushing may mean dropping the existing
2767 * entries or stashing them somewhere in the PMU specific code layer.
2768 *
2769 * This function provides the context switch callback to the lower code
2770 * layer. It is invoked ONLY when there is at least one system-wide context
2771 * with at least one active event using taken branch sampling.
2772 */
2773static void perf_branch_stack_sched_in(struct task_struct *prev,
2774 struct task_struct *task)
2775{
2776 struct perf_cpu_context *cpuctx;
2777 struct pmu *pmu;
2778 unsigned long flags;
2779
2780 /* no need to flush branch stack if not changing task */
2781 if (prev == task)
2782 return;
2783
2784 local_irq_save(flags);
2785
2786 rcu_read_lock();
2787
2788 list_for_each_entry_rcu(pmu, &pmus, entry) {
2789 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2790
2791 /*
2792 * check if the context has at least one
2793 * event using PERF_SAMPLE_BRANCH_STACK
2794 */
2795 if (cpuctx->ctx.nr_branch_stack > 0
2796 && pmu->flush_branch_stack) {
2797
Stephane Eraniand010b332012-02-09 23:21:00 +01002798 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2799
2800 perf_pmu_disable(pmu);
2801
2802 pmu->flush_branch_stack();
2803
2804 perf_pmu_enable(pmu);
2805
2806 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2807 }
2808 }
2809
2810 rcu_read_unlock();
2811
2812 local_irq_restore(flags);
2813}
2814
2815/*
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002816 * Called from scheduler to add the events of the current task
2817 * with interrupts disabled.
2818 *
2819 * We restore the event value and then enable it.
2820 *
2821 * This does not protect us against NMI, but enable()
2822 * sets the enabled bit in the control field of event _before_
2823 * accessing the event control register. If a NMI hits, then it will
2824 * keep the event running.
2825 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002826void __perf_event_task_sched_in(struct task_struct *prev,
2827 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002828{
2829 struct perf_event_context *ctx;
2830 int ctxn;
2831
2832 for_each_task_context_nr(ctxn) {
2833 ctx = task->perf_event_ctxp[ctxn];
2834 if (likely(!ctx))
2835 continue;
2836
Stephane Eraniane5d13672011-02-14 11:20:01 +02002837 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002838 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02002839 /*
2840 * if cgroup events exist on this CPU, then we need
2841 * to check if we have to switch in PMU state.
2842 * cgroup event are system-wide mode only
2843 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002844 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002845 perf_cgroup_sched_in(prev, task);
Stephane Eraniand010b332012-02-09 23:21:00 +01002846
2847 /* check for system-wide branch_stack events */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002848 if (atomic_read(this_cpu_ptr(&perf_branch_stack_events)))
Stephane Eraniand010b332012-02-09 23:21:00 +01002849 perf_branch_stack_sched_in(prev, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002850}
2851
Peter Zijlstraabd50712010-01-26 18:50:16 +01002852static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2853{
2854 u64 frequency = event->attr.sample_freq;
2855 u64 sec = NSEC_PER_SEC;
2856 u64 divisor, dividend;
2857
2858 int count_fls, nsec_fls, frequency_fls, sec_fls;
2859
2860 count_fls = fls64(count);
2861 nsec_fls = fls64(nsec);
2862 frequency_fls = fls64(frequency);
2863 sec_fls = 30;
2864
2865 /*
2866 * We got @count in @nsec, with a target of sample_freq HZ
2867 * the target period becomes:
2868 *
2869 * @count * 10^9
2870 * period = -------------------
2871 * @nsec * sample_freq
2872 *
2873 */
2874
2875 /*
2876 * Reduce accuracy by one bit such that @a and @b converge
2877 * to a similar magnitude.
2878 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002879#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002880do { \
2881 if (a##_fls > b##_fls) { \
2882 a >>= 1; \
2883 a##_fls--; \
2884 } else { \
2885 b >>= 1; \
2886 b##_fls--; \
2887 } \
2888} while (0)
2889
2890 /*
2891 * Reduce accuracy until either term fits in a u64, then proceed with
2892 * the other, so that finally we can do a u64/u64 division.
2893 */
2894 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2895 REDUCE_FLS(nsec, frequency);
2896 REDUCE_FLS(sec, count);
2897 }
2898
2899 if (count_fls + sec_fls > 64) {
2900 divisor = nsec * frequency;
2901
2902 while (count_fls + sec_fls > 64) {
2903 REDUCE_FLS(count, sec);
2904 divisor >>= 1;
2905 }
2906
2907 dividend = count * sec;
2908 } else {
2909 dividend = count * sec;
2910
2911 while (nsec_fls + frequency_fls > 64) {
2912 REDUCE_FLS(nsec, frequency);
2913 dividend >>= 1;
2914 }
2915
2916 divisor = nsec * frequency;
2917 }
2918
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02002919 if (!divisor)
2920 return dividend;
2921
Peter Zijlstraabd50712010-01-26 18:50:16 +01002922 return div64_u64(dividend, divisor);
2923}
2924
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002925static DEFINE_PER_CPU(int, perf_throttled_count);
2926static DEFINE_PER_CPU(u64, perf_throttled_seq);
2927
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002928static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002929{
2930 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02002931 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002932 s64 delta;
2933
Peter Zijlstraabd50712010-01-26 18:50:16 +01002934 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002935
2936 delta = (s64)(period - hwc->sample_period);
2937 delta = (delta + 7) / 8; /* low pass filter */
2938
2939 sample_period = hwc->sample_period + delta;
2940
2941 if (!sample_period)
2942 sample_period = 1;
2943
2944 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002945
Peter Zijlstrae7850592010-05-21 14:43:08 +02002946 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002947 if (disable)
2948 event->pmu->stop(event, PERF_EF_UPDATE);
2949
Peter Zijlstrae7850592010-05-21 14:43:08 +02002950 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002951
2952 if (disable)
2953 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002954 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002955}
2956
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002957/*
2958 * combine freq adjustment with unthrottling to avoid two passes over the
2959 * events. At the same time, make sure, having freq events does not change
2960 * the rate of unthrottling as that would introduce bias.
2961 */
2962static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
2963 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002964{
2965 struct perf_event *event;
2966 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002967 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002968 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002969
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002970 /*
2971 * only need to iterate over all events iff:
2972 * - context have events in frequency mode (needs freq adjust)
2973 * - there are events to unthrottle on this cpu
2974 */
2975 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002976 return;
2977
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002978 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002979 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002980
Paul Mackerras03541f82009-10-14 16:58:03 +11002981 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002982 if (event->state != PERF_EVENT_STATE_ACTIVE)
2983 continue;
2984
Stephane Eranian5632ab12011-01-03 18:20:01 +02002985 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002986 continue;
2987
Alexander Shishkin44377272013-12-16 14:17:36 +02002988 perf_pmu_disable(event->pmu);
2989
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002990 hwc = &event->hw;
2991
Jiri Olsaae23bff2013-08-24 16:45:54 +02002992 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002993 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002994 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002995 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002996 }
2997
2998 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02002999 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003000
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003001 /*
3002 * stop the event and update event->count
3003 */
3004 event->pmu->stop(event, PERF_EF_UPDATE);
3005
Peter Zijlstrae7850592010-05-21 14:43:08 +02003006 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01003007 delta = now - hwc->freq_count_stamp;
3008 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003009
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003010 /*
3011 * restart the event
3012 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003013 * we have stopped the event so tell that
3014 * to perf_adjust_period() to avoid stopping it
3015 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003016 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01003017 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003018 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003019
3020 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02003021 next:
3022 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003023 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003024
Stephane Eranianf39d47f2012-02-07 14:39:57 +01003025 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003026 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003027}
3028
3029/*
3030 * Round-robin a context's events:
3031 */
3032static void rotate_ctx(struct perf_event_context *ctx)
3033{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01003034 /*
3035 * Rotate the first entry last of non-pinned groups. Rotation might be
3036 * disabled by the inheritance code.
3037 */
3038 if (!ctx->rotate_disable)
3039 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003040}
3041
Stephane Eranian9e630202013-04-03 14:21:33 +02003042static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003043{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003044 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003045 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003046
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003047 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003048 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3049 rotate = 1;
3050 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003051
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003052 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003053 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003054 if (ctx->nr_events != ctx->nr_active)
3055 rotate = 1;
3056 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003057
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003058 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003059 goto done;
3060
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003061 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003062 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003063
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003064 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3065 if (ctx)
3066 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003067
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003068 rotate_ctx(&cpuctx->ctx);
3069 if (ctx)
3070 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003071
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003072 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003073
3074 perf_pmu_enable(cpuctx->ctx.pmu);
3075 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003076done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003077
3078 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003079}
3080
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003081#ifdef CONFIG_NO_HZ_FULL
3082bool perf_event_can_stop_tick(void)
3083{
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003084 if (atomic_read(&nr_freq_events) ||
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02003085 __this_cpu_read(perf_throttled_count))
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003086 return false;
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02003087 else
3088 return true;
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003089}
3090#endif
3091
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003092void perf_event_task_tick(void)
3093{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003094 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3095 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003096 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003097
3098 WARN_ON(!irqs_disabled());
3099
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003100 __this_cpu_inc(perf_throttled_seq);
3101 throttled = __this_cpu_xchg(perf_throttled_count, 0);
3102
Mark Rutland2fde4f92015-01-07 15:01:54 +00003103 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003104 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003105}
3106
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003107static int event_enable_on_exec(struct perf_event *event,
3108 struct perf_event_context *ctx)
3109{
3110 if (!event->attr.enable_on_exec)
3111 return 0;
3112
3113 event->attr.enable_on_exec = 0;
3114 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3115 return 0;
3116
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01003117 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003118
3119 return 1;
3120}
3121
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003122/*
3123 * Enable all of a task's events that have been marked enable-on-exec.
3124 * This expects task == current.
3125 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003126static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003127{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003128 struct perf_event_context *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003129 struct perf_event *event;
3130 unsigned long flags;
3131 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003132 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003133
3134 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003135 if (!ctx || !ctx->nr_events)
3136 goto out;
3137
Stephane Eraniane566b762011-04-06 02:54:54 +02003138 /*
3139 * We must ctxsw out cgroup events to avoid conflict
3140 * when invoking perf_task_event_sched_in() later on
3141 * in this function. Otherwise we end up trying to
3142 * ctxswin cgroup events which are already scheduled
3143 * in.
3144 */
Stephane Eraniana8d757e2011-08-25 15:58:03 +02003145 perf_cgroup_sched_out(current, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003146
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003147 raw_spin_lock(&ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02003148 task_ctx_sched_out(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003149
Peter Zijlstrab79387e2011-11-22 11:25:43 +01003150 list_for_each_entry(event, &ctx->event_list, event_entry) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003151 ret = event_enable_on_exec(event, ctx);
3152 if (ret)
3153 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003154 }
3155
3156 /*
3157 * Unclone this context if we enabled any event.
3158 */
3159 if (enabled)
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003160 clone_ctx = unclone_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003161
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003162 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003163
Stephane Eraniane566b762011-04-06 02:54:54 +02003164 /*
3165 * Also calls ctxswin for cgroup events, if any:
3166 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003167 perf_event_context_sched_in(ctx, ctx->task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003168out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003169 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003170
3171 if (clone_ctx)
3172 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003173}
3174
Peter Zijlstrae041e322014-05-21 17:32:19 +02003175void perf_event_exec(void)
3176{
3177 struct perf_event_context *ctx;
3178 int ctxn;
3179
3180 rcu_read_lock();
3181 for_each_task_context_nr(ctxn) {
3182 ctx = current->perf_event_ctxp[ctxn];
3183 if (!ctx)
3184 continue;
3185
3186 perf_event_enable_on_exec(ctx);
3187 }
3188 rcu_read_unlock();
3189}
3190
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003191/*
3192 * Cross CPU call to read the hardware event
3193 */
3194static void __perf_event_read(void *info)
3195{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003196 struct perf_event *event = info;
3197 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003198 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003199
3200 /*
3201 * If this is a task context, we need to check whether it is
3202 * the current task context of this cpu. If not it has been
3203 * scheduled out before the smp call arrived. In that case
3204 * event->count would have been updated to a recent sample
3205 * when the event was scheduled out.
3206 */
3207 if (ctx->task && cpuctx->task_ctx != ctx)
3208 return;
3209
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003210 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003211 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003212 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003213 update_cgrp_time_from_event(event);
3214 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003215 update_event_times(event);
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003216 if (event->state == PERF_EVENT_STATE_ACTIVE)
3217 event->pmu->read(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003218 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003219}
3220
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003221static inline u64 perf_event_count(struct perf_event *event)
3222{
Peter Zijlstrae7850592010-05-21 14:43:08 +02003223 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003224}
3225
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003226static u64 perf_event_read(struct perf_event *event)
3227{
3228 /*
3229 * If event is enabled and currently active on a CPU, update the
3230 * value in the event structure:
3231 */
3232 if (event->state == PERF_EVENT_STATE_ACTIVE) {
3233 smp_call_function_single(event->oncpu,
3234 __perf_event_read, event, 1);
3235 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003236 struct perf_event_context *ctx = event->ctx;
3237 unsigned long flags;
3238
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003239 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003240 /*
3241 * may read while context is not active
3242 * (e.g., thread is blocked), in that case
3243 * we cannot update context time
3244 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003245 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003246 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003247 update_cgrp_time_from_event(event);
3248 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003249 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003250 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003251 }
3252
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003253 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003254}
3255
3256/*
3257 * Initialize the perf_event context in a task_struct:
3258 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003259static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003260{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003261 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003262 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003263 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003264 INIT_LIST_HEAD(&ctx->pinned_groups);
3265 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003266 INIT_LIST_HEAD(&ctx->event_list);
3267 atomic_set(&ctx->refcount, 1);
Jiri Olsafadfe7b2014-08-01 14:33:02 +02003268 INIT_DELAYED_WORK(&ctx->orphans_remove, orphans_remove_work);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003269}
3270
Peter Zijlstraeb184472010-09-07 15:55:13 +02003271static struct perf_event_context *
3272alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003273{
3274 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003275
3276 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3277 if (!ctx)
3278 return NULL;
3279
3280 __perf_event_init_context(ctx);
3281 if (task) {
3282 ctx->task = task;
3283 get_task_struct(task);
3284 }
3285 ctx->pmu = pmu;
3286
3287 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003288}
3289
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003290static struct task_struct *
3291find_lively_task_by_vpid(pid_t vpid)
3292{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003293 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003294 int err;
3295
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003296 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003297 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003298 task = current;
3299 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003300 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003301 if (task)
3302 get_task_struct(task);
3303 rcu_read_unlock();
3304
3305 if (!task)
3306 return ERR_PTR(-ESRCH);
3307
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003308 /* Reuse ptrace permission checks for now. */
3309 err = -EACCES;
3310 if (!ptrace_may_access(task, PTRACE_MODE_READ))
3311 goto errout;
3312
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003313 return task;
3314errout:
3315 put_task_struct(task);
3316 return ERR_PTR(err);
3317
3318}
3319
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003320/*
3321 * Returns a matching context with refcount and pincount.
3322 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003323static struct perf_event_context *
Matt Helsley38a81da2010-09-13 13:01:20 -07003324find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003325{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003326 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003327 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003328 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003329 int ctxn, err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003330
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003331 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003332 /* Must be root to operate on a CPU event: */
3333 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3334 return ERR_PTR(-EACCES);
3335
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003336 /*
3337 * We could be clever and allow to attach a event to an
3338 * offline CPU and activate it when the CPU comes up, but
3339 * that's for later.
3340 */
3341 if (!cpu_online(cpu))
3342 return ERR_PTR(-ENODEV);
3343
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003344 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003345 ctx = &cpuctx->ctx;
3346 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003347 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003348
3349 return ctx;
3350 }
3351
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003352 err = -EINVAL;
3353 ctxn = pmu->task_ctx_nr;
3354 if (ctxn < 0)
3355 goto errout;
3356
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003357retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003358 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003359 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003360 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003361 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003362 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003363
3364 if (clone_ctx)
3365 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003366 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003367 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003368 err = -ENOMEM;
3369 if (!ctx)
3370 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003371
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003372 err = 0;
3373 mutex_lock(&task->perf_event_mutex);
3374 /*
3375 * If it has already passed perf_event_exit_task().
3376 * we must see PF_EXITING, it takes this mutex too.
3377 */
3378 if (task->flags & PF_EXITING)
3379 err = -ESRCH;
3380 else if (task->perf_event_ctxp[ctxn])
3381 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003382 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003383 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003384 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003385 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003386 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003387 mutex_unlock(&task->perf_event_mutex);
3388
3389 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003390 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003391
3392 if (err == -EAGAIN)
3393 goto retry;
3394 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003395 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003396 }
3397
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003398 return ctx;
3399
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003400errout:
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
3426 if (has_branch_stack(event)) {
3427 if (!(event->attach_state & PERF_ATTACH_TASK))
3428 atomic_dec(&per_cpu(perf_branch_stack_events, cpu));
3429 }
3430 if (is_cgroup_event(event))
3431 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3432}
3433
3434static void unaccount_event(struct perf_event *event)
3435{
3436 if (event->parent)
3437 return;
3438
3439 if (event->attach_state & PERF_ATTACH_TASK)
3440 static_key_slow_dec_deferred(&perf_sched_events);
3441 if (event->attr.mmap || event->attr.mmap_data)
3442 atomic_dec(&nr_mmap_events);
3443 if (event->attr.comm)
3444 atomic_dec(&nr_comm_events);
3445 if (event->attr.task)
3446 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003447 if (event->attr.freq)
3448 atomic_dec(&nr_freq_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003449 if (is_cgroup_event(event))
3450 static_key_slow_dec_deferred(&perf_sched_events);
3451 if (has_branch_stack(event))
3452 static_key_slow_dec_deferred(&perf_sched_events);
3453
3454 unaccount_event_cpu(event, event->cpu);
3455}
3456
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003457static void __free_event(struct perf_event *event)
3458{
3459 if (!event->parent) {
3460 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
3461 put_callchain_buffers();
3462 }
3463
3464 if (event->destroy)
3465 event->destroy(event);
3466
3467 if (event->ctx)
3468 put_ctx(event->ctx);
3469
Yan, Zhengc464c762014-03-18 16:56:41 +08003470 if (event->pmu)
3471 module_put(event->pmu->module);
3472
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003473 call_rcu(&event->rcu_head, free_event_rcu);
3474}
Peter Zijlstra683ede42014-05-05 12:11:24 +02003475
3476static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003477{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003478 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003479
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003480 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003481
Frederic Weisbecker76369132011-05-19 19:55:04 +02003482 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003483 /*
3484 * Can happen when we close an event with re-directed output.
3485 *
3486 * Since we have a 0 refcount, perf_mmap_close() will skip
3487 * over us; possibly making our ring_buffer_put() the last.
3488 */
3489 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003490 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003491 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003492 }
3493
Stephane Eraniane5d13672011-02-14 11:20:01 +02003494 if (is_cgroup_event(event))
3495 perf_detach_cgroup(event);
3496
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003497 __free_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003498}
3499
Peter Zijlstra683ede42014-05-05 12:11:24 +02003500/*
3501 * Used to free events which have a known refcount of 1, such as in error paths
3502 * where the event isn't exposed yet and inherited events.
3503 */
3504static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003505{
Peter Zijlstra683ede42014-05-05 12:11:24 +02003506 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
3507 "unexpected event refcount: %ld; ptr=%p\n",
3508 atomic_long_read(&event->refcount), event)) {
3509 /* leak to avoid use-after-free */
3510 return;
3511 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003512
Peter Zijlstra683ede42014-05-05 12:11:24 +02003513 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003514}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003515
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003516/*
Jiri Olsaf8697762014-08-01 14:33:01 +02003517 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003518 */
Jiri Olsaf8697762014-08-01 14:33:01 +02003519static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003520{
Peter Zijlstra88821352010-11-09 19:01:43 +01003521 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003522
Peter Zijlstra88821352010-11-09 19:01:43 +01003523 rcu_read_lock();
3524 owner = ACCESS_ONCE(event->owner);
3525 /*
3526 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
3527 * !owner it means the list deletion is complete and we can indeed
3528 * free this event, otherwise we need to serialize on
3529 * owner->perf_event_mutex.
3530 */
3531 smp_read_barrier_depends();
3532 if (owner) {
3533 /*
3534 * Since delayed_put_task_struct() also drops the last
3535 * task reference we can safely take a new reference
3536 * while holding the rcu_read_lock().
3537 */
3538 get_task_struct(owner);
3539 }
3540 rcu_read_unlock();
3541
3542 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003543 /*
3544 * If we're here through perf_event_exit_task() we're already
3545 * holding ctx->mutex which would be an inversion wrt. the
3546 * normal lock order.
3547 *
3548 * However we can safely take this lock because its the child
3549 * ctx->mutex.
3550 */
3551 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
3552
Peter Zijlstra88821352010-11-09 19:01:43 +01003553 /*
3554 * We have to re-check the event->owner field, if it is cleared
3555 * we raced with perf_event_exit_task(), acquiring the mutex
3556 * ensured they're done, and we can proceed with freeing the
3557 * event.
3558 */
3559 if (event->owner)
3560 list_del_init(&event->owner_entry);
3561 mutex_unlock(&owner->perf_event_mutex);
3562 put_task_struct(owner);
3563 }
Jiri Olsaf8697762014-08-01 14:33:01 +02003564}
3565
3566/*
3567 * Called when the last reference to the file is gone.
3568 */
3569static void put_event(struct perf_event *event)
3570{
Peter Zijlstraa83fe282015-01-29 14:44:34 +01003571 struct perf_event_context *ctx;
Jiri Olsaf8697762014-08-01 14:33:01 +02003572
3573 if (!atomic_long_dec_and_test(&event->refcount))
3574 return;
3575
3576 if (!is_kernel_event(event))
3577 perf_remove_from_owner(event);
Peter Zijlstra88821352010-11-09 19:01:43 +01003578
Peter Zijlstra683ede42014-05-05 12:11:24 +02003579 /*
3580 * There are two ways this annotation is useful:
3581 *
3582 * 1) there is a lock recursion from perf_event_exit_task
3583 * see the comment there.
3584 *
3585 * 2) there is a lock-inversion with mmap_sem through
3586 * perf_event_read_group(), which takes faults while
3587 * holding ctx->mutex, however this is called after
3588 * the last filedesc died, so there is no possibility
3589 * to trigger the AB-BA case.
3590 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01003591 ctx = perf_event_ctx_lock_nested(event, SINGLE_DEPTH_NESTING);
3592 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstra683ede42014-05-05 12:11:24 +02003593 perf_remove_from_context(event, true);
Leon Yud415a7f2015-02-26 20:43:33 +08003594 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra683ede42014-05-05 12:11:24 +02003595
3596 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01003597}
3598
Peter Zijlstra683ede42014-05-05 12:11:24 +02003599int perf_event_release_kernel(struct perf_event *event)
3600{
3601 put_event(event);
3602 return 0;
3603}
3604EXPORT_SYMBOL_GPL(perf_event_release_kernel);
3605
Al Viroa6fa9412012-08-20 14:59:25 +01003606static int perf_release(struct inode *inode, struct file *file)
3607{
3608 put_event(file->private_data);
3609 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003610}
3611
Jiri Olsafadfe7b2014-08-01 14:33:02 +02003612/*
3613 * Remove all orphanes events from the context.
3614 */
3615static void orphans_remove_work(struct work_struct *work)
3616{
3617 struct perf_event_context *ctx;
3618 struct perf_event *event, *tmp;
3619
3620 ctx = container_of(work, struct perf_event_context,
3621 orphans_remove.work);
3622
3623 mutex_lock(&ctx->mutex);
3624 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry) {
3625 struct perf_event *parent_event = event->parent;
3626
3627 if (!is_orphaned_child(event))
3628 continue;
3629
3630 perf_remove_from_context(event, true);
3631
3632 mutex_lock(&parent_event->child_mutex);
3633 list_del_init(&event->child_list);
3634 mutex_unlock(&parent_event->child_mutex);
3635
3636 free_event(event);
3637 put_event(parent_event);
3638 }
3639
3640 raw_spin_lock_irq(&ctx->lock);
3641 ctx->orphans_remove_sched = false;
3642 raw_spin_unlock_irq(&ctx->lock);
3643 mutex_unlock(&ctx->mutex);
3644
3645 put_ctx(ctx);
3646}
3647
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003648u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003649{
3650 struct perf_event *child;
3651 u64 total = 0;
3652
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003653 *enabled = 0;
3654 *running = 0;
3655
Peter Zijlstra6f105812009-11-20 22:19:56 +01003656 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003657 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003658 *enabled += event->total_time_enabled +
3659 atomic64_read(&event->child_total_time_enabled);
3660 *running += event->total_time_running +
3661 atomic64_read(&event->child_total_time_running);
3662
3663 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003664 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003665 *enabled += child->total_time_enabled;
3666 *running += child->total_time_running;
3667 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003668 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003669
3670 return total;
3671}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003672EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003673
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003674static int perf_event_read_group(struct perf_event *event,
3675 u64 read_format, char __user *buf)
3676{
3677 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003678 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003679 int n = 0, size = 0, ret;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003680 u64 count, enabled, running;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003681 u64 values[5];
Peter Zijlstraabf48682009-11-20 22:19:49 +01003682
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003683 lockdep_assert_held(&ctx->mutex);
3684
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003685 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003686
3687 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003688 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3689 values[n++] = enabled;
3690 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3691 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003692 values[n++] = count;
3693 if (read_format & PERF_FORMAT_ID)
3694 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003695
3696 size = n * sizeof(u64);
3697
3698 if (copy_to_user(buf, values, size))
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003699 return -EFAULT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003700
Peter Zijlstra6f105812009-11-20 22:19:56 +01003701 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003702
3703 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01003704 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003705
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003706 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003707 if (read_format & PERF_FORMAT_ID)
3708 values[n++] = primary_event_id(sub);
3709
3710 size = n * sizeof(u64);
3711
Stephane Eranian184d3da2009-11-23 21:40:49 -08003712 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003713 return -EFAULT;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003714 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01003715
3716 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003717 }
3718
Peter Zijlstraabf48682009-11-20 22:19:49 +01003719 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003720}
3721
3722static int perf_event_read_one(struct perf_event *event,
3723 u64 read_format, char __user *buf)
3724{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003725 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003726 u64 values[4];
3727 int n = 0;
3728
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003729 values[n++] = perf_event_read_value(event, &enabled, &running);
3730 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3731 values[n++] = enabled;
3732 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3733 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003734 if (read_format & PERF_FORMAT_ID)
3735 values[n++] = primary_event_id(event);
3736
3737 if (copy_to_user(buf, values, n * sizeof(u64)))
3738 return -EFAULT;
3739
3740 return n * sizeof(u64);
3741}
3742
Jiri Olsadc633982014-09-12 13:18:26 +02003743static bool is_event_hup(struct perf_event *event)
3744{
3745 bool no_children;
3746
3747 if (event->state != PERF_EVENT_STATE_EXIT)
3748 return false;
3749
3750 mutex_lock(&event->child_mutex);
3751 no_children = list_empty(&event->child_list);
3752 mutex_unlock(&event->child_mutex);
3753 return no_children;
3754}
3755
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003756/*
3757 * Read the performance event - simple non blocking version for now
3758 */
3759static ssize_t
3760perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
3761{
3762 u64 read_format = event->attr.read_format;
3763 int ret;
3764
3765 /*
3766 * Return end-of-file for a read on a event that is in
3767 * error state (i.e. because it was pinned but it couldn't be
3768 * scheduled on to the CPU at some point).
3769 */
3770 if (event->state == PERF_EVENT_STATE_ERROR)
3771 return 0;
3772
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003773 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003774 return -ENOSPC;
3775
3776 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003777 if (read_format & PERF_FORMAT_GROUP)
3778 ret = perf_event_read_group(event, read_format, buf);
3779 else
3780 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003781
3782 return ret;
3783}
3784
3785static ssize_t
3786perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3787{
3788 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003789 struct perf_event_context *ctx;
3790 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003791
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003792 ctx = perf_event_ctx_lock(event);
3793 ret = perf_read_hw(event, buf, count);
3794 perf_event_ctx_unlock(event, ctx);
3795
3796 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003797}
3798
3799static unsigned int perf_poll(struct file *file, poll_table *wait)
3800{
3801 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003802 struct ring_buffer *rb;
Jiri Olsa61b67682014-08-13 19:39:56 +02003803 unsigned int events = POLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003804
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02003805 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04003806
Jiri Olsadc633982014-09-12 13:18:26 +02003807 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04003808 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003809
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003810 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003811 * Pin the event->rb by taking event->mmap_mutex; otherwise
3812 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003813 */
3814 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003815 rb = event->rb;
3816 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02003817 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003818 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003819 return events;
3820}
3821
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003822static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003823{
3824 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02003825 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003826 perf_event_update_userpage(event);
3827}
3828
3829/*
3830 * Holding the top-level event's child_mutex means that any
3831 * descendant process that has inherited this event will block
3832 * in sync_child_event if it goes to exit, thus satisfying the
3833 * task existence requirements of perf_event_enable/disable.
3834 */
3835static void perf_event_for_each_child(struct perf_event *event,
3836 void (*func)(struct perf_event *))
3837{
3838 struct perf_event *child;
3839
3840 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003841
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003842 mutex_lock(&event->child_mutex);
3843 func(event);
3844 list_for_each_entry(child, &event->child_list, child_list)
3845 func(child);
3846 mutex_unlock(&event->child_mutex);
3847}
3848
3849static void perf_event_for_each(struct perf_event *event,
3850 void (*func)(struct perf_event *))
3851{
3852 struct perf_event_context *ctx = event->ctx;
3853 struct perf_event *sibling;
3854
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003855 lockdep_assert_held(&ctx->mutex);
3856
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003857 event = event->group_leader;
3858
3859 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003860 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10003861 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003862}
3863
3864static int perf_event_period(struct perf_event *event, u64 __user *arg)
3865{
3866 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrabad71922013-11-27 13:54:38 +00003867 int ret = 0, active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003868 u64 value;
3869
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01003870 if (!is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003871 return -EINVAL;
3872
John Blackwoodad0cf342010-09-28 18:03:11 -04003873 if (copy_from_user(&value, arg, sizeof(value)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003874 return -EFAULT;
3875
3876 if (!value)
3877 return -EINVAL;
3878
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003879 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003880 if (event->attr.freq) {
3881 if (value > sysctl_perf_event_sample_rate) {
3882 ret = -EINVAL;
3883 goto unlock;
3884 }
3885
3886 event->attr.sample_freq = value;
3887 } else {
3888 event->attr.sample_period = value;
3889 event->hw.sample_period = value;
3890 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00003891
3892 active = (event->state == PERF_EVENT_STATE_ACTIVE);
3893 if (active) {
3894 perf_pmu_disable(ctx->pmu);
3895 event->pmu->stop(event, PERF_EF_UPDATE);
3896 }
3897
3898 local64_set(&event->hw.period_left, 0);
3899
3900 if (active) {
3901 event->pmu->start(event, PERF_EF_RELOAD);
3902 perf_pmu_enable(ctx->pmu);
3903 }
3904
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003905unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003906 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003907
3908 return ret;
3909}
3910
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003911static const struct file_operations perf_fops;
3912
Al Viro2903ff02012-08-28 12:52:22 -04003913static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003914{
Al Viro2903ff02012-08-28 12:52:22 -04003915 struct fd f = fdget(fd);
3916 if (!f.file)
3917 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003918
Al Viro2903ff02012-08-28 12:52:22 -04003919 if (f.file->f_op != &perf_fops) {
3920 fdput(f);
3921 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003922 }
Al Viro2903ff02012-08-28 12:52:22 -04003923 *p = f;
3924 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003925}
3926
3927static int perf_event_set_output(struct perf_event *event,
3928 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08003929static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003930
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003931static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003932{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003933 void (*func)(struct perf_event *);
3934 u32 flags = arg;
3935
3936 switch (cmd) {
3937 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003938 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003939 break;
3940 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003941 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003942 break;
3943 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003944 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003945 break;
3946
3947 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003948 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003949
3950 case PERF_EVENT_IOC_PERIOD:
3951 return perf_event_period(event, (u64 __user *)arg);
3952
Jiri Olsacf4957f2012-10-24 13:37:58 +02003953 case PERF_EVENT_IOC_ID:
3954 {
3955 u64 id = primary_event_id(event);
3956
3957 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
3958 return -EFAULT;
3959 return 0;
3960 }
3961
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003962 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003963 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003964 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003965 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04003966 struct perf_event *output_event;
3967 struct fd output;
3968 ret = perf_fget_light(arg, &output);
3969 if (ret)
3970 return ret;
3971 output_event = output.file->private_data;
3972 ret = perf_event_set_output(event, output_event);
3973 fdput(output);
3974 } else {
3975 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003976 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003977 return ret;
3978 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003979
Li Zefan6fb29152009-10-15 11:21:42 +08003980 case PERF_EVENT_IOC_SET_FILTER:
3981 return perf_event_set_filter(event, (void __user *)arg);
3982
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003983 default:
3984 return -ENOTTY;
3985 }
3986
3987 if (flags & PERF_IOC_FLAG_GROUP)
3988 perf_event_for_each(event, func);
3989 else
3990 perf_event_for_each_child(event, func);
3991
3992 return 0;
3993}
3994
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003995static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3996{
3997 struct perf_event *event = file->private_data;
3998 struct perf_event_context *ctx;
3999 long ret;
4000
4001 ctx = perf_event_ctx_lock(event);
4002 ret = _perf_ioctl(event, cmd, arg);
4003 perf_event_ctx_unlock(event, ctx);
4004
4005 return ret;
4006}
4007
Pawel Mollb3f20782014-06-13 16:03:32 +01004008#ifdef CONFIG_COMPAT
4009static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4010 unsigned long arg)
4011{
4012 switch (_IOC_NR(cmd)) {
4013 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4014 case _IOC_NR(PERF_EVENT_IOC_ID):
4015 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4016 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4017 cmd &= ~IOCSIZE_MASK;
4018 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4019 }
4020 break;
4021 }
4022 return perf_ioctl(file, cmd, arg);
4023}
4024#else
4025# define perf_compat_ioctl NULL
4026#endif
4027
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004028int perf_event_task_enable(void)
4029{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004030 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004031 struct perf_event *event;
4032
4033 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004034 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4035 ctx = perf_event_ctx_lock(event);
4036 perf_event_for_each_child(event, _perf_event_enable);
4037 perf_event_ctx_unlock(event, ctx);
4038 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004039 mutex_unlock(&current->perf_event_mutex);
4040
4041 return 0;
4042}
4043
4044int perf_event_task_disable(void)
4045{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004046 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004047 struct perf_event *event;
4048
4049 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004050 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4051 ctx = perf_event_ctx_lock(event);
4052 perf_event_for_each_child(event, _perf_event_disable);
4053 perf_event_ctx_unlock(event, ctx);
4054 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004055 mutex_unlock(&current->perf_event_mutex);
4056
4057 return 0;
4058}
4059
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004060static int perf_event_index(struct perf_event *event)
4061{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004062 if (event->hw.state & PERF_HES_STOPPED)
4063 return 0;
4064
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004065 if (event->state != PERF_EVENT_STATE_ACTIVE)
4066 return 0;
4067
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004068 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004069}
4070
Eric B Munsonc4794292011-06-23 16:34:38 -04004071static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004072 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004073 u64 *enabled,
4074 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004075{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004076 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004077
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004078 *now = perf_clock();
4079 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04004080 *enabled = ctx_time - event->tstamp_enabled;
4081 *running = ctx_time - event->tstamp_running;
4082}
4083
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004084static void perf_event_init_userpage(struct perf_event *event)
4085{
4086 struct perf_event_mmap_page *userpg;
4087 struct ring_buffer *rb;
4088
4089 rcu_read_lock();
4090 rb = rcu_dereference(event->rb);
4091 if (!rb)
4092 goto unlock;
4093
4094 userpg = rb->user_page;
4095
4096 /* Allow new userspace to detect that bit 0 is deprecated */
4097 userpg->cap_bit0_is_deprecated = 1;
4098 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
4099
4100unlock:
4101 rcu_read_unlock();
4102}
4103
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004104void __weak arch_perf_update_userpage(
4105 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004106{
4107}
4108
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004109/*
4110 * Callers need to ensure there can be no nesting of this function, otherwise
4111 * the seqlock logic goes bad. We can not serialize this because the arch
4112 * code calls this from NMI context.
4113 */
4114void perf_event_update_userpage(struct perf_event *event)
4115{
4116 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004117 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004118 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004119
4120 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004121 rb = rcu_dereference(event->rb);
4122 if (!rb)
4123 goto unlock;
4124
Eric B Munson0d641202011-06-24 12:26:26 -04004125 /*
4126 * compute total_time_enabled, total_time_running
4127 * based on snapshot values taken when the event
4128 * was last scheduled in.
4129 *
4130 * we cannot simply called update_context_time()
4131 * because of locking issue as we can be called in
4132 * NMI context
4133 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004134 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004135
Frederic Weisbecker76369132011-05-19 19:55:04 +02004136 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004137 /*
4138 * Disable preemption so as to not let the corresponding user-space
4139 * spin too long if we get preempted.
4140 */
4141 preempt_disable();
4142 ++userpg->lock;
4143 barrier();
4144 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004145 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004146 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004147 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004148
Eric B Munson0d641202011-06-24 12:26:26 -04004149 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004150 atomic64_read(&event->child_total_time_enabled);
4151
Eric B Munson0d641202011-06-24 12:26:26 -04004152 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004153 atomic64_read(&event->child_total_time_running);
4154
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004155 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004156
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004157 barrier();
4158 ++userpg->lock;
4159 preempt_enable();
4160unlock:
4161 rcu_read_unlock();
4162}
4163
Peter Zijlstra906010b2009-09-21 16:08:49 +02004164static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
4165{
4166 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004167 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004168 int ret = VM_FAULT_SIGBUS;
4169
4170 if (vmf->flags & FAULT_FLAG_MKWRITE) {
4171 if (vmf->pgoff == 0)
4172 ret = 0;
4173 return ret;
4174 }
4175
4176 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004177 rb = rcu_dereference(event->rb);
4178 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004179 goto unlock;
4180
4181 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4182 goto unlock;
4183
Frederic Weisbecker76369132011-05-19 19:55:04 +02004184 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004185 if (!vmf->page)
4186 goto unlock;
4187
4188 get_page(vmf->page);
4189 vmf->page->mapping = vma->vm_file->f_mapping;
4190 vmf->page->index = vmf->pgoff;
4191
4192 ret = 0;
4193unlock:
4194 rcu_read_unlock();
4195
4196 return ret;
4197}
4198
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004199static void ring_buffer_attach(struct perf_event *event,
4200 struct ring_buffer *rb)
4201{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004202 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004203 unsigned long flags;
4204
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004205 if (event->rb) {
4206 /*
4207 * Should be impossible, we set this when removing
4208 * event->rb_entry and wait/clear when adding event->rb_entry.
4209 */
4210 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004211
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004212 old_rb = event->rb;
4213 event->rcu_batches = get_state_synchronize_rcu();
4214 event->rcu_pending = 1;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004215
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004216 spin_lock_irqsave(&old_rb->event_lock, flags);
4217 list_del_rcu(&event->rb_entry);
4218 spin_unlock_irqrestore(&old_rb->event_lock, flags);
4219 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004220
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004221 if (event->rcu_pending && rb) {
4222 cond_synchronize_rcu(event->rcu_batches);
4223 event->rcu_pending = 0;
4224 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004225
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004226 if (rb) {
4227 spin_lock_irqsave(&rb->event_lock, flags);
4228 list_add_rcu(&event->rb_entry, &rb->event_list);
4229 spin_unlock_irqrestore(&rb->event_lock, flags);
4230 }
4231
4232 rcu_assign_pointer(event->rb, rb);
4233
4234 if (old_rb) {
4235 ring_buffer_put(old_rb);
4236 /*
4237 * Since we detached before setting the new rb, so that we
4238 * could attach the new rb, we could have missed a wakeup.
4239 * Provide it now.
4240 */
4241 wake_up_all(&event->waitq);
4242 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004243}
4244
4245static void ring_buffer_wakeup(struct perf_event *event)
4246{
4247 struct ring_buffer *rb;
4248
4249 rcu_read_lock();
4250 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004251 if (rb) {
4252 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
4253 wake_up_all(&event->waitq);
4254 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004255 rcu_read_unlock();
4256}
4257
Frederic Weisbecker76369132011-05-19 19:55:04 +02004258static void rb_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004259{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004260 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004261
Frederic Weisbecker76369132011-05-19 19:55:04 +02004262 rb = container_of(rcu_head, struct ring_buffer, rcu_head);
4263 rb_free(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004264}
4265
Frederic Weisbecker76369132011-05-19 19:55:04 +02004266static struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004267{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004268 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004269
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004270 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004271 rb = rcu_dereference(event->rb);
4272 if (rb) {
4273 if (!atomic_inc_not_zero(&rb->refcount))
4274 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004275 }
4276 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004277
Frederic Weisbecker76369132011-05-19 19:55:04 +02004278 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004279}
4280
Frederic Weisbecker76369132011-05-19 19:55:04 +02004281static void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004282{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004283 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004284 return;
4285
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004286 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004287
Frederic Weisbecker76369132011-05-19 19:55:04 +02004288 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004289}
4290
4291static void perf_mmap_open(struct vm_area_struct *vma)
4292{
4293 struct perf_event *event = vma->vm_file->private_data;
4294
4295 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004296 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004297
4298 if (event->pmu->event_mapped)
4299 event->pmu->event_mapped(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004300}
4301
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004302/*
4303 * A buffer can be mmap()ed multiple times; either directly through the same
4304 * event, or through other events by use of perf_event_set_output().
4305 *
4306 * In order to undo the VM accounting done by perf_mmap() we need to destroy
4307 * the buffer here, where we still have a VM context. This means we need
4308 * to detach all events redirecting to us.
4309 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004310static void perf_mmap_close(struct vm_area_struct *vma)
4311{
4312 struct perf_event *event = vma->vm_file->private_data;
4313
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004314 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004315 struct user_struct *mmap_user = rb->mmap_user;
4316 int mmap_locked = rb->mmap_locked;
4317 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004318
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004319 if (event->pmu->event_unmapped)
4320 event->pmu->event_unmapped(event);
4321
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004322 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004323
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004324 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004325 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004326
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004327 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004328 mutex_unlock(&event->mmap_mutex);
4329
4330 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004331 if (atomic_read(&rb->mmap_count))
4332 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004333
4334 /*
4335 * No other mmap()s, detach from all other events that might redirect
4336 * into the now unreachable buffer. Somewhat complicated by the
4337 * fact that rb::event_lock otherwise nests inside mmap_mutex.
4338 */
4339again:
4340 rcu_read_lock();
4341 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
4342 if (!atomic_long_inc_not_zero(&event->refcount)) {
4343 /*
4344 * This event is en-route to free_event() which will
4345 * detach it and remove it from the list.
4346 */
4347 continue;
4348 }
4349 rcu_read_unlock();
4350
4351 mutex_lock(&event->mmap_mutex);
4352 /*
4353 * Check we didn't race with perf_event_set_output() which can
4354 * swizzle the rb from under us while we were waiting to
4355 * acquire mmap_mutex.
4356 *
4357 * If we find a different rb; ignore this event, a next
4358 * iteration will no longer find it on the list. We have to
4359 * still restart the iteration to make sure we're not now
4360 * iterating the wrong list.
4361 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004362 if (event->rb == rb)
4363 ring_buffer_attach(event, NULL);
4364
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004365 mutex_unlock(&event->mmap_mutex);
4366 put_event(event);
4367
4368 /*
4369 * Restart the iteration; either we're on the wrong list or
4370 * destroyed its integrity by doing a deletion.
4371 */
4372 goto again;
4373 }
4374 rcu_read_unlock();
4375
4376 /*
4377 * It could be there's still a few 0-ref events on the list; they'll
4378 * get cleaned up by free_event() -- they'll also still have their
4379 * ref on the rb and will free it whenever they are done with it.
4380 *
4381 * Aside from that, this buffer is 'fully' detached and unmapped,
4382 * undo the VM accounting.
4383 */
4384
4385 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
4386 vma->vm_mm->pinned_vm -= mmap_locked;
4387 free_uid(mmap_user);
4388
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004389out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004390 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004391}
4392
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04004393static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004394 .open = perf_mmap_open,
4395 .close = perf_mmap_close,
4396 .fault = perf_mmap_fault,
4397 .page_mkwrite = perf_mmap_fault,
4398};
4399
4400static int perf_mmap(struct file *file, struct vm_area_struct *vma)
4401{
4402 struct perf_event *event = file->private_data;
4403 unsigned long user_locked, user_lock_limit;
4404 struct user_struct *user = current_user();
4405 unsigned long locked, lock_limit;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004406 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004407 unsigned long vma_size;
4408 unsigned long nr_pages;
4409 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004410 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004411
Peter Zijlstrac7920612010-05-18 10:33:24 +02004412 /*
4413 * Don't allow mmap() of inherited per-task counters. This would
4414 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02004415 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02004416 */
4417 if (event->cpu == -1 && event->attr.inherit)
4418 return -EINVAL;
4419
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004420 if (!(vma->vm_flags & VM_SHARED))
4421 return -EINVAL;
4422
4423 vma_size = vma->vm_end - vma->vm_start;
4424 nr_pages = (vma_size / PAGE_SIZE) - 1;
4425
4426 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02004427 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004428 * can do bitmasks instead of modulo.
4429 */
4430 if (nr_pages != 0 && !is_power_of_2(nr_pages))
4431 return -EINVAL;
4432
4433 if (vma_size != PAGE_SIZE * (1 + nr_pages))
4434 return -EINVAL;
4435
4436 if (vma->vm_pgoff != 0)
4437 return -EINVAL;
4438
4439 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004440again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004441 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004442 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004443 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004444 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004445 goto unlock;
4446 }
4447
4448 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
4449 /*
4450 * Raced against perf_mmap_close() through
4451 * perf_event_set_output(). Try again, hope for better
4452 * luck.
4453 */
4454 mutex_unlock(&event->mmap_mutex);
4455 goto again;
4456 }
4457
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004458 goto unlock;
4459 }
4460
4461 user_extra = nr_pages + 1;
4462 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
4463
4464 /*
4465 * Increase the limit linearly with more CPUs:
4466 */
4467 user_lock_limit *= num_online_cpus();
4468
4469 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
4470
4471 extra = 0;
4472 if (user_locked > user_lock_limit)
4473 extra = user_locked - user_lock_limit;
4474
Jiri Slaby78d7d402010-03-05 13:42:54 -08004475 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004476 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07004477 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004478
4479 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
4480 !capable(CAP_IPC_LOCK)) {
4481 ret = -EPERM;
4482 goto unlock;
4483 }
4484
Frederic Weisbecker76369132011-05-19 19:55:04 +02004485 WARN_ON(event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004486
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004487 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004488 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004489
Vince Weaver4ec83632011-06-01 15:15:36 -04004490 rb = rb_alloc(nr_pages,
4491 event->attr.watermark ? event->attr.wakeup_watermark : 0,
4492 event->cpu, flags);
4493
Frederic Weisbecker76369132011-05-19 19:55:04 +02004494 if (!rb) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004495 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004496 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004497 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004498
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004499 atomic_set(&rb->mmap_count, 1);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004500 rb->mmap_locked = extra;
4501 rb->mmap_user = get_current_user();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004502
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004503 atomic_long_add(user_extra, &user->locked_vm);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004504 vma->vm_mm->pinned_vm += extra;
4505
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004506 ring_buffer_attach(event, rb);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004507
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004508 perf_event_init_userpage(event);
Peter Zijlstra9a0f05c2011-11-21 15:13:29 +01004509 perf_event_update_userpage(event);
4510
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004511unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004512 if (!ret)
4513 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004514 mutex_unlock(&event->mmap_mutex);
4515
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004516 /*
4517 * Since pinned accounting is per vm we cannot allow fork() to copy our
4518 * vma.
4519 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004520 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004521 vma->vm_ops = &perf_mmap_vmops;
4522
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004523 if (event->pmu->event_mapped)
4524 event->pmu->event_mapped(event);
4525
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004526 return ret;
4527}
4528
4529static int perf_fasync(int fd, struct file *filp, int on)
4530{
Al Viro496ad9a2013-01-23 17:07:38 -05004531 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004532 struct perf_event *event = filp->private_data;
4533 int retval;
4534
4535 mutex_lock(&inode->i_mutex);
4536 retval = fasync_helper(fd, filp, on, &event->fasync);
4537 mutex_unlock(&inode->i_mutex);
4538
4539 if (retval < 0)
4540 return retval;
4541
4542 return 0;
4543}
4544
4545static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01004546 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004547 .release = perf_release,
4548 .read = perf_read,
4549 .poll = perf_poll,
4550 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01004551 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004552 .mmap = perf_mmap,
4553 .fasync = perf_fasync,
4554};
4555
4556/*
4557 * Perf event wakeup
4558 *
4559 * If there's data, ensure we set the poll() state and publish everything
4560 * to user-space before waking everybody up.
4561 */
4562
4563void perf_event_wakeup(struct perf_event *event)
4564{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004565 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004566
4567 if (event->pending_kill) {
4568 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
4569 event->pending_kill = 0;
4570 }
4571}
4572
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004573static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004574{
4575 struct perf_event *event = container_of(entry,
4576 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01004577 int rctx;
4578
4579 rctx = perf_swevent_get_recursion_context();
4580 /*
4581 * If we 'fail' here, that's OK, it means recursion is already disabled
4582 * and we won't recurse 'further'.
4583 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004584
4585 if (event->pending_disable) {
4586 event->pending_disable = 0;
4587 __perf_event_disable(event);
4588 }
4589
4590 if (event->pending_wakeup) {
4591 event->pending_wakeup = 0;
4592 perf_event_wakeup(event);
4593 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01004594
4595 if (rctx >= 0)
4596 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004597}
4598
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004599/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004600 * We assume there is only KVM supporting the callbacks.
4601 * Later on, we might change it to a list if there is
4602 * another virtualization implementation supporting the callbacks.
4603 */
4604struct perf_guest_info_callbacks *perf_guest_cbs;
4605
4606int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4607{
4608 perf_guest_cbs = cbs;
4609 return 0;
4610}
4611EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
4612
4613int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4614{
4615 perf_guest_cbs = NULL;
4616 return 0;
4617}
4618EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
4619
Jiri Olsa40189942012-08-07 15:20:37 +02004620static void
4621perf_output_sample_regs(struct perf_output_handle *handle,
4622 struct pt_regs *regs, u64 mask)
4623{
4624 int bit;
4625
4626 for_each_set_bit(bit, (const unsigned long *) &mask,
4627 sizeof(mask) * BITS_PER_BYTE) {
4628 u64 val;
4629
4630 val = perf_reg_value(regs, bit);
4631 perf_output_put(handle, val);
4632 }
4633}
4634
Stephane Eranian60e23642014-09-24 13:48:37 +02004635static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004636 struct pt_regs *regs,
4637 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02004638{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004639 if (user_mode(regs)) {
4640 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02004641 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004642 } else if (current->mm) {
4643 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02004644 } else {
4645 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
4646 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02004647 }
4648}
4649
Stephane Eranian60e23642014-09-24 13:48:37 +02004650static void perf_sample_regs_intr(struct perf_regs *regs_intr,
4651 struct pt_regs *regs)
4652{
4653 regs_intr->regs = regs;
4654 regs_intr->abi = perf_reg_abi(current);
4655}
4656
4657
Jiri Olsac5ebced2012-08-07 15:20:40 +02004658/*
4659 * Get remaining task size from user stack pointer.
4660 *
4661 * It'd be better to take stack vma map and limit this more
4662 * precisly, but there's no way to get it safely under interrupt,
4663 * so using TASK_SIZE as limit.
4664 */
4665static u64 perf_ustack_task_size(struct pt_regs *regs)
4666{
4667 unsigned long addr = perf_user_stack_pointer(regs);
4668
4669 if (!addr || addr >= TASK_SIZE)
4670 return 0;
4671
4672 return TASK_SIZE - addr;
4673}
4674
4675static u16
4676perf_sample_ustack_size(u16 stack_size, u16 header_size,
4677 struct pt_regs *regs)
4678{
4679 u64 task_size;
4680
4681 /* No regs, no stack pointer, no dump. */
4682 if (!regs)
4683 return 0;
4684
4685 /*
4686 * Check if we fit in with the requested stack size into the:
4687 * - TASK_SIZE
4688 * If we don't, we limit the size to the TASK_SIZE.
4689 *
4690 * - remaining sample size
4691 * If we don't, we customize the stack size to
4692 * fit in to the remaining sample size.
4693 */
4694
4695 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
4696 stack_size = min(stack_size, (u16) task_size);
4697
4698 /* Current header size plus static size and dynamic size. */
4699 header_size += 2 * sizeof(u64);
4700
4701 /* Do we fit in with the current stack dump size? */
4702 if ((u16) (header_size + stack_size) < header_size) {
4703 /*
4704 * If we overflow the maximum size for the sample,
4705 * we customize the stack dump size to fit in.
4706 */
4707 stack_size = USHRT_MAX - header_size - sizeof(u64);
4708 stack_size = round_up(stack_size, sizeof(u64));
4709 }
4710
4711 return stack_size;
4712}
4713
4714static void
4715perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
4716 struct pt_regs *regs)
4717{
4718 /* Case of a kernel thread, nothing to dump */
4719 if (!regs) {
4720 u64 size = 0;
4721 perf_output_put(handle, size);
4722 } else {
4723 unsigned long sp;
4724 unsigned int rem;
4725 u64 dyn_size;
4726
4727 /*
4728 * We dump:
4729 * static size
4730 * - the size requested by user or the best one we can fit
4731 * in to the sample max size
4732 * data
4733 * - user stack dump data
4734 * dynamic size
4735 * - the actual dumped size
4736 */
4737
4738 /* Static size. */
4739 perf_output_put(handle, dump_size);
4740
4741 /* Data. */
4742 sp = perf_user_stack_pointer(regs);
4743 rem = __output_copy_user(handle, (void *) sp, dump_size);
4744 dyn_size = dump_size - rem;
4745
4746 perf_output_skip(handle, rem);
4747
4748 /* Dynamic size. */
4749 perf_output_put(handle, dyn_size);
4750 }
4751}
4752
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004753static void __perf_event_header__init_id(struct perf_event_header *header,
4754 struct perf_sample_data *data,
4755 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004756{
4757 u64 sample_type = event->attr.sample_type;
4758
4759 data->type = sample_type;
4760 header->size += event->id_header_size;
4761
4762 if (sample_type & PERF_SAMPLE_TID) {
4763 /* namespace issues */
4764 data->tid_entry.pid = perf_event_pid(event, current);
4765 data->tid_entry.tid = perf_event_tid(event, current);
4766 }
4767
4768 if (sample_type & PERF_SAMPLE_TIME)
4769 data->time = perf_clock();
4770
Adrian Hunterff3d5272013-08-27 11:23:07 +03004771 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004772 data->id = primary_event_id(event);
4773
4774 if (sample_type & PERF_SAMPLE_STREAM_ID)
4775 data->stream_id = event->id;
4776
4777 if (sample_type & PERF_SAMPLE_CPU) {
4778 data->cpu_entry.cpu = raw_smp_processor_id();
4779 data->cpu_entry.reserved = 0;
4780 }
4781}
4782
Frederic Weisbecker76369132011-05-19 19:55:04 +02004783void perf_event_header__init_id(struct perf_event_header *header,
4784 struct perf_sample_data *data,
4785 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004786{
4787 if (event->attr.sample_id_all)
4788 __perf_event_header__init_id(header, data, event);
4789}
4790
4791static void __perf_event__output_id_sample(struct perf_output_handle *handle,
4792 struct perf_sample_data *data)
4793{
4794 u64 sample_type = data->type;
4795
4796 if (sample_type & PERF_SAMPLE_TID)
4797 perf_output_put(handle, data->tid_entry);
4798
4799 if (sample_type & PERF_SAMPLE_TIME)
4800 perf_output_put(handle, data->time);
4801
4802 if (sample_type & PERF_SAMPLE_ID)
4803 perf_output_put(handle, data->id);
4804
4805 if (sample_type & PERF_SAMPLE_STREAM_ID)
4806 perf_output_put(handle, data->stream_id);
4807
4808 if (sample_type & PERF_SAMPLE_CPU)
4809 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03004810
4811 if (sample_type & PERF_SAMPLE_IDENTIFIER)
4812 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004813}
4814
Frederic Weisbecker76369132011-05-19 19:55:04 +02004815void perf_event__output_id_sample(struct perf_event *event,
4816 struct perf_output_handle *handle,
4817 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004818{
4819 if (event->attr.sample_id_all)
4820 __perf_event__output_id_sample(handle, sample);
4821}
4822
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004823static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004824 struct perf_event *event,
4825 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004826{
4827 u64 read_format = event->attr.read_format;
4828 u64 values[4];
4829 int n = 0;
4830
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004831 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004832 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004833 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004834 atomic64_read(&event->child_total_time_enabled);
4835 }
4836 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004837 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004838 atomic64_read(&event->child_total_time_running);
4839 }
4840 if (read_format & PERF_FORMAT_ID)
4841 values[n++] = primary_event_id(event);
4842
Frederic Weisbecker76369132011-05-19 19:55:04 +02004843 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004844}
4845
4846/*
4847 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
4848 */
4849static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004850 struct perf_event *event,
4851 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004852{
4853 struct perf_event *leader = event->group_leader, *sub;
4854 u64 read_format = event->attr.read_format;
4855 u64 values[5];
4856 int n = 0;
4857
4858 values[n++] = 1 + leader->nr_siblings;
4859
4860 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02004861 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004862
4863 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02004864 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004865
4866 if (leader != event)
4867 leader->pmu->read(leader);
4868
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004869 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004870 if (read_format & PERF_FORMAT_ID)
4871 values[n++] = primary_event_id(leader);
4872
Frederic Weisbecker76369132011-05-19 19:55:04 +02004873 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004874
4875 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
4876 n = 0;
4877
Jiri Olsa6f5ab002012-10-15 20:13:45 +02004878 if ((sub != event) &&
4879 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004880 sub->pmu->read(sub);
4881
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004882 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004883 if (read_format & PERF_FORMAT_ID)
4884 values[n++] = primary_event_id(sub);
4885
Frederic Weisbecker76369132011-05-19 19:55:04 +02004886 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004887 }
4888}
4889
Stephane Eranianeed01522010-10-26 16:08:01 +02004890#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
4891 PERF_FORMAT_TOTAL_TIME_RUNNING)
4892
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004893static void perf_output_read(struct perf_output_handle *handle,
4894 struct perf_event *event)
4895{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004896 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02004897 u64 read_format = event->attr.read_format;
4898
4899 /*
4900 * compute total_time_enabled, total_time_running
4901 * based on snapshot values taken when the event
4902 * was last scheduled in.
4903 *
4904 * we cannot simply called update_context_time()
4905 * because of locking issue as we are called in
4906 * NMI context
4907 */
Eric B Munsonc4794292011-06-23 16:34:38 -04004908 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004909 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02004910
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004911 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02004912 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004913 else
Stephane Eranianeed01522010-10-26 16:08:01 +02004914 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004915}
4916
4917void perf_output_sample(struct perf_output_handle *handle,
4918 struct perf_event_header *header,
4919 struct perf_sample_data *data,
4920 struct perf_event *event)
4921{
4922 u64 sample_type = data->type;
4923
4924 perf_output_put(handle, *header);
4925
Adrian Hunterff3d5272013-08-27 11:23:07 +03004926 if (sample_type & PERF_SAMPLE_IDENTIFIER)
4927 perf_output_put(handle, data->id);
4928
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004929 if (sample_type & PERF_SAMPLE_IP)
4930 perf_output_put(handle, data->ip);
4931
4932 if (sample_type & PERF_SAMPLE_TID)
4933 perf_output_put(handle, data->tid_entry);
4934
4935 if (sample_type & PERF_SAMPLE_TIME)
4936 perf_output_put(handle, data->time);
4937
4938 if (sample_type & PERF_SAMPLE_ADDR)
4939 perf_output_put(handle, data->addr);
4940
4941 if (sample_type & PERF_SAMPLE_ID)
4942 perf_output_put(handle, data->id);
4943
4944 if (sample_type & PERF_SAMPLE_STREAM_ID)
4945 perf_output_put(handle, data->stream_id);
4946
4947 if (sample_type & PERF_SAMPLE_CPU)
4948 perf_output_put(handle, data->cpu_entry);
4949
4950 if (sample_type & PERF_SAMPLE_PERIOD)
4951 perf_output_put(handle, data->period);
4952
4953 if (sample_type & PERF_SAMPLE_READ)
4954 perf_output_read(handle, event);
4955
4956 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4957 if (data->callchain) {
4958 int size = 1;
4959
4960 if (data->callchain)
4961 size += data->callchain->nr;
4962
4963 size *= sizeof(u64);
4964
Frederic Weisbecker76369132011-05-19 19:55:04 +02004965 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004966 } else {
4967 u64 nr = 0;
4968 perf_output_put(handle, nr);
4969 }
4970 }
4971
4972 if (sample_type & PERF_SAMPLE_RAW) {
4973 if (data->raw) {
4974 perf_output_put(handle, data->raw->size);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004975 __output_copy(handle, data->raw->data,
4976 data->raw->size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004977 } else {
4978 struct {
4979 u32 size;
4980 u32 data;
4981 } raw = {
4982 .size = sizeof(u32),
4983 .data = 0,
4984 };
4985 perf_output_put(handle, raw);
4986 }
4987 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004988
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004989 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4990 if (data->br_stack) {
4991 size_t size;
4992
4993 size = data->br_stack->nr
4994 * sizeof(struct perf_branch_entry);
4995
4996 perf_output_put(handle, data->br_stack->nr);
4997 perf_output_copy(handle, data->br_stack->entries, size);
4998 } else {
4999 /*
5000 * we always store at least the value of nr
5001 */
5002 u64 nr = 0;
5003 perf_output_put(handle, nr);
5004 }
5005 }
Jiri Olsa40189942012-08-07 15:20:37 +02005006
5007 if (sample_type & PERF_SAMPLE_REGS_USER) {
5008 u64 abi = data->regs_user.abi;
5009
5010 /*
5011 * If there are no regs to dump, notice it through
5012 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5013 */
5014 perf_output_put(handle, abi);
5015
5016 if (abi) {
5017 u64 mask = event->attr.sample_regs_user;
5018 perf_output_sample_regs(handle,
5019 data->regs_user.regs,
5020 mask);
5021 }
5022 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005023
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005024 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005025 perf_output_sample_ustack(handle,
5026 data->stack_user_size,
5027 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005028 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005029
5030 if (sample_type & PERF_SAMPLE_WEIGHT)
5031 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005032
5033 if (sample_type & PERF_SAMPLE_DATA_SRC)
5034 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005035
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005036 if (sample_type & PERF_SAMPLE_TRANSACTION)
5037 perf_output_put(handle, data->txn);
5038
Stephane Eranian60e23642014-09-24 13:48:37 +02005039 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5040 u64 abi = data->regs_intr.abi;
5041 /*
5042 * If there are no regs to dump, notice it through
5043 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5044 */
5045 perf_output_put(handle, abi);
5046
5047 if (abi) {
5048 u64 mask = event->attr.sample_regs_intr;
5049
5050 perf_output_sample_regs(handle,
5051 data->regs_intr.regs,
5052 mask);
5053 }
5054 }
5055
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005056 if (!event->attr.watermark) {
5057 int wakeup_events = event->attr.wakeup_events;
5058
5059 if (wakeup_events) {
5060 struct ring_buffer *rb = handle->rb;
5061 int events = local_inc_return(&rb->events);
5062
5063 if (events >= wakeup_events) {
5064 local_sub(wakeup_events, &rb->events);
5065 local_inc(&rb->wakeup);
5066 }
5067 }
5068 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005069}
5070
5071void perf_prepare_sample(struct perf_event_header *header,
5072 struct perf_sample_data *data,
5073 struct perf_event *event,
5074 struct pt_regs *regs)
5075{
5076 u64 sample_type = event->attr.sample_type;
5077
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005078 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005079 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005080
5081 header->misc = 0;
5082 header->misc |= perf_misc_flags(regs);
5083
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005084 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005085
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005086 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005087 data->ip = perf_instruction_pointer(regs);
5088
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005089 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5090 int size = 1;
5091
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005092 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005093
5094 if (data->callchain)
5095 size += data->callchain->nr;
5096
5097 header->size += size * sizeof(u64);
5098 }
5099
5100 if (sample_type & PERF_SAMPLE_RAW) {
5101 int size = sizeof(u32);
5102
5103 if (data->raw)
5104 size += data->raw->size;
5105 else
5106 size += sizeof(u32);
5107
5108 WARN_ON_ONCE(size & (sizeof(u64)-1));
5109 header->size += size;
5110 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005111
5112 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5113 int size = sizeof(u64); /* nr */
5114 if (data->br_stack) {
5115 size += data->br_stack->nr
5116 * sizeof(struct perf_branch_entry);
5117 }
5118 header->size += size;
5119 }
Jiri Olsa40189942012-08-07 15:20:37 +02005120
Peter Zijlstra25657112014-09-24 13:48:42 +02005121 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005122 perf_sample_regs_user(&data->regs_user, regs,
5123 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005124
Jiri Olsa40189942012-08-07 15:20:37 +02005125 if (sample_type & PERF_SAMPLE_REGS_USER) {
5126 /* regs dump ABI info */
5127 int size = sizeof(u64);
5128
Jiri Olsa40189942012-08-07 15:20:37 +02005129 if (data->regs_user.regs) {
5130 u64 mask = event->attr.sample_regs_user;
5131 size += hweight64(mask) * sizeof(u64);
5132 }
5133
5134 header->size += size;
5135 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005136
5137 if (sample_type & PERF_SAMPLE_STACK_USER) {
5138 /*
5139 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
5140 * processed as the last one or have additional check added
5141 * in case new sample type is added, because we could eat
5142 * up the rest of the sample size.
5143 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02005144 u16 stack_size = event->attr.sample_stack_user;
5145 u16 size = sizeof(u64);
5146
Jiri Olsac5ebced2012-08-07 15:20:40 +02005147 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02005148 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02005149
5150 /*
5151 * If there is something to dump, add space for the dump
5152 * itself and for the field that tells the dynamic size,
5153 * which is how many have been actually dumped.
5154 */
5155 if (stack_size)
5156 size += sizeof(u64) + stack_size;
5157
5158 data->stack_user_size = stack_size;
5159 header->size += size;
5160 }
Stephane Eranian60e23642014-09-24 13:48:37 +02005161
5162 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5163 /* regs dump ABI info */
5164 int size = sizeof(u64);
5165
5166 perf_sample_regs_intr(&data->regs_intr, regs);
5167
5168 if (data->regs_intr.regs) {
5169 u64 mask = event->attr.sample_regs_intr;
5170
5171 size += hweight64(mask) * sizeof(u64);
5172 }
5173
5174 header->size += size;
5175 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005176}
5177
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005178static void perf_event_output(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005179 struct perf_sample_data *data,
5180 struct pt_regs *regs)
5181{
5182 struct perf_output_handle handle;
5183 struct perf_event_header header;
5184
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005185 /* protect the callchain buffers */
5186 rcu_read_lock();
5187
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005188 perf_prepare_sample(&header, data, event, regs);
5189
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005190 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005191 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005192
5193 perf_output_sample(&handle, &header, data, event);
5194
5195 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005196
5197exit:
5198 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005199}
5200
5201/*
5202 * read event_id
5203 */
5204
5205struct perf_read_event {
5206 struct perf_event_header header;
5207
5208 u32 pid;
5209 u32 tid;
5210};
5211
5212static void
5213perf_event_read_event(struct perf_event *event,
5214 struct task_struct *task)
5215{
5216 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005217 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005218 struct perf_read_event read_event = {
5219 .header = {
5220 .type = PERF_RECORD_READ,
5221 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005222 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005223 },
5224 .pid = perf_event_pid(event, task),
5225 .tid = perf_event_tid(event, task),
5226 };
5227 int ret;
5228
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005229 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005230 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005231 if (ret)
5232 return;
5233
5234 perf_output_put(&handle, read_event);
5235 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005236 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005237
5238 perf_output_end(&handle);
5239}
5240
Jiri Olsa52d857a2013-05-06 18:27:18 +02005241typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
5242
5243static void
5244perf_event_aux_ctx(struct perf_event_context *ctx,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005245 perf_event_aux_output_cb output,
5246 void *data)
5247{
5248 struct perf_event *event;
5249
5250 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5251 if (event->state < PERF_EVENT_STATE_INACTIVE)
5252 continue;
5253 if (!event_filter_match(event))
5254 continue;
Jiri Olsa67516842013-07-09 18:56:31 +02005255 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005256 }
5257}
5258
5259static void
Jiri Olsa67516842013-07-09 18:56:31 +02005260perf_event_aux(perf_event_aux_output_cb output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005261 struct perf_event_context *task_ctx)
5262{
5263 struct perf_cpu_context *cpuctx;
5264 struct perf_event_context *ctx;
5265 struct pmu *pmu;
5266 int ctxn;
5267
5268 rcu_read_lock();
5269 list_for_each_entry_rcu(pmu, &pmus, entry) {
5270 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
5271 if (cpuctx->unique_pmu != pmu)
5272 goto next;
Jiri Olsa67516842013-07-09 18:56:31 +02005273 perf_event_aux_ctx(&cpuctx->ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005274 if (task_ctx)
5275 goto next;
5276 ctxn = pmu->task_ctx_nr;
5277 if (ctxn < 0)
5278 goto next;
5279 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
5280 if (ctx)
Jiri Olsa67516842013-07-09 18:56:31 +02005281 perf_event_aux_ctx(ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005282next:
5283 put_cpu_ptr(pmu->pmu_cpu_context);
5284 }
5285
5286 if (task_ctx) {
5287 preempt_disable();
Jiri Olsa67516842013-07-09 18:56:31 +02005288 perf_event_aux_ctx(task_ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005289 preempt_enable();
5290 }
5291 rcu_read_unlock();
5292}
5293
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005294/*
5295 * task tracking -- fork/exit
5296 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02005297 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005298 */
5299
5300struct perf_task_event {
5301 struct task_struct *task;
5302 struct perf_event_context *task_ctx;
5303
5304 struct {
5305 struct perf_event_header header;
5306
5307 u32 pid;
5308 u32 ppid;
5309 u32 tid;
5310 u32 ptid;
5311 u64 time;
5312 } event_id;
5313};
5314
Jiri Olsa67516842013-07-09 18:56:31 +02005315static int perf_event_task_match(struct perf_event *event)
5316{
Stephane Eranian13d7a242013-08-21 12:10:24 +02005317 return event->attr.comm || event->attr.mmap ||
5318 event->attr.mmap2 || event->attr.mmap_data ||
5319 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02005320}
5321
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005322static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005323 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005324{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005325 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005326 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005327 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005328 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005329 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01005330
Jiri Olsa67516842013-07-09 18:56:31 +02005331 if (!perf_event_task_match(event))
5332 return;
5333
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005334 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005335
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005336 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005337 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02005338 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005339 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005340
5341 task_event->event_id.pid = perf_event_pid(event, task);
5342 task_event->event_id.ppid = perf_event_pid(event, current);
5343
5344 task_event->event_id.tid = perf_event_tid(event, task);
5345 task_event->event_id.ptid = perf_event_tid(event, current);
5346
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005347 perf_output_put(&handle, task_event->event_id);
5348
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005349 perf_event__output_id_sample(event, &handle, &sample);
5350
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005351 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005352out:
5353 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005354}
5355
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005356static void perf_event_task(struct task_struct *task,
5357 struct perf_event_context *task_ctx,
5358 int new)
5359{
5360 struct perf_task_event task_event;
5361
5362 if (!atomic_read(&nr_comm_events) &&
5363 !atomic_read(&nr_mmap_events) &&
5364 !atomic_read(&nr_task_events))
5365 return;
5366
5367 task_event = (struct perf_task_event){
5368 .task = task,
5369 .task_ctx = task_ctx,
5370 .event_id = {
5371 .header = {
5372 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
5373 .misc = 0,
5374 .size = sizeof(task_event.event_id),
5375 },
5376 /* .pid */
5377 /* .ppid */
5378 /* .tid */
5379 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01005380 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005381 },
5382 };
5383
Jiri Olsa67516842013-07-09 18:56:31 +02005384 perf_event_aux(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005385 &task_event,
5386 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005387}
5388
5389void perf_event_fork(struct task_struct *task)
5390{
5391 perf_event_task(task, NULL, 1);
5392}
5393
5394/*
5395 * comm tracking
5396 */
5397
5398struct perf_comm_event {
5399 struct task_struct *task;
5400 char *comm;
5401 int comm_size;
5402
5403 struct {
5404 struct perf_event_header header;
5405
5406 u32 pid;
5407 u32 tid;
5408 } event_id;
5409};
5410
Jiri Olsa67516842013-07-09 18:56:31 +02005411static int perf_event_comm_match(struct perf_event *event)
5412{
5413 return event->attr.comm;
5414}
5415
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005416static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005417 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005418{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005419 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005420 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005421 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005422 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005423 int ret;
5424
Jiri Olsa67516842013-07-09 18:56:31 +02005425 if (!perf_event_comm_match(event))
5426 return;
5427
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005428 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
5429 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005430 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005431
5432 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005433 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005434
5435 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
5436 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
5437
5438 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005439 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005440 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005441
5442 perf_event__output_id_sample(event, &handle, &sample);
5443
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005444 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005445out:
5446 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005447}
5448
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005449static void perf_event_comm_event(struct perf_comm_event *comm_event)
5450{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005451 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005452 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005453
5454 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01005455 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005456 size = ALIGN(strlen(comm)+1, sizeof(u64));
5457
5458 comm_event->comm = comm;
5459 comm_event->comm_size = size;
5460
5461 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02005462
Jiri Olsa67516842013-07-09 18:56:31 +02005463 perf_event_aux(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005464 comm_event,
5465 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005466}
5467
Adrian Hunter82b89772014-05-28 11:45:04 +03005468void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005469{
5470 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005471
5472 if (!atomic_read(&nr_comm_events))
5473 return;
5474
5475 comm_event = (struct perf_comm_event){
5476 .task = task,
5477 /* .comm */
5478 /* .comm_size */
5479 .event_id = {
5480 .header = {
5481 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03005482 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005483 /* .size */
5484 },
5485 /* .pid */
5486 /* .tid */
5487 },
5488 };
5489
5490 perf_event_comm_event(&comm_event);
5491}
5492
5493/*
5494 * mmap tracking
5495 */
5496
5497struct perf_mmap_event {
5498 struct vm_area_struct *vma;
5499
5500 const char *file_name;
5501 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005502 int maj, min;
5503 u64 ino;
5504 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005505 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005506
5507 struct {
5508 struct perf_event_header header;
5509
5510 u32 pid;
5511 u32 tid;
5512 u64 start;
5513 u64 len;
5514 u64 pgoff;
5515 } event_id;
5516};
5517
Jiri Olsa67516842013-07-09 18:56:31 +02005518static int perf_event_mmap_match(struct perf_event *event,
5519 void *data)
5520{
5521 struct perf_mmap_event *mmap_event = data;
5522 struct vm_area_struct *vma = mmap_event->vma;
5523 int executable = vma->vm_flags & VM_EXEC;
5524
5525 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02005526 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02005527}
5528
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005529static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005530 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005531{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005532 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005533 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005534 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005535 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005536 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005537
Jiri Olsa67516842013-07-09 18:56:31 +02005538 if (!perf_event_mmap_match(event, data))
5539 return;
5540
Stephane Eranian13d7a242013-08-21 12:10:24 +02005541 if (event->attr.mmap2) {
5542 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
5543 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
5544 mmap_event->event_id.header.size += sizeof(mmap_event->min);
5545 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03005546 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005547 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
5548 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005549 }
5550
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005551 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
5552 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005553 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005554 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005555 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005556
5557 mmap_event->event_id.pid = perf_event_pid(event, current);
5558 mmap_event->event_id.tid = perf_event_tid(event, current);
5559
5560 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005561
5562 if (event->attr.mmap2) {
5563 perf_output_put(&handle, mmap_event->maj);
5564 perf_output_put(&handle, mmap_event->min);
5565 perf_output_put(&handle, mmap_event->ino);
5566 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005567 perf_output_put(&handle, mmap_event->prot);
5568 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005569 }
5570
Frederic Weisbecker76369132011-05-19 19:55:04 +02005571 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005572 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005573
5574 perf_event__output_id_sample(event, &handle, &sample);
5575
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005576 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005577out:
5578 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005579}
5580
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005581static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
5582{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005583 struct vm_area_struct *vma = mmap_event->vma;
5584 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005585 int maj = 0, min = 0;
5586 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005587 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005588 unsigned int size;
5589 char tmp[16];
5590 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005591 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005592
5593 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02005594 struct inode *inode;
5595 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005596
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005597 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005598 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005599 name = "//enomem";
5600 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005601 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005602 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005603 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005604 * need to add enough zero bytes after the string to handle
5605 * the 64bit alignment we do later.
5606 */
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005607 name = d_path(&file->f_path, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005608 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005609 name = "//toolong";
5610 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005611 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02005612 inode = file_inode(vma->vm_file);
5613 dev = inode->i_sb->s_dev;
5614 ino = inode->i_ino;
5615 gen = inode->i_generation;
5616 maj = MAJOR(dev);
5617 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005618
5619 if (vma->vm_flags & VM_READ)
5620 prot |= PROT_READ;
5621 if (vma->vm_flags & VM_WRITE)
5622 prot |= PROT_WRITE;
5623 if (vma->vm_flags & VM_EXEC)
5624 prot |= PROT_EXEC;
5625
5626 if (vma->vm_flags & VM_MAYSHARE)
5627 flags = MAP_SHARED;
5628 else
5629 flags = MAP_PRIVATE;
5630
5631 if (vma->vm_flags & VM_DENYWRITE)
5632 flags |= MAP_DENYWRITE;
5633 if (vma->vm_flags & VM_MAYEXEC)
5634 flags |= MAP_EXECUTABLE;
5635 if (vma->vm_flags & VM_LOCKED)
5636 flags |= MAP_LOCKED;
5637 if (vma->vm_flags & VM_HUGETLB)
5638 flags |= MAP_HUGETLB;
5639
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005640 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005641 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02005642 if (vma->vm_ops && vma->vm_ops->name) {
5643 name = (char *) vma->vm_ops->name(vma);
5644 if (name)
5645 goto cpy_name;
5646 }
5647
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005648 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005649 if (name)
5650 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005651
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005652 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005653 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005654 name = "[heap]";
5655 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005656 }
5657 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005658 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005659 name = "[stack]";
5660 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005661 }
5662
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005663 name = "//anon";
5664 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005665 }
5666
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005667cpy_name:
5668 strlcpy(tmp, name, sizeof(tmp));
5669 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005670got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005671 /*
5672 * Since our buffer works in 8 byte units we need to align our string
5673 * size to a multiple of 8. However, we must guarantee the tail end is
5674 * zero'd out to avoid leaking random bits to userspace.
5675 */
5676 size = strlen(name)+1;
5677 while (!IS_ALIGNED(size, sizeof(u64)))
5678 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005679
5680 mmap_event->file_name = name;
5681 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005682 mmap_event->maj = maj;
5683 mmap_event->min = min;
5684 mmap_event->ino = ino;
5685 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005686 mmap_event->prot = prot;
5687 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005688
Stephane Eranian2fe85422013-01-24 16:10:39 +01005689 if (!(vma->vm_flags & VM_EXEC))
5690 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
5691
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005692 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
5693
Jiri Olsa67516842013-07-09 18:56:31 +02005694 perf_event_aux(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005695 mmap_event,
5696 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005697
5698 kfree(buf);
5699}
5700
Eric B Munson3af9e852010-05-18 15:30:49 +01005701void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005702{
5703 struct perf_mmap_event mmap_event;
5704
5705 if (!atomic_read(&nr_mmap_events))
5706 return;
5707
5708 mmap_event = (struct perf_mmap_event){
5709 .vma = vma,
5710 /* .file_name */
5711 /* .file_size */
5712 .event_id = {
5713 .header = {
5714 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005715 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005716 /* .size */
5717 },
5718 /* .pid */
5719 /* .tid */
5720 .start = vma->vm_start,
5721 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01005722 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005723 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02005724 /* .maj (attr_mmap2 only) */
5725 /* .min (attr_mmap2 only) */
5726 /* .ino (attr_mmap2 only) */
5727 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005728 /* .prot (attr_mmap2 only) */
5729 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005730 };
5731
5732 perf_event_mmap_event(&mmap_event);
5733}
5734
5735/*
5736 * IRQ throttle logging
5737 */
5738
5739static void perf_log_throttle(struct perf_event *event, int enable)
5740{
5741 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005742 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005743 int ret;
5744
5745 struct {
5746 struct perf_event_header header;
5747 u64 time;
5748 u64 id;
5749 u64 stream_id;
5750 } throttle_event = {
5751 .header = {
5752 .type = PERF_RECORD_THROTTLE,
5753 .misc = 0,
5754 .size = sizeof(throttle_event),
5755 },
5756 .time = perf_clock(),
5757 .id = primary_event_id(event),
5758 .stream_id = event->id,
5759 };
5760
5761 if (enable)
5762 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
5763
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005764 perf_event_header__init_id(&throttle_event.header, &sample, event);
5765
5766 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005767 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005768 if (ret)
5769 return;
5770
5771 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005772 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005773 perf_output_end(&handle);
5774}
5775
5776/*
5777 * Generic event overflow handling, sampling.
5778 */
5779
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005780static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005781 int throttle, struct perf_sample_data *data,
5782 struct pt_regs *regs)
5783{
5784 int events = atomic_read(&event->event_limit);
5785 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005786 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005787 int ret = 0;
5788
Peter Zijlstra96398822010-11-24 18:55:29 +01005789 /*
5790 * Non-sampling counters might still use the PMI to fold short
5791 * hardware counters, ignore those.
5792 */
5793 if (unlikely(!is_sampling_event(event)))
5794 return 0;
5795
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005796 seq = __this_cpu_read(perf_throttled_seq);
5797 if (seq != hwc->interrupts_seq) {
5798 hwc->interrupts_seq = seq;
5799 hwc->interrupts = 1;
5800 } else {
5801 hwc->interrupts++;
5802 if (unlikely(throttle
5803 && hwc->interrupts >= max_samples_per_tick)) {
5804 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01005805 hwc->interrupts = MAX_INTERRUPTS;
5806 perf_log_throttle(event, 0);
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02005807 tick_nohz_full_kick();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005808 ret = 1;
5809 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005810 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005811
5812 if (event->attr.freq) {
5813 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01005814 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005815
Peter Zijlstraabd50712010-01-26 18:50:16 +01005816 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005817
Peter Zijlstraabd50712010-01-26 18:50:16 +01005818 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01005819 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005820 }
5821
5822 /*
5823 * XXX event_limit might not quite work as expected on inherited
5824 * events
5825 */
5826
5827 event->pending_kill = POLL_IN;
5828 if (events && atomic_dec_and_test(&event->event_limit)) {
5829 ret = 1;
5830 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005831 event->pending_disable = 1;
5832 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005833 }
5834
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005835 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005836 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005837 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005838 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005839
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005840 if (event->fasync && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005841 event->pending_wakeup = 1;
5842 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005843 }
5844
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005845 return ret;
5846}
5847
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005848int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005849 struct perf_sample_data *data,
5850 struct pt_regs *regs)
5851{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005852 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005853}
5854
5855/*
5856 * Generic software event infrastructure
5857 */
5858
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005859struct swevent_htable {
5860 struct swevent_hlist *swevent_hlist;
5861 struct mutex hlist_mutex;
5862 int hlist_refcount;
5863
5864 /* Recursion avoidance in each contexts */
5865 int recursion[PERF_NR_CONTEXTS];
Jiri Olsa39af6b12014-04-07 11:04:08 +02005866
5867 /* Keeps track of cpu being initialized/exited */
5868 bool online;
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005869};
5870
5871static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
5872
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005873/*
5874 * We directly increment event->count and keep a second value in
5875 * event->hw.period_left to count intervals. This period event
5876 * is kept in the range [-sample_period, 0] so that we can use the
5877 * sign as trigger.
5878 */
5879
Jiri Olsaab573842013-05-01 17:25:44 +02005880u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005881{
5882 struct hw_perf_event *hwc = &event->hw;
5883 u64 period = hwc->last_period;
5884 u64 nr, offset;
5885 s64 old, val;
5886
5887 hwc->last_period = hwc->sample_period;
5888
5889again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02005890 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005891 if (val < 0)
5892 return 0;
5893
5894 nr = div64_u64(period + val, period);
5895 offset = nr * period;
5896 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02005897 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005898 goto again;
5899
5900 return nr;
5901}
5902
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005903static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005904 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005905 struct pt_regs *regs)
5906{
5907 struct hw_perf_event *hwc = &event->hw;
5908 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005909
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005910 if (!overflow)
5911 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005912
5913 if (hwc->interrupts == MAX_INTERRUPTS)
5914 return;
5915
5916 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005917 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005918 data, regs)) {
5919 /*
5920 * We inhibit the overflow from happening when
5921 * hwc->interrupts == MAX_INTERRUPTS.
5922 */
5923 break;
5924 }
5925 throttle = 1;
5926 }
5927}
5928
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005929static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005930 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005931 struct pt_regs *regs)
5932{
5933 struct hw_perf_event *hwc = &event->hw;
5934
Peter Zijlstrae7850592010-05-21 14:43:08 +02005935 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005936
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005937 if (!regs)
5938 return;
5939
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005940 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005941 return;
5942
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03005943 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
5944 data->period = nr;
5945 return perf_swevent_overflow(event, 1, data, regs);
5946 } else
5947 data->period = event->hw.last_period;
5948
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005949 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005950 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005951
Peter Zijlstrae7850592010-05-21 14:43:08 +02005952 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005953 return;
5954
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005955 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005956}
5957
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005958static int perf_exclude_event(struct perf_event *event,
5959 struct pt_regs *regs)
5960{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005961 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01005962 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005963
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005964 if (regs) {
5965 if (event->attr.exclude_user && user_mode(regs))
5966 return 1;
5967
5968 if (event->attr.exclude_kernel && !user_mode(regs))
5969 return 1;
5970 }
5971
5972 return 0;
5973}
5974
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005975static int perf_swevent_match(struct perf_event *event,
5976 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08005977 u32 event_id,
5978 struct perf_sample_data *data,
5979 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005980{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005981 if (event->attr.type != type)
5982 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005983
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005984 if (event->attr.config != event_id)
5985 return 0;
5986
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005987 if (perf_exclude_event(event, regs))
5988 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005989
5990 return 1;
5991}
5992
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005993static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005994{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005995 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005996
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005997 return hash_64(val, SWEVENT_HLIST_BITS);
5998}
5999
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006000static inline struct hlist_head *
6001__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006002{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006003 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006004
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006005 return &hlist->heads[hash];
6006}
6007
6008/* For the read side: events when they trigger */
6009static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006010find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006011{
6012 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006013
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006014 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006015 if (!hlist)
6016 return NULL;
6017
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006018 return __find_swevent_head(hlist, type, event_id);
6019}
6020
6021/* For the event head insertion and removal in the hlist */
6022static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006023find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006024{
6025 struct swevent_hlist *hlist;
6026 u32 event_id = event->attr.config;
6027 u64 type = event->attr.type;
6028
6029 /*
6030 * Event scheduling is always serialized against hlist allocation
6031 * and release. Which makes the protected version suitable here.
6032 * The context lock guarantees that.
6033 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006034 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006035 lockdep_is_held(&event->ctx->lock));
6036 if (!hlist)
6037 return NULL;
6038
6039 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006040}
6041
6042static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006043 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006044 struct perf_sample_data *data,
6045 struct pt_regs *regs)
6046{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006047 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006048 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006049 struct hlist_head *head;
6050
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006051 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006052 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006053 if (!head)
6054 goto end;
6055
Sasha Levinb67bfe02013-02-27 17:06:00 -08006056 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08006057 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006058 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006059 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006060end:
6061 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006062}
6063
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006064DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
6065
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006066int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006067{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006068 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006069
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006070 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006071}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01006072EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006073
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01006074inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006075{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006076 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006077
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006078 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006079}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006080
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006081void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006082{
Ingo Molnara4234bf2009-11-23 10:57:59 +01006083 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006084
6085 if (WARN_ON_ONCE(!regs))
6086 return;
6087
6088 perf_sample_data_init(&data, addr, 0);
6089 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
6090}
6091
6092void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
6093{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006094 int rctx;
6095
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006096 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006097 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006098 if (unlikely(rctx < 0))
6099 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006100
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006101 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006102
6103 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006104fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006105 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006106}
6107
6108static void perf_swevent_read(struct perf_event *event)
6109{
6110}
6111
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006112static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006113{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006114 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006115 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006116 struct hlist_head *head;
6117
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006118 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006119 hwc->last_period = hwc->sample_period;
6120 perf_swevent_set_period(event);
6121 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006122
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006123 hwc->state = !(flags & PERF_EF_START);
6124
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006125 head = find_swevent_head(swhash, event);
Jiri Olsa39af6b12014-04-07 11:04:08 +02006126 if (!head) {
6127 /*
6128 * We can race with cpu hotplug code. Do not
6129 * WARN if the cpu just got unplugged.
6130 */
6131 WARN_ON_ONCE(swhash->online);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006132 return -EINVAL;
Jiri Olsa39af6b12014-04-07 11:04:08 +02006133 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006134
6135 hlist_add_head_rcu(&event->hlist_entry, head);
6136
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006137 return 0;
6138}
6139
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006140static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006141{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006142 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006143}
6144
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006145static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006146{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006147 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006148}
6149
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006150static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006151{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006152 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006153}
6154
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006155/* Deref the hlist from the update side */
6156static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006157swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006158{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006159 return rcu_dereference_protected(swhash->swevent_hlist,
6160 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006161}
6162
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006163static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006164{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006165 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006166
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006167 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006168 return;
6169
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03006170 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08006171 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006172}
6173
6174static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
6175{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006176 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006177
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006178 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006179
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006180 if (!--swhash->hlist_refcount)
6181 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006182
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006183 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006184}
6185
6186static void swevent_hlist_put(struct perf_event *event)
6187{
6188 int cpu;
6189
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006190 for_each_possible_cpu(cpu)
6191 swevent_hlist_put_cpu(event, cpu);
6192}
6193
6194static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
6195{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006196 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006197 int err = 0;
6198
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006199 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006200
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006201 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006202 struct swevent_hlist *hlist;
6203
6204 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
6205 if (!hlist) {
6206 err = -ENOMEM;
6207 goto exit;
6208 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006209 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006210 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006211 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006212exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006213 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006214
6215 return err;
6216}
6217
6218static int swevent_hlist_get(struct perf_event *event)
6219{
6220 int err;
6221 int cpu, failed_cpu;
6222
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006223 get_online_cpus();
6224 for_each_possible_cpu(cpu) {
6225 err = swevent_hlist_get_cpu(event, cpu);
6226 if (err) {
6227 failed_cpu = cpu;
6228 goto fail;
6229 }
6230 }
6231 put_online_cpus();
6232
6233 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006234fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006235 for_each_possible_cpu(cpu) {
6236 if (cpu == failed_cpu)
6237 break;
6238 swevent_hlist_put_cpu(event, cpu);
6239 }
6240
6241 put_online_cpus();
6242 return err;
6243}
6244
Ingo Molnarc5905af2012-02-24 08:31:31 +01006245struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006246
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006247static void sw_perf_event_destroy(struct perf_event *event)
6248{
6249 u64 event_id = event->attr.config;
6250
6251 WARN_ON(event->parent);
6252
Ingo Molnarc5905af2012-02-24 08:31:31 +01006253 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006254 swevent_hlist_put(event);
6255}
6256
6257static int perf_swevent_init(struct perf_event *event)
6258{
Tommi Rantala8176cce2013-04-13 22:49:14 +03006259 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006260
6261 if (event->attr.type != PERF_TYPE_SOFTWARE)
6262 return -ENOENT;
6263
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006264 /*
6265 * no branch sampling for software events
6266 */
6267 if (has_branch_stack(event))
6268 return -EOPNOTSUPP;
6269
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006270 switch (event_id) {
6271 case PERF_COUNT_SW_CPU_CLOCK:
6272 case PERF_COUNT_SW_TASK_CLOCK:
6273 return -ENOENT;
6274
6275 default:
6276 break;
6277 }
6278
Dan Carpenterce677832010-10-24 21:50:42 +02006279 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006280 return -ENOENT;
6281
6282 if (!event->parent) {
6283 int err;
6284
6285 err = swevent_hlist_get(event);
6286 if (err)
6287 return err;
6288
Ingo Molnarc5905af2012-02-24 08:31:31 +01006289 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006290 event->destroy = sw_perf_event_destroy;
6291 }
6292
6293 return 0;
6294}
6295
6296static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006297 .task_ctx_nr = perf_sw_context,
6298
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006299 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006300 .add = perf_swevent_add,
6301 .del = perf_swevent_del,
6302 .start = perf_swevent_start,
6303 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006304 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006305};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006306
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006307#ifdef CONFIG_EVENT_TRACING
6308
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006309static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006310 struct perf_sample_data *data)
6311{
6312 void *record = data->raw->data;
6313
6314 if (likely(!event->filter) || filter_match_preds(event->filter, record))
6315 return 1;
6316 return 0;
6317}
6318
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006319static int perf_tp_event_match(struct perf_event *event,
6320 struct perf_sample_data *data,
6321 struct pt_regs *regs)
6322{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01006323 if (event->hw.state & PERF_HES_STOPPED)
6324 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02006325 /*
6326 * All tracepoints are from kernel-space.
6327 */
6328 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006329 return 0;
6330
6331 if (!perf_tp_filter_match(event, data))
6332 return 0;
6333
6334 return 1;
6335}
6336
6337void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006338 struct pt_regs *regs, struct hlist_head *head, int rctx,
6339 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006340{
6341 struct perf_sample_data data;
6342 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006343
6344 struct perf_raw_record raw = {
6345 .size = entry_size,
6346 .data = record,
6347 };
6348
Robert Richterfd0d0002012-04-02 20:19:08 +02006349 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006350 data.raw = &raw;
6351
Sasha Levinb67bfe02013-02-27 17:06:00 -08006352 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006353 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006354 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006355 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006356
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006357 /*
6358 * If we got specified a target task, also iterate its context and
6359 * deliver this event there too.
6360 */
6361 if (task && task != current) {
6362 struct perf_event_context *ctx;
6363 struct trace_entry *entry = record;
6364
6365 rcu_read_lock();
6366 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
6367 if (!ctx)
6368 goto unlock;
6369
6370 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
6371 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6372 continue;
6373 if (event->attr.config != entry->type)
6374 continue;
6375 if (perf_tp_event_match(event, &data, regs))
6376 perf_swevent_event(event, count, &data, regs);
6377 }
6378unlock:
6379 rcu_read_unlock();
6380 }
6381
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006382 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006383}
6384EXPORT_SYMBOL_GPL(perf_tp_event);
6385
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006386static void tp_perf_event_destroy(struct perf_event *event)
6387{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006388 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006389}
6390
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006391static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006392{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006393 int err;
6394
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006395 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6396 return -ENOENT;
6397
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006398 /*
6399 * no branch sampling for tracepoint events
6400 */
6401 if (has_branch_stack(event))
6402 return -EOPNOTSUPP;
6403
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006404 err = perf_trace_init(event);
6405 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006406 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006407
6408 event->destroy = tp_perf_event_destroy;
6409
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006410 return 0;
6411}
6412
6413static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006414 .task_ctx_nr = perf_sw_context,
6415
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006416 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006417 .add = perf_trace_add,
6418 .del = perf_trace_del,
6419 .start = perf_swevent_start,
6420 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006421 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006422};
6423
6424static inline void perf_tp_register(void)
6425{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006426 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006427}
Li Zefan6fb29152009-10-15 11:21:42 +08006428
6429static int perf_event_set_filter(struct perf_event *event, void __user *arg)
6430{
6431 char *filter_str;
6432 int ret;
6433
6434 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6435 return -EINVAL;
6436
6437 filter_str = strndup_user(arg, PAGE_SIZE);
6438 if (IS_ERR(filter_str))
6439 return PTR_ERR(filter_str);
6440
6441 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
6442
6443 kfree(filter_str);
6444 return ret;
6445}
6446
6447static void perf_event_free_filter(struct perf_event *event)
6448{
6449 ftrace_profile_free_filter(event);
6450}
6451
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006452#else
Li Zefan6fb29152009-10-15 11:21:42 +08006453
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006454static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006455{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006456}
Li Zefan6fb29152009-10-15 11:21:42 +08006457
6458static int perf_event_set_filter(struct perf_event *event, void __user *arg)
6459{
6460 return -ENOENT;
6461}
6462
6463static void perf_event_free_filter(struct perf_event *event)
6464{
6465}
6466
Li Zefan07b139c2009-12-21 14:27:35 +08006467#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006468
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006469#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006470void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006471{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006472 struct perf_sample_data sample;
6473 struct pt_regs *regs = data;
6474
Robert Richterfd0d0002012-04-02 20:19:08 +02006475 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006476
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006477 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006478 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006479}
6480#endif
6481
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006482/*
6483 * hrtimer based swevent callback
6484 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006485
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006486static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006487{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006488 enum hrtimer_restart ret = HRTIMER_RESTART;
6489 struct perf_sample_data data;
6490 struct pt_regs *regs;
6491 struct perf_event *event;
6492 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006493
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006494 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006495
6496 if (event->state != PERF_EVENT_STATE_ACTIVE)
6497 return HRTIMER_NORESTART;
6498
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006499 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006500
Robert Richterfd0d0002012-04-02 20:19:08 +02006501 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006502 regs = get_irq_regs();
6503
6504 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08006505 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02006506 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006507 ret = HRTIMER_NORESTART;
6508 }
6509
6510 period = max_t(u64, 10000, event->hw.sample_period);
6511 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
6512
6513 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006514}
6515
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006516static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006517{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006518 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006519 s64 period;
6520
6521 if (!is_sampling_event(event))
6522 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006523
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006524 period = local64_read(&hwc->period_left);
6525 if (period) {
6526 if (period < 0)
6527 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02006528
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006529 local64_set(&hwc->period_left, 0);
6530 } else {
6531 period = max_t(u64, 10000, hwc->sample_period);
6532 }
6533 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006534 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02006535 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006536}
6537
6538static void perf_swevent_cancel_hrtimer(struct perf_event *event)
6539{
6540 struct hw_perf_event *hwc = &event->hw;
6541
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006542 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006543 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02006544 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006545
6546 hrtimer_cancel(&hwc->hrtimer);
6547 }
6548}
6549
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006550static void perf_swevent_init_hrtimer(struct perf_event *event)
6551{
6552 struct hw_perf_event *hwc = &event->hw;
6553
6554 if (!is_sampling_event(event))
6555 return;
6556
6557 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
6558 hwc->hrtimer.function = perf_swevent_hrtimer;
6559
6560 /*
6561 * Since hrtimers have a fixed rate, we can do a static freq->period
6562 * mapping and avoid the whole period adjust feedback stuff.
6563 */
6564 if (event->attr.freq) {
6565 long freq = event->attr.sample_freq;
6566
6567 event->attr.sample_period = NSEC_PER_SEC / freq;
6568 hwc->sample_period = event->attr.sample_period;
6569 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09006570 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006571 event->attr.freq = 0;
6572 }
6573}
6574
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006575/*
6576 * Software event: cpu wall time clock
6577 */
6578
6579static void cpu_clock_event_update(struct perf_event *event)
6580{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006581 s64 prev;
6582 u64 now;
6583
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006584 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006585 prev = local64_xchg(&event->hw.prev_count, now);
6586 local64_add(now - prev, &event->count);
6587}
6588
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006589static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006590{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006591 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006592 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006593}
6594
6595static void cpu_clock_event_stop(struct perf_event *event, int flags)
6596{
6597 perf_swevent_cancel_hrtimer(event);
6598 cpu_clock_event_update(event);
6599}
6600
6601static int cpu_clock_event_add(struct perf_event *event, int flags)
6602{
6603 if (flags & PERF_EF_START)
6604 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006605
6606 return 0;
6607}
6608
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006609static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006610{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006611 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006612}
6613
6614static void cpu_clock_event_read(struct perf_event *event)
6615{
6616 cpu_clock_event_update(event);
6617}
6618
6619static int cpu_clock_event_init(struct perf_event *event)
6620{
6621 if (event->attr.type != PERF_TYPE_SOFTWARE)
6622 return -ENOENT;
6623
6624 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
6625 return -ENOENT;
6626
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006627 /*
6628 * no branch sampling for software events
6629 */
6630 if (has_branch_stack(event))
6631 return -EOPNOTSUPP;
6632
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006633 perf_swevent_init_hrtimer(event);
6634
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006635 return 0;
6636}
6637
6638static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006639 .task_ctx_nr = perf_sw_context,
6640
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006641 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006642 .add = cpu_clock_event_add,
6643 .del = cpu_clock_event_del,
6644 .start = cpu_clock_event_start,
6645 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006646 .read = cpu_clock_event_read,
6647};
6648
6649/*
6650 * Software event: task time clock
6651 */
6652
6653static void task_clock_event_update(struct perf_event *event, u64 now)
6654{
6655 u64 prev;
6656 s64 delta;
6657
6658 prev = local64_xchg(&event->hw.prev_count, now);
6659 delta = now - prev;
6660 local64_add(delta, &event->count);
6661}
6662
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006663static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006664{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006665 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006666 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006667}
6668
6669static void task_clock_event_stop(struct perf_event *event, int flags)
6670{
6671 perf_swevent_cancel_hrtimer(event);
6672 task_clock_event_update(event, event->ctx->time);
6673}
6674
6675static int task_clock_event_add(struct perf_event *event, int flags)
6676{
6677 if (flags & PERF_EF_START)
6678 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006679
6680 return 0;
6681}
6682
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006683static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006684{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006685 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006686}
6687
6688static void task_clock_event_read(struct perf_event *event)
6689{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01006690 u64 now = perf_clock();
6691 u64 delta = now - event->ctx->timestamp;
6692 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006693
6694 task_clock_event_update(event, time);
6695}
6696
6697static int task_clock_event_init(struct perf_event *event)
6698{
6699 if (event->attr.type != PERF_TYPE_SOFTWARE)
6700 return -ENOENT;
6701
6702 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
6703 return -ENOENT;
6704
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006705 /*
6706 * no branch sampling for software events
6707 */
6708 if (has_branch_stack(event))
6709 return -EOPNOTSUPP;
6710
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006711 perf_swevent_init_hrtimer(event);
6712
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006713 return 0;
6714}
6715
6716static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006717 .task_ctx_nr = perf_sw_context,
6718
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006719 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006720 .add = task_clock_event_add,
6721 .del = task_clock_event_del,
6722 .start = task_clock_event_start,
6723 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006724 .read = task_clock_event_read,
6725};
6726
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006727static void perf_pmu_nop_void(struct pmu *pmu)
6728{
6729}
6730
6731static int perf_pmu_nop_int(struct pmu *pmu)
6732{
6733 return 0;
6734}
6735
6736static void perf_pmu_start_txn(struct pmu *pmu)
6737{
6738 perf_pmu_disable(pmu);
6739}
6740
6741static int perf_pmu_commit_txn(struct pmu *pmu)
6742{
6743 perf_pmu_enable(pmu);
6744 return 0;
6745}
6746
6747static void perf_pmu_cancel_txn(struct pmu *pmu)
6748{
6749 perf_pmu_enable(pmu);
6750}
6751
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006752static int perf_event_idx_default(struct perf_event *event)
6753{
Peter Zijlstrac719f562014-10-21 11:10:21 +02006754 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006755}
6756
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006757/*
6758 * Ensures all contexts with the same task_ctx_nr have the same
6759 * pmu_cpu_context too.
6760 */
Mark Rutland9e317042014-02-10 17:44:18 +00006761static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006762{
6763 struct pmu *pmu;
6764
6765 if (ctxn < 0)
6766 return NULL;
6767
6768 list_for_each_entry(pmu, &pmus, entry) {
6769 if (pmu->task_ctx_nr == ctxn)
6770 return pmu->pmu_cpu_context;
6771 }
6772
6773 return NULL;
6774}
6775
Peter Zijlstra51676952010-12-07 14:18:20 +01006776static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006777{
Peter Zijlstra51676952010-12-07 14:18:20 +01006778 int cpu;
6779
6780 for_each_possible_cpu(cpu) {
6781 struct perf_cpu_context *cpuctx;
6782
6783 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6784
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006785 if (cpuctx->unique_pmu == old_pmu)
6786 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01006787 }
6788}
6789
6790static void free_pmu_context(struct pmu *pmu)
6791{
6792 struct pmu *i;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006793
6794 mutex_lock(&pmus_lock);
6795 /*
6796 * Like a real lame refcount.
6797 */
Peter Zijlstra51676952010-12-07 14:18:20 +01006798 list_for_each_entry(i, &pmus, entry) {
6799 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
6800 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006801 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01006802 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006803 }
6804
Peter Zijlstra51676952010-12-07 14:18:20 +01006805 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006806out:
6807 mutex_unlock(&pmus_lock);
6808}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006809static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006810
Peter Zijlstraabe43402010-11-17 23:17:37 +01006811static ssize_t
6812type_show(struct device *dev, struct device_attribute *attr, char *page)
6813{
6814 struct pmu *pmu = dev_get_drvdata(dev);
6815
6816 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
6817}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006818static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006819
Stephane Eranian62b85632013-04-03 14:21:34 +02006820static ssize_t
6821perf_event_mux_interval_ms_show(struct device *dev,
6822 struct device_attribute *attr,
6823 char *page)
6824{
6825 struct pmu *pmu = dev_get_drvdata(dev);
6826
6827 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
6828}
6829
6830static ssize_t
6831perf_event_mux_interval_ms_store(struct device *dev,
6832 struct device_attribute *attr,
6833 const char *buf, size_t count)
6834{
6835 struct pmu *pmu = dev_get_drvdata(dev);
6836 int timer, cpu, ret;
6837
6838 ret = kstrtoint(buf, 0, &timer);
6839 if (ret)
6840 return ret;
6841
6842 if (timer < 1)
6843 return -EINVAL;
6844
6845 /* same value, noting to do */
6846 if (timer == pmu->hrtimer_interval_ms)
6847 return count;
6848
6849 pmu->hrtimer_interval_ms = timer;
6850
6851 /* update all cpuctx for this PMU */
6852 for_each_possible_cpu(cpu) {
6853 struct perf_cpu_context *cpuctx;
6854 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6855 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
6856
6857 if (hrtimer_active(&cpuctx->hrtimer))
6858 hrtimer_forward_now(&cpuctx->hrtimer, cpuctx->hrtimer_interval);
6859 }
6860
6861 return count;
6862}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006863static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02006864
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006865static struct attribute *pmu_dev_attrs[] = {
6866 &dev_attr_type.attr,
6867 &dev_attr_perf_event_mux_interval_ms.attr,
6868 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01006869};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006870ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006871
6872static int pmu_bus_running;
6873static struct bus_type pmu_bus = {
6874 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006875 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01006876};
6877
6878static void pmu_dev_release(struct device *dev)
6879{
6880 kfree(dev);
6881}
6882
6883static int pmu_dev_alloc(struct pmu *pmu)
6884{
6885 int ret = -ENOMEM;
6886
6887 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
6888 if (!pmu->dev)
6889 goto out;
6890
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01006891 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01006892 device_initialize(pmu->dev);
6893 ret = dev_set_name(pmu->dev, "%s", pmu->name);
6894 if (ret)
6895 goto free_dev;
6896
6897 dev_set_drvdata(pmu->dev, pmu);
6898 pmu->dev->bus = &pmu_bus;
6899 pmu->dev->release = pmu_dev_release;
6900 ret = device_add(pmu->dev);
6901 if (ret)
6902 goto free_dev;
6903
6904out:
6905 return ret;
6906
6907free_dev:
6908 put_device(pmu->dev);
6909 goto out;
6910}
6911
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006912static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006913static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006914
Mischa Jonker03d8e802013-06-04 11:45:48 +02006915int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006916{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006917 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006918
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006919 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006920 ret = -ENOMEM;
6921 pmu->pmu_disable_count = alloc_percpu(int);
6922 if (!pmu->pmu_disable_count)
6923 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006924
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006925 pmu->type = -1;
6926 if (!name)
6927 goto skip_type;
6928 pmu->name = name;
6929
6930 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08006931 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
6932 if (type < 0) {
6933 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006934 goto free_pdc;
6935 }
6936 }
6937 pmu->type = type;
6938
Peter Zijlstraabe43402010-11-17 23:17:37 +01006939 if (pmu_bus_running) {
6940 ret = pmu_dev_alloc(pmu);
6941 if (ret)
6942 goto free_idr;
6943 }
6944
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006945skip_type:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006946 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
6947 if (pmu->pmu_cpu_context)
6948 goto got_cpu_context;
6949
Wei Yongjunc4814202013-04-12 11:05:54 +08006950 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006951 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
6952 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01006953 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006954
6955 for_each_possible_cpu(cpu) {
6956 struct perf_cpu_context *cpuctx;
6957
6958 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02006959 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006960 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006961 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006962 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02006963
6964 __perf_cpu_hrtimer_init(cpuctx, cpu);
6965
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006966 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006967 }
6968
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006969got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006970 if (!pmu->start_txn) {
6971 if (pmu->pmu_enable) {
6972 /*
6973 * If we have pmu_enable/pmu_disable calls, install
6974 * transaction stubs that use that to try and batch
6975 * hardware accesses.
6976 */
6977 pmu->start_txn = perf_pmu_start_txn;
6978 pmu->commit_txn = perf_pmu_commit_txn;
6979 pmu->cancel_txn = perf_pmu_cancel_txn;
6980 } else {
6981 pmu->start_txn = perf_pmu_nop_void;
6982 pmu->commit_txn = perf_pmu_nop_int;
6983 pmu->cancel_txn = perf_pmu_nop_void;
6984 }
6985 }
6986
6987 if (!pmu->pmu_enable) {
6988 pmu->pmu_enable = perf_pmu_nop_void;
6989 pmu->pmu_disable = perf_pmu_nop_void;
6990 }
6991
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006992 if (!pmu->event_idx)
6993 pmu->event_idx = perf_event_idx_default;
6994
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006995 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006996 ret = 0;
6997unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006998 mutex_unlock(&pmus_lock);
6999
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007000 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007001
Peter Zijlstraabe43402010-11-17 23:17:37 +01007002free_dev:
7003 device_del(pmu->dev);
7004 put_device(pmu->dev);
7005
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007006free_idr:
7007 if (pmu->type >= PERF_TYPE_MAX)
7008 idr_remove(&pmu_idr, pmu->type);
7009
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007010free_pdc:
7011 free_percpu(pmu->pmu_disable_count);
7012 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007013}
Yan, Zhengc464c762014-03-18 16:56:41 +08007014EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007015
7016void perf_pmu_unregister(struct pmu *pmu)
7017{
7018 mutex_lock(&pmus_lock);
7019 list_del_rcu(&pmu->entry);
7020 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007021
7022 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02007023 * We dereference the pmu list under both SRCU and regular RCU, so
7024 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007025 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007026 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02007027 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007028
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007029 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007030 if (pmu->type >= PERF_TYPE_MAX)
7031 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007032 device_del(pmu->dev);
7033 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01007034 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007035}
Yan, Zhengc464c762014-03-18 16:56:41 +08007036EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007037
Mark Rutlandcc34b982015-01-07 14:56:51 +00007038static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
7039{
7040 int ret;
7041
7042 if (!try_module_get(pmu->module))
7043 return -ENODEV;
7044 event->pmu = pmu;
7045 ret = pmu->event_init(event);
7046 if (ret)
7047 module_put(pmu->module);
7048
7049 return ret;
7050}
7051
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007052struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007053{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007054 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007055 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08007056 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007057
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007058 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007059
7060 rcu_read_lock();
7061 pmu = idr_find(&pmu_idr, event->attr.type);
7062 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08007063 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007064 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08007065 if (ret)
7066 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007067 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08007068 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007069
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007070 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007071 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007072 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007073 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007074
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007075 if (ret != -ENOENT) {
7076 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007077 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007078 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007079 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007080 pmu = ERR_PTR(-ENOENT);
7081unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007082 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007083
7084 return pmu;
7085}
7086
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007087static void account_event_cpu(struct perf_event *event, int cpu)
7088{
7089 if (event->parent)
7090 return;
7091
7092 if (has_branch_stack(event)) {
7093 if (!(event->attach_state & PERF_ATTACH_TASK))
7094 atomic_inc(&per_cpu(perf_branch_stack_events, cpu));
7095 }
7096 if (is_cgroup_event(event))
7097 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
7098}
7099
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007100static void account_event(struct perf_event *event)
7101{
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007102 if (event->parent)
7103 return;
7104
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007105 if (event->attach_state & PERF_ATTACH_TASK)
7106 static_key_slow_inc(&perf_sched_events.key);
7107 if (event->attr.mmap || event->attr.mmap_data)
7108 atomic_inc(&nr_mmap_events);
7109 if (event->attr.comm)
7110 atomic_inc(&nr_comm_events);
7111 if (event->attr.task)
7112 atomic_inc(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02007113 if (event->attr.freq) {
7114 if (atomic_inc_return(&nr_freq_events) == 1)
7115 tick_nohz_full_kick_all();
7116 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007117 if (has_branch_stack(event))
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007118 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007119 if (is_cgroup_event(event))
7120 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007121
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007122 account_event_cpu(event, event->cpu);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007123}
7124
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007125/*
7126 * Allocate and initialize a event structure
7127 */
7128static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007129perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007130 struct task_struct *task,
7131 struct perf_event *group_leader,
7132 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007133 perf_overflow_handler_t overflow_handler,
7134 void *context)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007135{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007136 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007137 struct perf_event *event;
7138 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007139 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007140
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007141 if ((unsigned)cpu >= nr_cpu_ids) {
7142 if (!task || cpu != -1)
7143 return ERR_PTR(-EINVAL);
7144 }
7145
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007146 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007147 if (!event)
7148 return ERR_PTR(-ENOMEM);
7149
7150 /*
7151 * Single events are their own group leaders, with an
7152 * empty sibling list:
7153 */
7154 if (!group_leader)
7155 group_leader = event;
7156
7157 mutex_init(&event->child_mutex);
7158 INIT_LIST_HEAD(&event->child_list);
7159
7160 INIT_LIST_HEAD(&event->group_entry);
7161 INIT_LIST_HEAD(&event->event_entry);
7162 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007163 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01007164 INIT_LIST_HEAD(&event->active_entry);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01007165 INIT_HLIST_NODE(&event->hlist_entry);
7166
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007167
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007168 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08007169 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007170
7171 mutex_init(&event->mmap_mutex);
7172
Al Viroa6fa9412012-08-20 14:59:25 +01007173 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007174 event->cpu = cpu;
7175 event->attr = *attr;
7176 event->group_leader = group_leader;
7177 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007178 event->oncpu = -1;
7179
7180 event->parent = parent_event;
7181
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08007182 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007183 event->id = atomic64_inc_return(&perf_event_id);
7184
7185 event->state = PERF_EVENT_STATE_INACTIVE;
7186
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007187 if (task) {
7188 event->attach_state = PERF_ATTACH_TASK;
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01007189
7190 if (attr->type == PERF_TYPE_TRACEPOINT)
7191 event->hw.tp_target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007192#ifdef CONFIG_HAVE_HW_BREAKPOINT
7193 /*
7194 * hw_breakpoint is a bit difficult here..
7195 */
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01007196 else if (attr->type == PERF_TYPE_BREAKPOINT)
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007197 event->hw.bp_target = task;
7198#endif
7199 }
7200
Avi Kivity4dc0da82011-06-29 18:42:35 +03007201 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007202 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007203 context = parent_event->overflow_handler_context;
7204 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007205
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007206 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007207 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02007208
Jiri Olsa0231bb52013-02-01 11:23:45 +01007209 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007210
7211 pmu = NULL;
7212
7213 hwc = &event->hw;
7214 hwc->sample_period = attr->sample_period;
7215 if (attr->freq && attr->sample_freq)
7216 hwc->sample_period = 1;
7217 hwc->last_period = hwc->sample_period;
7218
Peter Zijlstrae7850592010-05-21 14:43:08 +02007219 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007220
7221 /*
7222 * we currently do not support PERF_FORMAT_GROUP on inherited events
7223 */
7224 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007225 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007226
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007227 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007228 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007229 goto err_ns;
7230 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007231 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007232 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007233 }
7234
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007235 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007236 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
7237 err = get_callchain_buffers();
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007238 if (err)
7239 goto err_pmu;
Stephane Eraniand010b332012-02-09 23:21:00 +01007240 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007241 }
7242
7243 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007244
7245err_pmu:
7246 if (event->destroy)
7247 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08007248 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007249err_ns:
7250 if (event->ns)
7251 put_pid_ns(event->ns);
7252 kfree(event);
7253
7254 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007255}
7256
7257static int perf_copy_attr(struct perf_event_attr __user *uattr,
7258 struct perf_event_attr *attr)
7259{
7260 u32 size;
7261 int ret;
7262
7263 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
7264 return -EFAULT;
7265
7266 /*
7267 * zero the full structure, so that a short copy will be nice.
7268 */
7269 memset(attr, 0, sizeof(*attr));
7270
7271 ret = get_user(size, &uattr->size);
7272 if (ret)
7273 return ret;
7274
7275 if (size > PAGE_SIZE) /* silly large */
7276 goto err_size;
7277
7278 if (!size) /* abi compat */
7279 size = PERF_ATTR_SIZE_VER0;
7280
7281 if (size < PERF_ATTR_SIZE_VER0)
7282 goto err_size;
7283
7284 /*
7285 * If we're handed a bigger struct than we know of,
7286 * ensure all the unknown bits are 0 - i.e. new
7287 * user-space does not rely on any kernel feature
7288 * extensions we dont know about yet.
7289 */
7290 if (size > sizeof(*attr)) {
7291 unsigned char __user *addr;
7292 unsigned char __user *end;
7293 unsigned char val;
7294
7295 addr = (void __user *)uattr + sizeof(*attr);
7296 end = (void __user *)uattr + size;
7297
7298 for (; addr < end; addr++) {
7299 ret = get_user(val, addr);
7300 if (ret)
7301 return ret;
7302 if (val)
7303 goto err_size;
7304 }
7305 size = sizeof(*attr);
7306 }
7307
7308 ret = copy_from_user(attr, uattr, size);
7309 if (ret)
7310 return -EFAULT;
7311
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05307312 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007313 return -EINVAL;
7314
7315 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
7316 return -EINVAL;
7317
7318 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
7319 return -EINVAL;
7320
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007321 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
7322 u64 mask = attr->branch_sample_type;
7323
7324 /* only using defined bits */
7325 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
7326 return -EINVAL;
7327
7328 /* at least one branch bit must be set */
7329 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
7330 return -EINVAL;
7331
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007332 /* propagate priv level, when not set for branch */
7333 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
7334
7335 /* exclude_kernel checked on syscall entry */
7336 if (!attr->exclude_kernel)
7337 mask |= PERF_SAMPLE_BRANCH_KERNEL;
7338
7339 if (!attr->exclude_user)
7340 mask |= PERF_SAMPLE_BRANCH_USER;
7341
7342 if (!attr->exclude_hv)
7343 mask |= PERF_SAMPLE_BRANCH_HV;
7344 /*
7345 * adjust user setting (for HW filter setup)
7346 */
7347 attr->branch_sample_type = mask;
7348 }
Stephane Eraniane7122092013-06-06 11:02:04 +02007349 /* privileged levels capture (kernel, hv): check permissions */
7350 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02007351 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
7352 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007353 }
Jiri Olsa40189942012-08-07 15:20:37 +02007354
Jiri Olsac5ebced2012-08-07 15:20:40 +02007355 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02007356 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02007357 if (ret)
7358 return ret;
7359 }
7360
7361 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
7362 if (!arch_perf_have_user_stack_dump())
7363 return -ENOSYS;
7364
7365 /*
7366 * We have __u32 type for the size, but so far
7367 * we can only use __u16 as maximum due to the
7368 * __u16 sample size limit.
7369 */
7370 if (attr->sample_stack_user >= USHRT_MAX)
7371 ret = -EINVAL;
7372 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
7373 ret = -EINVAL;
7374 }
Jiri Olsa40189942012-08-07 15:20:37 +02007375
Stephane Eranian60e23642014-09-24 13:48:37 +02007376 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
7377 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007378out:
7379 return ret;
7380
7381err_size:
7382 put_user(sizeof(*attr), &uattr->size);
7383 ret = -E2BIG;
7384 goto out;
7385}
7386
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007387static int
7388perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007389{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01007390 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007391 int ret = -EINVAL;
7392
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007393 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007394 goto set;
7395
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007396 /* don't allow circular references */
7397 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007398 goto out;
7399
Peter Zijlstra0f139302010-05-20 14:35:15 +02007400 /*
7401 * Don't allow cross-cpu buffers
7402 */
7403 if (output_event->cpu != event->cpu)
7404 goto out;
7405
7406 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02007407 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02007408 */
7409 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
7410 goto out;
7411
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007412set:
7413 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007414 /* Can't redirect output if we've got an active mmap() */
7415 if (atomic_read(&event->mmap_count))
7416 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007417
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007418 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02007419 /* get the rb we want to redirect to */
7420 rb = ring_buffer_get(output_event);
7421 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007422 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007423 }
7424
Peter Zijlstrab69cf532014-03-14 10:50:33 +01007425 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02007426
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007427 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007428unlock:
7429 mutex_unlock(&event->mmap_mutex);
7430
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007431out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007432 return ret;
7433}
7434
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007435static void mutex_lock_double(struct mutex *a, struct mutex *b)
7436{
7437 if (b < a)
7438 swap(a, b);
7439
7440 mutex_lock(a);
7441 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
7442}
7443
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007444/**
7445 * sys_perf_event_open - open a performance event, associate it to a task/cpu
7446 *
7447 * @attr_uptr: event_id type attributes for monitoring/sampling
7448 * @pid: target pid
7449 * @cpu: target cpu
7450 * @group_fd: group leader event fd
7451 */
7452SYSCALL_DEFINE5(perf_event_open,
7453 struct perf_event_attr __user *, attr_uptr,
7454 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
7455{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007456 struct perf_event *group_leader = NULL, *output_event = NULL;
7457 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007458 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007459 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007460 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04007461 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07007462 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007463 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04007464 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007465 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007466 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01007467 int f_flags = O_RDWR;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007468
7469 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02007470 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007471 return -EINVAL;
7472
7473 err = perf_copy_attr(attr_uptr, &attr);
7474 if (err)
7475 return err;
7476
7477 if (!attr.exclude_kernel) {
7478 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
7479 return -EACCES;
7480 }
7481
7482 if (attr.freq) {
7483 if (attr.sample_freq > sysctl_perf_event_sample_rate)
7484 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02007485 } else {
7486 if (attr.sample_period & (1ULL << 63))
7487 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007488 }
7489
Stephane Eraniane5d13672011-02-14 11:20:01 +02007490 /*
7491 * In cgroup mode, the pid argument is used to pass the fd
7492 * opened to the cgroup directory in cgroupfs. The cpu argument
7493 * designates the cpu on which to monitor threads from that
7494 * cgroup.
7495 */
7496 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
7497 return -EINVAL;
7498
Yann Droneauda21b0b32014-01-05 21:36:33 +01007499 if (flags & PERF_FLAG_FD_CLOEXEC)
7500 f_flags |= O_CLOEXEC;
7501
7502 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04007503 if (event_fd < 0)
7504 return event_fd;
7505
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007506 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04007507 err = perf_fget_light(group_fd, &group);
7508 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02007509 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04007510 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007511 if (flags & PERF_FLAG_FD_OUTPUT)
7512 output_event = group_leader;
7513 if (flags & PERF_FLAG_FD_NO_GROUP)
7514 group_leader = NULL;
7515 }
7516
Stephane Eraniane5d13672011-02-14 11:20:01 +02007517 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007518 task = find_lively_task_by_vpid(pid);
7519 if (IS_ERR(task)) {
7520 err = PTR_ERR(task);
7521 goto err_group_fd;
7522 }
7523 }
7524
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007525 if (task && group_leader &&
7526 group_leader->attr.inherit != attr.inherit) {
7527 err = -EINVAL;
7528 goto err_task;
7529 }
7530
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007531 get_online_cpus();
7532
Avi Kivity4dc0da82011-06-29 18:42:35 +03007533 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
7534 NULL, NULL);
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
Stephane Eraniane5d13672011-02-14 11:20:01 +02007540 if (flags & PERF_FLAG_PID_CGROUP) {
7541 err = perf_cgroup_connect(pid, event, &attr, group_leader);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007542 if (err) {
7543 __free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007544 goto err_cpus;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007545 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02007546 }
7547
Vince Weaver53b25332014-05-16 17:12:12 -04007548 if (is_sampling_event(event)) {
7549 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
7550 err = -ENOTSUPP;
7551 goto err_alloc;
7552 }
7553 }
7554
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007555 account_event(event);
7556
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007557 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007558 * Special case software events and allow them to be part of
7559 * any hardware group.
7560 */
7561 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007562
7563 if (group_leader &&
7564 (is_software_event(event) != is_software_event(group_leader))) {
7565 if (is_software_event(event)) {
7566 /*
7567 * If event and group_leader are not both a software
7568 * event, and event is, then group leader is not.
7569 *
7570 * Allow the addition of software events to !software
7571 * groups, this is safe because software events never
7572 * fail to schedule.
7573 */
7574 pmu = group_leader->pmu;
7575 } else if (is_software_event(group_leader) &&
7576 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
7577 /*
7578 * In case the group is a pure software group, and we
7579 * try to add a hardware event, move the whole group to
7580 * the hardware context.
7581 */
7582 move_group = 1;
7583 }
7584 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007585
7586 /*
7587 * Get the target context (task or percpu):
7588 */
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007589 ctx = find_get_context(pmu, task, event->cpu);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007590 if (IS_ERR(ctx)) {
7591 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007592 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007593 }
7594
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02007595 if (task) {
7596 put_task_struct(task);
7597 task = NULL;
7598 }
7599
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007600 /*
7601 * Look up the group leader (we will attach this event to it):
7602 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007603 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007604 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007605
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007606 /*
7607 * Do not allow a recursive hierarchy (this new sibling
7608 * becoming part of another group-sibling):
7609 */
7610 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007611 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007612 /*
7613 * Do not allow to attach to a group in a different
7614 * task or CPU context:
7615 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007616 if (move_group) {
Peter Zijlstrac3c87e72015-01-23 11:19:48 +01007617 /*
7618 * Make sure we're both on the same task, or both
7619 * per-cpu events.
7620 */
7621 if (group_leader->ctx->task != ctx->task)
7622 goto err_context;
7623
7624 /*
7625 * Make sure we're both events for the same CPU;
7626 * grouping events for different CPUs is broken; since
7627 * you can never concurrently schedule them anyhow.
7628 */
7629 if (group_leader->cpu != event->cpu)
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007630 goto err_context;
7631 } else {
7632 if (group_leader->ctx != ctx)
7633 goto err_context;
7634 }
7635
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007636 /*
7637 * Only a group leader can be exclusive or pinned
7638 */
7639 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007640 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007641 }
7642
7643 if (output_event) {
7644 err = perf_event_set_output(event, output_event);
7645 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007646 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007647 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007648
Yann Droneauda21b0b32014-01-05 21:36:33 +01007649 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
7650 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04007651 if (IS_ERR(event_file)) {
7652 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007653 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04007654 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007655
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007656 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007657 gctx = group_leader->ctx;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007658
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007659 /*
7660 * See perf_event_ctx_lock() for comments on the details
7661 * of swizzling perf_event::ctx.
7662 */
7663 mutex_lock_double(&gctx->mutex, &ctx->mutex);
7664
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02007665 perf_remove_from_context(group_leader, false);
Jiri Olsa0231bb52013-02-01 11:23:45 +01007666
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007667 list_for_each_entry(sibling, &group_leader->sibling_list,
7668 group_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02007669 perf_remove_from_context(sibling, false);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007670 put_ctx(gctx);
7671 }
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007672 } else {
7673 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007674 }
7675
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007676 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007677
7678 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007679 /*
7680 * Wait for everybody to stop referencing the events through
7681 * the old lists, before installing it on new lists.
7682 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007683 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007684
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01007685 /*
7686 * Install the group siblings before the group leader.
7687 *
7688 * Because a group leader will try and install the entire group
7689 * (through the sibling list, which is still in-tact), we can
7690 * end up with siblings installed in the wrong context.
7691 *
7692 * By installing siblings first we NO-OP because they're not
7693 * reachable through the group lists.
7694 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007695 list_for_each_entry(sibling, &group_leader->sibling_list,
7696 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01007697 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +01007698 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007699 get_ctx(ctx);
7700 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01007701
7702 /*
7703 * Removing from the context ends up with disabled
7704 * event. What we want here is event in the initial
7705 * startup state, ready to be add into new context.
7706 */
7707 perf_event__state_init(group_leader);
7708 perf_install_in_context(ctx, group_leader, group_leader->cpu);
7709 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007710 }
7711
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007712 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007713 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007714
7715 if (move_group) {
7716 mutex_unlock(&gctx->mutex);
7717 put_ctx(gctx);
7718 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007719 mutex_unlock(&ctx->mutex);
7720
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007721 put_online_cpus();
7722
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007723 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01007724
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007725 mutex_lock(&current->perf_event_mutex);
7726 list_add_tail(&event->owner_entry, &current->perf_event_list);
7727 mutex_unlock(&current->perf_event_mutex);
7728
Peter Zijlstra8a495422010-05-27 15:47:49 +02007729 /*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007730 * Precalculate sample_data sizes
7731 */
7732 perf_event__header_size(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007733 perf_event__id_header_size(event);
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007734
7735 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02007736 * Drop the reference on the group_event after placing the
7737 * new event on the sibling_list. This ensures destruction
7738 * of the group leader will find the pointer to itself in
7739 * perf_group_detach().
7740 */
Al Viro2903ff02012-08-28 12:52:22 -04007741 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007742 fd_install(event_fd, event_file);
7743 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007744
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007745err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007746 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04007747 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007748err_alloc:
7749 free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007750err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007751 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007752err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02007753 if (task)
7754 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007755err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04007756 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007757err_fd:
7758 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007759 return err;
7760}
7761
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007762/**
7763 * perf_event_create_kernel_counter
7764 *
7765 * @attr: attributes of the counter to create
7766 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07007767 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007768 */
7769struct perf_event *
7770perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07007771 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007772 perf_overflow_handler_t overflow_handler,
7773 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007774{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007775 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007776 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007777 int err;
7778
7779 /*
7780 * Get the target context (task or percpu):
7781 */
7782
Avi Kivity4dc0da82011-06-29 18:42:35 +03007783 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
7784 overflow_handler, context);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007785 if (IS_ERR(event)) {
7786 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007787 goto err;
7788 }
7789
Jiri Olsaf8697762014-08-01 14:33:01 +02007790 /* Mark owner so we could distinguish it from user events. */
7791 event->owner = EVENT_OWNER_KERNEL;
7792
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007793 account_event(event);
7794
Matt Helsley38a81da2010-09-13 13:01:20 -07007795 ctx = find_get_context(event->pmu, task, cpu);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007796 if (IS_ERR(ctx)) {
7797 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007798 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007799 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007800
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007801 WARN_ON_ONCE(ctx->parent_ctx);
7802 mutex_lock(&ctx->mutex);
7803 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007804 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007805 mutex_unlock(&ctx->mutex);
7806
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007807 return event;
7808
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007809err_free:
7810 free_event(event);
7811err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007812 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007813}
7814EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
7815
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007816void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
7817{
7818 struct perf_event_context *src_ctx;
7819 struct perf_event_context *dst_ctx;
7820 struct perf_event *event, *tmp;
7821 LIST_HEAD(events);
7822
7823 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
7824 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
7825
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007826 /*
7827 * See perf_event_ctx_lock() for comments on the details
7828 * of swizzling perf_event::ctx.
7829 */
7830 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007831 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
7832 event_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02007833 perf_remove_from_context(event, false);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02007834 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007835 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +02007836 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007837 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007838
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01007839 /*
7840 * Wait for the events to quiesce before re-instating them.
7841 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007842 synchronize_rcu();
7843
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01007844 /*
7845 * Re-instate events in 2 passes.
7846 *
7847 * Skip over group leaders and only install siblings on this first
7848 * pass, siblings will not get enabled without a leader, however a
7849 * leader will enable its siblings, even if those are still on the old
7850 * context.
7851 */
7852 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
7853 if (event->group_leader == event)
7854 continue;
7855
7856 list_del(&event->migrate_entry);
7857 if (event->state >= PERF_EVENT_STATE_OFF)
7858 event->state = PERF_EVENT_STATE_INACTIVE;
7859 account_event_cpu(event, dst_cpu);
7860 perf_install_in_context(dst_ctx, event, dst_cpu);
7861 get_ctx(dst_ctx);
7862 }
7863
7864 /*
7865 * Once all the siblings are setup properly, install the group leaders
7866 * to make it go.
7867 */
Peter Zijlstra98861672013-10-03 16:02:23 +02007868 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
7869 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007870 if (event->state >= PERF_EVENT_STATE_OFF)
7871 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02007872 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007873 perf_install_in_context(dst_ctx, event, dst_cpu);
7874 get_ctx(dst_ctx);
7875 }
7876 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01007877 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007878}
7879EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
7880
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007881static void sync_child_event(struct perf_event *child_event,
7882 struct task_struct *child)
7883{
7884 struct perf_event *parent_event = child_event->parent;
7885 u64 child_val;
7886
7887 if (child_event->attr.inherit_stat)
7888 perf_event_read_event(child_event, child);
7889
Peter Zijlstrab5e58792010-05-21 14:43:12 +02007890 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007891
7892 /*
7893 * Add back the child's count to the parent's count:
7894 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02007895 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007896 atomic64_add(child_event->total_time_enabled,
7897 &parent_event->child_total_time_enabled);
7898 atomic64_add(child_event->total_time_running,
7899 &parent_event->child_total_time_running);
7900
7901 /*
7902 * Remove this event from the parent's list
7903 */
7904 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7905 mutex_lock(&parent_event->child_mutex);
7906 list_del_init(&child_event->child_list);
7907 mutex_unlock(&parent_event->child_mutex);
7908
7909 /*
Jiri Olsadc633982014-09-12 13:18:26 +02007910 * Make sure user/parent get notified, that we just
7911 * lost one event.
7912 */
7913 perf_event_wakeup(parent_event);
7914
7915 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007916 * Release the parent event, if this was the last
7917 * reference to it.
7918 */
Al Viroa6fa9412012-08-20 14:59:25 +01007919 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007920}
7921
7922static void
7923__perf_event_exit_task(struct perf_event *child_event,
7924 struct perf_event_context *child_ctx,
7925 struct task_struct *child)
7926{
Peter Zijlstra1903d502014-07-15 17:27:27 +02007927 /*
7928 * Do not destroy the 'original' grouping; because of the context
7929 * switch optimization the original events could've ended up in a
7930 * random child task.
7931 *
7932 * If we were to destroy the original group, all group related
7933 * operations would cease to function properly after this random
7934 * child dies.
7935 *
7936 * Do destroy all inherited groups, we don't care about those
7937 * and being thorough is better.
7938 */
7939 perf_remove_from_context(child_event, !!child_event->parent);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007940
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007941 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007942 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007943 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007944 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007945 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007946 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007947 sync_child_event(child_event, child);
7948 free_event(child_event);
Jiri Olsa179033b2014-08-07 11:48:26 -04007949 } else {
7950 child_event->state = PERF_EVENT_STATE_EXIT;
7951 perf_event_wakeup(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007952 }
7953}
7954
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007955static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007956{
Peter Zijlstraebf905f2014-05-29 19:00:24 +02007957 struct perf_event *child_event, *next;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02007958 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007959 unsigned long flags;
7960
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007961 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007962 perf_event_task(child, NULL, 0);
7963 return;
7964 }
7965
7966 local_irq_save(flags);
7967 /*
7968 * We can't reschedule here because interrupts are disabled,
7969 * and either child is current or it is a task that can't be
7970 * scheduled, so we are now safe from rescheduling changing
7971 * our context.
7972 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01007973 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007974
7975 /*
7976 * Take the context lock here so that if find_get_context is
7977 * reading child->perf_event_ctxp, we wait until it has
7978 * incremented the context's refcount before we do put_ctx below.
7979 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007980 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02007981 task_ctx_sched_out(child_ctx);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007982 child->perf_event_ctxp[ctxn] = NULL;
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02007983
7984 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007985 * If this context is a clone; unclone it so it can't get
7986 * swapped to another process while we're removing all
7987 * the events from it.
7988 */
Peter Zijlstra211de6e2014-09-30 19:23:08 +02007989 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01007990 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007991 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007992
Peter Zijlstra211de6e2014-09-30 19:23:08 +02007993 if (clone_ctx)
7994 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02007995
7996 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007997 * Report the task dead after unscheduling the events so that we
7998 * won't get any samples after PERF_RECORD_EXIT. We can however still
7999 * get a few PERF_RECORD_READ events.
8000 */
8001 perf_event_task(child, child_ctx, 0);
8002
8003 /*
8004 * We can recurse on the same lock type through:
8005 *
8006 * __perf_event_exit_task()
8007 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01008008 * put_event()
8009 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008010 *
8011 * But since its the parent context it won't be the same instance.
8012 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02008013 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008014
Peter Zijlstraebf905f2014-05-29 19:00:24 +02008015 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008016 __perf_event_exit_task(child_event, child_ctx, child);
8017
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008018 mutex_unlock(&child_ctx->mutex);
8019
8020 put_ctx(child_ctx);
8021}
8022
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008023/*
8024 * When a child task exits, feed back event values to parent events.
8025 */
8026void perf_event_exit_task(struct task_struct *child)
8027{
Peter Zijlstra88821352010-11-09 19:01:43 +01008028 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008029 int ctxn;
8030
Peter Zijlstra88821352010-11-09 19:01:43 +01008031 mutex_lock(&child->perf_event_mutex);
8032 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
8033 owner_entry) {
8034 list_del_init(&event->owner_entry);
8035
8036 /*
8037 * Ensure the list deletion is visible before we clear
8038 * the owner, closes a race against perf_release() where
8039 * we need to serialize on the owner->perf_event_mutex.
8040 */
8041 smp_wmb();
8042 event->owner = NULL;
8043 }
8044 mutex_unlock(&child->perf_event_mutex);
8045
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008046 for_each_task_context_nr(ctxn)
8047 perf_event_exit_task_context(child, ctxn);
8048}
8049
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008050static void perf_free_event(struct perf_event *event,
8051 struct perf_event_context *ctx)
8052{
8053 struct perf_event *parent = event->parent;
8054
8055 if (WARN_ON_ONCE(!parent))
8056 return;
8057
8058 mutex_lock(&parent->child_mutex);
8059 list_del_init(&event->child_list);
8060 mutex_unlock(&parent->child_mutex);
8061
Al Viroa6fa9412012-08-20 14:59:25 +01008062 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008063
Peter Zijlstra652884f2015-01-23 11:20:10 +01008064 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02008065 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008066 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +01008067 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008068 free_event(event);
8069}
8070
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008071/*
Peter Zijlstra652884f2015-01-23 11:20:10 +01008072 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008073 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +01008074 *
8075 * Not all locks are strictly required, but take them anyway to be nice and
8076 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008077 */
8078void perf_event_free_task(struct task_struct *task)
8079{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008080 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008081 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008082 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008083
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008084 for_each_task_context_nr(ctxn) {
8085 ctx = task->perf_event_ctxp[ctxn];
8086 if (!ctx)
8087 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008088
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008089 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008090again:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008091 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
8092 group_entry)
8093 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008094
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008095 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
8096 group_entry)
8097 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008098
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008099 if (!list_empty(&ctx->pinned_groups) ||
8100 !list_empty(&ctx->flexible_groups))
8101 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008102
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008103 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008104
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008105 put_ctx(ctx);
8106 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008107}
8108
Peter Zijlstra4e231c72010-09-09 21:01:59 +02008109void perf_event_delayed_put(struct task_struct *task)
8110{
8111 int ctxn;
8112
8113 for_each_task_context_nr(ctxn)
8114 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
8115}
8116
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008117/*
8118 * inherit a event from parent task to child task:
8119 */
8120static struct perf_event *
8121inherit_event(struct perf_event *parent_event,
8122 struct task_struct *parent,
8123 struct perf_event_context *parent_ctx,
8124 struct task_struct *child,
8125 struct perf_event *group_leader,
8126 struct perf_event_context *child_ctx)
8127{
Jiri Olsa1929def2014-09-12 13:18:27 +02008128 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008129 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02008130 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008131
8132 /*
8133 * Instead of creating recursive hierarchies of events,
8134 * we link inherited events back to the original parent,
8135 * which has a filp for sure, which we use as the reference
8136 * count:
8137 */
8138 if (parent_event->parent)
8139 parent_event = parent_event->parent;
8140
8141 child_event = perf_event_alloc(&parent_event->attr,
8142 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008143 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008144 group_leader, parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03008145 NULL, NULL);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008146 if (IS_ERR(child_event))
8147 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01008148
Jiri Olsafadfe7b2014-08-01 14:33:02 +02008149 if (is_orphaned_event(parent_event) ||
8150 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Al Viroa6fa9412012-08-20 14:59:25 +01008151 free_event(child_event);
8152 return NULL;
8153 }
8154
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008155 get_ctx(child_ctx);
8156
8157 /*
8158 * Make the child state follow the state of the parent event,
8159 * not its attr.disabled bit. We hold the parent's mutex,
8160 * so we won't race with perf_event_{en, dis}able_family.
8161 */
Jiri Olsa1929def2014-09-12 13:18:27 +02008162 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008163 child_event->state = PERF_EVENT_STATE_INACTIVE;
8164 else
8165 child_event->state = PERF_EVENT_STATE_OFF;
8166
8167 if (parent_event->attr.freq) {
8168 u64 sample_period = parent_event->hw.sample_period;
8169 struct hw_perf_event *hwc = &child_event->hw;
8170
8171 hwc->sample_period = sample_period;
8172 hwc->last_period = sample_period;
8173
8174 local64_set(&hwc->period_left, sample_period);
8175 }
8176
8177 child_event->ctx = child_ctx;
8178 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03008179 child_event->overflow_handler_context
8180 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008181
8182 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02008183 * Precalculate sample_data sizes
8184 */
8185 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02008186 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02008187
8188 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008189 * Link it up in the child's context:
8190 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02008191 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008192 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02008193 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008194
8195 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008196 * Link this into the parent event's child list
8197 */
8198 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
8199 mutex_lock(&parent_event->child_mutex);
8200 list_add_tail(&child_event->child_list, &parent_event->child_list);
8201 mutex_unlock(&parent_event->child_mutex);
8202
8203 return child_event;
8204}
8205
8206static int inherit_group(struct perf_event *parent_event,
8207 struct task_struct *parent,
8208 struct perf_event_context *parent_ctx,
8209 struct task_struct *child,
8210 struct perf_event_context *child_ctx)
8211{
8212 struct perf_event *leader;
8213 struct perf_event *sub;
8214 struct perf_event *child_ctr;
8215
8216 leader = inherit_event(parent_event, parent, parent_ctx,
8217 child, NULL, child_ctx);
8218 if (IS_ERR(leader))
8219 return PTR_ERR(leader);
8220 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
8221 child_ctr = inherit_event(sub, parent, parent_ctx,
8222 child, leader, child_ctx);
8223 if (IS_ERR(child_ctr))
8224 return PTR_ERR(child_ctr);
8225 }
8226 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008227}
8228
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008229static int
8230inherit_task_group(struct perf_event *event, struct task_struct *parent,
8231 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008232 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008233 int *inherited_all)
8234{
8235 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008236 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008237
8238 if (!event->attr.inherit) {
8239 *inherited_all = 0;
8240 return 0;
8241 }
8242
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008243 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008244 if (!child_ctx) {
8245 /*
8246 * This is executed from the parent task context, so
8247 * inherit events that have been marked for cloning.
8248 * First allocate and initialize a context for the
8249 * child.
8250 */
8251
Jiri Olsa734df5a2013-07-09 17:44:10 +02008252 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008253 if (!child_ctx)
8254 return -ENOMEM;
8255
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008256 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008257 }
8258
8259 ret = inherit_group(event, parent, parent_ctx,
8260 child, child_ctx);
8261
8262 if (ret)
8263 *inherited_all = 0;
8264
8265 return ret;
8266}
8267
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008268/*
8269 * Initialize the perf_event context in task_struct
8270 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +02008271static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008272{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008273 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008274 struct perf_event_context *cloned_ctx;
8275 struct perf_event *event;
8276 struct task_struct *parent = current;
8277 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01008278 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008279 int ret = 0;
8280
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008281 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008282 return 0;
8283
8284 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008285 * If the parent's context is a clone, pin it so it won't get
8286 * swapped under us.
8287 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008288 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +02008289 if (!parent_ctx)
8290 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008291
8292 /*
8293 * No need to check if parent_ctx != NULL here; since we saw
8294 * it non-NULL earlier, the only reason for it to become NULL
8295 * is if we exit, and since we're currently in the middle of
8296 * a fork we can't be exiting at the same time.
8297 */
8298
8299 /*
8300 * Lock the parent list. No need to lock the child - not PID
8301 * hashed yet and not running, so nobody can access it.
8302 */
8303 mutex_lock(&parent_ctx->mutex);
8304
8305 /*
8306 * We dont have to disable NMIs - we are only looking at
8307 * the list, not manipulating it:
8308 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008309 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008310 ret = inherit_task_group(event, parent, parent_ctx,
8311 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008312 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008313 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008314 }
8315
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01008316 /*
8317 * We can't hold ctx->lock when iterating the ->flexible_group list due
8318 * to allocations, but we need to prevent rotation because
8319 * rotate_ctx() will change the list from interrupt context.
8320 */
8321 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
8322 parent_ctx->rotate_disable = 1;
8323 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
8324
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008325 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008326 ret = inherit_task_group(event, parent, parent_ctx,
8327 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008328 if (ret)
8329 break;
8330 }
8331
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01008332 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
8333 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01008334
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008335 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008336
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01008337 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008338 /*
8339 * Mark the child context as a clone of the parent
8340 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01008341 *
8342 * Note that if the parent is a clone, the holding of
8343 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008344 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01008345 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008346 if (cloned_ctx) {
8347 child_ctx->parent_ctx = cloned_ctx;
8348 child_ctx->parent_gen = parent_ctx->parent_gen;
8349 } else {
8350 child_ctx->parent_ctx = parent_ctx;
8351 child_ctx->parent_gen = parent_ctx->generation;
8352 }
8353 get_ctx(child_ctx->parent_ctx);
8354 }
8355
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01008356 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008357 mutex_unlock(&parent_ctx->mutex);
8358
8359 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008360 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008361
8362 return ret;
8363}
8364
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008365/*
8366 * Initialize the perf_event context in task_struct
8367 */
8368int perf_event_init_task(struct task_struct *child)
8369{
8370 int ctxn, ret;
8371
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01008372 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
8373 mutex_init(&child->perf_event_mutex);
8374 INIT_LIST_HEAD(&child->perf_event_list);
8375
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008376 for_each_task_context_nr(ctxn) {
8377 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07008378 if (ret) {
8379 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008380 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07008381 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008382 }
8383
8384 return 0;
8385}
8386
Paul Mackerras220b1402010-03-10 20:45:52 +11008387static void __init perf_event_init_all_cpus(void)
8388{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008389 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11008390 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11008391
8392 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008393 swhash = &per_cpu(swevent_htable, cpu);
8394 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00008395 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11008396 }
8397}
8398
Paul Gortmaker0db06282013-06-19 14:53:51 -04008399static void perf_event_init_cpu(int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008400{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008401 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008402
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008403 mutex_lock(&swhash->hlist_mutex);
Jiri Olsa39af6b12014-04-07 11:04:08 +02008404 swhash->online = true;
Linus Torvalds4536e4d2011-11-03 07:44:04 -07008405 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008406 struct swevent_hlist *hlist;
8407
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008408 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
8409 WARN_ON(!hlist);
8410 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02008411 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008412 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008413}
8414
Peter Zijlstrac2774432010-12-08 15:29:02 +01008415#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008416static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008417{
Mark Rutland226424e2014-11-05 16:11:44 +00008418 struct remove_event re = { .detach_group = true };
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008419 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008420
Peter Zijlstrae3703f82014-02-24 12:06:12 +01008421 rcu_read_lock();
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008422 list_for_each_entry_rcu(re.event, &ctx->event_list, event_entry)
8423 __perf_remove_from_context(&re);
Peter Zijlstrae3703f82014-02-24 12:06:12 +01008424 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008425}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008426
8427static void perf_event_exit_cpu_context(int cpu)
8428{
8429 struct perf_event_context *ctx;
8430 struct pmu *pmu;
8431 int idx;
8432
8433 idx = srcu_read_lock(&pmus_srcu);
8434 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02008435 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008436
8437 mutex_lock(&ctx->mutex);
8438 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
8439 mutex_unlock(&ctx->mutex);
8440 }
8441 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02008442}
8443
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008444static void perf_event_exit_cpu(int cpu)
8445{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008446 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008447
Peter Zijlstrae3703f82014-02-24 12:06:12 +01008448 perf_event_exit_cpu_context(cpu);
8449
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008450 mutex_lock(&swhash->hlist_mutex);
Jiri Olsa39af6b12014-04-07 11:04:08 +02008451 swhash->online = false;
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008452 swevent_hlist_release(swhash);
8453 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008454}
8455#else
8456static inline void perf_event_exit_cpu(int cpu) { }
8457#endif
8458
Peter Zijlstrac2774432010-12-08 15:29:02 +01008459static int
8460perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
8461{
8462 int cpu;
8463
8464 for_each_online_cpu(cpu)
8465 perf_event_exit_cpu(cpu);
8466
8467 return NOTIFY_OK;
8468}
8469
8470/*
8471 * Run the perf reboot notifier at the very last possible moment so that
8472 * the generic watchdog code runs as long as possible.
8473 */
8474static struct notifier_block perf_reboot_notifier = {
8475 .notifier_call = perf_reboot,
8476 .priority = INT_MIN,
8477};
8478
Paul Gortmaker0db06282013-06-19 14:53:51 -04008479static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008480perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
8481{
8482 unsigned int cpu = (long)hcpu;
8483
Linus Torvalds4536e4d2011-11-03 07:44:04 -07008484 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008485
8486 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02008487 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008488 perf_event_init_cpu(cpu);
8489 break;
8490
Peter Zijlstra5e116372010-06-11 13:35:08 +02008491 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008492 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008493 perf_event_exit_cpu(cpu);
8494 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008495 default:
8496 break;
8497 }
8498
8499 return NOTIFY_OK;
8500}
8501
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008502void __init perf_event_init(void)
8503{
Jason Wessel3c502e72010-11-04 17:33:01 -05008504 int ret;
8505
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008506 idr_init(&pmu_idr);
8507
Paul Mackerras220b1402010-03-10 20:45:52 +11008508 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008509 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008510 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
8511 perf_pmu_register(&perf_cpu_clock, NULL, -1);
8512 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008513 perf_tp_register();
8514 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01008515 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05008516
8517 ret = init_hw_breakpoint();
8518 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02008519
8520 /* do not patch jump label more than once per second */
8521 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01008522
8523 /*
8524 * Build time assertion that we keep the data_head at the intended
8525 * location. IOW, validation we got the __reserved[] size right.
8526 */
8527 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
8528 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008529}
Peter Zijlstraabe43402010-11-17 23:17:37 +01008530
Cody P Schaferfd979c02015-01-30 13:45:57 -08008531ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
8532 char *page)
8533{
8534 struct perf_pmu_events_attr *pmu_attr =
8535 container_of(attr, struct perf_pmu_events_attr, attr);
8536
8537 if (pmu_attr->event_str)
8538 return sprintf(page, "%s\n", pmu_attr->event_str);
8539
8540 return 0;
8541}
8542
Peter Zijlstraabe43402010-11-17 23:17:37 +01008543static int __init perf_event_sysfs_init(void)
8544{
8545 struct pmu *pmu;
8546 int ret;
8547
8548 mutex_lock(&pmus_lock);
8549
8550 ret = bus_register(&pmu_bus);
8551 if (ret)
8552 goto unlock;
8553
8554 list_for_each_entry(pmu, &pmus, entry) {
8555 if (!pmu->name || pmu->type < 0)
8556 continue;
8557
8558 ret = pmu_dev_alloc(pmu);
8559 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
8560 }
8561 pmu_bus_running = 1;
8562 ret = 0;
8563
8564unlock:
8565 mutex_unlock(&pmus_lock);
8566
8567 return ret;
8568}
8569device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008570
8571#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -04008572static struct cgroup_subsys_state *
8573perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008574{
8575 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02008576
Li Zefan1b15d052011-03-03 14:26:06 +08008577 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008578 if (!jc)
8579 return ERR_PTR(-ENOMEM);
8580
Stephane Eraniane5d13672011-02-14 11:20:01 +02008581 jc->info = alloc_percpu(struct perf_cgroup_info);
8582 if (!jc->info) {
8583 kfree(jc);
8584 return ERR_PTR(-ENOMEM);
8585 }
8586
Stephane Eraniane5d13672011-02-14 11:20:01 +02008587 return &jc->css;
8588}
8589
Tejun Heoeb954192013-08-08 20:11:23 -04008590static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008591{
Tejun Heoeb954192013-08-08 20:11:23 -04008592 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
8593
Stephane Eraniane5d13672011-02-14 11:20:01 +02008594 free_percpu(jc->info);
8595 kfree(jc);
8596}
8597
8598static int __perf_cgroup_move(void *info)
8599{
8600 struct task_struct *task = info;
8601 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
8602 return 0;
8603}
8604
Tejun Heoeb954192013-08-08 20:11:23 -04008605static void perf_cgroup_attach(struct cgroup_subsys_state *css,
8606 struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008607{
Tejun Heobb9d97b2011-12-12 18:12:21 -08008608 struct task_struct *task;
8609
Tejun Heo924f0d9a2014-02-13 06:58:41 -05008610 cgroup_taskset_for_each(task, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08008611 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008612}
8613
Tejun Heoeb954192013-08-08 20:11:23 -04008614static void perf_cgroup_exit(struct cgroup_subsys_state *css,
8615 struct cgroup_subsys_state *old_css,
Li Zefan761b3ef52012-01-31 13:47:36 +08008616 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008617{
8618 /*
8619 * cgroup_exit() is called in the copy_process() failure path.
8620 * Ignore this case since the task hasn't ran yet, this avoids
8621 * trying to poke a half freed task state from generic code.
8622 */
8623 if (!(task->flags & PF_EXITING))
8624 return;
8625
Tejun Heobb9d97b2011-12-12 18:12:21 -08008626 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008627}
8628
Tejun Heo073219e2014-02-08 10:36:58 -05008629struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08008630 .css_alloc = perf_cgroup_css_alloc,
8631 .css_free = perf_cgroup_css_free,
Ingo Molnare7e7ee22011-05-04 08:42:29 +02008632 .exit = perf_cgroup_exit,
Tejun Heobb9d97b2011-12-12 18:12:21 -08008633 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +02008634};
8635#endif /* CONFIG_CGROUP_PERF */