blob: f5744010a8d2f980f1902279de41a866ceb00a37 [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>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020042
Frederic Weisbecker76369132011-05-19 19:55:04 +020043#include "internal.h"
44
Ingo Molnarcdd6c482009-09-21 12:02:48 +020045#include <asm/irq_regs.h>
46
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010047struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020048 struct task_struct *p;
49 int (*func)(void *info);
50 void *info;
51 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010052};
53
54static void remote_function(void *data)
55{
56 struct remote_function_call *tfc = data;
57 struct task_struct *p = tfc->p;
58
59 if (p) {
60 tfc->ret = -EAGAIN;
61 if (task_cpu(p) != smp_processor_id() || !task_curr(p))
62 return;
63 }
64
65 tfc->ret = tfc->func(tfc->info);
66}
67
68/**
69 * task_function_call - call a function on the cpu on which a task runs
70 * @p: the task to evaluate
71 * @func: the function to be called
72 * @info: the function call argument
73 *
74 * Calls the function @func when the task is currently running. This might
75 * be on the current CPU, which just calls the function directly
76 *
77 * returns: @func return value, or
78 * -ESRCH - when the process isn't running
79 * -EAGAIN - when the process moved away
80 */
81static int
82task_function_call(struct task_struct *p, int (*func) (void *info), void *info)
83{
84 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020085 .p = p,
86 .func = func,
87 .info = info,
88 .ret = -ESRCH, /* No such (running) process */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010089 };
90
91 if (task_curr(p))
92 smp_call_function_single(task_cpu(p), remote_function, &data, 1);
93
94 return data.ret;
95}
96
97/**
98 * cpu_function_call - call a function on the cpu
99 * @func: the function to be called
100 * @info: the function call argument
101 *
102 * Calls the function @func on the remote cpu.
103 *
104 * returns: @func return value or -ENXIO when the cpu is offline
105 */
106static int cpu_function_call(int cpu, int (*func) (void *info), void *info)
107{
108 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200109 .p = NULL,
110 .func = func,
111 .info = info,
112 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100113 };
114
115 smp_call_function_single(cpu, remote_function, &data, 1);
116
117 return data.ret;
118}
119
Stephane Eraniane5d13672011-02-14 11:20:01 +0200120#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
121 PERF_FLAG_FD_OUTPUT |\
122 PERF_FLAG_PID_CGROUP)
123
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100124/*
125 * branch priv levels that need permission checks
126 */
127#define PERF_SAMPLE_BRANCH_PERM_PLM \
128 (PERF_SAMPLE_BRANCH_KERNEL |\
129 PERF_SAMPLE_BRANCH_HV)
130
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200131enum event_type_t {
132 EVENT_FLEXIBLE = 0x1,
133 EVENT_PINNED = 0x2,
134 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
135};
136
Stephane Eraniane5d13672011-02-14 11:20:01 +0200137/*
138 * perf_sched_events : >0 events exist
139 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
140 */
Ingo Molnarc5905af2012-02-24 08:31:31 +0100141struct static_key_deferred perf_sched_events __read_mostly;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200142static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Stephane Eraniand010b332012-02-09 23:21:00 +0100143static DEFINE_PER_CPU(atomic_t, perf_branch_stack_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200144
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200145static atomic_t nr_mmap_events __read_mostly;
146static atomic_t nr_comm_events __read_mostly;
147static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200148static atomic_t nr_freq_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200149
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200150static LIST_HEAD(pmus);
151static DEFINE_MUTEX(pmus_lock);
152static struct srcu_struct pmus_srcu;
153
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200154/*
155 * perf event paranoia level:
156 * -1 - not paranoid at all
157 * 0 - disallow raw tracepoint access for unpriv
158 * 1 - disallow cpu events for unpriv
159 * 2 - disallow kernel profiling for unpriv
160 */
161int sysctl_perf_event_paranoid __read_mostly = 1;
162
Frederic Weisbecker20443382011-03-31 03:33:29 +0200163/* Minimum for 512 kiB + 1 user control page */
164int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200165
166/*
167 * max perf event sample rate
168 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700169#define DEFAULT_MAX_SAMPLE_RATE 100000
170#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
171#define DEFAULT_CPU_TIME_MAX_PERCENT 25
172
173int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
174
175static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
176static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
177
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200178static int perf_sample_allowed_ns __read_mostly =
179 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700180
181void update_perf_cpu_limits(void)
182{
183 u64 tmp = perf_sample_period_ns;
184
185 tmp *= sysctl_perf_cpu_time_max_percent;
Stephane Eraniane5302922013-07-05 00:30:11 +0200186 do_div(tmp, 100);
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200187 ACCESS_ONCE(perf_sample_allowed_ns) = tmp;
Dave Hansen14c63f12013-06-21 08:51:36 -0700188}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100189
Stephane Eranian9e630202013-04-03 14:21:33 +0200190static int perf_rotate_context(struct perf_cpu_context *cpuctx);
191
Peter Zijlstra163ec432011-02-16 11:22:34 +0100192int perf_proc_update_handler(struct ctl_table *table, int write,
193 void __user *buffer, size_t *lenp,
194 loff_t *ppos)
195{
Knut Petersen723478c2013-09-25 14:29:37 +0200196 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100197
198 if (ret || !write)
199 return ret;
200
201 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700202 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
203 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100204
205 return 0;
206}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200207
Dave Hansen14c63f12013-06-21 08:51:36 -0700208int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
209
210int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
211 void __user *buffer, size_t *lenp,
212 loff_t *ppos)
213{
214 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
215
216 if (ret || !write)
217 return ret;
218
219 update_perf_cpu_limits();
220
221 return 0;
222}
223
224/*
225 * perf samples are done in some very critical code paths (NMIs).
226 * If they take too much CPU time, the system can lock up and not
227 * get any real work done. This will drop the sample rate when
228 * we detect that events are taking too long.
229 */
230#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200231static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700232
233void perf_sample_event_took(u64 sample_len_ns)
234{
235 u64 avg_local_sample_len;
Stephane Eraniane5302922013-07-05 00:30:11 +0200236 u64 local_samples_len;
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200237 u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
Dave Hansen14c63f12013-06-21 08:51:36 -0700238
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200239 if (allowed_ns == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700240 return;
241
242 /* decay the counter by 1 average sample */
243 local_samples_len = __get_cpu_var(running_sample_length);
244 local_samples_len -= local_samples_len/NR_ACCUMULATED_SAMPLES;
245 local_samples_len += sample_len_ns;
246 __get_cpu_var(running_sample_length) = local_samples_len;
247
248 /*
249 * note: this will be biased artifically low until we have
250 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
251 * from having to maintain a count.
252 */
253 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
254
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200255 if (avg_local_sample_len <= allowed_ns)
Dave Hansen14c63f12013-06-21 08:51:36 -0700256 return;
257
258 if (max_samples_per_tick <= 1)
259 return;
260
261 max_samples_per_tick = DIV_ROUND_UP(max_samples_per_tick, 2);
262 sysctl_perf_event_sample_rate = max_samples_per_tick * HZ;
263 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
264
265 printk_ratelimited(KERN_WARNING
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200266 "perf samples too long (%lld > %lld), lowering "
Dave Hansen14c63f12013-06-21 08:51:36 -0700267 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200268 avg_local_sample_len, allowed_ns,
Dave Hansen14c63f12013-06-21 08:51:36 -0700269 sysctl_perf_event_sample_rate);
270
271 update_perf_cpu_limits();
272}
273
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200274static atomic64_t perf_event_id;
275
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200276static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
277 enum event_type_t event_type);
278
279static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200280 enum event_type_t event_type,
281 struct task_struct *task);
282
283static void update_context_time(struct perf_event_context *ctx);
284static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200285
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200286void __weak perf_event_print_debug(void) { }
287
Matt Fleming84c79912010-10-03 21:41:13 +0100288extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200289{
Matt Fleming84c79912010-10-03 21:41:13 +0100290 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200291}
292
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200293static inline u64 perf_clock(void)
294{
295 return local_clock();
296}
297
Stephane Eraniane5d13672011-02-14 11:20:01 +0200298static inline struct perf_cpu_context *
299__get_cpu_context(struct perf_event_context *ctx)
300{
301 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
302}
303
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200304static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
305 struct perf_event_context *ctx)
306{
307 raw_spin_lock(&cpuctx->ctx.lock);
308 if (ctx)
309 raw_spin_lock(&ctx->lock);
310}
311
312static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
313 struct perf_event_context *ctx)
314{
315 if (ctx)
316 raw_spin_unlock(&ctx->lock);
317 raw_spin_unlock(&cpuctx->ctx.lock);
318}
319
Stephane Eraniane5d13672011-02-14 11:20:01 +0200320#ifdef CONFIG_CGROUP_PERF
321
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200322/*
Li Zefan877c6852013-03-05 11:38:08 +0800323 * perf_cgroup_info keeps track of time_enabled for a cgroup.
324 * This is a per-cpu dynamically allocated data structure.
325 */
326struct perf_cgroup_info {
327 u64 time;
328 u64 timestamp;
329};
330
331struct perf_cgroup {
332 struct cgroup_subsys_state css;
Namhyung Kim86e213e2013-03-18 18:56:34 +0900333 struct perf_cgroup_info __percpu *info;
Li Zefan877c6852013-03-05 11:38:08 +0800334};
335
336/*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200337 * Must ensure cgroup is pinned (css_get) before calling
338 * this function. In other words, we cannot call this function
339 * if there is no cgroup event for the current CPU context.
340 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200341static inline struct perf_cgroup *
342perf_cgroup_from_task(struct task_struct *task)
343{
Tejun Heo8af01f52013-08-08 20:11:22 -0400344 return container_of(task_css(task, perf_subsys_id),
345 struct perf_cgroup, css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200346}
347
348static inline bool
349perf_cgroup_match(struct perf_event *event)
350{
351 struct perf_event_context *ctx = event->ctx;
352 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
353
Tejun Heoef824fa2013-04-08 19:00:38 -0700354 /* @event doesn't care about cgroup */
355 if (!event->cgrp)
356 return true;
357
358 /* wants specific cgroup scope but @cpuctx isn't associated with any */
359 if (!cpuctx->cgrp)
360 return false;
361
362 /*
363 * Cgroup scoping is recursive. An event enabled for a cgroup is
364 * also enabled for all its descendant cgroups. If @cpuctx's
365 * cgroup is a descendant of @event's (the test covers identity
366 * case), it's a match.
367 */
368 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
369 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200370}
371
Salman Qazi9c5da092012-06-14 15:31:09 -0700372static inline bool perf_tryget_cgroup(struct perf_event *event)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200373{
Salman Qazi9c5da092012-06-14 15:31:09 -0700374 return css_tryget(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200375}
376
377static inline void perf_put_cgroup(struct perf_event *event)
378{
379 css_put(&event->cgrp->css);
380}
381
382static inline void perf_detach_cgroup(struct perf_event *event)
383{
384 perf_put_cgroup(event);
385 event->cgrp = NULL;
386}
387
388static inline int is_cgroup_event(struct perf_event *event)
389{
390 return event->cgrp != NULL;
391}
392
393static inline u64 perf_cgroup_event_time(struct perf_event *event)
394{
395 struct perf_cgroup_info *t;
396
397 t = per_cpu_ptr(event->cgrp->info, event->cpu);
398 return t->time;
399}
400
401static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
402{
403 struct perf_cgroup_info *info;
404 u64 now;
405
406 now = perf_clock();
407
408 info = this_cpu_ptr(cgrp->info);
409
410 info->time += now - info->timestamp;
411 info->timestamp = now;
412}
413
414static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
415{
416 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
417 if (cgrp_out)
418 __update_cgrp_time(cgrp_out);
419}
420
421static inline void update_cgrp_time_from_event(struct perf_event *event)
422{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200423 struct perf_cgroup *cgrp;
424
Stephane Eraniane5d13672011-02-14 11:20:01 +0200425 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200426 * ensure we access cgroup data only when needed and
427 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200428 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200429 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200430 return;
431
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200432 cgrp = perf_cgroup_from_task(current);
433 /*
434 * Do not update time when cgroup is not active
435 */
436 if (cgrp == event->cgrp)
437 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200438}
439
440static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200441perf_cgroup_set_timestamp(struct task_struct *task,
442 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200443{
444 struct perf_cgroup *cgrp;
445 struct perf_cgroup_info *info;
446
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200447 /*
448 * ctx->lock held by caller
449 * ensure we do not access cgroup data
450 * unless we have the cgroup pinned (css_get)
451 */
452 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200453 return;
454
455 cgrp = perf_cgroup_from_task(task);
456 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200457 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200458}
459
460#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
461#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
462
463/*
464 * reschedule events based on the cgroup constraint of task.
465 *
466 * mode SWOUT : schedule out everything
467 * mode SWIN : schedule in based on cgroup for next
468 */
469void perf_cgroup_switch(struct task_struct *task, int mode)
470{
471 struct perf_cpu_context *cpuctx;
472 struct pmu *pmu;
473 unsigned long flags;
474
475 /*
476 * disable interrupts to avoid geting nr_cgroup
477 * changes via __perf_event_disable(). Also
478 * avoids preemption.
479 */
480 local_irq_save(flags);
481
482 /*
483 * we reschedule only in the presence of cgroup
484 * constrained events.
485 */
486 rcu_read_lock();
487
488 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200489 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200490 if (cpuctx->unique_pmu != pmu)
491 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200492
Stephane Eraniane5d13672011-02-14 11:20:01 +0200493 /*
494 * perf_cgroup_events says at least one
495 * context on this CPU has cgroup events.
496 *
497 * ctx->nr_cgroups reports the number of cgroup
498 * events for a context.
499 */
500 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200501 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
502 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200503
504 if (mode & PERF_CGROUP_SWOUT) {
505 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
506 /*
507 * must not be done before ctxswout due
508 * to event_filter_match() in event_sched_out()
509 */
510 cpuctx->cgrp = NULL;
511 }
512
513 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200514 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200515 /*
516 * set cgrp before ctxsw in to allow
517 * event_filter_match() to not have to pass
518 * task around
Stephane Eraniane5d13672011-02-14 11:20:01 +0200519 */
520 cpuctx->cgrp = perf_cgroup_from_task(task);
521 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
522 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200523 perf_pmu_enable(cpuctx->ctx.pmu);
524 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200525 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200526 }
527
528 rcu_read_unlock();
529
530 local_irq_restore(flags);
531}
532
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200533static inline void perf_cgroup_sched_out(struct task_struct *task,
534 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200535{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200536 struct perf_cgroup *cgrp1;
537 struct perf_cgroup *cgrp2 = NULL;
538
539 /*
540 * we come here when we know perf_cgroup_events > 0
541 */
542 cgrp1 = perf_cgroup_from_task(task);
543
544 /*
545 * next is NULL when called from perf_event_enable_on_exec()
546 * that will systematically cause a cgroup_switch()
547 */
548 if (next)
549 cgrp2 = perf_cgroup_from_task(next);
550
551 /*
552 * only schedule out current cgroup events if we know
553 * that we are switching to a different cgroup. Otherwise,
554 * do no touch the cgroup events.
555 */
556 if (cgrp1 != cgrp2)
557 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200558}
559
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200560static inline void perf_cgroup_sched_in(struct task_struct *prev,
561 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200562{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200563 struct perf_cgroup *cgrp1;
564 struct perf_cgroup *cgrp2 = NULL;
565
566 /*
567 * we come here when we know perf_cgroup_events > 0
568 */
569 cgrp1 = perf_cgroup_from_task(task);
570
571 /* prev can never be NULL */
572 cgrp2 = perf_cgroup_from_task(prev);
573
574 /*
575 * only need to schedule in cgroup events if we are changing
576 * cgroup during ctxsw. Cgroup events were not scheduled
577 * out of ctxsw out if that was not the case.
578 */
579 if (cgrp1 != cgrp2)
580 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200581}
582
583static inline int perf_cgroup_connect(int fd, struct perf_event *event,
584 struct perf_event_attr *attr,
585 struct perf_event *group_leader)
586{
587 struct perf_cgroup *cgrp;
588 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400589 struct fd f = fdget(fd);
590 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200591
Al Viro2903ff02012-08-28 12:52:22 -0400592 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200593 return -EBADF;
594
Tejun Heob77d7b62013-08-13 11:01:54 -0400595 rcu_read_lock();
596
Tejun Heo35cf0832013-08-26 18:40:56 -0400597 css = css_from_dir(f.file->f_dentry, &perf_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800598 if (IS_ERR(css)) {
599 ret = PTR_ERR(css);
600 goto out;
601 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200602
603 cgrp = container_of(css, struct perf_cgroup, css);
604 event->cgrp = cgrp;
605
Li Zefanf75e18c2011-03-03 14:25:50 +0800606 /* must be done before we fput() the file */
Salman Qazi9c5da092012-06-14 15:31:09 -0700607 if (!perf_tryget_cgroup(event)) {
608 event->cgrp = NULL;
609 ret = -ENOENT;
610 goto out;
611 }
Li Zefanf75e18c2011-03-03 14:25:50 +0800612
Stephane Eraniane5d13672011-02-14 11:20:01 +0200613 /*
614 * all events in a group must monitor
615 * the same cgroup because a task belongs
616 * to only one perf cgroup at a time
617 */
618 if (group_leader && group_leader->cgrp != cgrp) {
619 perf_detach_cgroup(event);
620 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200621 }
Li Zefan3db272c2011-03-03 14:25:37 +0800622out:
Tejun Heob77d7b62013-08-13 11:01:54 -0400623 rcu_read_unlock();
Al Viro2903ff02012-08-28 12:52:22 -0400624 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200625 return ret;
626}
627
628static inline void
629perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
630{
631 struct perf_cgroup_info *t;
632 t = per_cpu_ptr(event->cgrp->info, event->cpu);
633 event->shadow_ctx_time = now - t->timestamp;
634}
635
636static inline void
637perf_cgroup_defer_enabled(struct perf_event *event)
638{
639 /*
640 * when the current task's perf cgroup does not match
641 * the event's, we need to remember to call the
642 * perf_mark_enable() function the first time a task with
643 * a matching perf cgroup is scheduled in.
644 */
645 if (is_cgroup_event(event) && !perf_cgroup_match(event))
646 event->cgrp_defer_enabled = 1;
647}
648
649static inline void
650perf_cgroup_mark_enabled(struct perf_event *event,
651 struct perf_event_context *ctx)
652{
653 struct perf_event *sub;
654 u64 tstamp = perf_event_time(event);
655
656 if (!event->cgrp_defer_enabled)
657 return;
658
659 event->cgrp_defer_enabled = 0;
660
661 event->tstamp_enabled = tstamp - event->total_time_enabled;
662 list_for_each_entry(sub, &event->sibling_list, group_entry) {
663 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
664 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
665 sub->cgrp_defer_enabled = 0;
666 }
667 }
668}
669#else /* !CONFIG_CGROUP_PERF */
670
671static inline bool
672perf_cgroup_match(struct perf_event *event)
673{
674 return true;
675}
676
677static inline void perf_detach_cgroup(struct perf_event *event)
678{}
679
680static inline int is_cgroup_event(struct perf_event *event)
681{
682 return 0;
683}
684
685static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
686{
687 return 0;
688}
689
690static inline void update_cgrp_time_from_event(struct perf_event *event)
691{
692}
693
694static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
695{
696}
697
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200698static inline void perf_cgroup_sched_out(struct task_struct *task,
699 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200700{
701}
702
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200703static inline void perf_cgroup_sched_in(struct task_struct *prev,
704 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200705{
706}
707
708static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
709 struct perf_event_attr *attr,
710 struct perf_event *group_leader)
711{
712 return -EINVAL;
713}
714
715static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200716perf_cgroup_set_timestamp(struct task_struct *task,
717 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200718{
719}
720
721void
722perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
723{
724}
725
726static inline void
727perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
728{
729}
730
731static inline u64 perf_cgroup_event_time(struct perf_event *event)
732{
733 return 0;
734}
735
736static inline void
737perf_cgroup_defer_enabled(struct perf_event *event)
738{
739}
740
741static inline void
742perf_cgroup_mark_enabled(struct perf_event *event,
743 struct perf_event_context *ctx)
744{
745}
746#endif
747
Stephane Eranian9e630202013-04-03 14:21:33 +0200748/*
749 * set default to be dependent on timer tick just
750 * like original code
751 */
752#define PERF_CPU_HRTIMER (1000 / HZ)
753/*
754 * function must be called with interrupts disbled
755 */
756static enum hrtimer_restart perf_cpu_hrtimer_handler(struct hrtimer *hr)
757{
758 struct perf_cpu_context *cpuctx;
759 enum hrtimer_restart ret = HRTIMER_NORESTART;
760 int rotations = 0;
761
762 WARN_ON(!irqs_disabled());
763
764 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
765
766 rotations = perf_rotate_context(cpuctx);
767
768 /*
769 * arm timer if needed
770 */
771 if (rotations) {
772 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
773 ret = HRTIMER_RESTART;
774 }
775
776 return ret;
777}
778
779/* CPU is going down */
780void perf_cpu_hrtimer_cancel(int cpu)
781{
782 struct perf_cpu_context *cpuctx;
783 struct pmu *pmu;
784 unsigned long flags;
785
786 if (WARN_ON(cpu != smp_processor_id()))
787 return;
788
789 local_irq_save(flags);
790
791 rcu_read_lock();
792
793 list_for_each_entry_rcu(pmu, &pmus, entry) {
794 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
795
796 if (pmu->task_ctx_nr == perf_sw_context)
797 continue;
798
799 hrtimer_cancel(&cpuctx->hrtimer);
800 }
801
802 rcu_read_unlock();
803
804 local_irq_restore(flags);
805}
806
807static void __perf_cpu_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
808{
809 struct hrtimer *hr = &cpuctx->hrtimer;
810 struct pmu *pmu = cpuctx->ctx.pmu;
Stephane Eranian62b85632013-04-03 14:21:34 +0200811 int timer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200812
813 /* no multiplexing needed for SW PMU */
814 if (pmu->task_ctx_nr == perf_sw_context)
815 return;
816
Stephane Eranian62b85632013-04-03 14:21:34 +0200817 /*
818 * check default is sane, if not set then force to
819 * default interval (1/tick)
820 */
821 timer = pmu->hrtimer_interval_ms;
822 if (timer < 1)
823 timer = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
824
825 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
Stephane Eranian9e630202013-04-03 14:21:33 +0200826
827 hrtimer_init(hr, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
828 hr->function = perf_cpu_hrtimer_handler;
829}
830
831static void perf_cpu_hrtimer_restart(struct perf_cpu_context *cpuctx)
832{
833 struct hrtimer *hr = &cpuctx->hrtimer;
834 struct pmu *pmu = cpuctx->ctx.pmu;
835
836 /* not for SW PMU */
837 if (pmu->task_ctx_nr == perf_sw_context)
838 return;
839
840 if (hrtimer_active(hr))
841 return;
842
843 if (!hrtimer_callback_running(hr))
844 __hrtimer_start_range_ns(hr, cpuctx->hrtimer_interval,
845 0, HRTIMER_MODE_REL_PINNED, 0);
846}
847
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200848void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200849{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200850 int *count = this_cpu_ptr(pmu->pmu_disable_count);
851 if (!(*count)++)
852 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200853}
854
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200855void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200856{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200857 int *count = this_cpu_ptr(pmu->pmu_disable_count);
858 if (!--(*count))
859 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200860}
861
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200862static DEFINE_PER_CPU(struct list_head, rotation_list);
863
864/*
865 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
866 * because they're strictly cpu affine and rotate_start is called with IRQs
867 * disabled, while rotate_context is called from IRQ context.
868 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200869static void perf_pmu_rotate_start(struct pmu *pmu)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200870{
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200871 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200872 struct list_head *head = &__get_cpu_var(rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200873
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200874 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200875
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +0200876 if (list_empty(&cpuctx->rotation_list))
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200877 list_add(&cpuctx->rotation_list, head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200878}
879
880static void get_ctx(struct perf_event_context *ctx)
881{
882 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
883}
884
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200885static void put_ctx(struct perf_event_context *ctx)
886{
887 if (atomic_dec_and_test(&ctx->refcount)) {
888 if (ctx->parent_ctx)
889 put_ctx(ctx->parent_ctx);
890 if (ctx->task)
891 put_task_struct(ctx->task);
Lai Jiangshancb796ff2011-03-18 12:07:41 +0800892 kfree_rcu(ctx, rcu_head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200893 }
894}
895
896static void unclone_ctx(struct perf_event_context *ctx)
897{
898 if (ctx->parent_ctx) {
899 put_ctx(ctx->parent_ctx);
900 ctx->parent_ctx = NULL;
901 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +0200902 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200903}
904
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200905static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
906{
907 /*
908 * only top level events have the pid namespace they were created in
909 */
910 if (event->parent)
911 event = event->parent;
912
913 return task_tgid_nr_ns(p, event->ns);
914}
915
916static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
917{
918 /*
919 * only top level events have the pid namespace they were created in
920 */
921 if (event->parent)
922 event = event->parent;
923
924 return task_pid_nr_ns(p, event->ns);
925}
926
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200927/*
928 * If we inherit events we want to return the parent event id
929 * to userspace.
930 */
931static u64 primary_event_id(struct perf_event *event)
932{
933 u64 id = event->id;
934
935 if (event->parent)
936 id = event->parent->id;
937
938 return id;
939}
940
941/*
942 * Get the perf_event_context for a task and lock it.
943 * This has to cope with with the fact that until it is locked,
944 * the context could get moved to another task.
945 */
946static struct perf_event_context *
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200947perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200948{
949 struct perf_event_context *ctx;
950
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200951retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +0200952 /*
953 * One of the few rules of preemptible RCU is that one cannot do
954 * rcu_read_unlock() while holding a scheduler (or nested) lock when
955 * part of the read side critical section was preemptible -- see
956 * rcu_read_unlock_special().
957 *
958 * Since ctx->lock nests under rq->lock we must ensure the entire read
959 * side critical section is non-preemptible.
960 */
961 preempt_disable();
962 rcu_read_lock();
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200963 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200964 if (ctx) {
965 /*
966 * If this context is a clone of another, it might
967 * get swapped for another underneath us by
968 * perf_event_task_sched_out, though the
969 * rcu_read_lock() protects us from any context
970 * getting freed. Lock the context and check if it
971 * got swapped before we could get the lock, and retry
972 * if so. If we locked the right context, then it
973 * can't get swapped on us any more.
974 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100975 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200976 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100977 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +0200978 rcu_read_unlock();
979 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200980 goto retry;
981 }
982
983 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100984 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200985 ctx = NULL;
986 }
987 }
988 rcu_read_unlock();
Peter Zijlstra058ebd02013-07-12 11:08:33 +0200989 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200990 return ctx;
991}
992
993/*
994 * Get the context for a task and increment its pin_count so it
995 * can't get swapped to another task. This also increments its
996 * reference count so that the context can't get freed.
997 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200998static struct perf_event_context *
999perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001000{
1001 struct perf_event_context *ctx;
1002 unsigned long flags;
1003
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001004 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001005 if (ctx) {
1006 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001007 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001008 }
1009 return ctx;
1010}
1011
1012static void perf_unpin_context(struct perf_event_context *ctx)
1013{
1014 unsigned long flags;
1015
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001016 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001017 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001018 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001019}
1020
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001021/*
1022 * Update the record of the current time in a context.
1023 */
1024static void update_context_time(struct perf_event_context *ctx)
1025{
1026 u64 now = perf_clock();
1027
1028 ctx->time += now - ctx->timestamp;
1029 ctx->timestamp = now;
1030}
1031
Stephane Eranian41587552011-01-03 18:20:01 +02001032static u64 perf_event_time(struct perf_event *event)
1033{
1034 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001035
1036 if (is_cgroup_event(event))
1037 return perf_cgroup_event_time(event);
1038
Stephane Eranian41587552011-01-03 18:20:01 +02001039 return ctx ? ctx->time : 0;
1040}
1041
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001042/*
1043 * Update the total_time_enabled and total_time_running fields for a event.
Eric B Munsonb7526f02011-06-23 16:34:37 -04001044 * The caller of this function needs to hold the ctx->lock.
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001045 */
1046static void update_event_times(struct perf_event *event)
1047{
1048 struct perf_event_context *ctx = event->ctx;
1049 u64 run_end;
1050
1051 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1052 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1053 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001054 /*
1055 * in cgroup mode, time_enabled represents
1056 * the time the event was enabled AND active
1057 * tasks were in the monitored cgroup. This is
1058 * independent of the activity of the context as
1059 * there may be a mix of cgroup and non-cgroup events.
1060 *
1061 * That is why we treat cgroup events differently
1062 * here.
1063 */
1064 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001065 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001066 else if (ctx->is_active)
1067 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001068 else
1069 run_end = event->tstamp_stopped;
1070
1071 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001072
1073 if (event->state == PERF_EVENT_STATE_INACTIVE)
1074 run_end = event->tstamp_stopped;
1075 else
Stephane Eranian41587552011-01-03 18:20:01 +02001076 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001077
1078 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001079
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001080}
1081
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001082/*
1083 * Update total_time_enabled and total_time_running for all events in a group.
1084 */
1085static void update_group_times(struct perf_event *leader)
1086{
1087 struct perf_event *event;
1088
1089 update_event_times(leader);
1090 list_for_each_entry(event, &leader->sibling_list, group_entry)
1091 update_event_times(event);
1092}
1093
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001094static struct list_head *
1095ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1096{
1097 if (event->attr.pinned)
1098 return &ctx->pinned_groups;
1099 else
1100 return &ctx->flexible_groups;
1101}
1102
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001103/*
1104 * Add a event from the lists for its context.
1105 * Must be called with ctx->mutex and ctx->lock held.
1106 */
1107static void
1108list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1109{
Peter Zijlstra8a495422010-05-27 15:47:49 +02001110 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1111 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001112
1113 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001114 * If we're a stand alone event or group leader, we go to the context
1115 * list, group events are kept attached to the group so that
1116 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001117 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001118 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001119 struct list_head *list;
1120
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001121 if (is_software_event(event))
1122 event->group_flags |= PERF_GROUP_SOFTWARE;
1123
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001124 list = ctx_group_list(event, ctx);
1125 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001126 }
1127
Peter Zijlstra08309372011-03-03 11:31:20 +01001128 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02001129 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001130
Stephane Eraniand010b332012-02-09 23:21:00 +01001131 if (has_branch_stack(event))
1132 ctx->nr_branch_stack++;
1133
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001134 list_add_rcu(&event->event_entry, &ctx->event_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001135 if (!ctx->nr_events)
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001136 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001137 ctx->nr_events++;
1138 if (event->attr.inherit_stat)
1139 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001140
1141 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001142}
1143
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001144/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001145 * Initialize event state based on the perf_event_attr::disabled.
1146 */
1147static inline void perf_event__state_init(struct perf_event *event)
1148{
1149 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1150 PERF_EVENT_STATE_INACTIVE;
1151}
1152
1153/*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001154 * Called at perf_event creation and when events are attached/detached from a
1155 * group.
1156 */
1157static void perf_event__read_size(struct perf_event *event)
1158{
1159 int entry = sizeof(u64); /* value */
1160 int size = 0;
1161 int nr = 1;
1162
1163 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1164 size += sizeof(u64);
1165
1166 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1167 size += sizeof(u64);
1168
1169 if (event->attr.read_format & PERF_FORMAT_ID)
1170 entry += sizeof(u64);
1171
1172 if (event->attr.read_format & PERF_FORMAT_GROUP) {
1173 nr += event->group_leader->nr_siblings;
1174 size += sizeof(u64);
1175 }
1176
1177 size += entry * nr;
1178 event->read_size = size;
1179}
1180
1181static void perf_event__header_size(struct perf_event *event)
1182{
1183 struct perf_sample_data *data;
1184 u64 sample_type = event->attr.sample_type;
1185 u16 size = 0;
1186
1187 perf_event__read_size(event);
1188
1189 if (sample_type & PERF_SAMPLE_IP)
1190 size += sizeof(data->ip);
1191
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001192 if (sample_type & PERF_SAMPLE_ADDR)
1193 size += sizeof(data->addr);
1194
1195 if (sample_type & PERF_SAMPLE_PERIOD)
1196 size += sizeof(data->period);
1197
Andi Kleenc3feedf2013-01-24 16:10:28 +01001198 if (sample_type & PERF_SAMPLE_WEIGHT)
1199 size += sizeof(data->weight);
1200
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001201 if (sample_type & PERF_SAMPLE_READ)
1202 size += event->read_size;
1203
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001204 if (sample_type & PERF_SAMPLE_DATA_SRC)
1205 size += sizeof(data->data_src.val);
1206
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001207 if (sample_type & PERF_SAMPLE_TRANSACTION)
1208 size += sizeof(data->txn);
1209
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001210 event->header_size = size;
1211}
1212
1213static void perf_event__id_header_size(struct perf_event *event)
1214{
1215 struct perf_sample_data *data;
1216 u64 sample_type = event->attr.sample_type;
1217 u16 size = 0;
1218
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001219 if (sample_type & PERF_SAMPLE_TID)
1220 size += sizeof(data->tid_entry);
1221
1222 if (sample_type & PERF_SAMPLE_TIME)
1223 size += sizeof(data->time);
1224
Adrian Hunterff3d5272013-08-27 11:23:07 +03001225 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1226 size += sizeof(data->id);
1227
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001228 if (sample_type & PERF_SAMPLE_ID)
1229 size += sizeof(data->id);
1230
1231 if (sample_type & PERF_SAMPLE_STREAM_ID)
1232 size += sizeof(data->stream_id);
1233
1234 if (sample_type & PERF_SAMPLE_CPU)
1235 size += sizeof(data->cpu_entry);
1236
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001237 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001238}
1239
Peter Zijlstra8a495422010-05-27 15:47:49 +02001240static void perf_group_attach(struct perf_event *event)
1241{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001242 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001243
Peter Zijlstra74c33372010-10-15 11:40:29 +02001244 /*
1245 * We can have double attach due to group movement in perf_event_open.
1246 */
1247 if (event->attach_state & PERF_ATTACH_GROUP)
1248 return;
1249
Peter Zijlstra8a495422010-05-27 15:47:49 +02001250 event->attach_state |= PERF_ATTACH_GROUP;
1251
1252 if (group_leader == event)
1253 return;
1254
1255 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1256 !is_software_event(event))
1257 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1258
1259 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1260 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001261
1262 perf_event__header_size(group_leader);
1263
1264 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1265 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001266}
1267
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001268/*
1269 * Remove a event from the lists for its context.
1270 * Must be called with ctx->mutex and ctx->lock held.
1271 */
1272static void
1273list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1274{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001275 struct perf_cpu_context *cpuctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001276 /*
1277 * We can have double detach due to exit/hot-unplug + close.
1278 */
1279 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001280 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001281
1282 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1283
Stephane Eranian68cacd22011-03-23 16:03:06 +01001284 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001285 ctx->nr_cgroups--;
Stephane Eranian68cacd22011-03-23 16:03:06 +01001286 cpuctx = __get_cpu_context(ctx);
1287 /*
1288 * if there are no more cgroup events
1289 * then cler cgrp to avoid stale pointer
1290 * in update_cgrp_time_from_cpuctx()
1291 */
1292 if (!ctx->nr_cgroups)
1293 cpuctx->cgrp = NULL;
1294 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001295
Stephane Eraniand010b332012-02-09 23:21:00 +01001296 if (has_branch_stack(event))
1297 ctx->nr_branch_stack--;
1298
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001299 ctx->nr_events--;
1300 if (event->attr.inherit_stat)
1301 ctx->nr_stat--;
1302
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001303 list_del_rcu(&event->event_entry);
1304
Peter Zijlstra8a495422010-05-27 15:47:49 +02001305 if (event->group_leader == event)
1306 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001307
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001308 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001309
1310 /*
1311 * If event was in error state, then keep it
1312 * that way, otherwise bogus counts will be
1313 * returned on read(). The only way to get out
1314 * of error state is by explicit re-enabling
1315 * of the event
1316 */
1317 if (event->state > PERF_EVENT_STATE_OFF)
1318 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001319
1320 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001321}
1322
Peter Zijlstra8a495422010-05-27 15:47:49 +02001323static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001324{
1325 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001326 struct list_head *list = NULL;
1327
1328 /*
1329 * We can have double detach due to exit/hot-unplug + close.
1330 */
1331 if (!(event->attach_state & PERF_ATTACH_GROUP))
1332 return;
1333
1334 event->attach_state &= ~PERF_ATTACH_GROUP;
1335
1336 /*
1337 * If this is a sibling, remove it from its group.
1338 */
1339 if (event->group_leader != event) {
1340 list_del_init(&event->group_entry);
1341 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001342 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001343 }
1344
1345 if (!list_empty(&event->group_entry))
1346 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001347
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001348 /*
1349 * If this was a group event with sibling events then
1350 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001351 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001352 */
1353 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001354 if (list)
1355 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001356 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001357
1358 /* Inherit group flags from the previous leader */
1359 sibling->group_flags = event->group_flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001360 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001361
1362out:
1363 perf_event__header_size(event->group_leader);
1364
1365 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1366 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001367}
1368
Stephane Eranianfa66f072010-08-26 16:40:01 +02001369static inline int
1370event_filter_match(struct perf_event *event)
1371{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001372 return (event->cpu == -1 || event->cpu == smp_processor_id())
1373 && perf_cgroup_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001374}
1375
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001376static void
1377event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001378 struct perf_cpu_context *cpuctx,
1379 struct perf_event_context *ctx)
1380{
Stephane Eranian41587552011-01-03 18:20:01 +02001381 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001382 u64 delta;
1383 /*
1384 * An event which could not be activated because of
1385 * filter mismatch still needs to have its timings
1386 * maintained, otherwise bogus information is return
1387 * via read() for time_enabled, time_running:
1388 */
1389 if (event->state == PERF_EVENT_STATE_INACTIVE
1390 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001391 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001392 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001393 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001394 }
1395
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001396 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001397 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001398
Alexander Shishkin44377272013-12-16 14:17:36 +02001399 perf_pmu_disable(event->pmu);
1400
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001401 event->state = PERF_EVENT_STATE_INACTIVE;
1402 if (event->pending_disable) {
1403 event->pending_disable = 0;
1404 event->state = PERF_EVENT_STATE_OFF;
1405 }
Stephane Eranian41587552011-01-03 18:20:01 +02001406 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001407 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001408 event->oncpu = -1;
1409
1410 if (!is_software_event(event))
1411 cpuctx->active_oncpu--;
1412 ctx->nr_active--;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001413 if (event->attr.freq && event->attr.sample_freq)
1414 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001415 if (event->attr.exclusive || !cpuctx->active_oncpu)
1416 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001417
1418 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001419}
1420
1421static void
1422group_sched_out(struct perf_event *group_event,
1423 struct perf_cpu_context *cpuctx,
1424 struct perf_event_context *ctx)
1425{
1426 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001427 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001428
1429 event_sched_out(group_event, cpuctx, ctx);
1430
1431 /*
1432 * Schedule out siblings (if any):
1433 */
1434 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1435 event_sched_out(event, cpuctx, ctx);
1436
Stephane Eranianfa66f072010-08-26 16:40:01 +02001437 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001438 cpuctx->exclusive = 0;
1439}
1440
1441/*
1442 * Cross CPU call to remove a performance event
1443 *
1444 * We disable the event on the hardware level first. After that we
1445 * remove it from the context list.
1446 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001447static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001448{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001449 struct perf_event *event = info;
1450 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001451 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001452
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001453 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001454 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001455 list_del_event(event, ctx);
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001456 if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1457 ctx->is_active = 0;
1458 cpuctx->task_ctx = NULL;
1459 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001460 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001461
1462 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001463}
1464
1465
1466/*
1467 * Remove the event from a task's (or a CPU's) list of events.
1468 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001469 * CPU events are removed with a smp call. For task events we only
1470 * call when the task is on a CPU.
1471 *
1472 * If event->ctx is a cloned context, callers must make sure that
1473 * every task struct that event->ctx->task could possibly point to
1474 * remains valid. This is OK when called from perf_release since
1475 * that only calls us on the top-level context, which can't be a clone.
1476 * When called from perf_event_exit_task, it's OK because the
1477 * context has been detached from its task.
1478 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001479static void perf_remove_from_context(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001480{
1481 struct perf_event_context *ctx = event->ctx;
1482 struct task_struct *task = ctx->task;
1483
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001484 lockdep_assert_held(&ctx->mutex);
1485
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001486 if (!task) {
1487 /*
1488 * Per cpu events are removed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001489 * the removal is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001490 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001491 cpu_function_call(event->cpu, __perf_remove_from_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001492 return;
1493 }
1494
1495retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001496 if (!task_function_call(task, __perf_remove_from_context, event))
1497 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001498
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001499 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001500 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001501 * If we failed to find a running task, but find the context active now
1502 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001503 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001504 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001505 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001506 goto retry;
1507 }
1508
1509 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001510 * Since the task isn't running, its safe to remove the event, us
1511 * holding the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001512 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001513 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001514 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001515}
1516
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001517/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001518 * Cross CPU call to disable a performance event
1519 */
K.Prasad500ad2d2012-08-02 13:46:35 +05301520int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001521{
1522 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001523 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001524 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001525
1526 /*
1527 * If this is a per-task event, need to check whether this
1528 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001529 *
1530 * Can trigger due to concurrent perf_event_context_sched_out()
1531 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001532 */
1533 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001534 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001535
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001536 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001537
1538 /*
1539 * If the event is on, turn it off.
1540 * If it is in error state, leave it in error state.
1541 */
1542 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1543 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001544 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001545 update_group_times(event);
1546 if (event == event->group_leader)
1547 group_sched_out(event, cpuctx, ctx);
1548 else
1549 event_sched_out(event, cpuctx, ctx);
1550 event->state = PERF_EVENT_STATE_OFF;
1551 }
1552
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001553 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001554
1555 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001556}
1557
1558/*
1559 * Disable a event.
1560 *
1561 * If event->ctx is a cloned context, callers must make sure that
1562 * every task struct that event->ctx->task could possibly point to
1563 * remains valid. This condition is satisifed when called through
1564 * perf_event_for_each_child or perf_event_for_each because they
1565 * hold the top-level event's child_mutex, so any descendant that
1566 * goes to exit will block in sync_child_event.
1567 * When called from perf_pending_event it's OK because event->ctx
1568 * is the current context on this CPU and preemption is disabled,
1569 * hence we can't get into perf_event_task_sched_out for this context.
1570 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001571void perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001572{
1573 struct perf_event_context *ctx = event->ctx;
1574 struct task_struct *task = ctx->task;
1575
1576 if (!task) {
1577 /*
1578 * Disable the event on the cpu that it's on
1579 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001580 cpu_function_call(event->cpu, __perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001581 return;
1582 }
1583
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001584retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001585 if (!task_function_call(task, __perf_event_disable, event))
1586 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001587
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001588 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001589 /*
1590 * If the event is still active, we need to retry the cross-call.
1591 */
1592 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001593 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001594 /*
1595 * Reload the task pointer, it might have been changed by
1596 * a concurrent perf_event_context_sched_out().
1597 */
1598 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001599 goto retry;
1600 }
1601
1602 /*
1603 * Since we have the lock this context can't be scheduled
1604 * in, so we can change the state safely.
1605 */
1606 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1607 update_group_times(event);
1608 event->state = PERF_EVENT_STATE_OFF;
1609 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001610 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001611}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001612EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001613
Stephane Eraniane5d13672011-02-14 11:20:01 +02001614static void perf_set_shadow_time(struct perf_event *event,
1615 struct perf_event_context *ctx,
1616 u64 tstamp)
1617{
1618 /*
1619 * use the correct time source for the time snapshot
1620 *
1621 * We could get by without this by leveraging the
1622 * fact that to get to this function, the caller
1623 * has most likely already called update_context_time()
1624 * and update_cgrp_time_xx() and thus both timestamp
1625 * are identical (or very close). Given that tstamp is,
1626 * already adjusted for cgroup, we could say that:
1627 * tstamp - ctx->timestamp
1628 * is equivalent to
1629 * tstamp - cgrp->timestamp.
1630 *
1631 * Then, in perf_output_read(), the calculation would
1632 * work with no changes because:
1633 * - event is guaranteed scheduled in
1634 * - no scheduled out in between
1635 * - thus the timestamp would be the same
1636 *
1637 * But this is a bit hairy.
1638 *
1639 * So instead, we have an explicit cgroup call to remain
1640 * within the time time source all along. We believe it
1641 * is cleaner and simpler to understand.
1642 */
1643 if (is_cgroup_event(event))
1644 perf_cgroup_set_shadow_time(event, tstamp);
1645 else
1646 event->shadow_ctx_time = tstamp - ctx->timestamp;
1647}
1648
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001649#define MAX_INTERRUPTS (~0ULL)
1650
1651static void perf_log_throttle(struct perf_event *event, int enable);
1652
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001653static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001654event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001655 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001656 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001657{
Stephane Eranian41587552011-01-03 18:20:01 +02001658 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02001659 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02001660
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001661 if (event->state <= PERF_EVENT_STATE_OFF)
1662 return 0;
1663
1664 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001665 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001666
1667 /*
1668 * Unthrottle events, since we scheduled we might have missed several
1669 * ticks already, also for a heavily scheduling task there is little
1670 * guarantee it'll get a tick in a timely manner.
1671 */
1672 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1673 perf_log_throttle(event, 1);
1674 event->hw.interrupts = 0;
1675 }
1676
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001677 /*
1678 * The new state must be visible before we turn it on in the hardware:
1679 */
1680 smp_wmb();
1681
Alexander Shishkin44377272013-12-16 14:17:36 +02001682 perf_pmu_disable(event->pmu);
1683
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001684 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001685 event->state = PERF_EVENT_STATE_INACTIVE;
1686 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02001687 ret = -EAGAIN;
1688 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001689 }
1690
Stephane Eranian41587552011-01-03 18:20:01 +02001691 event->tstamp_running += tstamp - event->tstamp_stopped;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001692
Stephane Eraniane5d13672011-02-14 11:20:01 +02001693 perf_set_shadow_time(event, ctx, tstamp);
Stephane Eranianeed01522010-10-26 16:08:01 +02001694
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001695 if (!is_software_event(event))
1696 cpuctx->active_oncpu++;
1697 ctx->nr_active++;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001698 if (event->attr.freq && event->attr.sample_freq)
1699 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001700
1701 if (event->attr.exclusive)
1702 cpuctx->exclusive = 1;
1703
Alexander Shishkin44377272013-12-16 14:17:36 +02001704out:
1705 perf_pmu_enable(event->pmu);
1706
1707 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001708}
1709
1710static int
1711group_sched_in(struct perf_event *group_event,
1712 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001713 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001714{
Lin Ming6bde9b62010-04-23 13:56:00 +08001715 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001716 struct pmu *pmu = group_event->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001717 u64 now = ctx->time;
1718 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001719
1720 if (group_event->state == PERF_EVENT_STATE_OFF)
1721 return 0;
1722
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001723 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +08001724
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001725 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001726 pmu->cancel_txn(pmu);
Stephane Eranian9e630202013-04-03 14:21:33 +02001727 perf_cpu_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001728 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001729 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001730
1731 /*
1732 * Schedule in siblings as one group (if any):
1733 */
1734 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001735 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001736 partial_group = event;
1737 goto group_error;
1738 }
1739 }
1740
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001741 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001742 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001743
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001744group_error:
1745 /*
1746 * Groups can be scheduled in as one unit only, so undo any
1747 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001748 * The events up to the failed event are scheduled out normally,
1749 * tstamp_stopped will be updated.
1750 *
1751 * The failed events and the remaining siblings need to have
1752 * their timings updated as if they had gone thru event_sched_in()
1753 * and event_sched_out(). This is required to get consistent timings
1754 * across the group. This also takes care of the case where the group
1755 * could never be scheduled by ensuring tstamp_stopped is set to mark
1756 * the time the event was actually stopped, such that time delta
1757 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001758 */
1759 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1760 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001761 simulate = true;
1762
1763 if (simulate) {
1764 event->tstamp_running += now - event->tstamp_stopped;
1765 event->tstamp_stopped = now;
1766 } else {
1767 event_sched_out(event, cpuctx, ctx);
1768 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001769 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001770 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001771
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001772 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02001773
Stephane Eranian9e630202013-04-03 14:21:33 +02001774 perf_cpu_hrtimer_restart(cpuctx);
1775
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001776 return -EAGAIN;
1777}
1778
1779/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001780 * Work out whether we can put this event group on the CPU now.
1781 */
1782static int group_can_go_on(struct perf_event *event,
1783 struct perf_cpu_context *cpuctx,
1784 int can_add_hw)
1785{
1786 /*
1787 * Groups consisting entirely of software events can always go on.
1788 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001789 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001790 return 1;
1791 /*
1792 * If an exclusive group is already on, no other hardware
1793 * events can go on.
1794 */
1795 if (cpuctx->exclusive)
1796 return 0;
1797 /*
1798 * If this group is exclusive and there are already
1799 * events on the CPU, it can't go on.
1800 */
1801 if (event->attr.exclusive && cpuctx->active_oncpu)
1802 return 0;
1803 /*
1804 * Otherwise, try to add it if all previous groups were able
1805 * to go on.
1806 */
1807 return can_add_hw;
1808}
1809
1810static void add_event_to_ctx(struct perf_event *event,
1811 struct perf_event_context *ctx)
1812{
Stephane Eranian41587552011-01-03 18:20:01 +02001813 u64 tstamp = perf_event_time(event);
1814
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001815 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001816 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02001817 event->tstamp_enabled = tstamp;
1818 event->tstamp_running = tstamp;
1819 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001820}
1821
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001822static void task_ctx_sched_out(struct perf_event_context *ctx);
1823static void
1824ctx_sched_in(struct perf_event_context *ctx,
1825 struct perf_cpu_context *cpuctx,
1826 enum event_type_t event_type,
1827 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001828
Peter Zijlstradce58552011-04-09 21:17:46 +02001829static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
1830 struct perf_event_context *ctx,
1831 struct task_struct *task)
1832{
1833 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
1834 if (ctx)
1835 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
1836 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
1837 if (ctx)
1838 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
1839}
1840
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001841/*
1842 * Cross CPU call to install and enable a performance event
1843 *
1844 * Must be called with ctx->mutex held
1845 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001846static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001847{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001848 struct perf_event *event = info;
1849 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001850 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001851 struct perf_event_context *task_ctx = cpuctx->task_ctx;
1852 struct task_struct *task = current;
1853
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001854 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001855 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001856
1857 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001858 * If there was an active task_ctx schedule it out.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001859 */
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001860 if (task_ctx)
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001861 task_ctx_sched_out(task_ctx);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001862
1863 /*
1864 * If the context we're installing events in is not the
1865 * active task_ctx, flip them.
1866 */
1867 if (ctx->task && task_ctx != ctx) {
1868 if (task_ctx)
1869 raw_spin_unlock(&task_ctx->lock);
1870 raw_spin_lock(&ctx->lock);
1871 task_ctx = ctx;
1872 }
1873
1874 if (task_ctx) {
1875 cpuctx->task_ctx = task_ctx;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001876 task = task_ctx->task;
1877 }
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001878
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001879 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001880
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001881 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001882 /*
1883 * update cgrp time only if current cgrp
1884 * matches event->cgrp. Must be done before
1885 * calling add_event_to_ctx()
1886 */
1887 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001888
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001889 add_event_to_ctx(event, ctx);
1890
1891 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001892 * Schedule everything back in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001893 */
Peter Zijlstradce58552011-04-09 21:17:46 +02001894 perf_event_sched_in(cpuctx, task_ctx, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001895
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001896 perf_pmu_enable(cpuctx->ctx.pmu);
1897 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001898
1899 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001900}
1901
1902/*
1903 * Attach a performance event to a context
1904 *
1905 * First we add the event to the list with the hardware enable bit
1906 * in event->hw_config cleared.
1907 *
1908 * If the event is attached to a task which is on a CPU we use a smp
1909 * call to enable it in the task context. The task might have been
1910 * scheduled away, but we check this in the smp call again.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001911 */
1912static void
1913perf_install_in_context(struct perf_event_context *ctx,
1914 struct perf_event *event,
1915 int cpu)
1916{
1917 struct task_struct *task = ctx->task;
1918
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001919 lockdep_assert_held(&ctx->mutex);
1920
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001921 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08001922 if (event->cpu != -1)
1923 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001924
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001925 if (!task) {
1926 /*
1927 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001928 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001929 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001930 cpu_function_call(cpu, __perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001931 return;
1932 }
1933
1934retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001935 if (!task_function_call(task, __perf_install_in_context, event))
1936 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001937
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001938 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001939 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001940 * If we failed to find a running task, but find the context active now
1941 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001942 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001943 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001944 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001945 goto retry;
1946 }
1947
1948 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001949 * Since the task isn't running, its safe to add the event, us holding
1950 * the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001951 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001952 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001953 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001954}
1955
1956/*
1957 * Put a event into inactive state and update time fields.
1958 * Enabling the leader of a group effectively enables all
1959 * the group members that aren't explicitly disabled, so we
1960 * have to update their ->tstamp_enabled also.
1961 * Note: this works for group members as well as group leaders
1962 * since the non-leader members' sibling_lists will be empty.
1963 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001964static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001965{
1966 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02001967 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001968
1969 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02001970 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001971 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02001972 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
1973 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001974 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001975}
1976
1977/*
1978 * Cross CPU call to enable a performance event
1979 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001980static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001981{
1982 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001983 struct perf_event_context *ctx = event->ctx;
1984 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001985 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001986 int err;
1987
Jiri Olsa06f41792013-07-09 17:44:11 +02001988 /*
1989 * There's a time window between 'ctx->is_active' check
1990 * in perf_event_enable function and this place having:
1991 * - IRQs on
1992 * - ctx->lock unlocked
1993 *
1994 * where the task could be killed and 'ctx' deactivated
1995 * by perf_event_exit_task.
1996 */
1997 if (!ctx->is_active)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001998 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001999
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002000 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002001 update_context_time(ctx);
2002
2003 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2004 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002005
2006 /*
2007 * set current task's cgroup time reference point
2008 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002009 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002010
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002011 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002012
Stephane Eraniane5d13672011-02-14 11:20:01 +02002013 if (!event_filter_match(event)) {
2014 if (is_cgroup_event(event))
2015 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002016 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002017 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002018
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002019 /*
2020 * If the event is in a group and isn't the group leader,
2021 * then don't put it on unless the group is on.
2022 */
2023 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
2024 goto unlock;
2025
2026 if (!group_can_go_on(event, cpuctx, 1)) {
2027 err = -EEXIST;
2028 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002029 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002030 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002031 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01002032 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002033 }
2034
2035 if (err) {
2036 /*
2037 * If this event can't go on and it's part of a
2038 * group, then the whole group has to come off.
2039 */
Stephane Eranian9e630202013-04-03 14:21:33 +02002040 if (leader != event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002041 group_sched_out(leader, cpuctx, ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002042 perf_cpu_hrtimer_restart(cpuctx);
2043 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002044 if (leader->attr.pinned) {
2045 update_group_times(leader);
2046 leader->state = PERF_EVENT_STATE_ERROR;
2047 }
2048 }
2049
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002050unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002051 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002052
2053 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002054}
2055
2056/*
2057 * Enable a event.
2058 *
2059 * If event->ctx is a cloned context, callers must make sure that
2060 * every task struct that event->ctx->task could possibly point to
2061 * remains valid. This condition is satisfied when called through
2062 * perf_event_for_each_child or perf_event_for_each as described
2063 * for perf_event_disable.
2064 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01002065void perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002066{
2067 struct perf_event_context *ctx = event->ctx;
2068 struct task_struct *task = ctx->task;
2069
2070 if (!task) {
2071 /*
2072 * Enable the event on the cpu that it's on
2073 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002074 cpu_function_call(event->cpu, __perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002075 return;
2076 }
2077
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002078 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002079 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2080 goto out;
2081
2082 /*
2083 * If the event is in error state, clear that first.
2084 * That way, if we see the event in error state below, we
2085 * know that it has gone back into error state, as distinct
2086 * from the task having been scheduled away before the
2087 * cross-call arrived.
2088 */
2089 if (event->state == PERF_EVENT_STATE_ERROR)
2090 event->state = PERF_EVENT_STATE_OFF;
2091
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002092retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002093 if (!ctx->is_active) {
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002094 __perf_event_mark_enabled(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002095 goto out;
2096 }
2097
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002098 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002099
2100 if (!task_function_call(task, __perf_event_enable, event))
2101 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002102
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002103 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002104
2105 /*
2106 * If the context is active and the event is still off,
2107 * we need to retry the cross-call.
2108 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002109 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
2110 /*
2111 * task could have been flipped by a concurrent
2112 * perf_event_context_sched_out()
2113 */
2114 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002115 goto retry;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002116 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002117
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002118out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002119 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002120}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002121EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002122
Avi Kivity26ca5c12011-06-29 18:42:37 +03002123int perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002124{
2125 /*
2126 * not supported on inherited events
2127 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002128 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002129 return -EINVAL;
2130
2131 atomic_add(refresh, &event->event_limit);
2132 perf_event_enable(event);
2133
2134 return 0;
2135}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002136EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002137
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002138static void ctx_sched_out(struct perf_event_context *ctx,
2139 struct perf_cpu_context *cpuctx,
2140 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002141{
2142 struct perf_event *event;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002143 int is_active = ctx->is_active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002144
Peter Zijlstradb24d332011-04-09 21:17:45 +02002145 ctx->is_active &= ~event_type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002146 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002147 return;
2148
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002149 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002150 update_cgrp_time_from_cpuctx(cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002151 if (!ctx->nr_active)
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002152 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002153
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002154 perf_pmu_disable(ctx->pmu);
Peter Zijlstradb24d332011-04-09 21:17:45 +02002155 if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002156 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2157 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002158 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002159
Peter Zijlstradb24d332011-04-09 21:17:45 +02002160 if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002161 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002162 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002163 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002164 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002165}
2166
2167/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002168 * Test whether two contexts are equivalent, i.e. whether they have both been
2169 * cloned from the same version of the same context.
2170 *
2171 * Equivalence is measured using a generation number in the context that is
2172 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2173 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002174 */
2175static int context_equiv(struct perf_event_context *ctx1,
2176 struct perf_event_context *ctx2)
2177{
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002178 /* Pinning disables the swap optimization */
2179 if (ctx1->pin_count || ctx2->pin_count)
2180 return 0;
2181
2182 /* If ctx1 is the parent of ctx2 */
2183 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2184 return 1;
2185
2186 /* If ctx2 is the parent of ctx1 */
2187 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2188 return 1;
2189
2190 /*
2191 * If ctx1 and ctx2 have the same parent; we flatten the parent
2192 * hierarchy, see perf_event_init_context().
2193 */
2194 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2195 ctx1->parent_gen == ctx2->parent_gen)
2196 return 1;
2197
2198 /* Unmatched */
2199 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002200}
2201
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002202static void __perf_event_sync_stat(struct perf_event *event,
2203 struct perf_event *next_event)
2204{
2205 u64 value;
2206
2207 if (!event->attr.inherit_stat)
2208 return;
2209
2210 /*
2211 * Update the event value, we cannot use perf_event_read()
2212 * because we're in the middle of a context switch and have IRQs
2213 * disabled, which upsets smp_call_function_single(), however
2214 * we know the event must be on the current CPU, therefore we
2215 * don't need to use it.
2216 */
2217 switch (event->state) {
2218 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002219 event->pmu->read(event);
2220 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002221
2222 case PERF_EVENT_STATE_INACTIVE:
2223 update_event_times(event);
2224 break;
2225
2226 default:
2227 break;
2228 }
2229
2230 /*
2231 * In order to keep per-task stats reliable we need to flip the event
2232 * values when we flip the contexts.
2233 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002234 value = local64_read(&next_event->count);
2235 value = local64_xchg(&event->count, value);
2236 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002237
2238 swap(event->total_time_enabled, next_event->total_time_enabled);
2239 swap(event->total_time_running, next_event->total_time_running);
2240
2241 /*
2242 * Since we swizzled the values, update the user visible data too.
2243 */
2244 perf_event_update_userpage(event);
2245 perf_event_update_userpage(next_event);
2246}
2247
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002248static void perf_event_sync_stat(struct perf_event_context *ctx,
2249 struct perf_event_context *next_ctx)
2250{
2251 struct perf_event *event, *next_event;
2252
2253 if (!ctx->nr_stat)
2254 return;
2255
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002256 update_context_time(ctx);
2257
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002258 event = list_first_entry(&ctx->event_list,
2259 struct perf_event, event_entry);
2260
2261 next_event = list_first_entry(&next_ctx->event_list,
2262 struct perf_event, event_entry);
2263
2264 while (&event->event_entry != &ctx->event_list &&
2265 &next_event->event_entry != &next_ctx->event_list) {
2266
2267 __perf_event_sync_stat(event, next_event);
2268
2269 event = list_next_entry(event, event_entry);
2270 next_event = list_next_entry(next_event, event_entry);
2271 }
2272}
2273
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002274static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2275 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002276{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002277 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002278 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002279 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002280 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002281 int do_switch = 1;
2282
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002283 if (likely(!ctx))
2284 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002285
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002286 cpuctx = __get_cpu_context(ctx);
2287 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002288 return;
2289
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002290 rcu_read_lock();
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002291 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002292 if (!next_ctx)
2293 goto unlock;
2294
2295 parent = rcu_dereference(ctx->parent_ctx);
2296 next_parent = rcu_dereference(next_ctx->parent_ctx);
2297
2298 /* If neither context have a parent context; they cannot be clones. */
2299 if (!parent && !next_parent)
2300 goto unlock;
2301
2302 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002303 /*
2304 * Looks like the two contexts are clones, so we might be
2305 * able to optimize the context switch. We lock both
2306 * contexts and check that they are clones under the
2307 * lock (including re-checking that neither has been
2308 * uncloned in the meantime). It doesn't matter which
2309 * order we take the locks because no other cpu could
2310 * be trying to lock both of these tasks.
2311 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002312 raw_spin_lock(&ctx->lock);
2313 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002314 if (context_equiv(ctx, next_ctx)) {
2315 /*
2316 * XXX do we need a memory barrier of sorts
2317 * wrt to rcu_dereference() of perf_event_ctxp
2318 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002319 task->perf_event_ctxp[ctxn] = next_ctx;
2320 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002321 ctx->task = next;
2322 next_ctx->task = task;
2323 do_switch = 0;
2324
2325 perf_event_sync_stat(ctx, next_ctx);
2326 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002327 raw_spin_unlock(&next_ctx->lock);
2328 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002329 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002330unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002331 rcu_read_unlock();
2332
2333 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002334 raw_spin_lock(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002335 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002336 cpuctx->task_ctx = NULL;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002337 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002338 }
2339}
2340
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002341#define for_each_task_context_nr(ctxn) \
2342 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2343
2344/*
2345 * Called from scheduler to remove the events of the current task,
2346 * with interrupts disabled.
2347 *
2348 * We stop each event and update the event value in event->count.
2349 *
2350 * This does not protect us against NMI, but disable()
2351 * sets the disabled bit in the control field of event _before_
2352 * accessing the event control register. If a NMI hits, then it will
2353 * not restart the event.
2354 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002355void __perf_event_task_sched_out(struct task_struct *task,
2356 struct task_struct *next)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002357{
2358 int ctxn;
2359
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002360 for_each_task_context_nr(ctxn)
2361 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002362
2363 /*
2364 * if cgroup events exist on this CPU, then we need
2365 * to check if we have to switch out PMU state.
2366 * cgroup event are system-wide mode only
2367 */
2368 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002369 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002370}
2371
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002372static void task_ctx_sched_out(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002373{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002374 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002375
2376 if (!cpuctx->task_ctx)
2377 return;
2378
2379 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2380 return;
2381
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002382 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002383 cpuctx->task_ctx = NULL;
2384}
2385
2386/*
2387 * Called with IRQs disabled
2388 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002389static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2390 enum event_type_t event_type)
2391{
2392 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002393}
2394
2395static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002396ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002397 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002398{
2399 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002400
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002401 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2402 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002403 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002404 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002405 continue;
2406
Stephane Eraniane5d13672011-02-14 11:20:01 +02002407 /* may need to reset tstamp_enabled */
2408 if (is_cgroup_event(event))
2409 perf_cgroup_mark_enabled(event, ctx);
2410
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002411 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002412 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002413
2414 /*
2415 * If this pinned group hasn't been scheduled,
2416 * put it in error state.
2417 */
2418 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2419 update_group_times(event);
2420 event->state = PERF_EVENT_STATE_ERROR;
2421 }
2422 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002423}
2424
2425static void
2426ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002427 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002428{
2429 struct perf_event *event;
2430 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002431
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002432 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2433 /* Ignore events in OFF or ERROR state */
2434 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002435 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002436 /*
2437 * Listen to the 'cpu' scheduling filter constraint
2438 * of events:
2439 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002440 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002441 continue;
2442
Stephane Eraniane5d13672011-02-14 11:20:01 +02002443 /* may need to reset tstamp_enabled */
2444 if (is_cgroup_event(event))
2445 perf_cgroup_mark_enabled(event, ctx);
2446
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002447 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002448 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002449 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002450 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002451 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002452}
2453
2454static void
2455ctx_sched_in(struct perf_event_context *ctx,
2456 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002457 enum event_type_t event_type,
2458 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002459{
Stephane Eraniane5d13672011-02-14 11:20:01 +02002460 u64 now;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002461 int is_active = ctx->is_active;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002462
Peter Zijlstradb24d332011-04-09 21:17:45 +02002463 ctx->is_active |= event_type;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002464 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002465 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002466
Stephane Eraniane5d13672011-02-14 11:20:01 +02002467 now = perf_clock();
2468 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002469 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002470 /*
2471 * First go through the list and put on any pinned groups
2472 * in order to give them the best chance of going on.
2473 */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002474 if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002475 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002476
2477 /* Then walk through the lower prio flexible groups */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002478 if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002479 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002480}
2481
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002482static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002483 enum event_type_t event_type,
2484 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002485{
2486 struct perf_event_context *ctx = &cpuctx->ctx;
2487
Stephane Eraniane5d13672011-02-14 11:20:01 +02002488 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002489}
2490
Stephane Eraniane5d13672011-02-14 11:20:01 +02002491static void perf_event_context_sched_in(struct perf_event_context *ctx,
2492 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002493{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002494 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002495
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002496 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002497 if (cpuctx->task_ctx == ctx)
2498 return;
2499
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002500 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002501 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002502 /*
2503 * We want to keep the following priority order:
2504 * cpu pinned (that don't need to move), task pinned,
2505 * cpu flexible, task flexible.
2506 */
2507 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2508
Gleb Natapov1d5f0032011-10-23 19:10:33 +02002509 if (ctx->nr_events)
2510 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002511
Gleb Natapov86b47c22011-11-22 16:08:21 +02002512 perf_event_sched_in(cpuctx, cpuctx->task_ctx, task);
2513
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002514 perf_pmu_enable(ctx->pmu);
2515 perf_ctx_unlock(cpuctx, ctx);
2516
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002517 /*
2518 * Since these rotations are per-cpu, we need to ensure the
2519 * cpu-context we got scheduled on is actually rotating.
2520 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002521 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002522}
2523
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002524/*
Stephane Eraniand010b332012-02-09 23:21:00 +01002525 * When sampling the branck stack in system-wide, it may be necessary
2526 * to flush the stack on context switch. This happens when the branch
2527 * stack does not tag its entries with the pid of the current task.
2528 * Otherwise it becomes impossible to associate a branch entry with a
2529 * task. This ambiguity is more likely to appear when the branch stack
2530 * supports priv level filtering and the user sets it to monitor only
2531 * at the user level (which could be a useful measurement in system-wide
2532 * mode). In that case, the risk is high of having a branch stack with
2533 * branch from multiple tasks. Flushing may mean dropping the existing
2534 * entries or stashing them somewhere in the PMU specific code layer.
2535 *
2536 * This function provides the context switch callback to the lower code
2537 * layer. It is invoked ONLY when there is at least one system-wide context
2538 * with at least one active event using taken branch sampling.
2539 */
2540static void perf_branch_stack_sched_in(struct task_struct *prev,
2541 struct task_struct *task)
2542{
2543 struct perf_cpu_context *cpuctx;
2544 struct pmu *pmu;
2545 unsigned long flags;
2546
2547 /* no need to flush branch stack if not changing task */
2548 if (prev == task)
2549 return;
2550
2551 local_irq_save(flags);
2552
2553 rcu_read_lock();
2554
2555 list_for_each_entry_rcu(pmu, &pmus, entry) {
2556 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2557
2558 /*
2559 * check if the context has at least one
2560 * event using PERF_SAMPLE_BRANCH_STACK
2561 */
2562 if (cpuctx->ctx.nr_branch_stack > 0
2563 && pmu->flush_branch_stack) {
2564
2565 pmu = cpuctx->ctx.pmu;
2566
2567 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2568
2569 perf_pmu_disable(pmu);
2570
2571 pmu->flush_branch_stack();
2572
2573 perf_pmu_enable(pmu);
2574
2575 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2576 }
2577 }
2578
2579 rcu_read_unlock();
2580
2581 local_irq_restore(flags);
2582}
2583
2584/*
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002585 * Called from scheduler to add the events of the current task
2586 * with interrupts disabled.
2587 *
2588 * We restore the event value and then enable it.
2589 *
2590 * This does not protect us against NMI, but enable()
2591 * sets the enabled bit in the control field of event _before_
2592 * accessing the event control register. If a NMI hits, then it will
2593 * keep the event running.
2594 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002595void __perf_event_task_sched_in(struct task_struct *prev,
2596 struct task_struct *task)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002597{
2598 struct perf_event_context *ctx;
2599 int ctxn;
2600
2601 for_each_task_context_nr(ctxn) {
2602 ctx = task->perf_event_ctxp[ctxn];
2603 if (likely(!ctx))
2604 continue;
2605
Stephane Eraniane5d13672011-02-14 11:20:01 +02002606 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002607 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02002608 /*
2609 * if cgroup events exist on this CPU, then we need
2610 * to check if we have to switch in PMU state.
2611 * cgroup event are system-wide mode only
2612 */
2613 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002614 perf_cgroup_sched_in(prev, task);
Stephane Eraniand010b332012-02-09 23:21:00 +01002615
2616 /* check for system-wide branch_stack events */
2617 if (atomic_read(&__get_cpu_var(perf_branch_stack_events)))
2618 perf_branch_stack_sched_in(prev, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002619}
2620
Peter Zijlstraabd50712010-01-26 18:50:16 +01002621static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2622{
2623 u64 frequency = event->attr.sample_freq;
2624 u64 sec = NSEC_PER_SEC;
2625 u64 divisor, dividend;
2626
2627 int count_fls, nsec_fls, frequency_fls, sec_fls;
2628
2629 count_fls = fls64(count);
2630 nsec_fls = fls64(nsec);
2631 frequency_fls = fls64(frequency);
2632 sec_fls = 30;
2633
2634 /*
2635 * We got @count in @nsec, with a target of sample_freq HZ
2636 * the target period becomes:
2637 *
2638 * @count * 10^9
2639 * period = -------------------
2640 * @nsec * sample_freq
2641 *
2642 */
2643
2644 /*
2645 * Reduce accuracy by one bit such that @a and @b converge
2646 * to a similar magnitude.
2647 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002648#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002649do { \
2650 if (a##_fls > b##_fls) { \
2651 a >>= 1; \
2652 a##_fls--; \
2653 } else { \
2654 b >>= 1; \
2655 b##_fls--; \
2656 } \
2657} while (0)
2658
2659 /*
2660 * Reduce accuracy until either term fits in a u64, then proceed with
2661 * the other, so that finally we can do a u64/u64 division.
2662 */
2663 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2664 REDUCE_FLS(nsec, frequency);
2665 REDUCE_FLS(sec, count);
2666 }
2667
2668 if (count_fls + sec_fls > 64) {
2669 divisor = nsec * frequency;
2670
2671 while (count_fls + sec_fls > 64) {
2672 REDUCE_FLS(count, sec);
2673 divisor >>= 1;
2674 }
2675
2676 dividend = count * sec;
2677 } else {
2678 dividend = count * sec;
2679
2680 while (nsec_fls + frequency_fls > 64) {
2681 REDUCE_FLS(nsec, frequency);
2682 dividend >>= 1;
2683 }
2684
2685 divisor = nsec * frequency;
2686 }
2687
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002688 if (!divisor)
2689 return dividend;
2690
Peter Zijlstraabd50712010-01-26 18:50:16 +01002691 return div64_u64(dividend, divisor);
2692}
2693
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002694static DEFINE_PER_CPU(int, perf_throttled_count);
2695static DEFINE_PER_CPU(u64, perf_throttled_seq);
2696
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002697static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002698{
2699 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002700 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002701 s64 delta;
2702
Peter Zijlstraabd50712010-01-26 18:50:16 +01002703 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002704
2705 delta = (s64)(period - hwc->sample_period);
2706 delta = (delta + 7) / 8; /* low pass filter */
2707
2708 sample_period = hwc->sample_period + delta;
2709
2710 if (!sample_period)
2711 sample_period = 1;
2712
2713 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002714
Peter Zijlstrae7850592010-05-21 14:43:08 +02002715 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002716 if (disable)
2717 event->pmu->stop(event, PERF_EF_UPDATE);
2718
Peter Zijlstrae7850592010-05-21 14:43:08 +02002719 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002720
2721 if (disable)
2722 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002723 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002724}
2725
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002726/*
2727 * combine freq adjustment with unthrottling to avoid two passes over the
2728 * events. At the same time, make sure, having freq events does not change
2729 * the rate of unthrottling as that would introduce bias.
2730 */
2731static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
2732 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002733{
2734 struct perf_event *event;
2735 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002736 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002737 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002738
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002739 /*
2740 * only need to iterate over all events iff:
2741 * - context have events in frequency mode (needs freq adjust)
2742 * - there are events to unthrottle on this cpu
2743 */
2744 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002745 return;
2746
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002747 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002748 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002749
Paul Mackerras03541f82009-10-14 16:58:03 +11002750 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002751 if (event->state != PERF_EVENT_STATE_ACTIVE)
2752 continue;
2753
Stephane Eranian5632ab12011-01-03 18:20:01 +02002754 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002755 continue;
2756
Alexander Shishkin44377272013-12-16 14:17:36 +02002757 perf_pmu_disable(event->pmu);
2758
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002759 hwc = &event->hw;
2760
Jiri Olsaae23bff2013-08-24 16:45:54 +02002761 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002762 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002763 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002764 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002765 }
2766
2767 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02002768 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002769
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002770 /*
2771 * stop the event and update event->count
2772 */
2773 event->pmu->stop(event, PERF_EF_UPDATE);
2774
Peter Zijlstrae7850592010-05-21 14:43:08 +02002775 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002776 delta = now - hwc->freq_count_stamp;
2777 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002778
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002779 /*
2780 * restart the event
2781 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002782 * we have stopped the event so tell that
2783 * to perf_adjust_period() to avoid stopping it
2784 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002785 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01002786 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002787 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002788
2789 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02002790 next:
2791 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002792 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002793
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002794 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002795 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002796}
2797
2798/*
2799 * Round-robin a context's events:
2800 */
2801static void rotate_ctx(struct perf_event_context *ctx)
2802{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01002803 /*
2804 * Rotate the first entry last of non-pinned groups. Rotation might be
2805 * disabled by the inheritance code.
2806 */
2807 if (!ctx->rotate_disable)
2808 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002809}
2810
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002811/*
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002812 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
2813 * because they're strictly cpu affine and rotate_start is called with IRQs
2814 * disabled, while rotate_context is called from IRQ context.
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002815 */
Stephane Eranian9e630202013-04-03 14:21:33 +02002816static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002817{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002818 struct perf_event_context *ctx = NULL;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002819 int rotate = 0, remove = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002820
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002821 if (cpuctx->ctx.nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002822 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002823 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
2824 rotate = 1;
2825 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002826
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002827 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002828 if (ctx && ctx->nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002829 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002830 if (ctx->nr_events != ctx->nr_active)
2831 rotate = 1;
2832 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002833
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002834 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002835 goto done;
2836
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002837 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002838 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002839
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002840 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2841 if (ctx)
2842 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01002843
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002844 rotate_ctx(&cpuctx->ctx);
2845 if (ctx)
2846 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002847
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002848 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002849
2850 perf_pmu_enable(cpuctx->ctx.pmu);
2851 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002852done:
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002853 if (remove)
2854 list_del_init(&cpuctx->rotation_list);
Stephane Eranian9e630202013-04-03 14:21:33 +02002855
2856 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002857}
2858
Frederic Weisbecker026249e2013-04-20 15:58:34 +02002859#ifdef CONFIG_NO_HZ_FULL
2860bool perf_event_can_stop_tick(void)
2861{
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02002862 if (atomic_read(&nr_freq_events) ||
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02002863 __this_cpu_read(perf_throttled_count))
Frederic Weisbecker026249e2013-04-20 15:58:34 +02002864 return false;
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02002865 else
2866 return true;
Frederic Weisbecker026249e2013-04-20 15:58:34 +02002867}
2868#endif
2869
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002870void perf_event_task_tick(void)
2871{
2872 struct list_head *head = &__get_cpu_var(rotation_list);
2873 struct perf_cpu_context *cpuctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002874 struct perf_event_context *ctx;
2875 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002876
2877 WARN_ON(!irqs_disabled());
2878
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002879 __this_cpu_inc(perf_throttled_seq);
2880 throttled = __this_cpu_xchg(perf_throttled_count, 0);
2881
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002882 list_for_each_entry_safe(cpuctx, tmp, head, rotation_list) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002883 ctx = &cpuctx->ctx;
2884 perf_adjust_freq_unthr_context(ctx, throttled);
2885
2886 ctx = cpuctx->task_ctx;
2887 if (ctx)
2888 perf_adjust_freq_unthr_context(ctx, throttled);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002889 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002890}
2891
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002892static int event_enable_on_exec(struct perf_event *event,
2893 struct perf_event_context *ctx)
2894{
2895 if (!event->attr.enable_on_exec)
2896 return 0;
2897
2898 event->attr.enable_on_exec = 0;
2899 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2900 return 0;
2901
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002902 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002903
2904 return 1;
2905}
2906
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002907/*
2908 * Enable all of a task's events that have been marked enable-on-exec.
2909 * This expects task == current.
2910 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002911static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002912{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002913 struct perf_event *event;
2914 unsigned long flags;
2915 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002916 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002917
2918 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002919 if (!ctx || !ctx->nr_events)
2920 goto out;
2921
Stephane Eraniane566b762011-04-06 02:54:54 +02002922 /*
2923 * We must ctxsw out cgroup events to avoid conflict
2924 * when invoking perf_task_event_sched_in() later on
2925 * in this function. Otherwise we end up trying to
2926 * ctxswin cgroup events which are already scheduled
2927 * in.
2928 */
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002929 perf_cgroup_sched_out(current, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002930
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002931 raw_spin_lock(&ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002932 task_ctx_sched_out(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002933
Peter Zijlstrab79387e2011-11-22 11:25:43 +01002934 list_for_each_entry(event, &ctx->event_list, event_entry) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002935 ret = event_enable_on_exec(event, ctx);
2936 if (ret)
2937 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002938 }
2939
2940 /*
2941 * Unclone this context if we enabled any event.
2942 */
2943 if (enabled)
2944 unclone_ctx(ctx);
2945
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002946 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002947
Stephane Eraniane566b762011-04-06 02:54:54 +02002948 /*
2949 * Also calls ctxswin for cgroup events, if any:
2950 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002951 perf_event_context_sched_in(ctx, ctx->task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002952out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002953 local_irq_restore(flags);
2954}
2955
2956/*
2957 * Cross CPU call to read the hardware event
2958 */
2959static void __perf_event_read(void *info)
2960{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002961 struct perf_event *event = info;
2962 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002963 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002964
2965 /*
2966 * If this is a task context, we need to check whether it is
2967 * the current task context of this cpu. If not it has been
2968 * scheduled out before the smp call arrived. In that case
2969 * event->count would have been updated to a recent sample
2970 * when the event was scheduled out.
2971 */
2972 if (ctx->task && cpuctx->task_ctx != ctx)
2973 return;
2974
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002975 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002976 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002977 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002978 update_cgrp_time_from_event(event);
2979 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002980 update_event_times(event);
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002981 if (event->state == PERF_EVENT_STATE_ACTIVE)
2982 event->pmu->read(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002983 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002984}
2985
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002986static inline u64 perf_event_count(struct perf_event *event)
2987{
Peter Zijlstrae7850592010-05-21 14:43:08 +02002988 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002989}
2990
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002991static u64 perf_event_read(struct perf_event *event)
2992{
2993 /*
2994 * If event is enabled and currently active on a CPU, update the
2995 * value in the event structure:
2996 */
2997 if (event->state == PERF_EVENT_STATE_ACTIVE) {
2998 smp_call_function_single(event->oncpu,
2999 __perf_event_read, event, 1);
3000 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003001 struct perf_event_context *ctx = event->ctx;
3002 unsigned long flags;
3003
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003004 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003005 /*
3006 * may read while context is not active
3007 * (e.g., thread is blocked), in that case
3008 * we cannot update context time
3009 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003010 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003011 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003012 update_cgrp_time_from_event(event);
3013 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003014 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003015 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003016 }
3017
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003018 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003019}
3020
3021/*
3022 * Initialize the perf_event context in a task_struct:
3023 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003024static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003025{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003026 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003027 mutex_init(&ctx->mutex);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003028 INIT_LIST_HEAD(&ctx->pinned_groups);
3029 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003030 INIT_LIST_HEAD(&ctx->event_list);
3031 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003032}
3033
Peter Zijlstraeb184472010-09-07 15:55:13 +02003034static struct perf_event_context *
3035alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003036{
3037 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003038
3039 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3040 if (!ctx)
3041 return NULL;
3042
3043 __perf_event_init_context(ctx);
3044 if (task) {
3045 ctx->task = task;
3046 get_task_struct(task);
3047 }
3048 ctx->pmu = pmu;
3049
3050 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003051}
3052
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003053static struct task_struct *
3054find_lively_task_by_vpid(pid_t vpid)
3055{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003056 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003057 int err;
3058
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003059 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003060 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003061 task = current;
3062 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003063 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003064 if (task)
3065 get_task_struct(task);
3066 rcu_read_unlock();
3067
3068 if (!task)
3069 return ERR_PTR(-ESRCH);
3070
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003071 /* Reuse ptrace permission checks for now. */
3072 err = -EACCES;
3073 if (!ptrace_may_access(task, PTRACE_MODE_READ))
3074 goto errout;
3075
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003076 return task;
3077errout:
3078 put_task_struct(task);
3079 return ERR_PTR(err);
3080
3081}
3082
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003083/*
3084 * Returns a matching context with refcount and pincount.
3085 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003086static struct perf_event_context *
Matt Helsley38a81da2010-09-13 13:01:20 -07003087find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003088{
3089 struct perf_event_context *ctx;
3090 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003091 unsigned long flags;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003092 int ctxn, err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003093
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003094 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003095 /* Must be root to operate on a CPU event: */
3096 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3097 return ERR_PTR(-EACCES);
3098
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003099 /*
3100 * We could be clever and allow to attach a event to an
3101 * offline CPU and activate it when the CPU comes up, but
3102 * that's for later.
3103 */
3104 if (!cpu_online(cpu))
3105 return ERR_PTR(-ENODEV);
3106
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003107 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003108 ctx = &cpuctx->ctx;
3109 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003110 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003111
3112 return ctx;
3113 }
3114
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003115 err = -EINVAL;
3116 ctxn = pmu->task_ctx_nr;
3117 if (ctxn < 0)
3118 goto errout;
3119
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003120retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003121 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003122 if (ctx) {
3123 unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003124 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003125 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003126 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003127 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003128 err = -ENOMEM;
3129 if (!ctx)
3130 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003131
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003132 err = 0;
3133 mutex_lock(&task->perf_event_mutex);
3134 /*
3135 * If it has already passed perf_event_exit_task().
3136 * we must see PF_EXITING, it takes this mutex too.
3137 */
3138 if (task->flags & PF_EXITING)
3139 err = -ESRCH;
3140 else if (task->perf_event_ctxp[ctxn])
3141 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003142 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003143 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003144 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003145 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003146 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003147 mutex_unlock(&task->perf_event_mutex);
3148
3149 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003150 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003151
3152 if (err == -EAGAIN)
3153 goto retry;
3154 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003155 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003156 }
3157
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003158 return ctx;
3159
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003160errout:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003161 return ERR_PTR(err);
3162}
3163
Li Zefan6fb29152009-10-15 11:21:42 +08003164static void perf_event_free_filter(struct perf_event *event);
3165
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003166static void free_event_rcu(struct rcu_head *head)
3167{
3168 struct perf_event *event;
3169
3170 event = container_of(head, struct perf_event, rcu_head);
3171 if (event->ns)
3172 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003173 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003174 kfree(event);
3175}
3176
Frederic Weisbecker76369132011-05-19 19:55:04 +02003177static void ring_buffer_put(struct ring_buffer *rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003178static void ring_buffer_detach(struct perf_event *event, struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003179
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003180static void unaccount_event_cpu(struct perf_event *event, int cpu)
3181{
3182 if (event->parent)
3183 return;
3184
3185 if (has_branch_stack(event)) {
3186 if (!(event->attach_state & PERF_ATTACH_TASK))
3187 atomic_dec(&per_cpu(perf_branch_stack_events, cpu));
3188 }
3189 if (is_cgroup_event(event))
3190 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3191}
3192
3193static void unaccount_event(struct perf_event *event)
3194{
3195 if (event->parent)
3196 return;
3197
3198 if (event->attach_state & PERF_ATTACH_TASK)
3199 static_key_slow_dec_deferred(&perf_sched_events);
3200 if (event->attr.mmap || event->attr.mmap_data)
3201 atomic_dec(&nr_mmap_events);
3202 if (event->attr.comm)
3203 atomic_dec(&nr_comm_events);
3204 if (event->attr.task)
3205 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003206 if (event->attr.freq)
3207 atomic_dec(&nr_freq_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003208 if (is_cgroup_event(event))
3209 static_key_slow_dec_deferred(&perf_sched_events);
3210 if (has_branch_stack(event))
3211 static_key_slow_dec_deferred(&perf_sched_events);
3212
3213 unaccount_event_cpu(event, event->cpu);
3214}
3215
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003216static void __free_event(struct perf_event *event)
3217{
3218 if (!event->parent) {
3219 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
3220 put_callchain_buffers();
3221 }
3222
3223 if (event->destroy)
3224 event->destroy(event);
3225
3226 if (event->ctx)
3227 put_ctx(event->ctx);
3228
3229 call_rcu(&event->rcu_head, free_event_rcu);
3230}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003231static void free_event(struct perf_event *event)
3232{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003233 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003234
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003235 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003236
Frederic Weisbecker76369132011-05-19 19:55:04 +02003237 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003238 struct ring_buffer *rb;
3239
3240 /*
3241 * Can happen when we close an event with re-directed output.
3242 *
3243 * Since we have a 0 refcount, perf_mmap_close() will skip
3244 * over us; possibly making our ring_buffer_put() the last.
3245 */
3246 mutex_lock(&event->mmap_mutex);
3247 rb = event->rb;
3248 if (rb) {
3249 rcu_assign_pointer(event->rb, NULL);
3250 ring_buffer_detach(event, rb);
3251 ring_buffer_put(rb); /* could be last */
3252 }
3253 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003254 }
3255
Stephane Eraniane5d13672011-02-14 11:20:01 +02003256 if (is_cgroup_event(event))
3257 perf_detach_cgroup(event);
3258
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003259
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003260 __free_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003261}
3262
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003263int perf_event_release_kernel(struct perf_event *event)
3264{
3265 struct perf_event_context *ctx = event->ctx;
3266
3267 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa0507c82010-05-06 15:42:53 +02003268 /*
3269 * There are two ways this annotation is useful:
3270 *
3271 * 1) there is a lock recursion from perf_event_exit_task
3272 * see the comment there.
3273 *
3274 * 2) there is a lock-inversion with mmap_sem through
3275 * perf_event_read_group(), which takes faults while
3276 * holding ctx->mutex, however this is called after
3277 * the last filedesc died, so there is no possibility
3278 * to trigger the AB-BA case.
3279 */
3280 mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
Peter Zijlstra050735b2010-05-11 11:51:53 +02003281 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02003282 perf_group_detach(event);
Peter Zijlstra050735b2010-05-11 11:51:53 +02003283 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrae03a9a52011-04-09 21:17:47 +02003284 perf_remove_from_context(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003285 mutex_unlock(&ctx->mutex);
3286
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003287 free_event(event);
3288
3289 return 0;
3290}
3291EXPORT_SYMBOL_GPL(perf_event_release_kernel);
3292
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003293/*
3294 * Called when the last reference to the file is gone.
3295 */
Al Viroa6fa9412012-08-20 14:59:25 +01003296static void put_event(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003297{
Peter Zijlstra88821352010-11-09 19:01:43 +01003298 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003299
Al Viroa6fa9412012-08-20 14:59:25 +01003300 if (!atomic_long_dec_and_test(&event->refcount))
3301 return;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003302
Peter Zijlstra88821352010-11-09 19:01:43 +01003303 rcu_read_lock();
3304 owner = ACCESS_ONCE(event->owner);
3305 /*
3306 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
3307 * !owner it means the list deletion is complete and we can indeed
3308 * free this event, otherwise we need to serialize on
3309 * owner->perf_event_mutex.
3310 */
3311 smp_read_barrier_depends();
3312 if (owner) {
3313 /*
3314 * Since delayed_put_task_struct() also drops the last
3315 * task reference we can safely take a new reference
3316 * while holding the rcu_read_lock().
3317 */
3318 get_task_struct(owner);
3319 }
3320 rcu_read_unlock();
3321
3322 if (owner) {
3323 mutex_lock(&owner->perf_event_mutex);
3324 /*
3325 * We have to re-check the event->owner field, if it is cleared
3326 * we raced with perf_event_exit_task(), acquiring the mutex
3327 * ensured they're done, and we can proceed with freeing the
3328 * event.
3329 */
3330 if (event->owner)
3331 list_del_init(&event->owner_entry);
3332 mutex_unlock(&owner->perf_event_mutex);
3333 put_task_struct(owner);
3334 }
3335
Al Viroa6fa9412012-08-20 14:59:25 +01003336 perf_event_release_kernel(event);
3337}
3338
3339static int perf_release(struct inode *inode, struct file *file)
3340{
3341 put_event(file->private_data);
3342 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003343}
3344
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003345u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003346{
3347 struct perf_event *child;
3348 u64 total = 0;
3349
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003350 *enabled = 0;
3351 *running = 0;
3352
Peter Zijlstra6f105812009-11-20 22:19:56 +01003353 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003354 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003355 *enabled += event->total_time_enabled +
3356 atomic64_read(&event->child_total_time_enabled);
3357 *running += event->total_time_running +
3358 atomic64_read(&event->child_total_time_running);
3359
3360 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003361 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003362 *enabled += child->total_time_enabled;
3363 *running += child->total_time_running;
3364 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003365 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003366
3367 return total;
3368}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003369EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003370
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003371static int perf_event_read_group(struct perf_event *event,
3372 u64 read_format, char __user *buf)
3373{
3374 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003375 int n = 0, size = 0, ret = -EFAULT;
3376 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003377 u64 values[5];
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003378 u64 count, enabled, running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003379
Peter Zijlstra6f105812009-11-20 22:19:56 +01003380 mutex_lock(&ctx->mutex);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003381 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003382
3383 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003384 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3385 values[n++] = enabled;
3386 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3387 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003388 values[n++] = count;
3389 if (read_format & PERF_FORMAT_ID)
3390 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003391
3392 size = n * sizeof(u64);
3393
3394 if (copy_to_user(buf, values, size))
Peter Zijlstra6f105812009-11-20 22:19:56 +01003395 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003396
Peter Zijlstra6f105812009-11-20 22:19:56 +01003397 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003398
3399 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01003400 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003401
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003402 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003403 if (read_format & PERF_FORMAT_ID)
3404 values[n++] = primary_event_id(sub);
3405
3406 size = n * sizeof(u64);
3407
Stephane Eranian184d3da2009-11-23 21:40:49 -08003408 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstra6f105812009-11-20 22:19:56 +01003409 ret = -EFAULT;
3410 goto unlock;
3411 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01003412
3413 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003414 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003415unlock:
3416 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003417
Peter Zijlstraabf48682009-11-20 22:19:49 +01003418 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003419}
3420
3421static int perf_event_read_one(struct perf_event *event,
3422 u64 read_format, char __user *buf)
3423{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003424 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003425 u64 values[4];
3426 int n = 0;
3427
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003428 values[n++] = perf_event_read_value(event, &enabled, &running);
3429 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3430 values[n++] = enabled;
3431 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3432 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003433 if (read_format & PERF_FORMAT_ID)
3434 values[n++] = primary_event_id(event);
3435
3436 if (copy_to_user(buf, values, n * sizeof(u64)))
3437 return -EFAULT;
3438
3439 return n * sizeof(u64);
3440}
3441
3442/*
3443 * Read the performance event - simple non blocking version for now
3444 */
3445static ssize_t
3446perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
3447{
3448 u64 read_format = event->attr.read_format;
3449 int ret;
3450
3451 /*
3452 * Return end-of-file for a read on a event that is in
3453 * error state (i.e. because it was pinned but it couldn't be
3454 * scheduled on to the CPU at some point).
3455 */
3456 if (event->state == PERF_EVENT_STATE_ERROR)
3457 return 0;
3458
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003459 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003460 return -ENOSPC;
3461
3462 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003463 if (read_format & PERF_FORMAT_GROUP)
3464 ret = perf_event_read_group(event, read_format, buf);
3465 else
3466 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003467
3468 return ret;
3469}
3470
3471static ssize_t
3472perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3473{
3474 struct perf_event *event = file->private_data;
3475
3476 return perf_read_hw(event, buf, count);
3477}
3478
3479static unsigned int perf_poll(struct file *file, poll_table *wait)
3480{
3481 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003482 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003483 unsigned int events = POLL_HUP;
3484
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003485 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003486 * Pin the event->rb by taking event->mmap_mutex; otherwise
3487 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003488 */
3489 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003490 rb = event->rb;
3491 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02003492 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003493 mutex_unlock(&event->mmap_mutex);
3494
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003495 poll_wait(file, &event->waitq, wait);
3496
3497 return events;
3498}
3499
3500static void perf_event_reset(struct perf_event *event)
3501{
3502 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02003503 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003504 perf_event_update_userpage(event);
3505}
3506
3507/*
3508 * Holding the top-level event's child_mutex means that any
3509 * descendant process that has inherited this event will block
3510 * in sync_child_event if it goes to exit, thus satisfying the
3511 * task existence requirements of perf_event_enable/disable.
3512 */
3513static void perf_event_for_each_child(struct perf_event *event,
3514 void (*func)(struct perf_event *))
3515{
3516 struct perf_event *child;
3517
3518 WARN_ON_ONCE(event->ctx->parent_ctx);
3519 mutex_lock(&event->child_mutex);
3520 func(event);
3521 list_for_each_entry(child, &event->child_list, child_list)
3522 func(child);
3523 mutex_unlock(&event->child_mutex);
3524}
3525
3526static void perf_event_for_each(struct perf_event *event,
3527 void (*func)(struct perf_event *))
3528{
3529 struct perf_event_context *ctx = event->ctx;
3530 struct perf_event *sibling;
3531
3532 WARN_ON_ONCE(ctx->parent_ctx);
3533 mutex_lock(&ctx->mutex);
3534 event = event->group_leader;
3535
3536 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003537 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10003538 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003539 mutex_unlock(&ctx->mutex);
3540}
3541
3542static int perf_event_period(struct perf_event *event, u64 __user *arg)
3543{
3544 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003545 int ret = 0;
3546 u64 value;
3547
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01003548 if (!is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003549 return -EINVAL;
3550
John Blackwoodad0cf342010-09-28 18:03:11 -04003551 if (copy_from_user(&value, arg, sizeof(value)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003552 return -EFAULT;
3553
3554 if (!value)
3555 return -EINVAL;
3556
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003557 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003558 if (event->attr.freq) {
3559 if (value > sysctl_perf_event_sample_rate) {
3560 ret = -EINVAL;
3561 goto unlock;
3562 }
3563
3564 event->attr.sample_freq = value;
3565 } else {
3566 event->attr.sample_period = value;
3567 event->hw.sample_period = value;
3568 }
3569unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003570 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003571
3572 return ret;
3573}
3574
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003575static const struct file_operations perf_fops;
3576
Al Viro2903ff02012-08-28 12:52:22 -04003577static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003578{
Al Viro2903ff02012-08-28 12:52:22 -04003579 struct fd f = fdget(fd);
3580 if (!f.file)
3581 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003582
Al Viro2903ff02012-08-28 12:52:22 -04003583 if (f.file->f_op != &perf_fops) {
3584 fdput(f);
3585 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003586 }
Al Viro2903ff02012-08-28 12:52:22 -04003587 *p = f;
3588 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003589}
3590
3591static int perf_event_set_output(struct perf_event *event,
3592 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08003593static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003594
3595static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3596{
3597 struct perf_event *event = file->private_data;
3598 void (*func)(struct perf_event *);
3599 u32 flags = arg;
3600
3601 switch (cmd) {
3602 case PERF_EVENT_IOC_ENABLE:
3603 func = perf_event_enable;
3604 break;
3605 case PERF_EVENT_IOC_DISABLE:
3606 func = perf_event_disable;
3607 break;
3608 case PERF_EVENT_IOC_RESET:
3609 func = perf_event_reset;
3610 break;
3611
3612 case PERF_EVENT_IOC_REFRESH:
3613 return perf_event_refresh(event, arg);
3614
3615 case PERF_EVENT_IOC_PERIOD:
3616 return perf_event_period(event, (u64 __user *)arg);
3617
Jiri Olsacf4957f2012-10-24 13:37:58 +02003618 case PERF_EVENT_IOC_ID:
3619 {
3620 u64 id = primary_event_id(event);
3621
3622 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
3623 return -EFAULT;
3624 return 0;
3625 }
3626
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003627 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003628 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003629 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003630 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04003631 struct perf_event *output_event;
3632 struct fd output;
3633 ret = perf_fget_light(arg, &output);
3634 if (ret)
3635 return ret;
3636 output_event = output.file->private_data;
3637 ret = perf_event_set_output(event, output_event);
3638 fdput(output);
3639 } else {
3640 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003641 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003642 return ret;
3643 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003644
Li Zefan6fb29152009-10-15 11:21:42 +08003645 case PERF_EVENT_IOC_SET_FILTER:
3646 return perf_event_set_filter(event, (void __user *)arg);
3647
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003648 default:
3649 return -ENOTTY;
3650 }
3651
3652 if (flags & PERF_IOC_FLAG_GROUP)
3653 perf_event_for_each(event, func);
3654 else
3655 perf_event_for_each_child(event, func);
3656
3657 return 0;
3658}
3659
3660int perf_event_task_enable(void)
3661{
3662 struct perf_event *event;
3663
3664 mutex_lock(&current->perf_event_mutex);
3665 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3666 perf_event_for_each_child(event, perf_event_enable);
3667 mutex_unlock(&current->perf_event_mutex);
3668
3669 return 0;
3670}
3671
3672int perf_event_task_disable(void)
3673{
3674 struct perf_event *event;
3675
3676 mutex_lock(&current->perf_event_mutex);
3677 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3678 perf_event_for_each_child(event, perf_event_disable);
3679 mutex_unlock(&current->perf_event_mutex);
3680
3681 return 0;
3682}
3683
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003684static int perf_event_index(struct perf_event *event)
3685{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003686 if (event->hw.state & PERF_HES_STOPPED)
3687 return 0;
3688
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003689 if (event->state != PERF_EVENT_STATE_ACTIVE)
3690 return 0;
3691
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01003692 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003693}
3694
Eric B Munsonc4794292011-06-23 16:34:38 -04003695static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003696 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04003697 u64 *enabled,
3698 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04003699{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003700 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04003701
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003702 *now = perf_clock();
3703 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04003704 *enabled = ctx_time - event->tstamp_enabled;
3705 *running = ctx_time - event->tstamp_running;
3706}
3707
Peter Zijlstrafa731582013-09-19 10:16:42 +02003708static void perf_event_init_userpage(struct perf_event *event)
3709{
3710 struct perf_event_mmap_page *userpg;
3711 struct ring_buffer *rb;
3712
3713 rcu_read_lock();
3714 rb = rcu_dereference(event->rb);
3715 if (!rb)
3716 goto unlock;
3717
3718 userpg = rb->user_page;
3719
3720 /* Allow new userspace to detect that bit 0 is deprecated */
3721 userpg->cap_bit0_is_deprecated = 1;
3722 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
3723
3724unlock:
3725 rcu_read_unlock();
3726}
3727
Peter Zijlstrac7206202012-03-22 17:26:36 +01003728void __weak arch_perf_update_userpage(struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003729{
3730}
3731
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003732/*
3733 * Callers need to ensure there can be no nesting of this function, otherwise
3734 * the seqlock logic goes bad. We can not serialize this because the arch
3735 * code calls this from NMI context.
3736 */
3737void perf_event_update_userpage(struct perf_event *event)
3738{
3739 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003740 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003741 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003742
3743 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02003744 rb = rcu_dereference(event->rb);
3745 if (!rb)
3746 goto unlock;
3747
Eric B Munson0d641202011-06-24 12:26:26 -04003748 /*
3749 * compute total_time_enabled, total_time_running
3750 * based on snapshot values taken when the event
3751 * was last scheduled in.
3752 *
3753 * we cannot simply called update_context_time()
3754 * because of locking issue as we can be called in
3755 * NMI context
3756 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003757 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003758
Frederic Weisbecker76369132011-05-19 19:55:04 +02003759 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003760 /*
3761 * Disable preemption so as to not let the corresponding user-space
3762 * spin too long if we get preempted.
3763 */
3764 preempt_disable();
3765 ++userpg->lock;
3766 barrier();
3767 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003768 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01003769 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02003770 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003771
Eric B Munson0d641202011-06-24 12:26:26 -04003772 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003773 atomic64_read(&event->child_total_time_enabled);
3774
Eric B Munson0d641202011-06-24 12:26:26 -04003775 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003776 atomic64_read(&event->child_total_time_running);
3777
Peter Zijlstrac7206202012-03-22 17:26:36 +01003778 arch_perf_update_userpage(userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003779
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003780 barrier();
3781 ++userpg->lock;
3782 preempt_enable();
3783unlock:
3784 rcu_read_unlock();
3785}
3786
Peter Zijlstra906010b2009-09-21 16:08:49 +02003787static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
3788{
3789 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003790 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003791 int ret = VM_FAULT_SIGBUS;
3792
3793 if (vmf->flags & FAULT_FLAG_MKWRITE) {
3794 if (vmf->pgoff == 0)
3795 ret = 0;
3796 return ret;
3797 }
3798
3799 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003800 rb = rcu_dereference(event->rb);
3801 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003802 goto unlock;
3803
3804 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
3805 goto unlock;
3806
Frederic Weisbecker76369132011-05-19 19:55:04 +02003807 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003808 if (!vmf->page)
3809 goto unlock;
3810
3811 get_page(vmf->page);
3812 vmf->page->mapping = vma->vm_file->f_mapping;
3813 vmf->page->index = vmf->pgoff;
3814
3815 ret = 0;
3816unlock:
3817 rcu_read_unlock();
3818
3819 return ret;
3820}
3821
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003822static void ring_buffer_attach(struct perf_event *event,
3823 struct ring_buffer *rb)
3824{
3825 unsigned long flags;
3826
3827 if (!list_empty(&event->rb_entry))
3828 return;
3829
3830 spin_lock_irqsave(&rb->event_lock, flags);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003831 if (list_empty(&event->rb_entry))
3832 list_add(&event->rb_entry, &rb->event_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003833 spin_unlock_irqrestore(&rb->event_lock, flags);
3834}
3835
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003836static void ring_buffer_detach(struct perf_event *event, struct ring_buffer *rb)
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003837{
3838 unsigned long flags;
3839
3840 if (list_empty(&event->rb_entry))
3841 return;
3842
3843 spin_lock_irqsave(&rb->event_lock, flags);
3844 list_del_init(&event->rb_entry);
3845 wake_up_all(&event->waitq);
3846 spin_unlock_irqrestore(&rb->event_lock, flags);
3847}
3848
3849static void ring_buffer_wakeup(struct perf_event *event)
3850{
3851 struct ring_buffer *rb;
3852
3853 rcu_read_lock();
3854 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003855 if (rb) {
3856 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
3857 wake_up_all(&event->waitq);
3858 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003859 rcu_read_unlock();
3860}
3861
Frederic Weisbecker76369132011-05-19 19:55:04 +02003862static void rb_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003863{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003864 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003865
Frederic Weisbecker76369132011-05-19 19:55:04 +02003866 rb = container_of(rcu_head, struct ring_buffer, rcu_head);
3867 rb_free(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003868}
3869
Frederic Weisbecker76369132011-05-19 19:55:04 +02003870static struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003871{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003872 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003873
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003874 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003875 rb = rcu_dereference(event->rb);
3876 if (rb) {
3877 if (!atomic_inc_not_zero(&rb->refcount))
3878 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003879 }
3880 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003881
Frederic Weisbecker76369132011-05-19 19:55:04 +02003882 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003883}
3884
Frederic Weisbecker76369132011-05-19 19:55:04 +02003885static void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003886{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003887 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003888 return;
3889
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003890 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003891
Frederic Weisbecker76369132011-05-19 19:55:04 +02003892 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003893}
3894
3895static void perf_mmap_open(struct vm_area_struct *vma)
3896{
3897 struct perf_event *event = vma->vm_file->private_data;
3898
3899 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003900 atomic_inc(&event->rb->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003901}
3902
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003903/*
3904 * A buffer can be mmap()ed multiple times; either directly through the same
3905 * event, or through other events by use of perf_event_set_output().
3906 *
3907 * In order to undo the VM accounting done by perf_mmap() we need to destroy
3908 * the buffer here, where we still have a VM context. This means we need
3909 * to detach all events redirecting to us.
3910 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003911static void perf_mmap_close(struct vm_area_struct *vma)
3912{
3913 struct perf_event *event = vma->vm_file->private_data;
3914
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003915 struct ring_buffer *rb = event->rb;
3916 struct user_struct *mmap_user = rb->mmap_user;
3917 int mmap_locked = rb->mmap_locked;
3918 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003919
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003920 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003921
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003922 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
3923 return;
3924
3925 /* Detach current event from the buffer. */
3926 rcu_assign_pointer(event->rb, NULL);
3927 ring_buffer_detach(event, rb);
3928 mutex_unlock(&event->mmap_mutex);
3929
3930 /* If there's still other mmap()s of this buffer, we're done. */
3931 if (atomic_read(&rb->mmap_count)) {
3932 ring_buffer_put(rb); /* can't be last */
3933 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003934 }
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003935
3936 /*
3937 * No other mmap()s, detach from all other events that might redirect
3938 * into the now unreachable buffer. Somewhat complicated by the
3939 * fact that rb::event_lock otherwise nests inside mmap_mutex.
3940 */
3941again:
3942 rcu_read_lock();
3943 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
3944 if (!atomic_long_inc_not_zero(&event->refcount)) {
3945 /*
3946 * This event is en-route to free_event() which will
3947 * detach it and remove it from the list.
3948 */
3949 continue;
3950 }
3951 rcu_read_unlock();
3952
3953 mutex_lock(&event->mmap_mutex);
3954 /*
3955 * Check we didn't race with perf_event_set_output() which can
3956 * swizzle the rb from under us while we were waiting to
3957 * acquire mmap_mutex.
3958 *
3959 * If we find a different rb; ignore this event, a next
3960 * iteration will no longer find it on the list. We have to
3961 * still restart the iteration to make sure we're not now
3962 * iterating the wrong list.
3963 */
3964 if (event->rb == rb) {
3965 rcu_assign_pointer(event->rb, NULL);
3966 ring_buffer_detach(event, rb);
3967 ring_buffer_put(rb); /* can't be last, we still have one */
3968 }
3969 mutex_unlock(&event->mmap_mutex);
3970 put_event(event);
3971
3972 /*
3973 * Restart the iteration; either we're on the wrong list or
3974 * destroyed its integrity by doing a deletion.
3975 */
3976 goto again;
3977 }
3978 rcu_read_unlock();
3979
3980 /*
3981 * It could be there's still a few 0-ref events on the list; they'll
3982 * get cleaned up by free_event() -- they'll also still have their
3983 * ref on the rb and will free it whenever they are done with it.
3984 *
3985 * Aside from that, this buffer is 'fully' detached and unmapped,
3986 * undo the VM accounting.
3987 */
3988
3989 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
3990 vma->vm_mm->pinned_vm -= mmap_locked;
3991 free_uid(mmap_user);
3992
3993 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003994}
3995
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003996static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003997 .open = perf_mmap_open,
3998 .close = perf_mmap_close,
3999 .fault = perf_mmap_fault,
4000 .page_mkwrite = perf_mmap_fault,
4001};
4002
4003static int perf_mmap(struct file *file, struct vm_area_struct *vma)
4004{
4005 struct perf_event *event = file->private_data;
4006 unsigned long user_locked, user_lock_limit;
4007 struct user_struct *user = current_user();
4008 unsigned long locked, lock_limit;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004009 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004010 unsigned long vma_size;
4011 unsigned long nr_pages;
4012 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004013 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004014
Peter Zijlstrac7920612010-05-18 10:33:24 +02004015 /*
4016 * Don't allow mmap() of inherited per-task counters. This would
4017 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02004018 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02004019 */
4020 if (event->cpu == -1 && event->attr.inherit)
4021 return -EINVAL;
4022
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004023 if (!(vma->vm_flags & VM_SHARED))
4024 return -EINVAL;
4025
4026 vma_size = vma->vm_end - vma->vm_start;
4027 nr_pages = (vma_size / PAGE_SIZE) - 1;
4028
4029 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02004030 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004031 * can do bitmasks instead of modulo.
4032 */
4033 if (nr_pages != 0 && !is_power_of_2(nr_pages))
4034 return -EINVAL;
4035
4036 if (vma_size != PAGE_SIZE * (1 + nr_pages))
4037 return -EINVAL;
4038
4039 if (vma->vm_pgoff != 0)
4040 return -EINVAL;
4041
4042 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004043again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004044 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004045 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004046 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004047 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004048 goto unlock;
4049 }
4050
4051 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
4052 /*
4053 * Raced against perf_mmap_close() through
4054 * perf_event_set_output(). Try again, hope for better
4055 * luck.
4056 */
4057 mutex_unlock(&event->mmap_mutex);
4058 goto again;
4059 }
4060
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004061 goto unlock;
4062 }
4063
4064 user_extra = nr_pages + 1;
4065 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
4066
4067 /*
4068 * Increase the limit linearly with more CPUs:
4069 */
4070 user_lock_limit *= num_online_cpus();
4071
4072 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
4073
4074 extra = 0;
4075 if (user_locked > user_lock_limit)
4076 extra = user_locked - user_lock_limit;
4077
Jiri Slaby78d7d402010-03-05 13:42:54 -08004078 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004079 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07004080 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004081
4082 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
4083 !capable(CAP_IPC_LOCK)) {
4084 ret = -EPERM;
4085 goto unlock;
4086 }
4087
Frederic Weisbecker76369132011-05-19 19:55:04 +02004088 WARN_ON(event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004089
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004090 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004091 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004092
Vince Weaver4ec83632011-06-01 15:15:36 -04004093 rb = rb_alloc(nr_pages,
4094 event->attr.watermark ? event->attr.wakeup_watermark : 0,
4095 event->cpu, flags);
4096
Frederic Weisbecker76369132011-05-19 19:55:04 +02004097 if (!rb) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004098 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004099 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004100 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004101
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004102 atomic_set(&rb->mmap_count, 1);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004103 rb->mmap_locked = extra;
4104 rb->mmap_user = get_current_user();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004105
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004106 atomic_long_add(user_extra, &user->locked_vm);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004107 vma->vm_mm->pinned_vm += extra;
4108
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004109 ring_buffer_attach(event, rb);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004110 rcu_assign_pointer(event->rb, rb);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004111
Peter Zijlstrafa731582013-09-19 10:16:42 +02004112 perf_event_init_userpage(event);
Peter Zijlstra9a0f05c2011-11-21 15:13:29 +01004113 perf_event_update_userpage(event);
4114
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004115unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004116 if (!ret)
4117 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004118 mutex_unlock(&event->mmap_mutex);
4119
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004120 /*
4121 * Since pinned accounting is per vm we cannot allow fork() to copy our
4122 * vma.
4123 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004124 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004125 vma->vm_ops = &perf_mmap_vmops;
4126
4127 return ret;
4128}
4129
4130static int perf_fasync(int fd, struct file *filp, int on)
4131{
Al Viro496ad9a2013-01-23 17:07:38 -05004132 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004133 struct perf_event *event = filp->private_data;
4134 int retval;
4135
4136 mutex_lock(&inode->i_mutex);
4137 retval = fasync_helper(fd, filp, on, &event->fasync);
4138 mutex_unlock(&inode->i_mutex);
4139
4140 if (retval < 0)
4141 return retval;
4142
4143 return 0;
4144}
4145
4146static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01004147 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004148 .release = perf_release,
4149 .read = perf_read,
4150 .poll = perf_poll,
4151 .unlocked_ioctl = perf_ioctl,
4152 .compat_ioctl = perf_ioctl,
4153 .mmap = perf_mmap,
4154 .fasync = perf_fasync,
4155};
4156
4157/*
4158 * Perf event wakeup
4159 *
4160 * If there's data, ensure we set the poll() state and publish everything
4161 * to user-space before waking everybody up.
4162 */
4163
4164void perf_event_wakeup(struct perf_event *event)
4165{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004166 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004167
4168 if (event->pending_kill) {
4169 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
4170 event->pending_kill = 0;
4171 }
4172}
4173
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004174static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004175{
4176 struct perf_event *event = container_of(entry,
4177 struct perf_event, pending);
4178
4179 if (event->pending_disable) {
4180 event->pending_disable = 0;
4181 __perf_event_disable(event);
4182 }
4183
4184 if (event->pending_wakeup) {
4185 event->pending_wakeup = 0;
4186 perf_event_wakeup(event);
4187 }
4188}
4189
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004190/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004191 * We assume there is only KVM supporting the callbacks.
4192 * Later on, we might change it to a list if there is
4193 * another virtualization implementation supporting the callbacks.
4194 */
4195struct perf_guest_info_callbacks *perf_guest_cbs;
4196
4197int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4198{
4199 perf_guest_cbs = cbs;
4200 return 0;
4201}
4202EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
4203
4204int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4205{
4206 perf_guest_cbs = NULL;
4207 return 0;
4208}
4209EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
4210
Jiri Olsa40189942012-08-07 15:20:37 +02004211static void
4212perf_output_sample_regs(struct perf_output_handle *handle,
4213 struct pt_regs *regs, u64 mask)
4214{
4215 int bit;
4216
4217 for_each_set_bit(bit, (const unsigned long *) &mask,
4218 sizeof(mask) * BITS_PER_BYTE) {
4219 u64 val;
4220
4221 val = perf_reg_value(regs, bit);
4222 perf_output_put(handle, val);
4223 }
4224}
4225
4226static void perf_sample_regs_user(struct perf_regs_user *regs_user,
4227 struct pt_regs *regs)
4228{
4229 if (!user_mode(regs)) {
4230 if (current->mm)
4231 regs = task_pt_regs(current);
4232 else
4233 regs = NULL;
4234 }
4235
4236 if (regs) {
4237 regs_user->regs = regs;
4238 regs_user->abi = perf_reg_abi(current);
4239 }
4240}
4241
Jiri Olsac5ebced2012-08-07 15:20:40 +02004242/*
4243 * Get remaining task size from user stack pointer.
4244 *
4245 * It'd be better to take stack vma map and limit this more
4246 * precisly, but there's no way to get it safely under interrupt,
4247 * so using TASK_SIZE as limit.
4248 */
4249static u64 perf_ustack_task_size(struct pt_regs *regs)
4250{
4251 unsigned long addr = perf_user_stack_pointer(regs);
4252
4253 if (!addr || addr >= TASK_SIZE)
4254 return 0;
4255
4256 return TASK_SIZE - addr;
4257}
4258
4259static u16
4260perf_sample_ustack_size(u16 stack_size, u16 header_size,
4261 struct pt_regs *regs)
4262{
4263 u64 task_size;
4264
4265 /* No regs, no stack pointer, no dump. */
4266 if (!regs)
4267 return 0;
4268
4269 /*
4270 * Check if we fit in with the requested stack size into the:
4271 * - TASK_SIZE
4272 * If we don't, we limit the size to the TASK_SIZE.
4273 *
4274 * - remaining sample size
4275 * If we don't, we customize the stack size to
4276 * fit in to the remaining sample size.
4277 */
4278
4279 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
4280 stack_size = min(stack_size, (u16) task_size);
4281
4282 /* Current header size plus static size and dynamic size. */
4283 header_size += 2 * sizeof(u64);
4284
4285 /* Do we fit in with the current stack dump size? */
4286 if ((u16) (header_size + stack_size) < header_size) {
4287 /*
4288 * If we overflow the maximum size for the sample,
4289 * we customize the stack dump size to fit in.
4290 */
4291 stack_size = USHRT_MAX - header_size - sizeof(u64);
4292 stack_size = round_up(stack_size, sizeof(u64));
4293 }
4294
4295 return stack_size;
4296}
4297
4298static void
4299perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
4300 struct pt_regs *regs)
4301{
4302 /* Case of a kernel thread, nothing to dump */
4303 if (!regs) {
4304 u64 size = 0;
4305 perf_output_put(handle, size);
4306 } else {
4307 unsigned long sp;
4308 unsigned int rem;
4309 u64 dyn_size;
4310
4311 /*
4312 * We dump:
4313 * static size
4314 * - the size requested by user or the best one we can fit
4315 * in to the sample max size
4316 * data
4317 * - user stack dump data
4318 * dynamic size
4319 * - the actual dumped size
4320 */
4321
4322 /* Static size. */
4323 perf_output_put(handle, dump_size);
4324
4325 /* Data. */
4326 sp = perf_user_stack_pointer(regs);
4327 rem = __output_copy_user(handle, (void *) sp, dump_size);
4328 dyn_size = dump_size - rem;
4329
4330 perf_output_skip(handle, rem);
4331
4332 /* Dynamic size. */
4333 perf_output_put(handle, dyn_size);
4334 }
4335}
4336
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004337static void __perf_event_header__init_id(struct perf_event_header *header,
4338 struct perf_sample_data *data,
4339 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004340{
4341 u64 sample_type = event->attr.sample_type;
4342
4343 data->type = sample_type;
4344 header->size += event->id_header_size;
4345
4346 if (sample_type & PERF_SAMPLE_TID) {
4347 /* namespace issues */
4348 data->tid_entry.pid = perf_event_pid(event, current);
4349 data->tid_entry.tid = perf_event_tid(event, current);
4350 }
4351
4352 if (sample_type & PERF_SAMPLE_TIME)
4353 data->time = perf_clock();
4354
Adrian Hunterff3d5272013-08-27 11:23:07 +03004355 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004356 data->id = primary_event_id(event);
4357
4358 if (sample_type & PERF_SAMPLE_STREAM_ID)
4359 data->stream_id = event->id;
4360
4361 if (sample_type & PERF_SAMPLE_CPU) {
4362 data->cpu_entry.cpu = raw_smp_processor_id();
4363 data->cpu_entry.reserved = 0;
4364 }
4365}
4366
Frederic Weisbecker76369132011-05-19 19:55:04 +02004367void perf_event_header__init_id(struct perf_event_header *header,
4368 struct perf_sample_data *data,
4369 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004370{
4371 if (event->attr.sample_id_all)
4372 __perf_event_header__init_id(header, data, event);
4373}
4374
4375static void __perf_event__output_id_sample(struct perf_output_handle *handle,
4376 struct perf_sample_data *data)
4377{
4378 u64 sample_type = data->type;
4379
4380 if (sample_type & PERF_SAMPLE_TID)
4381 perf_output_put(handle, data->tid_entry);
4382
4383 if (sample_type & PERF_SAMPLE_TIME)
4384 perf_output_put(handle, data->time);
4385
4386 if (sample_type & PERF_SAMPLE_ID)
4387 perf_output_put(handle, data->id);
4388
4389 if (sample_type & PERF_SAMPLE_STREAM_ID)
4390 perf_output_put(handle, data->stream_id);
4391
4392 if (sample_type & PERF_SAMPLE_CPU)
4393 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03004394
4395 if (sample_type & PERF_SAMPLE_IDENTIFIER)
4396 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004397}
4398
Frederic Weisbecker76369132011-05-19 19:55:04 +02004399void perf_event__output_id_sample(struct perf_event *event,
4400 struct perf_output_handle *handle,
4401 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004402{
4403 if (event->attr.sample_id_all)
4404 __perf_event__output_id_sample(handle, sample);
4405}
4406
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004407static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004408 struct perf_event *event,
4409 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004410{
4411 u64 read_format = event->attr.read_format;
4412 u64 values[4];
4413 int n = 0;
4414
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004415 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004416 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004417 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004418 atomic64_read(&event->child_total_time_enabled);
4419 }
4420 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004421 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004422 atomic64_read(&event->child_total_time_running);
4423 }
4424 if (read_format & PERF_FORMAT_ID)
4425 values[n++] = primary_event_id(event);
4426
Frederic Weisbecker76369132011-05-19 19:55:04 +02004427 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004428}
4429
4430/*
4431 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
4432 */
4433static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004434 struct perf_event *event,
4435 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004436{
4437 struct perf_event *leader = event->group_leader, *sub;
4438 u64 read_format = event->attr.read_format;
4439 u64 values[5];
4440 int n = 0;
4441
4442 values[n++] = 1 + leader->nr_siblings;
4443
4444 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02004445 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004446
4447 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02004448 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004449
4450 if (leader != event)
4451 leader->pmu->read(leader);
4452
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004453 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004454 if (read_format & PERF_FORMAT_ID)
4455 values[n++] = primary_event_id(leader);
4456
Frederic Weisbecker76369132011-05-19 19:55:04 +02004457 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004458
4459 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
4460 n = 0;
4461
Jiri Olsa6f5ab002012-10-15 20:13:45 +02004462 if ((sub != event) &&
4463 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004464 sub->pmu->read(sub);
4465
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004466 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004467 if (read_format & PERF_FORMAT_ID)
4468 values[n++] = primary_event_id(sub);
4469
Frederic Weisbecker76369132011-05-19 19:55:04 +02004470 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004471 }
4472}
4473
Stephane Eranianeed01522010-10-26 16:08:01 +02004474#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
4475 PERF_FORMAT_TOTAL_TIME_RUNNING)
4476
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004477static void perf_output_read(struct perf_output_handle *handle,
4478 struct perf_event *event)
4479{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004480 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02004481 u64 read_format = event->attr.read_format;
4482
4483 /*
4484 * compute total_time_enabled, total_time_running
4485 * based on snapshot values taken when the event
4486 * was last scheduled in.
4487 *
4488 * we cannot simply called update_context_time()
4489 * because of locking issue as we are called in
4490 * NMI context
4491 */
Eric B Munsonc4794292011-06-23 16:34:38 -04004492 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004493 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02004494
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004495 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02004496 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004497 else
Stephane Eranianeed01522010-10-26 16:08:01 +02004498 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004499}
4500
4501void perf_output_sample(struct perf_output_handle *handle,
4502 struct perf_event_header *header,
4503 struct perf_sample_data *data,
4504 struct perf_event *event)
4505{
4506 u64 sample_type = data->type;
4507
4508 perf_output_put(handle, *header);
4509
Adrian Hunterff3d5272013-08-27 11:23:07 +03004510 if (sample_type & PERF_SAMPLE_IDENTIFIER)
4511 perf_output_put(handle, data->id);
4512
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004513 if (sample_type & PERF_SAMPLE_IP)
4514 perf_output_put(handle, data->ip);
4515
4516 if (sample_type & PERF_SAMPLE_TID)
4517 perf_output_put(handle, data->tid_entry);
4518
4519 if (sample_type & PERF_SAMPLE_TIME)
4520 perf_output_put(handle, data->time);
4521
4522 if (sample_type & PERF_SAMPLE_ADDR)
4523 perf_output_put(handle, data->addr);
4524
4525 if (sample_type & PERF_SAMPLE_ID)
4526 perf_output_put(handle, data->id);
4527
4528 if (sample_type & PERF_SAMPLE_STREAM_ID)
4529 perf_output_put(handle, data->stream_id);
4530
4531 if (sample_type & PERF_SAMPLE_CPU)
4532 perf_output_put(handle, data->cpu_entry);
4533
4534 if (sample_type & PERF_SAMPLE_PERIOD)
4535 perf_output_put(handle, data->period);
4536
4537 if (sample_type & PERF_SAMPLE_READ)
4538 perf_output_read(handle, event);
4539
4540 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4541 if (data->callchain) {
4542 int size = 1;
4543
4544 if (data->callchain)
4545 size += data->callchain->nr;
4546
4547 size *= sizeof(u64);
4548
Frederic Weisbecker76369132011-05-19 19:55:04 +02004549 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004550 } else {
4551 u64 nr = 0;
4552 perf_output_put(handle, nr);
4553 }
4554 }
4555
4556 if (sample_type & PERF_SAMPLE_RAW) {
4557 if (data->raw) {
4558 perf_output_put(handle, data->raw->size);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004559 __output_copy(handle, data->raw->data,
4560 data->raw->size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004561 } else {
4562 struct {
4563 u32 size;
4564 u32 data;
4565 } raw = {
4566 .size = sizeof(u32),
4567 .data = 0,
4568 };
4569 perf_output_put(handle, raw);
4570 }
4571 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004572
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004573 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4574 if (data->br_stack) {
4575 size_t size;
4576
4577 size = data->br_stack->nr
4578 * sizeof(struct perf_branch_entry);
4579
4580 perf_output_put(handle, data->br_stack->nr);
4581 perf_output_copy(handle, data->br_stack->entries, size);
4582 } else {
4583 /*
4584 * we always store at least the value of nr
4585 */
4586 u64 nr = 0;
4587 perf_output_put(handle, nr);
4588 }
4589 }
Jiri Olsa40189942012-08-07 15:20:37 +02004590
4591 if (sample_type & PERF_SAMPLE_REGS_USER) {
4592 u64 abi = data->regs_user.abi;
4593
4594 /*
4595 * If there are no regs to dump, notice it through
4596 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
4597 */
4598 perf_output_put(handle, abi);
4599
4600 if (abi) {
4601 u64 mask = event->attr.sample_regs_user;
4602 perf_output_sample_regs(handle,
4603 data->regs_user.regs,
4604 mask);
4605 }
4606 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004607
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02004608 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02004609 perf_output_sample_ustack(handle,
4610 data->stack_user_size,
4611 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02004612 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01004613
4614 if (sample_type & PERF_SAMPLE_WEIGHT)
4615 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01004616
4617 if (sample_type & PERF_SAMPLE_DATA_SRC)
4618 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02004619
Andi Kleenfdfbbd02013-09-20 07:40:39 -07004620 if (sample_type & PERF_SAMPLE_TRANSACTION)
4621 perf_output_put(handle, data->txn);
4622
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02004623 if (!event->attr.watermark) {
4624 int wakeup_events = event->attr.wakeup_events;
4625
4626 if (wakeup_events) {
4627 struct ring_buffer *rb = handle->rb;
4628 int events = local_inc_return(&rb->events);
4629
4630 if (events >= wakeup_events) {
4631 local_sub(wakeup_events, &rb->events);
4632 local_inc(&rb->wakeup);
4633 }
4634 }
4635 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004636}
4637
4638void perf_prepare_sample(struct perf_event_header *header,
4639 struct perf_sample_data *data,
4640 struct perf_event *event,
4641 struct pt_regs *regs)
4642{
4643 u64 sample_type = event->attr.sample_type;
4644
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004645 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004646 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004647
4648 header->misc = 0;
4649 header->misc |= perf_misc_flags(regs);
4650
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004651 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004652
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004653 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004654 data->ip = perf_instruction_pointer(regs);
4655
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004656 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4657 int size = 1;
4658
Andrew Vagine6dab5f2012-07-11 18:14:58 +04004659 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004660
4661 if (data->callchain)
4662 size += data->callchain->nr;
4663
4664 header->size += size * sizeof(u64);
4665 }
4666
4667 if (sample_type & PERF_SAMPLE_RAW) {
4668 int size = sizeof(u32);
4669
4670 if (data->raw)
4671 size += data->raw->size;
4672 else
4673 size += sizeof(u32);
4674
4675 WARN_ON_ONCE(size & (sizeof(u64)-1));
4676 header->size += size;
4677 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004678
4679 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4680 int size = sizeof(u64); /* nr */
4681 if (data->br_stack) {
4682 size += data->br_stack->nr
4683 * sizeof(struct perf_branch_entry);
4684 }
4685 header->size += size;
4686 }
Jiri Olsa40189942012-08-07 15:20:37 +02004687
4688 if (sample_type & PERF_SAMPLE_REGS_USER) {
4689 /* regs dump ABI info */
4690 int size = sizeof(u64);
4691
4692 perf_sample_regs_user(&data->regs_user, regs);
4693
4694 if (data->regs_user.regs) {
4695 u64 mask = event->attr.sample_regs_user;
4696 size += hweight64(mask) * sizeof(u64);
4697 }
4698
4699 header->size += size;
4700 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004701
4702 if (sample_type & PERF_SAMPLE_STACK_USER) {
4703 /*
4704 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
4705 * processed as the last one or have additional check added
4706 * in case new sample type is added, because we could eat
4707 * up the rest of the sample size.
4708 */
4709 struct perf_regs_user *uregs = &data->regs_user;
4710 u16 stack_size = event->attr.sample_stack_user;
4711 u16 size = sizeof(u64);
4712
4713 if (!uregs->abi)
4714 perf_sample_regs_user(uregs, regs);
4715
4716 stack_size = perf_sample_ustack_size(stack_size, header->size,
4717 uregs->regs);
4718
4719 /*
4720 * If there is something to dump, add space for the dump
4721 * itself and for the field that tells the dynamic size,
4722 * which is how many have been actually dumped.
4723 */
4724 if (stack_size)
4725 size += sizeof(u64) + stack_size;
4726
4727 data->stack_user_size = stack_size;
4728 header->size += size;
4729 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004730}
4731
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004732static void perf_event_output(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004733 struct perf_sample_data *data,
4734 struct pt_regs *regs)
4735{
4736 struct perf_output_handle handle;
4737 struct perf_event_header header;
4738
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004739 /* protect the callchain buffers */
4740 rcu_read_lock();
4741
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004742 perf_prepare_sample(&header, data, event, regs);
4743
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004744 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004745 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004746
4747 perf_output_sample(&handle, &header, data, event);
4748
4749 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004750
4751exit:
4752 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004753}
4754
4755/*
4756 * read event_id
4757 */
4758
4759struct perf_read_event {
4760 struct perf_event_header header;
4761
4762 u32 pid;
4763 u32 tid;
4764};
4765
4766static void
4767perf_event_read_event(struct perf_event *event,
4768 struct task_struct *task)
4769{
4770 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004771 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004772 struct perf_read_event read_event = {
4773 .header = {
4774 .type = PERF_RECORD_READ,
4775 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004776 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004777 },
4778 .pid = perf_event_pid(event, task),
4779 .tid = perf_event_tid(event, task),
4780 };
4781 int ret;
4782
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004783 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004784 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004785 if (ret)
4786 return;
4787
4788 perf_output_put(&handle, read_event);
4789 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004790 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004791
4792 perf_output_end(&handle);
4793}
4794
Jiri Olsa52d857a2013-05-06 18:27:18 +02004795typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
4796
4797static void
4798perf_event_aux_ctx(struct perf_event_context *ctx,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004799 perf_event_aux_output_cb output,
4800 void *data)
4801{
4802 struct perf_event *event;
4803
4804 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4805 if (event->state < PERF_EVENT_STATE_INACTIVE)
4806 continue;
4807 if (!event_filter_match(event))
4808 continue;
Jiri Olsa67516842013-07-09 18:56:31 +02004809 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004810 }
4811}
4812
4813static void
Jiri Olsa67516842013-07-09 18:56:31 +02004814perf_event_aux(perf_event_aux_output_cb output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004815 struct perf_event_context *task_ctx)
4816{
4817 struct perf_cpu_context *cpuctx;
4818 struct perf_event_context *ctx;
4819 struct pmu *pmu;
4820 int ctxn;
4821
4822 rcu_read_lock();
4823 list_for_each_entry_rcu(pmu, &pmus, entry) {
4824 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
4825 if (cpuctx->unique_pmu != pmu)
4826 goto next;
Jiri Olsa67516842013-07-09 18:56:31 +02004827 perf_event_aux_ctx(&cpuctx->ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004828 if (task_ctx)
4829 goto next;
4830 ctxn = pmu->task_ctx_nr;
4831 if (ctxn < 0)
4832 goto next;
4833 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4834 if (ctx)
Jiri Olsa67516842013-07-09 18:56:31 +02004835 perf_event_aux_ctx(ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004836next:
4837 put_cpu_ptr(pmu->pmu_cpu_context);
4838 }
4839
4840 if (task_ctx) {
4841 preempt_disable();
Jiri Olsa67516842013-07-09 18:56:31 +02004842 perf_event_aux_ctx(task_ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004843 preempt_enable();
4844 }
4845 rcu_read_unlock();
4846}
4847
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004848/*
4849 * task tracking -- fork/exit
4850 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02004851 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004852 */
4853
4854struct perf_task_event {
4855 struct task_struct *task;
4856 struct perf_event_context *task_ctx;
4857
4858 struct {
4859 struct perf_event_header header;
4860
4861 u32 pid;
4862 u32 ppid;
4863 u32 tid;
4864 u32 ptid;
4865 u64 time;
4866 } event_id;
4867};
4868
Jiri Olsa67516842013-07-09 18:56:31 +02004869static int perf_event_task_match(struct perf_event *event)
4870{
Stephane Eranian13d7a242013-08-21 12:10:24 +02004871 return event->attr.comm || event->attr.mmap ||
4872 event->attr.mmap2 || event->attr.mmap_data ||
4873 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02004874}
4875
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004876static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004877 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004878{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004879 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004880 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004881 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004882 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004883 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01004884
Jiri Olsa67516842013-07-09 18:56:31 +02004885 if (!perf_event_task_match(event))
4886 return;
4887
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004888 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004889
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004890 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004891 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02004892 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004893 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004894
4895 task_event->event_id.pid = perf_event_pid(event, task);
4896 task_event->event_id.ppid = perf_event_pid(event, current);
4897
4898 task_event->event_id.tid = perf_event_tid(event, task);
4899 task_event->event_id.ptid = perf_event_tid(event, current);
4900
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004901 perf_output_put(&handle, task_event->event_id);
4902
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004903 perf_event__output_id_sample(event, &handle, &sample);
4904
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004905 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004906out:
4907 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004908}
4909
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004910static void perf_event_task(struct task_struct *task,
4911 struct perf_event_context *task_ctx,
4912 int new)
4913{
4914 struct perf_task_event task_event;
4915
4916 if (!atomic_read(&nr_comm_events) &&
4917 !atomic_read(&nr_mmap_events) &&
4918 !atomic_read(&nr_task_events))
4919 return;
4920
4921 task_event = (struct perf_task_event){
4922 .task = task,
4923 .task_ctx = task_ctx,
4924 .event_id = {
4925 .header = {
4926 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
4927 .misc = 0,
4928 .size = sizeof(task_event.event_id),
4929 },
4930 /* .pid */
4931 /* .ppid */
4932 /* .tid */
4933 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004934 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004935 },
4936 };
4937
Jiri Olsa67516842013-07-09 18:56:31 +02004938 perf_event_aux(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004939 &task_event,
4940 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004941}
4942
4943void perf_event_fork(struct task_struct *task)
4944{
4945 perf_event_task(task, NULL, 1);
4946}
4947
4948/*
4949 * comm tracking
4950 */
4951
4952struct perf_comm_event {
4953 struct task_struct *task;
4954 char *comm;
4955 int comm_size;
4956
4957 struct {
4958 struct perf_event_header header;
4959
4960 u32 pid;
4961 u32 tid;
4962 } event_id;
4963};
4964
Jiri Olsa67516842013-07-09 18:56:31 +02004965static int perf_event_comm_match(struct perf_event *event)
4966{
4967 return event->attr.comm;
4968}
4969
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004970static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004971 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004972{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004973 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004974 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004975 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004976 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004977 int ret;
4978
Jiri Olsa67516842013-07-09 18:56:31 +02004979 if (!perf_event_comm_match(event))
4980 return;
4981
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004982 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
4983 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004984 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004985
4986 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004987 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004988
4989 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
4990 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
4991
4992 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004993 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004994 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004995
4996 perf_event__output_id_sample(event, &handle, &sample);
4997
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004998 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004999out:
5000 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005001}
5002
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005003static void perf_event_comm_event(struct perf_comm_event *comm_event)
5004{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005005 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005006 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005007
5008 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01005009 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005010 size = ALIGN(strlen(comm)+1, sizeof(u64));
5011
5012 comm_event->comm = comm;
5013 comm_event->comm_size = size;
5014
5015 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005016
Jiri Olsa67516842013-07-09 18:56:31 +02005017 perf_event_aux(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005018 comm_event,
5019 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005020}
5021
5022void perf_event_comm(struct task_struct *task)
5023{
5024 struct perf_comm_event comm_event;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005025 struct perf_event_context *ctx;
5026 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005027
Paul E. McKenneyc79aa0d92013-04-19 12:01:24 -07005028 rcu_read_lock();
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005029 for_each_task_context_nr(ctxn) {
5030 ctx = task->perf_event_ctxp[ctxn];
5031 if (!ctx)
5032 continue;
5033
5034 perf_event_enable_on_exec(ctx);
5035 }
Paul E. McKenneyc79aa0d92013-04-19 12:01:24 -07005036 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005037
5038 if (!atomic_read(&nr_comm_events))
5039 return;
5040
5041 comm_event = (struct perf_comm_event){
5042 .task = task,
5043 /* .comm */
5044 /* .comm_size */
5045 .event_id = {
5046 .header = {
5047 .type = PERF_RECORD_COMM,
5048 .misc = 0,
5049 /* .size */
5050 },
5051 /* .pid */
5052 /* .tid */
5053 },
5054 };
5055
5056 perf_event_comm_event(&comm_event);
5057}
5058
5059/*
5060 * mmap tracking
5061 */
5062
5063struct perf_mmap_event {
5064 struct vm_area_struct *vma;
5065
5066 const char *file_name;
5067 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005068 int maj, min;
5069 u64 ino;
5070 u64 ino_generation;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005071
5072 struct {
5073 struct perf_event_header header;
5074
5075 u32 pid;
5076 u32 tid;
5077 u64 start;
5078 u64 len;
5079 u64 pgoff;
5080 } event_id;
5081};
5082
Jiri Olsa67516842013-07-09 18:56:31 +02005083static int perf_event_mmap_match(struct perf_event *event,
5084 void *data)
5085{
5086 struct perf_mmap_event *mmap_event = data;
5087 struct vm_area_struct *vma = mmap_event->vma;
5088 int executable = vma->vm_flags & VM_EXEC;
5089
5090 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02005091 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02005092}
5093
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005094static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005095 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005096{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005097 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005098 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005099 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005100 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005101 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005102
Jiri Olsa67516842013-07-09 18:56:31 +02005103 if (!perf_event_mmap_match(event, data))
5104 return;
5105
Stephane Eranian13d7a242013-08-21 12:10:24 +02005106 if (event->attr.mmap2) {
5107 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
5108 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
5109 mmap_event->event_id.header.size += sizeof(mmap_event->min);
5110 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03005111 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005112 }
5113
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005114 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
5115 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005116 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005117 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005118 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005119
5120 mmap_event->event_id.pid = perf_event_pid(event, current);
5121 mmap_event->event_id.tid = perf_event_tid(event, current);
5122
5123 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005124
5125 if (event->attr.mmap2) {
5126 perf_output_put(&handle, mmap_event->maj);
5127 perf_output_put(&handle, mmap_event->min);
5128 perf_output_put(&handle, mmap_event->ino);
5129 perf_output_put(&handle, mmap_event->ino_generation);
5130 }
5131
Frederic Weisbecker76369132011-05-19 19:55:04 +02005132 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005133 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005134
5135 perf_event__output_id_sample(event, &handle, &sample);
5136
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005137 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005138out:
5139 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005140}
5141
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005142static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
5143{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005144 struct vm_area_struct *vma = mmap_event->vma;
5145 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005146 int maj = 0, min = 0;
5147 u64 ino = 0, gen = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005148 unsigned int size;
5149 char tmp[16];
5150 char *buf = NULL;
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02005151 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005152
5153 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02005154 struct inode *inode;
5155 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005156
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02005157 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005158 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005159 name = "//enomem";
5160 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005161 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005162 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005163 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005164 * need to add enough zero bytes after the string to handle
5165 * the 64bit alignment we do later.
5166 */
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005167 name = d_path(&file->f_path, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005168 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005169 name = "//toolong";
5170 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005171 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02005172 inode = file_inode(vma->vm_file);
5173 dev = inode->i_sb->s_dev;
5174 ino = inode->i_ino;
5175 gen = inode->i_generation;
5176 maj = MAJOR(dev);
5177 min = MINOR(dev);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005178 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005179 } else {
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02005180 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005181 if (name)
5182 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005183
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005184 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005185 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005186 name = "[heap]";
5187 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005188 }
5189 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005190 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005191 name = "[stack]";
5192 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005193 }
5194
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005195 name = "//anon";
5196 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005197 }
5198
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005199cpy_name:
5200 strlcpy(tmp, name, sizeof(tmp));
5201 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005202got_name:
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02005203 /*
5204 * Since our buffer works in 8 byte units we need to align our string
5205 * size to a multiple of 8. However, we must guarantee the tail end is
5206 * zero'd out to avoid leaking random bits to userspace.
5207 */
5208 size = strlen(name)+1;
5209 while (!IS_ALIGNED(size, sizeof(u64)))
5210 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005211
5212 mmap_event->file_name = name;
5213 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005214 mmap_event->maj = maj;
5215 mmap_event->min = min;
5216 mmap_event->ino = ino;
5217 mmap_event->ino_generation = gen;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005218
Stephane Eranian2fe85422013-01-24 16:10:39 +01005219 if (!(vma->vm_flags & VM_EXEC))
5220 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
5221
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005222 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
5223
Jiri Olsa67516842013-07-09 18:56:31 +02005224 perf_event_aux(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005225 mmap_event,
5226 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005227
5228 kfree(buf);
5229}
5230
Eric B Munson3af9e852010-05-18 15:30:49 +01005231void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005232{
5233 struct perf_mmap_event mmap_event;
5234
5235 if (!atomic_read(&nr_mmap_events))
5236 return;
5237
5238 mmap_event = (struct perf_mmap_event){
5239 .vma = vma,
5240 /* .file_name */
5241 /* .file_size */
5242 .event_id = {
5243 .header = {
5244 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005245 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005246 /* .size */
5247 },
5248 /* .pid */
5249 /* .tid */
5250 .start = vma->vm_start,
5251 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01005252 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005253 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02005254 /* .maj (attr_mmap2 only) */
5255 /* .min (attr_mmap2 only) */
5256 /* .ino (attr_mmap2 only) */
5257 /* .ino_generation (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005258 };
5259
5260 perf_event_mmap_event(&mmap_event);
5261}
5262
5263/*
5264 * IRQ throttle logging
5265 */
5266
5267static void perf_log_throttle(struct perf_event *event, int enable)
5268{
5269 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005270 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005271 int ret;
5272
5273 struct {
5274 struct perf_event_header header;
5275 u64 time;
5276 u64 id;
5277 u64 stream_id;
5278 } throttle_event = {
5279 .header = {
5280 .type = PERF_RECORD_THROTTLE,
5281 .misc = 0,
5282 .size = sizeof(throttle_event),
5283 },
5284 .time = perf_clock(),
5285 .id = primary_event_id(event),
5286 .stream_id = event->id,
5287 };
5288
5289 if (enable)
5290 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
5291
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005292 perf_event_header__init_id(&throttle_event.header, &sample, event);
5293
5294 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005295 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005296 if (ret)
5297 return;
5298
5299 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005300 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005301 perf_output_end(&handle);
5302}
5303
5304/*
5305 * Generic event overflow handling, sampling.
5306 */
5307
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005308static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005309 int throttle, struct perf_sample_data *data,
5310 struct pt_regs *regs)
5311{
5312 int events = atomic_read(&event->event_limit);
5313 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005314 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005315 int ret = 0;
5316
Peter Zijlstra96398822010-11-24 18:55:29 +01005317 /*
5318 * Non-sampling counters might still use the PMI to fold short
5319 * hardware counters, ignore those.
5320 */
5321 if (unlikely(!is_sampling_event(event)))
5322 return 0;
5323
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005324 seq = __this_cpu_read(perf_throttled_seq);
5325 if (seq != hwc->interrupts_seq) {
5326 hwc->interrupts_seq = seq;
5327 hwc->interrupts = 1;
5328 } else {
5329 hwc->interrupts++;
5330 if (unlikely(throttle
5331 && hwc->interrupts >= max_samples_per_tick)) {
5332 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01005333 hwc->interrupts = MAX_INTERRUPTS;
5334 perf_log_throttle(event, 0);
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02005335 tick_nohz_full_kick();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005336 ret = 1;
5337 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005338 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005339
5340 if (event->attr.freq) {
5341 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01005342 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005343
Peter Zijlstraabd50712010-01-26 18:50:16 +01005344 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005345
Peter Zijlstraabd50712010-01-26 18:50:16 +01005346 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01005347 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005348 }
5349
5350 /*
5351 * XXX event_limit might not quite work as expected on inherited
5352 * events
5353 */
5354
5355 event->pending_kill = POLL_IN;
5356 if (events && atomic_dec_and_test(&event->event_limit)) {
5357 ret = 1;
5358 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005359 event->pending_disable = 1;
5360 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005361 }
5362
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005363 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005364 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005365 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005366 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005367
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005368 if (event->fasync && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005369 event->pending_wakeup = 1;
5370 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005371 }
5372
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005373 return ret;
5374}
5375
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005376int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005377 struct perf_sample_data *data,
5378 struct pt_regs *regs)
5379{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005380 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005381}
5382
5383/*
5384 * Generic software event infrastructure
5385 */
5386
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005387struct swevent_htable {
5388 struct swevent_hlist *swevent_hlist;
5389 struct mutex hlist_mutex;
5390 int hlist_refcount;
5391
5392 /* Recursion avoidance in each contexts */
5393 int recursion[PERF_NR_CONTEXTS];
5394};
5395
5396static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
5397
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005398/*
5399 * We directly increment event->count and keep a second value in
5400 * event->hw.period_left to count intervals. This period event
5401 * is kept in the range [-sample_period, 0] so that we can use the
5402 * sign as trigger.
5403 */
5404
Jiri Olsaab573842013-05-01 17:25:44 +02005405u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005406{
5407 struct hw_perf_event *hwc = &event->hw;
5408 u64 period = hwc->last_period;
5409 u64 nr, offset;
5410 s64 old, val;
5411
5412 hwc->last_period = hwc->sample_period;
5413
5414again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02005415 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005416 if (val < 0)
5417 return 0;
5418
5419 nr = div64_u64(period + val, period);
5420 offset = nr * period;
5421 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02005422 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005423 goto again;
5424
5425 return nr;
5426}
5427
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005428static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005429 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005430 struct pt_regs *regs)
5431{
5432 struct hw_perf_event *hwc = &event->hw;
5433 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005434
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005435 if (!overflow)
5436 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005437
5438 if (hwc->interrupts == MAX_INTERRUPTS)
5439 return;
5440
5441 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005442 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005443 data, regs)) {
5444 /*
5445 * We inhibit the overflow from happening when
5446 * hwc->interrupts == MAX_INTERRUPTS.
5447 */
5448 break;
5449 }
5450 throttle = 1;
5451 }
5452}
5453
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005454static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005455 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005456 struct pt_regs *regs)
5457{
5458 struct hw_perf_event *hwc = &event->hw;
5459
Peter Zijlstrae7850592010-05-21 14:43:08 +02005460 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005461
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005462 if (!regs)
5463 return;
5464
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005465 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005466 return;
5467
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03005468 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
5469 data->period = nr;
5470 return perf_swevent_overflow(event, 1, data, regs);
5471 } else
5472 data->period = event->hw.last_period;
5473
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005474 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005475 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005476
Peter Zijlstrae7850592010-05-21 14:43:08 +02005477 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005478 return;
5479
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005480 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005481}
5482
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005483static int perf_exclude_event(struct perf_event *event,
5484 struct pt_regs *regs)
5485{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005486 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01005487 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005488
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005489 if (regs) {
5490 if (event->attr.exclude_user && user_mode(regs))
5491 return 1;
5492
5493 if (event->attr.exclude_kernel && !user_mode(regs))
5494 return 1;
5495 }
5496
5497 return 0;
5498}
5499
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005500static int perf_swevent_match(struct perf_event *event,
5501 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08005502 u32 event_id,
5503 struct perf_sample_data *data,
5504 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005505{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005506 if (event->attr.type != type)
5507 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005508
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005509 if (event->attr.config != event_id)
5510 return 0;
5511
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005512 if (perf_exclude_event(event, regs))
5513 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005514
5515 return 1;
5516}
5517
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005518static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005519{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005520 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005521
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005522 return hash_64(val, SWEVENT_HLIST_BITS);
5523}
5524
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005525static inline struct hlist_head *
5526__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005527{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005528 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005529
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005530 return &hlist->heads[hash];
5531}
5532
5533/* For the read side: events when they trigger */
5534static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005535find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005536{
5537 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005538
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005539 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005540 if (!hlist)
5541 return NULL;
5542
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005543 return __find_swevent_head(hlist, type, event_id);
5544}
5545
5546/* For the event head insertion and removal in the hlist */
5547static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005548find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005549{
5550 struct swevent_hlist *hlist;
5551 u32 event_id = event->attr.config;
5552 u64 type = event->attr.type;
5553
5554 /*
5555 * Event scheduling is always serialized against hlist allocation
5556 * and release. Which makes the protected version suitable here.
5557 * The context lock guarantees that.
5558 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005559 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005560 lockdep_is_held(&event->ctx->lock));
5561 if (!hlist)
5562 return NULL;
5563
5564 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005565}
5566
5567static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005568 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005569 struct perf_sample_data *data,
5570 struct pt_regs *regs)
5571{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005572 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005573 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005574 struct hlist_head *head;
5575
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005576 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005577 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005578 if (!head)
5579 goto end;
5580
Sasha Levinb67bfe02013-02-27 17:06:00 -08005581 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08005582 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005583 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005584 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005585end:
5586 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005587}
5588
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005589int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005590{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005591 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005592
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005593 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005594}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01005595EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005596
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01005597inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005598{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005599 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005600
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005601 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005602}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005603
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005604void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005605{
Ingo Molnara4234bf2009-11-23 10:57:59 +01005606 struct perf_sample_data data;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005607 int rctx;
5608
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005609 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005610 rctx = perf_swevent_get_recursion_context();
5611 if (rctx < 0)
5612 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005613
Robert Richterfd0d0002012-04-02 20:19:08 +02005614 perf_sample_data_init(&data, addr, 0);
Ingo Molnara4234bf2009-11-23 10:57:59 +01005615
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005616 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005617
5618 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005619 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005620}
5621
5622static void perf_swevent_read(struct perf_event *event)
5623{
5624}
5625
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005626static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005627{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005628 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005629 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005630 struct hlist_head *head;
5631
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005632 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005633 hwc->last_period = hwc->sample_period;
5634 perf_swevent_set_period(event);
5635 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005636
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005637 hwc->state = !(flags & PERF_EF_START);
5638
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005639 head = find_swevent_head(swhash, event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005640 if (WARN_ON_ONCE(!head))
5641 return -EINVAL;
5642
5643 hlist_add_head_rcu(&event->hlist_entry, head);
5644
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005645 return 0;
5646}
5647
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005648static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005649{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005650 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005651}
5652
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005653static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005654{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005655 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005656}
5657
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005658static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005659{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005660 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005661}
5662
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005663/* Deref the hlist from the update side */
5664static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005665swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005666{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005667 return rcu_dereference_protected(swhash->swevent_hlist,
5668 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005669}
5670
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005671static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005672{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005673 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005674
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005675 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005676 return;
5677
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005678 rcu_assign_pointer(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08005679 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005680}
5681
5682static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
5683{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005684 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005685
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005686 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005687
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005688 if (!--swhash->hlist_refcount)
5689 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005690
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005691 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005692}
5693
5694static void swevent_hlist_put(struct perf_event *event)
5695{
5696 int cpu;
5697
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005698 for_each_possible_cpu(cpu)
5699 swevent_hlist_put_cpu(event, cpu);
5700}
5701
5702static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
5703{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005704 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005705 int err = 0;
5706
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005707 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005708
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005709 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005710 struct swevent_hlist *hlist;
5711
5712 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
5713 if (!hlist) {
5714 err = -ENOMEM;
5715 goto exit;
5716 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005717 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005718 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005719 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005720exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005721 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005722
5723 return err;
5724}
5725
5726static int swevent_hlist_get(struct perf_event *event)
5727{
5728 int err;
5729 int cpu, failed_cpu;
5730
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005731 get_online_cpus();
5732 for_each_possible_cpu(cpu) {
5733 err = swevent_hlist_get_cpu(event, cpu);
5734 if (err) {
5735 failed_cpu = cpu;
5736 goto fail;
5737 }
5738 }
5739 put_online_cpus();
5740
5741 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005742fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005743 for_each_possible_cpu(cpu) {
5744 if (cpu == failed_cpu)
5745 break;
5746 swevent_hlist_put_cpu(event, cpu);
5747 }
5748
5749 put_online_cpus();
5750 return err;
5751}
5752
Ingo Molnarc5905af2012-02-24 08:31:31 +01005753struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005754
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005755static void sw_perf_event_destroy(struct perf_event *event)
5756{
5757 u64 event_id = event->attr.config;
5758
5759 WARN_ON(event->parent);
5760
Ingo Molnarc5905af2012-02-24 08:31:31 +01005761 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005762 swevent_hlist_put(event);
5763}
5764
5765static int perf_swevent_init(struct perf_event *event)
5766{
Tommi Rantala8176cce2013-04-13 22:49:14 +03005767 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005768
5769 if (event->attr.type != PERF_TYPE_SOFTWARE)
5770 return -ENOENT;
5771
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005772 /*
5773 * no branch sampling for software events
5774 */
5775 if (has_branch_stack(event))
5776 return -EOPNOTSUPP;
5777
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005778 switch (event_id) {
5779 case PERF_COUNT_SW_CPU_CLOCK:
5780 case PERF_COUNT_SW_TASK_CLOCK:
5781 return -ENOENT;
5782
5783 default:
5784 break;
5785 }
5786
Dan Carpenterce677832010-10-24 21:50:42 +02005787 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005788 return -ENOENT;
5789
5790 if (!event->parent) {
5791 int err;
5792
5793 err = swevent_hlist_get(event);
5794 if (err)
5795 return err;
5796
Ingo Molnarc5905af2012-02-24 08:31:31 +01005797 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005798 event->destroy = sw_perf_event_destroy;
5799 }
5800
5801 return 0;
5802}
5803
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005804static int perf_swevent_event_idx(struct perf_event *event)
5805{
5806 return 0;
5807}
5808
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005809static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005810 .task_ctx_nr = perf_sw_context,
5811
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005812 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005813 .add = perf_swevent_add,
5814 .del = perf_swevent_del,
5815 .start = perf_swevent_start,
5816 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005817 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005818
5819 .event_idx = perf_swevent_event_idx,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005820};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005821
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005822#ifdef CONFIG_EVENT_TRACING
5823
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005824static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005825 struct perf_sample_data *data)
5826{
5827 void *record = data->raw->data;
5828
5829 if (likely(!event->filter) || filter_match_preds(event->filter, record))
5830 return 1;
5831 return 0;
5832}
5833
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005834static int perf_tp_event_match(struct perf_event *event,
5835 struct perf_sample_data *data,
5836 struct pt_regs *regs)
5837{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01005838 if (event->hw.state & PERF_HES_STOPPED)
5839 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02005840 /*
5841 * All tracepoints are from kernel-space.
5842 */
5843 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005844 return 0;
5845
5846 if (!perf_tp_filter_match(event, data))
5847 return 0;
5848
5849 return 1;
5850}
5851
5852void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005853 struct pt_regs *regs, struct hlist_head *head, int rctx,
5854 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005855{
5856 struct perf_sample_data data;
5857 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005858
5859 struct perf_raw_record raw = {
5860 .size = entry_size,
5861 .data = record,
5862 };
5863
Robert Richterfd0d0002012-04-02 20:19:08 +02005864 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005865 data.raw = &raw;
5866
Sasha Levinb67bfe02013-02-27 17:06:00 -08005867 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005868 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005869 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005870 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005871
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005872 /*
5873 * If we got specified a target task, also iterate its context and
5874 * deliver this event there too.
5875 */
5876 if (task && task != current) {
5877 struct perf_event_context *ctx;
5878 struct trace_entry *entry = record;
5879
5880 rcu_read_lock();
5881 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
5882 if (!ctx)
5883 goto unlock;
5884
5885 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5886 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5887 continue;
5888 if (event->attr.config != entry->type)
5889 continue;
5890 if (perf_tp_event_match(event, &data, regs))
5891 perf_swevent_event(event, count, &data, regs);
5892 }
5893unlock:
5894 rcu_read_unlock();
5895 }
5896
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005897 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005898}
5899EXPORT_SYMBOL_GPL(perf_tp_event);
5900
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005901static void tp_perf_event_destroy(struct perf_event *event)
5902{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005903 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005904}
5905
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005906static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005907{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005908 int err;
5909
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005910 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5911 return -ENOENT;
5912
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005913 /*
5914 * no branch sampling for tracepoint events
5915 */
5916 if (has_branch_stack(event))
5917 return -EOPNOTSUPP;
5918
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005919 err = perf_trace_init(event);
5920 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005921 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005922
5923 event->destroy = tp_perf_event_destroy;
5924
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005925 return 0;
5926}
5927
5928static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005929 .task_ctx_nr = perf_sw_context,
5930
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005931 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005932 .add = perf_trace_add,
5933 .del = perf_trace_del,
5934 .start = perf_swevent_start,
5935 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005936 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005937
5938 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005939};
5940
5941static inline void perf_tp_register(void)
5942{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005943 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005944}
Li Zefan6fb29152009-10-15 11:21:42 +08005945
5946static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5947{
5948 char *filter_str;
5949 int ret;
5950
5951 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5952 return -EINVAL;
5953
5954 filter_str = strndup_user(arg, PAGE_SIZE);
5955 if (IS_ERR(filter_str))
5956 return PTR_ERR(filter_str);
5957
5958 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
5959
5960 kfree(filter_str);
5961 return ret;
5962}
5963
5964static void perf_event_free_filter(struct perf_event *event)
5965{
5966 ftrace_profile_free_filter(event);
5967}
5968
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005969#else
Li Zefan6fb29152009-10-15 11:21:42 +08005970
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005971static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005972{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005973}
Li Zefan6fb29152009-10-15 11:21:42 +08005974
5975static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5976{
5977 return -ENOENT;
5978}
5979
5980static void perf_event_free_filter(struct perf_event *event)
5981{
5982}
5983
Li Zefan07b139c2009-12-21 14:27:35 +08005984#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005985
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005986#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005987void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005988{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005989 struct perf_sample_data sample;
5990 struct pt_regs *regs = data;
5991
Robert Richterfd0d0002012-04-02 20:19:08 +02005992 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005993
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005994 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005995 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005996}
5997#endif
5998
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005999/*
6000 * hrtimer based swevent callback
6001 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006002
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006003static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006004{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006005 enum hrtimer_restart ret = HRTIMER_RESTART;
6006 struct perf_sample_data data;
6007 struct pt_regs *regs;
6008 struct perf_event *event;
6009 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006010
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006011 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006012
6013 if (event->state != PERF_EVENT_STATE_ACTIVE)
6014 return HRTIMER_NORESTART;
6015
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006016 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006017
Robert Richterfd0d0002012-04-02 20:19:08 +02006018 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006019 regs = get_irq_regs();
6020
6021 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08006022 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02006023 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006024 ret = HRTIMER_NORESTART;
6025 }
6026
6027 period = max_t(u64, 10000, event->hw.sample_period);
6028 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
6029
6030 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006031}
6032
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006033static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006034{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006035 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006036 s64 period;
6037
6038 if (!is_sampling_event(event))
6039 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006040
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006041 period = local64_read(&hwc->period_left);
6042 if (period) {
6043 if (period < 0)
6044 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02006045
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006046 local64_set(&hwc->period_left, 0);
6047 } else {
6048 period = max_t(u64, 10000, hwc->sample_period);
6049 }
6050 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006051 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02006052 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006053}
6054
6055static void perf_swevent_cancel_hrtimer(struct perf_event *event)
6056{
6057 struct hw_perf_event *hwc = &event->hw;
6058
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006059 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006060 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02006061 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006062
6063 hrtimer_cancel(&hwc->hrtimer);
6064 }
6065}
6066
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006067static void perf_swevent_init_hrtimer(struct perf_event *event)
6068{
6069 struct hw_perf_event *hwc = &event->hw;
6070
6071 if (!is_sampling_event(event))
6072 return;
6073
6074 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
6075 hwc->hrtimer.function = perf_swevent_hrtimer;
6076
6077 /*
6078 * Since hrtimers have a fixed rate, we can do a static freq->period
6079 * mapping and avoid the whole period adjust feedback stuff.
6080 */
6081 if (event->attr.freq) {
6082 long freq = event->attr.sample_freq;
6083
6084 event->attr.sample_period = NSEC_PER_SEC / freq;
6085 hwc->sample_period = event->attr.sample_period;
6086 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09006087 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006088 event->attr.freq = 0;
6089 }
6090}
6091
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006092/*
6093 * Software event: cpu wall time clock
6094 */
6095
6096static void cpu_clock_event_update(struct perf_event *event)
6097{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006098 s64 prev;
6099 u64 now;
6100
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006101 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006102 prev = local64_xchg(&event->hw.prev_count, now);
6103 local64_add(now - prev, &event->count);
6104}
6105
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006106static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006107{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006108 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006109 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006110}
6111
6112static void cpu_clock_event_stop(struct perf_event *event, int flags)
6113{
6114 perf_swevent_cancel_hrtimer(event);
6115 cpu_clock_event_update(event);
6116}
6117
6118static int cpu_clock_event_add(struct perf_event *event, int flags)
6119{
6120 if (flags & PERF_EF_START)
6121 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006122
6123 return 0;
6124}
6125
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006126static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006127{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006128 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006129}
6130
6131static void cpu_clock_event_read(struct perf_event *event)
6132{
6133 cpu_clock_event_update(event);
6134}
6135
6136static int cpu_clock_event_init(struct perf_event *event)
6137{
6138 if (event->attr.type != PERF_TYPE_SOFTWARE)
6139 return -ENOENT;
6140
6141 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
6142 return -ENOENT;
6143
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006144 /*
6145 * no branch sampling for software events
6146 */
6147 if (has_branch_stack(event))
6148 return -EOPNOTSUPP;
6149
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006150 perf_swevent_init_hrtimer(event);
6151
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006152 return 0;
6153}
6154
6155static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006156 .task_ctx_nr = perf_sw_context,
6157
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006158 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006159 .add = cpu_clock_event_add,
6160 .del = cpu_clock_event_del,
6161 .start = cpu_clock_event_start,
6162 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006163 .read = cpu_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006164
6165 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006166};
6167
6168/*
6169 * Software event: task time clock
6170 */
6171
6172static void task_clock_event_update(struct perf_event *event, u64 now)
6173{
6174 u64 prev;
6175 s64 delta;
6176
6177 prev = local64_xchg(&event->hw.prev_count, now);
6178 delta = now - prev;
6179 local64_add(delta, &event->count);
6180}
6181
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006182static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006183{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006184 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006185 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006186}
6187
6188static void task_clock_event_stop(struct perf_event *event, int flags)
6189{
6190 perf_swevent_cancel_hrtimer(event);
6191 task_clock_event_update(event, event->ctx->time);
6192}
6193
6194static int task_clock_event_add(struct perf_event *event, int flags)
6195{
6196 if (flags & PERF_EF_START)
6197 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006198
6199 return 0;
6200}
6201
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006202static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006203{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006204 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006205}
6206
6207static void task_clock_event_read(struct perf_event *event)
6208{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01006209 u64 now = perf_clock();
6210 u64 delta = now - event->ctx->timestamp;
6211 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006212
6213 task_clock_event_update(event, time);
6214}
6215
6216static int task_clock_event_init(struct perf_event *event)
6217{
6218 if (event->attr.type != PERF_TYPE_SOFTWARE)
6219 return -ENOENT;
6220
6221 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
6222 return -ENOENT;
6223
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006224 /*
6225 * no branch sampling for software events
6226 */
6227 if (has_branch_stack(event))
6228 return -EOPNOTSUPP;
6229
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006230 perf_swevent_init_hrtimer(event);
6231
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006232 return 0;
6233}
6234
6235static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006236 .task_ctx_nr = perf_sw_context,
6237
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006238 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006239 .add = task_clock_event_add,
6240 .del = task_clock_event_del,
6241 .start = task_clock_event_start,
6242 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006243 .read = task_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006244
6245 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006246};
6247
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006248static void perf_pmu_nop_void(struct pmu *pmu)
6249{
6250}
6251
6252static int perf_pmu_nop_int(struct pmu *pmu)
6253{
6254 return 0;
6255}
6256
6257static void perf_pmu_start_txn(struct pmu *pmu)
6258{
6259 perf_pmu_disable(pmu);
6260}
6261
6262static int perf_pmu_commit_txn(struct pmu *pmu)
6263{
6264 perf_pmu_enable(pmu);
6265 return 0;
6266}
6267
6268static void perf_pmu_cancel_txn(struct pmu *pmu)
6269{
6270 perf_pmu_enable(pmu);
6271}
6272
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006273static int perf_event_idx_default(struct perf_event *event)
6274{
6275 return event->hw.idx + 1;
6276}
6277
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006278/*
6279 * Ensures all contexts with the same task_ctx_nr have the same
6280 * pmu_cpu_context too.
6281 */
6282static void *find_pmu_context(int ctxn)
6283{
6284 struct pmu *pmu;
6285
6286 if (ctxn < 0)
6287 return NULL;
6288
6289 list_for_each_entry(pmu, &pmus, entry) {
6290 if (pmu->task_ctx_nr == ctxn)
6291 return pmu->pmu_cpu_context;
6292 }
6293
6294 return NULL;
6295}
6296
Peter Zijlstra51676952010-12-07 14:18:20 +01006297static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006298{
Peter Zijlstra51676952010-12-07 14:18:20 +01006299 int cpu;
6300
6301 for_each_possible_cpu(cpu) {
6302 struct perf_cpu_context *cpuctx;
6303
6304 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6305
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006306 if (cpuctx->unique_pmu == old_pmu)
6307 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01006308 }
6309}
6310
6311static void free_pmu_context(struct pmu *pmu)
6312{
6313 struct pmu *i;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006314
6315 mutex_lock(&pmus_lock);
6316 /*
6317 * Like a real lame refcount.
6318 */
Peter Zijlstra51676952010-12-07 14:18:20 +01006319 list_for_each_entry(i, &pmus, entry) {
6320 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
6321 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006322 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01006323 }
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006324 }
6325
Peter Zijlstra51676952010-12-07 14:18:20 +01006326 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006327out:
6328 mutex_unlock(&pmus_lock);
6329}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006330static struct idr pmu_idr;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006331
Peter Zijlstraabe43402010-11-17 23:17:37 +01006332static ssize_t
6333type_show(struct device *dev, struct device_attribute *attr, char *page)
6334{
6335 struct pmu *pmu = dev_get_drvdata(dev);
6336
6337 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
6338}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006339static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006340
Stephane Eranian62b85632013-04-03 14:21:34 +02006341static ssize_t
6342perf_event_mux_interval_ms_show(struct device *dev,
6343 struct device_attribute *attr,
6344 char *page)
6345{
6346 struct pmu *pmu = dev_get_drvdata(dev);
6347
6348 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
6349}
6350
6351static ssize_t
6352perf_event_mux_interval_ms_store(struct device *dev,
6353 struct device_attribute *attr,
6354 const char *buf, size_t count)
6355{
6356 struct pmu *pmu = dev_get_drvdata(dev);
6357 int timer, cpu, ret;
6358
6359 ret = kstrtoint(buf, 0, &timer);
6360 if (ret)
6361 return ret;
6362
6363 if (timer < 1)
6364 return -EINVAL;
6365
6366 /* same value, noting to do */
6367 if (timer == pmu->hrtimer_interval_ms)
6368 return count;
6369
6370 pmu->hrtimer_interval_ms = timer;
6371
6372 /* update all cpuctx for this PMU */
6373 for_each_possible_cpu(cpu) {
6374 struct perf_cpu_context *cpuctx;
6375 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6376 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
6377
6378 if (hrtimer_active(&cpuctx->hrtimer))
6379 hrtimer_forward_now(&cpuctx->hrtimer, cpuctx->hrtimer_interval);
6380 }
6381
6382 return count;
6383}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006384static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02006385
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006386static struct attribute *pmu_dev_attrs[] = {
6387 &dev_attr_type.attr,
6388 &dev_attr_perf_event_mux_interval_ms.attr,
6389 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01006390};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006391ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006392
6393static int pmu_bus_running;
6394static struct bus_type pmu_bus = {
6395 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006396 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01006397};
6398
6399static void pmu_dev_release(struct device *dev)
6400{
6401 kfree(dev);
6402}
6403
6404static int pmu_dev_alloc(struct pmu *pmu)
6405{
6406 int ret = -ENOMEM;
6407
6408 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
6409 if (!pmu->dev)
6410 goto out;
6411
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01006412 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01006413 device_initialize(pmu->dev);
6414 ret = dev_set_name(pmu->dev, "%s", pmu->name);
6415 if (ret)
6416 goto free_dev;
6417
6418 dev_set_drvdata(pmu->dev, pmu);
6419 pmu->dev->bus = &pmu_bus;
6420 pmu->dev->release = pmu_dev_release;
6421 ret = device_add(pmu->dev);
6422 if (ret)
6423 goto free_dev;
6424
6425out:
6426 return ret;
6427
6428free_dev:
6429 put_device(pmu->dev);
6430 goto out;
6431}
6432
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006433static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006434static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006435
Mischa Jonker03d8e802013-06-04 11:45:48 +02006436int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006437{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006438 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006439
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006440 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006441 ret = -ENOMEM;
6442 pmu->pmu_disable_count = alloc_percpu(int);
6443 if (!pmu->pmu_disable_count)
6444 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006445
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006446 pmu->type = -1;
6447 if (!name)
6448 goto skip_type;
6449 pmu->name = name;
6450
6451 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08006452 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
6453 if (type < 0) {
6454 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006455 goto free_pdc;
6456 }
6457 }
6458 pmu->type = type;
6459
Peter Zijlstraabe43402010-11-17 23:17:37 +01006460 if (pmu_bus_running) {
6461 ret = pmu_dev_alloc(pmu);
6462 if (ret)
6463 goto free_idr;
6464 }
6465
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006466skip_type:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006467 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
6468 if (pmu->pmu_cpu_context)
6469 goto got_cpu_context;
6470
Wei Yongjunc4814202013-04-12 11:05:54 +08006471 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006472 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
6473 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01006474 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006475
6476 for_each_possible_cpu(cpu) {
6477 struct perf_cpu_context *cpuctx;
6478
6479 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02006480 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006481 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006482 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006483 cpuctx->ctx.type = cpu_context;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006484 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02006485
6486 __perf_cpu_hrtimer_init(cpuctx, cpu);
6487
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006488 INIT_LIST_HEAD(&cpuctx->rotation_list);
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006489 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006490 }
6491
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006492got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006493 if (!pmu->start_txn) {
6494 if (pmu->pmu_enable) {
6495 /*
6496 * If we have pmu_enable/pmu_disable calls, install
6497 * transaction stubs that use that to try and batch
6498 * hardware accesses.
6499 */
6500 pmu->start_txn = perf_pmu_start_txn;
6501 pmu->commit_txn = perf_pmu_commit_txn;
6502 pmu->cancel_txn = perf_pmu_cancel_txn;
6503 } else {
6504 pmu->start_txn = perf_pmu_nop_void;
6505 pmu->commit_txn = perf_pmu_nop_int;
6506 pmu->cancel_txn = perf_pmu_nop_void;
6507 }
6508 }
6509
6510 if (!pmu->pmu_enable) {
6511 pmu->pmu_enable = perf_pmu_nop_void;
6512 pmu->pmu_disable = perf_pmu_nop_void;
6513 }
6514
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006515 if (!pmu->event_idx)
6516 pmu->event_idx = perf_event_idx_default;
6517
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006518 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006519 ret = 0;
6520unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006521 mutex_unlock(&pmus_lock);
6522
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006523 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006524
Peter Zijlstraabe43402010-11-17 23:17:37 +01006525free_dev:
6526 device_del(pmu->dev);
6527 put_device(pmu->dev);
6528
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006529free_idr:
6530 if (pmu->type >= PERF_TYPE_MAX)
6531 idr_remove(&pmu_idr, pmu->type);
6532
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006533free_pdc:
6534 free_percpu(pmu->pmu_disable_count);
6535 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006536}
6537
6538void perf_pmu_unregister(struct pmu *pmu)
6539{
6540 mutex_lock(&pmus_lock);
6541 list_del_rcu(&pmu->entry);
6542 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006543
6544 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02006545 * We dereference the pmu list under both SRCU and regular RCU, so
6546 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006547 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006548 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02006549 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006550
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006551 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006552 if (pmu->type >= PERF_TYPE_MAX)
6553 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006554 device_del(pmu->dev);
6555 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01006556 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006557}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006558
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006559struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006560{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006561 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006562 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08006563 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006564
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006565 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006566
6567 rcu_read_lock();
6568 pmu = idr_find(&pmu_idr, event->attr.type);
6569 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08006570 if (pmu) {
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006571 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006572 ret = pmu->event_init(event);
6573 if (ret)
6574 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006575 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08006576 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006577
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006578 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006579 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006580 ret = pmu->event_init(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006581 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006582 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006583
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006584 if (ret != -ENOENT) {
6585 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006586 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006587 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006588 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006589 pmu = ERR_PTR(-ENOENT);
6590unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006591 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006592
6593 return pmu;
6594}
6595
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006596static void account_event_cpu(struct perf_event *event, int cpu)
6597{
6598 if (event->parent)
6599 return;
6600
6601 if (has_branch_stack(event)) {
6602 if (!(event->attach_state & PERF_ATTACH_TASK))
6603 atomic_inc(&per_cpu(perf_branch_stack_events, cpu));
6604 }
6605 if (is_cgroup_event(event))
6606 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
6607}
6608
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006609static void account_event(struct perf_event *event)
6610{
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006611 if (event->parent)
6612 return;
6613
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006614 if (event->attach_state & PERF_ATTACH_TASK)
6615 static_key_slow_inc(&perf_sched_events.key);
6616 if (event->attr.mmap || event->attr.mmap_data)
6617 atomic_inc(&nr_mmap_events);
6618 if (event->attr.comm)
6619 atomic_inc(&nr_comm_events);
6620 if (event->attr.task)
6621 atomic_inc(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02006622 if (event->attr.freq) {
6623 if (atomic_inc_return(&nr_freq_events) == 1)
6624 tick_nohz_full_kick_all();
6625 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006626 if (has_branch_stack(event))
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006627 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006628 if (is_cgroup_event(event))
6629 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006630
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006631 account_event_cpu(event, event->cpu);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006632}
6633
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006634/*
6635 * Allocate and initialize a event structure
6636 */
6637static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006638perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006639 struct task_struct *task,
6640 struct perf_event *group_leader,
6641 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03006642 perf_overflow_handler_t overflow_handler,
6643 void *context)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006644{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006645 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006646 struct perf_event *event;
6647 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006648 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006649
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006650 if ((unsigned)cpu >= nr_cpu_ids) {
6651 if (!task || cpu != -1)
6652 return ERR_PTR(-EINVAL);
6653 }
6654
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006655 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006656 if (!event)
6657 return ERR_PTR(-ENOMEM);
6658
6659 /*
6660 * Single events are their own group leaders, with an
6661 * empty sibling list:
6662 */
6663 if (!group_leader)
6664 group_leader = event;
6665
6666 mutex_init(&event->child_mutex);
6667 INIT_LIST_HEAD(&event->child_list);
6668
6669 INIT_LIST_HEAD(&event->group_entry);
6670 INIT_LIST_HEAD(&event->event_entry);
6671 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006672 INIT_LIST_HEAD(&event->rb_entry);
6673
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006674 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006675 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006676
6677 mutex_init(&event->mmap_mutex);
6678
Al Viroa6fa9412012-08-20 14:59:25 +01006679 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006680 event->cpu = cpu;
6681 event->attr = *attr;
6682 event->group_leader = group_leader;
6683 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006684 event->oncpu = -1;
6685
6686 event->parent = parent_event;
6687
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08006688 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006689 event->id = atomic64_inc_return(&perf_event_id);
6690
6691 event->state = PERF_EVENT_STATE_INACTIVE;
6692
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006693 if (task) {
6694 event->attach_state = PERF_ATTACH_TASK;
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006695
6696 if (attr->type == PERF_TYPE_TRACEPOINT)
6697 event->hw.tp_target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006698#ifdef CONFIG_HAVE_HW_BREAKPOINT
6699 /*
6700 * hw_breakpoint is a bit difficult here..
6701 */
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006702 else if (attr->type == PERF_TYPE_BREAKPOINT)
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006703 event->hw.bp_target = task;
6704#endif
6705 }
6706
Avi Kivity4dc0da82011-06-29 18:42:35 +03006707 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006708 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006709 context = parent_event->overflow_handler_context;
6710 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006711
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006712 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006713 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02006714
Jiri Olsa0231bb52013-02-01 11:23:45 +01006715 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006716
6717 pmu = NULL;
6718
6719 hwc = &event->hw;
6720 hwc->sample_period = attr->sample_period;
6721 if (attr->freq && attr->sample_freq)
6722 hwc->sample_period = 1;
6723 hwc->last_period = hwc->sample_period;
6724
Peter Zijlstrae7850592010-05-21 14:43:08 +02006725 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006726
6727 /*
6728 * we currently do not support PERF_FORMAT_GROUP on inherited events
6729 */
6730 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006731 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006732
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006733 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006734 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006735 goto err_ns;
6736 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006737 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006738 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006739 }
6740
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006741 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006742 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
6743 err = get_callchain_buffers();
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006744 if (err)
6745 goto err_pmu;
Stephane Eraniand010b332012-02-09 23:21:00 +01006746 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006747 }
6748
6749 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006750
6751err_pmu:
6752 if (event->destroy)
6753 event->destroy(event);
6754err_ns:
6755 if (event->ns)
6756 put_pid_ns(event->ns);
6757 kfree(event);
6758
6759 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006760}
6761
6762static int perf_copy_attr(struct perf_event_attr __user *uattr,
6763 struct perf_event_attr *attr)
6764{
6765 u32 size;
6766 int ret;
6767
6768 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
6769 return -EFAULT;
6770
6771 /*
6772 * zero the full structure, so that a short copy will be nice.
6773 */
6774 memset(attr, 0, sizeof(*attr));
6775
6776 ret = get_user(size, &uattr->size);
6777 if (ret)
6778 return ret;
6779
6780 if (size > PAGE_SIZE) /* silly large */
6781 goto err_size;
6782
6783 if (!size) /* abi compat */
6784 size = PERF_ATTR_SIZE_VER0;
6785
6786 if (size < PERF_ATTR_SIZE_VER0)
6787 goto err_size;
6788
6789 /*
6790 * If we're handed a bigger struct than we know of,
6791 * ensure all the unknown bits are 0 - i.e. new
6792 * user-space does not rely on any kernel feature
6793 * extensions we dont know about yet.
6794 */
6795 if (size > sizeof(*attr)) {
6796 unsigned char __user *addr;
6797 unsigned char __user *end;
6798 unsigned char val;
6799
6800 addr = (void __user *)uattr + sizeof(*attr);
6801 end = (void __user *)uattr + size;
6802
6803 for (; addr < end; addr++) {
6804 ret = get_user(val, addr);
6805 if (ret)
6806 return ret;
6807 if (val)
6808 goto err_size;
6809 }
6810 size = sizeof(*attr);
6811 }
6812
6813 ret = copy_from_user(attr, uattr, size);
6814 if (ret)
6815 return -EFAULT;
6816
Stephane Eranian3090ffb2013-10-17 19:32:15 +02006817 /* disabled for now */
6818 if (attr->mmap2)
6819 return -EINVAL;
6820
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05306821 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006822 return -EINVAL;
6823
6824 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
6825 return -EINVAL;
6826
6827 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
6828 return -EINVAL;
6829
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006830 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
6831 u64 mask = attr->branch_sample_type;
6832
6833 /* only using defined bits */
6834 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
6835 return -EINVAL;
6836
6837 /* at least one branch bit must be set */
6838 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
6839 return -EINVAL;
6840
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006841 /* propagate priv level, when not set for branch */
6842 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
6843
6844 /* exclude_kernel checked on syscall entry */
6845 if (!attr->exclude_kernel)
6846 mask |= PERF_SAMPLE_BRANCH_KERNEL;
6847
6848 if (!attr->exclude_user)
6849 mask |= PERF_SAMPLE_BRANCH_USER;
6850
6851 if (!attr->exclude_hv)
6852 mask |= PERF_SAMPLE_BRANCH_HV;
6853 /*
6854 * adjust user setting (for HW filter setup)
6855 */
6856 attr->branch_sample_type = mask;
6857 }
Stephane Eraniane7122092013-06-06 11:02:04 +02006858 /* privileged levels capture (kernel, hv): check permissions */
6859 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02006860 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6861 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006862 }
Jiri Olsa40189942012-08-07 15:20:37 +02006863
Jiri Olsac5ebced2012-08-07 15:20:40 +02006864 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02006865 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006866 if (ret)
6867 return ret;
6868 }
6869
6870 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
6871 if (!arch_perf_have_user_stack_dump())
6872 return -ENOSYS;
6873
6874 /*
6875 * We have __u32 type for the size, but so far
6876 * we can only use __u16 as maximum due to the
6877 * __u16 sample size limit.
6878 */
6879 if (attr->sample_stack_user >= USHRT_MAX)
6880 ret = -EINVAL;
6881 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
6882 ret = -EINVAL;
6883 }
Jiri Olsa40189942012-08-07 15:20:37 +02006884
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006885out:
6886 return ret;
6887
6888err_size:
6889 put_user(sizeof(*attr), &uattr->size);
6890 ret = -E2BIG;
6891 goto out;
6892}
6893
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006894static int
6895perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006896{
Frederic Weisbecker76369132011-05-19 19:55:04 +02006897 struct ring_buffer *rb = NULL, *old_rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006898 int ret = -EINVAL;
6899
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006900 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006901 goto set;
6902
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006903 /* don't allow circular references */
6904 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006905 goto out;
6906
Peter Zijlstra0f139302010-05-20 14:35:15 +02006907 /*
6908 * Don't allow cross-cpu buffers
6909 */
6910 if (output_event->cpu != event->cpu)
6911 goto out;
6912
6913 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02006914 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02006915 */
6916 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
6917 goto out;
6918
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006919set:
6920 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006921 /* Can't redirect output if we've got an active mmap() */
6922 if (atomic_read(&event->mmap_count))
6923 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006924
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006925 old_rb = event->rb;
6926
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006927 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02006928 /* get the rb we want to redirect to */
6929 rb = ring_buffer_get(output_event);
6930 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006931 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006932 }
6933
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006934 if (old_rb)
6935 ring_buffer_detach(event, old_rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006936
6937 if (rb)
6938 ring_buffer_attach(event, rb);
6939
6940 rcu_assign_pointer(event->rb, rb);
6941
6942 if (old_rb) {
6943 ring_buffer_put(old_rb);
6944 /*
6945 * Since we detached before setting the new rb, so that we
6946 * could attach the new rb, we could have missed a wakeup.
6947 * Provide it now.
6948 */
6949 wake_up_all(&event->waitq);
6950 }
6951
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006952 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006953unlock:
6954 mutex_unlock(&event->mmap_mutex);
6955
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006956out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006957 return ret;
6958}
6959
6960/**
6961 * sys_perf_event_open - open a performance event, associate it to a task/cpu
6962 *
6963 * @attr_uptr: event_id type attributes for monitoring/sampling
6964 * @pid: target pid
6965 * @cpu: target cpu
6966 * @group_fd: group leader event fd
6967 */
6968SYSCALL_DEFINE5(perf_event_open,
6969 struct perf_event_attr __user *, attr_uptr,
6970 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
6971{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006972 struct perf_event *group_leader = NULL, *output_event = NULL;
6973 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006974 struct perf_event_attr attr;
6975 struct perf_event_context *ctx;
6976 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04006977 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07006978 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006979 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04006980 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006981 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006982 int err;
6983
6984 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02006985 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006986 return -EINVAL;
6987
6988 err = perf_copy_attr(attr_uptr, &attr);
6989 if (err)
6990 return err;
6991
6992 if (!attr.exclude_kernel) {
6993 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6994 return -EACCES;
6995 }
6996
6997 if (attr.freq) {
6998 if (attr.sample_freq > sysctl_perf_event_sample_rate)
6999 return -EINVAL;
7000 }
7001
Stephane Eraniane5d13672011-02-14 11:20:01 +02007002 /*
7003 * In cgroup mode, the pid argument is used to pass the fd
7004 * opened to the cgroup directory in cgroupfs. The cpu argument
7005 * designates the cpu on which to monitor threads from that
7006 * cgroup.
7007 */
7008 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
7009 return -EINVAL;
7010
Al Viroab72a702012-08-21 09:40:46 -04007011 event_fd = get_unused_fd();
Al Viroea635c62010-05-26 17:40:29 -04007012 if (event_fd < 0)
7013 return event_fd;
7014
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007015 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04007016 err = perf_fget_light(group_fd, &group);
7017 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02007018 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04007019 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007020 if (flags & PERF_FLAG_FD_OUTPUT)
7021 output_event = group_leader;
7022 if (flags & PERF_FLAG_FD_NO_GROUP)
7023 group_leader = NULL;
7024 }
7025
Stephane Eraniane5d13672011-02-14 11:20:01 +02007026 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007027 task = find_lively_task_by_vpid(pid);
7028 if (IS_ERR(task)) {
7029 err = PTR_ERR(task);
7030 goto err_group_fd;
7031 }
7032 }
7033
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007034 get_online_cpus();
7035
Avi Kivity4dc0da82011-06-29 18:42:35 +03007036 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
7037 NULL, NULL);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02007038 if (IS_ERR(event)) {
7039 err = PTR_ERR(event);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007040 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02007041 }
7042
Stephane Eraniane5d13672011-02-14 11:20:01 +02007043 if (flags & PERF_FLAG_PID_CGROUP) {
7044 err = perf_cgroup_connect(pid, event, &attr, group_leader);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007045 if (err) {
7046 __free_event(event);
7047 goto err_task;
7048 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02007049 }
7050
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007051 account_event(event);
7052
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007053 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007054 * Special case software events and allow them to be part of
7055 * any hardware group.
7056 */
7057 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007058
7059 if (group_leader &&
7060 (is_software_event(event) != is_software_event(group_leader))) {
7061 if (is_software_event(event)) {
7062 /*
7063 * If event and group_leader are not both a software
7064 * event, and event is, then group leader is not.
7065 *
7066 * Allow the addition of software events to !software
7067 * groups, this is safe because software events never
7068 * fail to schedule.
7069 */
7070 pmu = group_leader->pmu;
7071 } else if (is_software_event(group_leader) &&
7072 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
7073 /*
7074 * In case the group is a pure software group, and we
7075 * try to add a hardware event, move the whole group to
7076 * the hardware context.
7077 */
7078 move_group = 1;
7079 }
7080 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007081
7082 /*
7083 * Get the target context (task or percpu):
7084 */
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007085 ctx = find_get_context(pmu, task, event->cpu);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007086 if (IS_ERR(ctx)) {
7087 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007088 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007089 }
7090
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02007091 if (task) {
7092 put_task_struct(task);
7093 task = NULL;
7094 }
7095
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007096 /*
7097 * Look up the group leader (we will attach this event to it):
7098 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007099 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007100 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007101
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007102 /*
7103 * Do not allow a recursive hierarchy (this new sibling
7104 * becoming part of another group-sibling):
7105 */
7106 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007107 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007108 /*
7109 * Do not allow to attach to a group in a different
7110 * task or CPU context:
7111 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007112 if (move_group) {
7113 if (group_leader->ctx->type != ctx->type)
7114 goto err_context;
7115 } else {
7116 if (group_leader->ctx != ctx)
7117 goto err_context;
7118 }
7119
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007120 /*
7121 * Only a group leader can be exclusive or pinned
7122 */
7123 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007124 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007125 }
7126
7127 if (output_event) {
7128 err = perf_event_set_output(event, output_event);
7129 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007130 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007131 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007132
Al Viroea635c62010-05-26 17:40:29 -04007133 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
7134 if (IS_ERR(event_file)) {
7135 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007136 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04007137 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007138
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007139 if (move_group) {
7140 struct perf_event_context *gctx = group_leader->ctx;
7141
7142 mutex_lock(&gctx->mutex);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007143 perf_remove_from_context(group_leader);
Jiri Olsa0231bb52013-02-01 11:23:45 +01007144
7145 /*
7146 * Removing from the context ends up with disabled
7147 * event. What we want here is event in the initial
7148 * startup state, ready to be add into new context.
7149 */
7150 perf_event__state_init(group_leader);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007151 list_for_each_entry(sibling, &group_leader->sibling_list,
7152 group_entry) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007153 perf_remove_from_context(sibling);
Jiri Olsa0231bb52013-02-01 11:23:45 +01007154 perf_event__state_init(sibling);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007155 put_ctx(gctx);
7156 }
7157 mutex_unlock(&gctx->mutex);
7158 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007159 }
7160
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007161 WARN_ON_ONCE(ctx->parent_ctx);
7162 mutex_lock(&ctx->mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007163
7164 if (move_group) {
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007165 synchronize_rcu();
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007166 perf_install_in_context(ctx, group_leader, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007167 get_ctx(ctx);
7168 list_for_each_entry(sibling, &group_leader->sibling_list,
7169 group_entry) {
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007170 perf_install_in_context(ctx, sibling, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007171 get_ctx(ctx);
7172 }
7173 }
7174
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007175 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007176 perf_unpin_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007177 mutex_unlock(&ctx->mutex);
7178
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007179 put_online_cpus();
7180
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007181 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01007182
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007183 mutex_lock(&current->perf_event_mutex);
7184 list_add_tail(&event->owner_entry, &current->perf_event_list);
7185 mutex_unlock(&current->perf_event_mutex);
7186
Peter Zijlstra8a495422010-05-27 15:47:49 +02007187 /*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007188 * Precalculate sample_data sizes
7189 */
7190 perf_event__header_size(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007191 perf_event__id_header_size(event);
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007192
7193 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02007194 * Drop the reference on the group_event after placing the
7195 * new event on the sibling_list. This ensures destruction
7196 * of the group leader will find the pointer to itself in
7197 * perf_group_detach().
7198 */
Al Viro2903ff02012-08-28 12:52:22 -04007199 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007200 fd_install(event_fd, event_file);
7201 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007202
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007203err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007204 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04007205 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007206err_alloc:
7207 free_event(event);
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02007208err_task:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007209 put_online_cpus();
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02007210 if (task)
7211 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007212err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04007213 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007214err_fd:
7215 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007216 return err;
7217}
7218
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007219/**
7220 * perf_event_create_kernel_counter
7221 *
7222 * @attr: attributes of the counter to create
7223 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07007224 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007225 */
7226struct perf_event *
7227perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07007228 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007229 perf_overflow_handler_t overflow_handler,
7230 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007231{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007232 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007233 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007234 int err;
7235
7236 /*
7237 * Get the target context (task or percpu):
7238 */
7239
Avi Kivity4dc0da82011-06-29 18:42:35 +03007240 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
7241 overflow_handler, context);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007242 if (IS_ERR(event)) {
7243 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007244 goto err;
7245 }
7246
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007247 account_event(event);
7248
Matt Helsley38a81da2010-09-13 13:01:20 -07007249 ctx = find_get_context(event->pmu, task, cpu);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007250 if (IS_ERR(ctx)) {
7251 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007252 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007253 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007254
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007255 WARN_ON_ONCE(ctx->parent_ctx);
7256 mutex_lock(&ctx->mutex);
7257 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007258 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007259 mutex_unlock(&ctx->mutex);
7260
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007261 return event;
7262
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007263err_free:
7264 free_event(event);
7265err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007266 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007267}
7268EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
7269
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007270void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
7271{
7272 struct perf_event_context *src_ctx;
7273 struct perf_event_context *dst_ctx;
7274 struct perf_event *event, *tmp;
7275 LIST_HEAD(events);
7276
7277 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
7278 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
7279
7280 mutex_lock(&src_ctx->mutex);
7281 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
7282 event_entry) {
7283 perf_remove_from_context(event);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02007284 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007285 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +02007286 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007287 }
7288 mutex_unlock(&src_ctx->mutex);
7289
7290 synchronize_rcu();
7291
7292 mutex_lock(&dst_ctx->mutex);
Peter Zijlstra98861672013-10-03 16:02:23 +02007293 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
7294 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007295 if (event->state >= PERF_EVENT_STATE_OFF)
7296 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02007297 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007298 perf_install_in_context(dst_ctx, event, dst_cpu);
7299 get_ctx(dst_ctx);
7300 }
7301 mutex_unlock(&dst_ctx->mutex);
7302}
7303EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
7304
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007305static void sync_child_event(struct perf_event *child_event,
7306 struct task_struct *child)
7307{
7308 struct perf_event *parent_event = child_event->parent;
7309 u64 child_val;
7310
7311 if (child_event->attr.inherit_stat)
7312 perf_event_read_event(child_event, child);
7313
Peter Zijlstrab5e58792010-05-21 14:43:12 +02007314 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007315
7316 /*
7317 * Add back the child's count to the parent's count:
7318 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02007319 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007320 atomic64_add(child_event->total_time_enabled,
7321 &parent_event->child_total_time_enabled);
7322 atomic64_add(child_event->total_time_running,
7323 &parent_event->child_total_time_running);
7324
7325 /*
7326 * Remove this event from the parent's list
7327 */
7328 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7329 mutex_lock(&parent_event->child_mutex);
7330 list_del_init(&child_event->child_list);
7331 mutex_unlock(&parent_event->child_mutex);
7332
7333 /*
7334 * Release the parent event, if this was the last
7335 * reference to it.
7336 */
Al Viroa6fa9412012-08-20 14:59:25 +01007337 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007338}
7339
7340static void
7341__perf_event_exit_task(struct perf_event *child_event,
7342 struct perf_event_context *child_ctx,
7343 struct task_struct *child)
7344{
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007345 if (child_event->parent) {
7346 raw_spin_lock_irq(&child_ctx->lock);
7347 perf_group_detach(child_event);
7348 raw_spin_unlock_irq(&child_ctx->lock);
7349 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007350
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007351 perf_remove_from_context(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007352
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007353 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007354 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007355 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007356 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007357 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007358 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007359 sync_child_event(child_event, child);
7360 free_event(child_event);
7361 }
7362}
7363
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007364static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007365{
7366 struct perf_event *child_event, *tmp;
7367 struct perf_event_context *child_ctx;
7368 unsigned long flags;
7369
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007370 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007371 perf_event_task(child, NULL, 0);
7372 return;
7373 }
7374
7375 local_irq_save(flags);
7376 /*
7377 * We can't reschedule here because interrupts are disabled,
7378 * and either child is current or it is a task that can't be
7379 * scheduled, so we are now safe from rescheduling changing
7380 * our context.
7381 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01007382 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007383
7384 /*
7385 * Take the context lock here so that if find_get_context is
7386 * reading child->perf_event_ctxp, we wait until it has
7387 * incremented the context's refcount before we do put_ctx below.
7388 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007389 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02007390 task_ctx_sched_out(child_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007391 child->perf_event_ctxp[ctxn] = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007392 /*
7393 * If this context is a clone; unclone it so it can't get
7394 * swapped to another process while we're removing all
7395 * the events from it.
7396 */
7397 unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01007398 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007399 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007400
7401 /*
7402 * Report the task dead after unscheduling the events so that we
7403 * won't get any samples after PERF_RECORD_EXIT. We can however still
7404 * get a few PERF_RECORD_READ events.
7405 */
7406 perf_event_task(child, child_ctx, 0);
7407
7408 /*
7409 * We can recurse on the same lock type through:
7410 *
7411 * __perf_event_exit_task()
7412 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01007413 * put_event()
7414 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007415 *
7416 * But since its the parent context it won't be the same instance.
7417 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02007418 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007419
7420again:
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007421 list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
7422 group_entry)
7423 __perf_event_exit_task(child_event, child_ctx, child);
7424
7425 list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007426 group_entry)
7427 __perf_event_exit_task(child_event, child_ctx, child);
7428
7429 /*
7430 * If the last event was a group event, it will have appended all
7431 * its siblings to the list, but we obtained 'tmp' before that which
7432 * will still point to the list head terminating the iteration.
7433 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007434 if (!list_empty(&child_ctx->pinned_groups) ||
7435 !list_empty(&child_ctx->flexible_groups))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007436 goto again;
7437
7438 mutex_unlock(&child_ctx->mutex);
7439
7440 put_ctx(child_ctx);
7441}
7442
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007443/*
7444 * When a child task exits, feed back event values to parent events.
7445 */
7446void perf_event_exit_task(struct task_struct *child)
7447{
Peter Zijlstra88821352010-11-09 19:01:43 +01007448 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007449 int ctxn;
7450
Peter Zijlstra88821352010-11-09 19:01:43 +01007451 mutex_lock(&child->perf_event_mutex);
7452 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
7453 owner_entry) {
7454 list_del_init(&event->owner_entry);
7455
7456 /*
7457 * Ensure the list deletion is visible before we clear
7458 * the owner, closes a race against perf_release() where
7459 * we need to serialize on the owner->perf_event_mutex.
7460 */
7461 smp_wmb();
7462 event->owner = NULL;
7463 }
7464 mutex_unlock(&child->perf_event_mutex);
7465
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007466 for_each_task_context_nr(ctxn)
7467 perf_event_exit_task_context(child, ctxn);
7468}
7469
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007470static void perf_free_event(struct perf_event *event,
7471 struct perf_event_context *ctx)
7472{
7473 struct perf_event *parent = event->parent;
7474
7475 if (WARN_ON_ONCE(!parent))
7476 return;
7477
7478 mutex_lock(&parent->child_mutex);
7479 list_del_init(&event->child_list);
7480 mutex_unlock(&parent->child_mutex);
7481
Al Viroa6fa9412012-08-20 14:59:25 +01007482 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007483
Peter Zijlstra8a495422010-05-27 15:47:49 +02007484 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007485 list_del_event(event, ctx);
7486 free_event(event);
7487}
7488
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007489/*
7490 * free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007491 * perf_event_init_task below, used by fork() in case of fail.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007492 */
7493void perf_event_free_task(struct task_struct *task)
7494{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007495 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007496 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007497 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007498
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007499 for_each_task_context_nr(ctxn) {
7500 ctx = task->perf_event_ctxp[ctxn];
7501 if (!ctx)
7502 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007503
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007504 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007505again:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007506 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
7507 group_entry)
7508 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007509
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007510 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
7511 group_entry)
7512 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007513
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007514 if (!list_empty(&ctx->pinned_groups) ||
7515 !list_empty(&ctx->flexible_groups))
7516 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007517
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007518 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007519
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007520 put_ctx(ctx);
7521 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007522}
7523
Peter Zijlstra4e231c72010-09-09 21:01:59 +02007524void perf_event_delayed_put(struct task_struct *task)
7525{
7526 int ctxn;
7527
7528 for_each_task_context_nr(ctxn)
7529 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
7530}
7531
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007532/*
7533 * inherit a event from parent task to child task:
7534 */
7535static struct perf_event *
7536inherit_event(struct perf_event *parent_event,
7537 struct task_struct *parent,
7538 struct perf_event_context *parent_ctx,
7539 struct task_struct *child,
7540 struct perf_event *group_leader,
7541 struct perf_event_context *child_ctx)
7542{
7543 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02007544 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007545
7546 /*
7547 * Instead of creating recursive hierarchies of events,
7548 * we link inherited events back to the original parent,
7549 * which has a filp for sure, which we use as the reference
7550 * count:
7551 */
7552 if (parent_event->parent)
7553 parent_event = parent_event->parent;
7554
7555 child_event = perf_event_alloc(&parent_event->attr,
7556 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007557 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007558 group_leader, parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007559 NULL, NULL);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007560 if (IS_ERR(child_event))
7561 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01007562
7563 if (!atomic_long_inc_not_zero(&parent_event->refcount)) {
7564 free_event(child_event);
7565 return NULL;
7566 }
7567
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007568 get_ctx(child_ctx);
7569
7570 /*
7571 * Make the child state follow the state of the parent event,
7572 * not its attr.disabled bit. We hold the parent's mutex,
7573 * so we won't race with perf_event_{en, dis}able_family.
7574 */
7575 if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
7576 child_event->state = PERF_EVENT_STATE_INACTIVE;
7577 else
7578 child_event->state = PERF_EVENT_STATE_OFF;
7579
7580 if (parent_event->attr.freq) {
7581 u64 sample_period = parent_event->hw.sample_period;
7582 struct hw_perf_event *hwc = &child_event->hw;
7583
7584 hwc->sample_period = sample_period;
7585 hwc->last_period = sample_period;
7586
7587 local64_set(&hwc->period_left, sample_period);
7588 }
7589
7590 child_event->ctx = child_ctx;
7591 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007592 child_event->overflow_handler_context
7593 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007594
7595 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02007596 * Precalculate sample_data sizes
7597 */
7598 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007599 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02007600
7601 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007602 * Link it up in the child's context:
7603 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02007604 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007605 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02007606 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007607
7608 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007609 * Link this into the parent event's child list
7610 */
7611 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7612 mutex_lock(&parent_event->child_mutex);
7613 list_add_tail(&child_event->child_list, &parent_event->child_list);
7614 mutex_unlock(&parent_event->child_mutex);
7615
7616 return child_event;
7617}
7618
7619static int inherit_group(struct perf_event *parent_event,
7620 struct task_struct *parent,
7621 struct perf_event_context *parent_ctx,
7622 struct task_struct *child,
7623 struct perf_event_context *child_ctx)
7624{
7625 struct perf_event *leader;
7626 struct perf_event *sub;
7627 struct perf_event *child_ctr;
7628
7629 leader = inherit_event(parent_event, parent, parent_ctx,
7630 child, NULL, child_ctx);
7631 if (IS_ERR(leader))
7632 return PTR_ERR(leader);
7633 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
7634 child_ctr = inherit_event(sub, parent, parent_ctx,
7635 child, leader, child_ctx);
7636 if (IS_ERR(child_ctr))
7637 return PTR_ERR(child_ctr);
7638 }
7639 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007640}
7641
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007642static int
7643inherit_task_group(struct perf_event *event, struct task_struct *parent,
7644 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007645 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007646 int *inherited_all)
7647{
7648 int ret;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007649 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007650
7651 if (!event->attr.inherit) {
7652 *inherited_all = 0;
7653 return 0;
7654 }
7655
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007656 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007657 if (!child_ctx) {
7658 /*
7659 * This is executed from the parent task context, so
7660 * inherit events that have been marked for cloning.
7661 * First allocate and initialize a context for the
7662 * child.
7663 */
7664
Jiri Olsa734df5a2013-07-09 17:44:10 +02007665 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007666 if (!child_ctx)
7667 return -ENOMEM;
7668
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007669 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007670 }
7671
7672 ret = inherit_group(event, parent, parent_ctx,
7673 child, child_ctx);
7674
7675 if (ret)
7676 *inherited_all = 0;
7677
7678 return ret;
7679}
7680
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007681/*
7682 * Initialize the perf_event context in task_struct
7683 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007684int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007685{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007686 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007687 struct perf_event_context *cloned_ctx;
7688 struct perf_event *event;
7689 struct task_struct *parent = current;
7690 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007691 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007692 int ret = 0;
7693
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007694 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007695 return 0;
7696
7697 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007698 * If the parent's context is a clone, pin it so it won't get
7699 * swapped under us.
7700 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007701 parent_ctx = perf_pin_task_context(parent, ctxn);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007702
7703 /*
7704 * No need to check if parent_ctx != NULL here; since we saw
7705 * it non-NULL earlier, the only reason for it to become NULL
7706 * is if we exit, and since we're currently in the middle of
7707 * a fork we can't be exiting at the same time.
7708 */
7709
7710 /*
7711 * Lock the parent list. No need to lock the child - not PID
7712 * hashed yet and not running, so nobody can access it.
7713 */
7714 mutex_lock(&parent_ctx->mutex);
7715
7716 /*
7717 * We dont have to disable NMIs - we are only looking at
7718 * the list, not manipulating it:
7719 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007720 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007721 ret = inherit_task_group(event, parent, parent_ctx,
7722 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007723 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007724 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007725 }
7726
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007727 /*
7728 * We can't hold ctx->lock when iterating the ->flexible_group list due
7729 * to allocations, but we need to prevent rotation because
7730 * rotate_ctx() will change the list from interrupt context.
7731 */
7732 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7733 parent_ctx->rotate_disable = 1;
7734 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
7735
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007736 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007737 ret = inherit_task_group(event, parent, parent_ctx,
7738 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007739 if (ret)
7740 break;
7741 }
7742
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007743 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7744 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007745
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007746 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007747
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01007748 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007749 /*
7750 * Mark the child context as a clone of the parent
7751 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007752 *
7753 * Note that if the parent is a clone, the holding of
7754 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007755 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007756 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007757 if (cloned_ctx) {
7758 child_ctx->parent_ctx = cloned_ctx;
7759 child_ctx->parent_gen = parent_ctx->parent_gen;
7760 } else {
7761 child_ctx->parent_ctx = parent_ctx;
7762 child_ctx->parent_gen = parent_ctx->generation;
7763 }
7764 get_ctx(child_ctx->parent_ctx);
7765 }
7766
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007767 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007768 mutex_unlock(&parent_ctx->mutex);
7769
7770 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007771 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007772
7773 return ret;
7774}
7775
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007776/*
7777 * Initialize the perf_event context in task_struct
7778 */
7779int perf_event_init_task(struct task_struct *child)
7780{
7781 int ctxn, ret;
7782
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01007783 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
7784 mutex_init(&child->perf_event_mutex);
7785 INIT_LIST_HEAD(&child->perf_event_list);
7786
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007787 for_each_task_context_nr(ctxn) {
7788 ret = perf_event_init_context(child, ctxn);
7789 if (ret)
7790 return ret;
7791 }
7792
7793 return 0;
7794}
7795
Paul Mackerras220b1402010-03-10 20:45:52 +11007796static void __init perf_event_init_all_cpus(void)
7797{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007798 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11007799 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11007800
7801 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007802 swhash = &per_cpu(swevent_htable, cpu);
7803 mutex_init(&swhash->hlist_mutex);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007804 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11007805 }
7806}
7807
Paul Gortmaker0db06282013-06-19 14:53:51 -04007808static void perf_event_init_cpu(int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007809{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007810 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007811
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007812 mutex_lock(&swhash->hlist_mutex);
Linus Torvalds4536e4d2011-11-03 07:44:04 -07007813 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007814 struct swevent_hlist *hlist;
7815
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007816 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
7817 WARN_ON(!hlist);
7818 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007819 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007820 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007821}
7822
Peter Zijlstrac2774432010-12-08 15:29:02 +01007823#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007824static void perf_pmu_rotate_stop(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007825{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007826 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
7827
7828 WARN_ON(!irqs_disabled());
7829
7830 list_del_init(&cpuctx->rotation_list);
7831}
7832
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007833static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007834{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007835 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007836 struct perf_event *event, *tmp;
7837
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007838 perf_pmu_rotate_stop(ctx->pmu);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02007839
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007840 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007841 __perf_remove_from_context(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007842 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007843 __perf_remove_from_context(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007844}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007845
7846static void perf_event_exit_cpu_context(int cpu)
7847{
7848 struct perf_event_context *ctx;
7849 struct pmu *pmu;
7850 int idx;
7851
7852 idx = srcu_read_lock(&pmus_srcu);
7853 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02007854 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007855
7856 mutex_lock(&ctx->mutex);
7857 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
7858 mutex_unlock(&ctx->mutex);
7859 }
7860 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007861}
7862
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007863static void perf_event_exit_cpu(int cpu)
7864{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007865 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007866
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007867 mutex_lock(&swhash->hlist_mutex);
7868 swevent_hlist_release(swhash);
7869 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007870
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007871 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007872}
7873#else
7874static inline void perf_event_exit_cpu(int cpu) { }
7875#endif
7876
Peter Zijlstrac2774432010-12-08 15:29:02 +01007877static int
7878perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
7879{
7880 int cpu;
7881
7882 for_each_online_cpu(cpu)
7883 perf_event_exit_cpu(cpu);
7884
7885 return NOTIFY_OK;
7886}
7887
7888/*
7889 * Run the perf reboot notifier at the very last possible moment so that
7890 * the generic watchdog code runs as long as possible.
7891 */
7892static struct notifier_block perf_reboot_notifier = {
7893 .notifier_call = perf_reboot,
7894 .priority = INT_MIN,
7895};
7896
Paul Gortmaker0db06282013-06-19 14:53:51 -04007897static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007898perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
7899{
7900 unsigned int cpu = (long)hcpu;
7901
Linus Torvalds4536e4d2011-11-03 07:44:04 -07007902 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007903
7904 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02007905 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007906 perf_event_init_cpu(cpu);
7907 break;
7908
Peter Zijlstra5e116372010-06-11 13:35:08 +02007909 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007910 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007911 perf_event_exit_cpu(cpu);
7912 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007913 default:
7914 break;
7915 }
7916
7917 return NOTIFY_OK;
7918}
7919
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007920void __init perf_event_init(void)
7921{
Jason Wessel3c502e72010-11-04 17:33:01 -05007922 int ret;
7923
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007924 idr_init(&pmu_idr);
7925
Paul Mackerras220b1402010-03-10 20:45:52 +11007926 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007927 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007928 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
7929 perf_pmu_register(&perf_cpu_clock, NULL, -1);
7930 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007931 perf_tp_register();
7932 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01007933 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05007934
7935 ret = init_hw_breakpoint();
7936 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02007937
7938 /* do not patch jump label more than once per second */
7939 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01007940
7941 /*
7942 * Build time assertion that we keep the data_head at the intended
7943 * location. IOW, validation we got the __reserved[] size right.
7944 */
7945 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
7946 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007947}
Peter Zijlstraabe43402010-11-17 23:17:37 +01007948
7949static int __init perf_event_sysfs_init(void)
7950{
7951 struct pmu *pmu;
7952 int ret;
7953
7954 mutex_lock(&pmus_lock);
7955
7956 ret = bus_register(&pmu_bus);
7957 if (ret)
7958 goto unlock;
7959
7960 list_for_each_entry(pmu, &pmus, entry) {
7961 if (!pmu->name || pmu->type < 0)
7962 continue;
7963
7964 ret = pmu_dev_alloc(pmu);
7965 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
7966 }
7967 pmu_bus_running = 1;
7968 ret = 0;
7969
7970unlock:
7971 mutex_unlock(&pmus_lock);
7972
7973 return ret;
7974}
7975device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007976
7977#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -04007978static struct cgroup_subsys_state *
7979perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007980{
7981 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02007982
Li Zefan1b15d052011-03-03 14:26:06 +08007983 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007984 if (!jc)
7985 return ERR_PTR(-ENOMEM);
7986
Stephane Eraniane5d13672011-02-14 11:20:01 +02007987 jc->info = alloc_percpu(struct perf_cgroup_info);
7988 if (!jc->info) {
7989 kfree(jc);
7990 return ERR_PTR(-ENOMEM);
7991 }
7992
Stephane Eraniane5d13672011-02-14 11:20:01 +02007993 return &jc->css;
7994}
7995
Tejun Heoeb954192013-08-08 20:11:23 -04007996static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007997{
Tejun Heoeb954192013-08-08 20:11:23 -04007998 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
7999
Stephane Eraniane5d13672011-02-14 11:20:01 +02008000 free_percpu(jc->info);
8001 kfree(jc);
8002}
8003
8004static int __perf_cgroup_move(void *info)
8005{
8006 struct task_struct *task = info;
8007 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
8008 return 0;
8009}
8010
Tejun Heoeb954192013-08-08 20:11:23 -04008011static void perf_cgroup_attach(struct cgroup_subsys_state *css,
8012 struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008013{
Tejun Heobb9d97b2011-12-12 18:12:21 -08008014 struct task_struct *task;
8015
Tejun Heod99c8722013-08-08 20:11:27 -04008016 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08008017 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008018}
8019
Tejun Heoeb954192013-08-08 20:11:23 -04008020static void perf_cgroup_exit(struct cgroup_subsys_state *css,
8021 struct cgroup_subsys_state *old_css,
Li Zefan761b3ef2012-01-31 13:47:36 +08008022 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008023{
8024 /*
8025 * cgroup_exit() is called in the copy_process() failure path.
8026 * Ignore this case since the task hasn't ran yet, this avoids
8027 * trying to poke a half freed task state from generic code.
8028 */
8029 if (!(task->flags & PF_EXITING))
8030 return;
8031
Tejun Heobb9d97b2011-12-12 18:12:21 -08008032 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008033}
8034
8035struct cgroup_subsys perf_subsys = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +02008036 .name = "perf_event",
8037 .subsys_id = perf_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08008038 .css_alloc = perf_cgroup_css_alloc,
8039 .css_free = perf_cgroup_css_free,
Ingo Molnare7e7ee22011-05-04 08:42:29 +02008040 .exit = perf_cgroup_exit,
Tejun Heobb9d97b2011-12-12 18:12:21 -08008041 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +02008042};
8043#endif /* CONFIG_CGROUP_PERF */