blob: f3e9dce39bc919b8c812be7593bdb45ee0a65f7c [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;
148
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200149static LIST_HEAD(pmus);
150static DEFINE_MUTEX(pmus_lock);
151static struct srcu_struct pmus_srcu;
152
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200153/*
154 * perf event paranoia level:
155 * -1 - not paranoid at all
156 * 0 - disallow raw tracepoint access for unpriv
157 * 1 - disallow cpu events for unpriv
158 * 2 - disallow kernel profiling for unpriv
159 */
160int sysctl_perf_event_paranoid __read_mostly = 1;
161
Frederic Weisbecker20443382011-03-31 03:33:29 +0200162/* Minimum for 512 kiB + 1 user control page */
163int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200164
165/*
166 * max perf event sample rate
167 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700168#define DEFAULT_MAX_SAMPLE_RATE 100000
169#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
170#define DEFAULT_CPU_TIME_MAX_PERCENT 25
171
172int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
173
174static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
175static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
176
177static atomic_t perf_sample_allowed_ns __read_mostly =
178 ATOMIC_INIT( DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100);
179
180void update_perf_cpu_limits(void)
181{
182 u64 tmp = perf_sample_period_ns;
183
184 tmp *= sysctl_perf_cpu_time_max_percent;
Stephane Eraniane5302922013-07-05 00:30:11 +0200185 do_div(tmp, 100);
Dave Hansen14c63f12013-06-21 08:51:36 -0700186 atomic_set(&perf_sample_allowed_ns, tmp);
187}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100188
Stephane Eranian9e630202013-04-03 14:21:33 +0200189static int perf_rotate_context(struct perf_cpu_context *cpuctx);
190
Peter Zijlstra163ec432011-02-16 11:22:34 +0100191int perf_proc_update_handler(struct ctl_table *table, int write,
192 void __user *buffer, size_t *lenp,
193 loff_t *ppos)
194{
195 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
196
197 if (ret || !write)
198 return ret;
199
200 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700201 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
202 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100203
204 return 0;
205}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200206
Dave Hansen14c63f12013-06-21 08:51:36 -0700207int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
208
209int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
210 void __user *buffer, size_t *lenp,
211 loff_t *ppos)
212{
213 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
214
215 if (ret || !write)
216 return ret;
217
218 update_perf_cpu_limits();
219
220 return 0;
221}
222
223/*
224 * perf samples are done in some very critical code paths (NMIs).
225 * If they take too much CPU time, the system can lock up and not
226 * get any real work done. This will drop the sample rate when
227 * we detect that events are taking too long.
228 */
229#define NR_ACCUMULATED_SAMPLES 128
230DEFINE_PER_CPU(u64, running_sample_length);
231
232void perf_sample_event_took(u64 sample_len_ns)
233{
234 u64 avg_local_sample_len;
Stephane Eraniane5302922013-07-05 00:30:11 +0200235 u64 local_samples_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700236
237 if (atomic_read(&perf_sample_allowed_ns) == 0)
238 return;
239
240 /* decay the counter by 1 average sample */
241 local_samples_len = __get_cpu_var(running_sample_length);
242 local_samples_len -= local_samples_len/NR_ACCUMULATED_SAMPLES;
243 local_samples_len += sample_len_ns;
244 __get_cpu_var(running_sample_length) = local_samples_len;
245
246 /*
247 * note: this will be biased artifically low until we have
248 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
249 * from having to maintain a count.
250 */
251 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
252
253 if (avg_local_sample_len <= atomic_read(&perf_sample_allowed_ns))
254 return;
255
256 if (max_samples_per_tick <= 1)
257 return;
258
259 max_samples_per_tick = DIV_ROUND_UP(max_samples_per_tick, 2);
260 sysctl_perf_event_sample_rate = max_samples_per_tick * HZ;
261 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
262
263 printk_ratelimited(KERN_WARNING
264 "perf samples too long (%lld > %d), lowering "
265 "kernel.perf_event_max_sample_rate to %d\n",
266 avg_local_sample_len,
267 atomic_read(&perf_sample_allowed_ns),
268 sysctl_perf_event_sample_rate);
269
270 update_perf_cpu_limits();
271}
272
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200273static atomic64_t perf_event_id;
274
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200275static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
276 enum event_type_t event_type);
277
278static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200279 enum event_type_t event_type,
280 struct task_struct *task);
281
282static void update_context_time(struct perf_event_context *ctx);
283static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200284
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200285void __weak perf_event_print_debug(void) { }
286
Matt Fleming84c79912010-10-03 21:41:13 +0100287extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200288{
Matt Fleming84c79912010-10-03 21:41:13 +0100289 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200290}
291
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200292static inline u64 perf_clock(void)
293{
294 return local_clock();
295}
296
Stephane Eraniane5d13672011-02-14 11:20:01 +0200297static inline struct perf_cpu_context *
298__get_cpu_context(struct perf_event_context *ctx)
299{
300 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
301}
302
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200303static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
304 struct perf_event_context *ctx)
305{
306 raw_spin_lock(&cpuctx->ctx.lock);
307 if (ctx)
308 raw_spin_lock(&ctx->lock);
309}
310
311static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
312 struct perf_event_context *ctx)
313{
314 if (ctx)
315 raw_spin_unlock(&ctx->lock);
316 raw_spin_unlock(&cpuctx->ctx.lock);
317}
318
Stephane Eraniane5d13672011-02-14 11:20:01 +0200319#ifdef CONFIG_CGROUP_PERF
320
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200321/*
Li Zefan877c6852013-03-05 11:38:08 +0800322 * perf_cgroup_info keeps track of time_enabled for a cgroup.
323 * This is a per-cpu dynamically allocated data structure.
324 */
325struct perf_cgroup_info {
326 u64 time;
327 u64 timestamp;
328};
329
330struct perf_cgroup {
331 struct cgroup_subsys_state css;
Namhyung Kim86e213e2013-03-18 18:56:34 +0900332 struct perf_cgroup_info __percpu *info;
Li Zefan877c6852013-03-05 11:38:08 +0800333};
334
335/*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200336 * Must ensure cgroup is pinned (css_get) before calling
337 * this function. In other words, we cannot call this function
338 * if there is no cgroup event for the current CPU context.
339 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200340static inline struct perf_cgroup *
341perf_cgroup_from_task(struct task_struct *task)
342{
343 return container_of(task_subsys_state(task, perf_subsys_id),
344 struct perf_cgroup, css);
345}
346
347static inline bool
348perf_cgroup_match(struct perf_event *event)
349{
350 struct perf_event_context *ctx = event->ctx;
351 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
352
Tejun Heoef824fa2013-04-08 19:00:38 -0700353 /* @event doesn't care about cgroup */
354 if (!event->cgrp)
355 return true;
356
357 /* wants specific cgroup scope but @cpuctx isn't associated with any */
358 if (!cpuctx->cgrp)
359 return false;
360
361 /*
362 * Cgroup scoping is recursive. An event enabled for a cgroup is
363 * also enabled for all its descendant cgroups. If @cpuctx's
364 * cgroup is a descendant of @event's (the test covers identity
365 * case), it's a match.
366 */
367 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
368 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200369}
370
Salman Qazi9c5da092012-06-14 15:31:09 -0700371static inline bool perf_tryget_cgroup(struct perf_event *event)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200372{
Salman Qazi9c5da092012-06-14 15:31:09 -0700373 return css_tryget(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200374}
375
376static inline void perf_put_cgroup(struct perf_event *event)
377{
378 css_put(&event->cgrp->css);
379}
380
381static inline void perf_detach_cgroup(struct perf_event *event)
382{
383 perf_put_cgroup(event);
384 event->cgrp = NULL;
385}
386
387static inline int is_cgroup_event(struct perf_event *event)
388{
389 return event->cgrp != NULL;
390}
391
392static inline u64 perf_cgroup_event_time(struct perf_event *event)
393{
394 struct perf_cgroup_info *t;
395
396 t = per_cpu_ptr(event->cgrp->info, event->cpu);
397 return t->time;
398}
399
400static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
401{
402 struct perf_cgroup_info *info;
403 u64 now;
404
405 now = perf_clock();
406
407 info = this_cpu_ptr(cgrp->info);
408
409 info->time += now - info->timestamp;
410 info->timestamp = now;
411}
412
413static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
414{
415 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
416 if (cgrp_out)
417 __update_cgrp_time(cgrp_out);
418}
419
420static inline void update_cgrp_time_from_event(struct perf_event *event)
421{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200422 struct perf_cgroup *cgrp;
423
Stephane Eraniane5d13672011-02-14 11:20:01 +0200424 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200425 * ensure we access cgroup data only when needed and
426 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200427 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200428 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200429 return;
430
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200431 cgrp = perf_cgroup_from_task(current);
432 /*
433 * Do not update time when cgroup is not active
434 */
435 if (cgrp == event->cgrp)
436 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200437}
438
439static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200440perf_cgroup_set_timestamp(struct task_struct *task,
441 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200442{
443 struct perf_cgroup *cgrp;
444 struct perf_cgroup_info *info;
445
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200446 /*
447 * ctx->lock held by caller
448 * ensure we do not access cgroup data
449 * unless we have the cgroup pinned (css_get)
450 */
451 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200452 return;
453
454 cgrp = perf_cgroup_from_task(task);
455 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200456 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200457}
458
459#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
460#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
461
462/*
463 * reschedule events based on the cgroup constraint of task.
464 *
465 * mode SWOUT : schedule out everything
466 * mode SWIN : schedule in based on cgroup for next
467 */
468void perf_cgroup_switch(struct task_struct *task, int mode)
469{
470 struct perf_cpu_context *cpuctx;
471 struct pmu *pmu;
472 unsigned long flags;
473
474 /*
475 * disable interrupts to avoid geting nr_cgroup
476 * changes via __perf_event_disable(). Also
477 * avoids preemption.
478 */
479 local_irq_save(flags);
480
481 /*
482 * we reschedule only in the presence of cgroup
483 * constrained events.
484 */
485 rcu_read_lock();
486
487 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200488 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200489 if (cpuctx->unique_pmu != pmu)
490 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200491
Stephane Eraniane5d13672011-02-14 11:20:01 +0200492 /*
493 * perf_cgroup_events says at least one
494 * context on this CPU has cgroup events.
495 *
496 * ctx->nr_cgroups reports the number of cgroup
497 * events for a context.
498 */
499 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200500 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
501 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200502
503 if (mode & PERF_CGROUP_SWOUT) {
504 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
505 /*
506 * must not be done before ctxswout due
507 * to event_filter_match() in event_sched_out()
508 */
509 cpuctx->cgrp = NULL;
510 }
511
512 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200513 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200514 /*
515 * set cgrp before ctxsw in to allow
516 * event_filter_match() to not have to pass
517 * task around
Stephane Eraniane5d13672011-02-14 11:20:01 +0200518 */
519 cpuctx->cgrp = perf_cgroup_from_task(task);
520 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
521 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200522 perf_pmu_enable(cpuctx->ctx.pmu);
523 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200524 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200525 }
526
527 rcu_read_unlock();
528
529 local_irq_restore(flags);
530}
531
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200532static inline void perf_cgroup_sched_out(struct task_struct *task,
533 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200534{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200535 struct perf_cgroup *cgrp1;
536 struct perf_cgroup *cgrp2 = NULL;
537
538 /*
539 * we come here when we know perf_cgroup_events > 0
540 */
541 cgrp1 = perf_cgroup_from_task(task);
542
543 /*
544 * next is NULL when called from perf_event_enable_on_exec()
545 * that will systematically cause a cgroup_switch()
546 */
547 if (next)
548 cgrp2 = perf_cgroup_from_task(next);
549
550 /*
551 * only schedule out current cgroup events if we know
552 * that we are switching to a different cgroup. Otherwise,
553 * do no touch the cgroup events.
554 */
555 if (cgrp1 != cgrp2)
556 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200557}
558
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200559static inline void perf_cgroup_sched_in(struct task_struct *prev,
560 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200561{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200562 struct perf_cgroup *cgrp1;
563 struct perf_cgroup *cgrp2 = NULL;
564
565 /*
566 * we come here when we know perf_cgroup_events > 0
567 */
568 cgrp1 = perf_cgroup_from_task(task);
569
570 /* prev can never be NULL */
571 cgrp2 = perf_cgroup_from_task(prev);
572
573 /*
574 * only need to schedule in cgroup events if we are changing
575 * cgroup during ctxsw. Cgroup events were not scheduled
576 * out of ctxsw out if that was not the case.
577 */
578 if (cgrp1 != cgrp2)
579 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200580}
581
582static inline int perf_cgroup_connect(int fd, struct perf_event *event,
583 struct perf_event_attr *attr,
584 struct perf_event *group_leader)
585{
586 struct perf_cgroup *cgrp;
587 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400588 struct fd f = fdget(fd);
589 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200590
Al Viro2903ff02012-08-28 12:52:22 -0400591 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200592 return -EBADF;
593
Al Viro2903ff02012-08-28 12:52:22 -0400594 css = cgroup_css_from_dir(f.file, perf_subsys_id);
Li Zefan3db272c2011-03-03 14:25:37 +0800595 if (IS_ERR(css)) {
596 ret = PTR_ERR(css);
597 goto out;
598 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200599
600 cgrp = container_of(css, struct perf_cgroup, css);
601 event->cgrp = cgrp;
602
Li Zefanf75e18c2011-03-03 14:25:50 +0800603 /* must be done before we fput() the file */
Salman Qazi9c5da092012-06-14 15:31:09 -0700604 if (!perf_tryget_cgroup(event)) {
605 event->cgrp = NULL;
606 ret = -ENOENT;
607 goto out;
608 }
Li Zefanf75e18c2011-03-03 14:25:50 +0800609
Stephane Eraniane5d13672011-02-14 11:20:01 +0200610 /*
611 * all events in a group must monitor
612 * the same cgroup because a task belongs
613 * to only one perf cgroup at a time
614 */
615 if (group_leader && group_leader->cgrp != cgrp) {
616 perf_detach_cgroup(event);
617 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200618 }
Li Zefan3db272c2011-03-03 14:25:37 +0800619out:
Al Viro2903ff02012-08-28 12:52:22 -0400620 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200621 return ret;
622}
623
624static inline void
625perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
626{
627 struct perf_cgroup_info *t;
628 t = per_cpu_ptr(event->cgrp->info, event->cpu);
629 event->shadow_ctx_time = now - t->timestamp;
630}
631
632static inline void
633perf_cgroup_defer_enabled(struct perf_event *event)
634{
635 /*
636 * when the current task's perf cgroup does not match
637 * the event's, we need to remember to call the
638 * perf_mark_enable() function the first time a task with
639 * a matching perf cgroup is scheduled in.
640 */
641 if (is_cgroup_event(event) && !perf_cgroup_match(event))
642 event->cgrp_defer_enabled = 1;
643}
644
645static inline void
646perf_cgroup_mark_enabled(struct perf_event *event,
647 struct perf_event_context *ctx)
648{
649 struct perf_event *sub;
650 u64 tstamp = perf_event_time(event);
651
652 if (!event->cgrp_defer_enabled)
653 return;
654
655 event->cgrp_defer_enabled = 0;
656
657 event->tstamp_enabled = tstamp - event->total_time_enabled;
658 list_for_each_entry(sub, &event->sibling_list, group_entry) {
659 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
660 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
661 sub->cgrp_defer_enabled = 0;
662 }
663 }
664}
665#else /* !CONFIG_CGROUP_PERF */
666
667static inline bool
668perf_cgroup_match(struct perf_event *event)
669{
670 return true;
671}
672
673static inline void perf_detach_cgroup(struct perf_event *event)
674{}
675
676static inline int is_cgroup_event(struct perf_event *event)
677{
678 return 0;
679}
680
681static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
682{
683 return 0;
684}
685
686static inline void update_cgrp_time_from_event(struct perf_event *event)
687{
688}
689
690static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
691{
692}
693
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200694static inline void perf_cgroup_sched_out(struct task_struct *task,
695 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200696{
697}
698
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200699static inline void perf_cgroup_sched_in(struct task_struct *prev,
700 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200701{
702}
703
704static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
705 struct perf_event_attr *attr,
706 struct perf_event *group_leader)
707{
708 return -EINVAL;
709}
710
711static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200712perf_cgroup_set_timestamp(struct task_struct *task,
713 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200714{
715}
716
717void
718perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
719{
720}
721
722static inline void
723perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
724{
725}
726
727static inline u64 perf_cgroup_event_time(struct perf_event *event)
728{
729 return 0;
730}
731
732static inline void
733perf_cgroup_defer_enabled(struct perf_event *event)
734{
735}
736
737static inline void
738perf_cgroup_mark_enabled(struct perf_event *event,
739 struct perf_event_context *ctx)
740{
741}
742#endif
743
Stephane Eranian9e630202013-04-03 14:21:33 +0200744/*
745 * set default to be dependent on timer tick just
746 * like original code
747 */
748#define PERF_CPU_HRTIMER (1000 / HZ)
749/*
750 * function must be called with interrupts disbled
751 */
752static enum hrtimer_restart perf_cpu_hrtimer_handler(struct hrtimer *hr)
753{
754 struct perf_cpu_context *cpuctx;
755 enum hrtimer_restart ret = HRTIMER_NORESTART;
756 int rotations = 0;
757
758 WARN_ON(!irqs_disabled());
759
760 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
761
762 rotations = perf_rotate_context(cpuctx);
763
764 /*
765 * arm timer if needed
766 */
767 if (rotations) {
768 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
769 ret = HRTIMER_RESTART;
770 }
771
772 return ret;
773}
774
775/* CPU is going down */
776void perf_cpu_hrtimer_cancel(int cpu)
777{
778 struct perf_cpu_context *cpuctx;
779 struct pmu *pmu;
780 unsigned long flags;
781
782 if (WARN_ON(cpu != smp_processor_id()))
783 return;
784
785 local_irq_save(flags);
786
787 rcu_read_lock();
788
789 list_for_each_entry_rcu(pmu, &pmus, entry) {
790 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
791
792 if (pmu->task_ctx_nr == perf_sw_context)
793 continue;
794
795 hrtimer_cancel(&cpuctx->hrtimer);
796 }
797
798 rcu_read_unlock();
799
800 local_irq_restore(flags);
801}
802
803static void __perf_cpu_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
804{
805 struct hrtimer *hr = &cpuctx->hrtimer;
806 struct pmu *pmu = cpuctx->ctx.pmu;
Stephane Eranian62b85632013-04-03 14:21:34 +0200807 int timer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200808
809 /* no multiplexing needed for SW PMU */
810 if (pmu->task_ctx_nr == perf_sw_context)
811 return;
812
Stephane Eranian62b85632013-04-03 14:21:34 +0200813 /*
814 * check default is sane, if not set then force to
815 * default interval (1/tick)
816 */
817 timer = pmu->hrtimer_interval_ms;
818 if (timer < 1)
819 timer = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
820
821 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
Stephane Eranian9e630202013-04-03 14:21:33 +0200822
823 hrtimer_init(hr, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
824 hr->function = perf_cpu_hrtimer_handler;
825}
826
827static void perf_cpu_hrtimer_restart(struct perf_cpu_context *cpuctx)
828{
829 struct hrtimer *hr = &cpuctx->hrtimer;
830 struct pmu *pmu = cpuctx->ctx.pmu;
831
832 /* not for SW PMU */
833 if (pmu->task_ctx_nr == perf_sw_context)
834 return;
835
836 if (hrtimer_active(hr))
837 return;
838
839 if (!hrtimer_callback_running(hr))
840 __hrtimer_start_range_ns(hr, cpuctx->hrtimer_interval,
841 0, HRTIMER_MODE_REL_PINNED, 0);
842}
843
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200844void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200845{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200846 int *count = this_cpu_ptr(pmu->pmu_disable_count);
847 if (!(*count)++)
848 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200849}
850
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200851void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200852{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200853 int *count = this_cpu_ptr(pmu->pmu_disable_count);
854 if (!--(*count))
855 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200856}
857
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200858static DEFINE_PER_CPU(struct list_head, rotation_list);
859
860/*
861 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
862 * because they're strictly cpu affine and rotate_start is called with IRQs
863 * disabled, while rotate_context is called from IRQ context.
864 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200865static void perf_pmu_rotate_start(struct pmu *pmu)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200866{
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200867 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200868 struct list_head *head = &__get_cpu_var(rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200869
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200870 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200871
Frederic Weisbecker12351ef2013-04-20 15:48:22 +0200872 if (list_empty(&cpuctx->rotation_list)) {
873 int was_empty = list_empty(head);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200874 list_add(&cpuctx->rotation_list, head);
Frederic Weisbecker12351ef2013-04-20 15:48:22 +0200875 if (was_empty)
876 tick_nohz_full_kick();
877 }
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 }
902}
903
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200904static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
905{
906 /*
907 * only top level events have the pid namespace they were created in
908 */
909 if (event->parent)
910 event = event->parent;
911
912 return task_tgid_nr_ns(p, event->ns);
913}
914
915static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
916{
917 /*
918 * only top level events have the pid namespace they were created in
919 */
920 if (event->parent)
921 event = event->parent;
922
923 return task_pid_nr_ns(p, event->ns);
924}
925
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200926/*
927 * If we inherit events we want to return the parent event id
928 * to userspace.
929 */
930static u64 primary_event_id(struct perf_event *event)
931{
932 u64 id = event->id;
933
934 if (event->parent)
935 id = event->parent->id;
936
937 return id;
938}
939
940/*
941 * Get the perf_event_context for a task and lock it.
942 * This has to cope with with the fact that until it is locked,
943 * the context could get moved to another task.
944 */
945static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +0200946perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200947{
948 struct perf_event_context *ctx;
949
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200950retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +0200951 /*
952 * One of the few rules of preemptible RCU is that one cannot do
953 * rcu_read_unlock() while holding a scheduler (or nested) lock when
954 * part of the read side critical section was preemptible -- see
955 * rcu_read_unlock_special().
956 *
957 * Since ctx->lock nests under rq->lock we must ensure the entire read
958 * side critical section is non-preemptible.
959 */
960 preempt_disable();
961 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +0200962 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200963 if (ctx) {
964 /*
965 * If this context is a clone of another, it might
966 * get swapped for another underneath us by
967 * perf_event_task_sched_out, though the
968 * rcu_read_lock() protects us from any context
969 * getting freed. Lock the context and check if it
970 * got swapped before we could get the lock, and retry
971 * if so. If we locked the right context, then it
972 * can't get swapped on us any more.
973 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100974 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +0200975 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100976 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +0200977 rcu_read_unlock();
978 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200979 goto retry;
980 }
981
982 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100983 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200984 ctx = NULL;
985 }
986 }
987 rcu_read_unlock();
Peter Zijlstra058ebd02013-07-12 11:08:33 +0200988 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200989 return ctx;
990}
991
992/*
993 * Get the context for a task and increment its pin_count so it
994 * can't get swapped to another task. This also increments its
995 * reference count so that the context can't get freed.
996 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +0200997static struct perf_event_context *
998perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200999{
1000 struct perf_event_context *ctx;
1001 unsigned long flags;
1002
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001003 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001004 if (ctx) {
1005 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001006 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001007 }
1008 return ctx;
1009}
1010
1011static void perf_unpin_context(struct perf_event_context *ctx)
1012{
1013 unsigned long flags;
1014
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001015 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001016 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001017 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001018}
1019
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001020/*
1021 * Update the record of the current time in a context.
1022 */
1023static void update_context_time(struct perf_event_context *ctx)
1024{
1025 u64 now = perf_clock();
1026
1027 ctx->time += now - ctx->timestamp;
1028 ctx->timestamp = now;
1029}
1030
Stephane Eranian41587552011-01-03 18:20:01 +02001031static u64 perf_event_time(struct perf_event *event)
1032{
1033 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001034
1035 if (is_cgroup_event(event))
1036 return perf_cgroup_event_time(event);
1037
Stephane Eranian41587552011-01-03 18:20:01 +02001038 return ctx ? ctx->time : 0;
1039}
1040
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001041/*
1042 * Update the total_time_enabled and total_time_running fields for a event.
Eric B Munsonb7526f02011-06-23 16:34:37 -04001043 * The caller of this function needs to hold the ctx->lock.
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001044 */
1045static void update_event_times(struct perf_event *event)
1046{
1047 struct perf_event_context *ctx = event->ctx;
1048 u64 run_end;
1049
1050 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1051 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1052 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001053 /*
1054 * in cgroup mode, time_enabled represents
1055 * the time the event was enabled AND active
1056 * tasks were in the monitored cgroup. This is
1057 * independent of the activity of the context as
1058 * there may be a mix of cgroup and non-cgroup events.
1059 *
1060 * That is why we treat cgroup events differently
1061 * here.
1062 */
1063 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001064 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001065 else if (ctx->is_active)
1066 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001067 else
1068 run_end = event->tstamp_stopped;
1069
1070 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001071
1072 if (event->state == PERF_EVENT_STATE_INACTIVE)
1073 run_end = event->tstamp_stopped;
1074 else
Stephane Eranian41587552011-01-03 18:20:01 +02001075 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001076
1077 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001078
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001079}
1080
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001081/*
1082 * Update total_time_enabled and total_time_running for all events in a group.
1083 */
1084static void update_group_times(struct perf_event *leader)
1085{
1086 struct perf_event *event;
1087
1088 update_event_times(leader);
1089 list_for_each_entry(event, &leader->sibling_list, group_entry)
1090 update_event_times(event);
1091}
1092
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001093static struct list_head *
1094ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1095{
1096 if (event->attr.pinned)
1097 return &ctx->pinned_groups;
1098 else
1099 return &ctx->flexible_groups;
1100}
1101
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001102/*
1103 * Add a event from the lists for its context.
1104 * Must be called with ctx->mutex and ctx->lock held.
1105 */
1106static void
1107list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1108{
Peter Zijlstra8a495422010-05-27 15:47:49 +02001109 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1110 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001111
1112 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001113 * If we're a stand alone event or group leader, we go to the context
1114 * list, group events are kept attached to the group so that
1115 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001116 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001117 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001118 struct list_head *list;
1119
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001120 if (is_software_event(event))
1121 event->group_flags |= PERF_GROUP_SOFTWARE;
1122
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001123 list = ctx_group_list(event, ctx);
1124 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001125 }
1126
Peter Zijlstra08309372011-03-03 11:31:20 +01001127 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02001128 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001129
Stephane Eraniand010b332012-02-09 23:21:00 +01001130 if (has_branch_stack(event))
1131 ctx->nr_branch_stack++;
1132
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001133 list_add_rcu(&event->event_entry, &ctx->event_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001134 if (!ctx->nr_events)
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001135 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001136 ctx->nr_events++;
1137 if (event->attr.inherit_stat)
1138 ctx->nr_stat++;
1139}
1140
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001141/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001142 * Initialize event state based on the perf_event_attr::disabled.
1143 */
1144static inline void perf_event__state_init(struct perf_event *event)
1145{
1146 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1147 PERF_EVENT_STATE_INACTIVE;
1148}
1149
1150/*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001151 * Called at perf_event creation and when events are attached/detached from a
1152 * group.
1153 */
1154static void perf_event__read_size(struct perf_event *event)
1155{
1156 int entry = sizeof(u64); /* value */
1157 int size = 0;
1158 int nr = 1;
1159
1160 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1161 size += sizeof(u64);
1162
1163 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1164 size += sizeof(u64);
1165
1166 if (event->attr.read_format & PERF_FORMAT_ID)
1167 entry += sizeof(u64);
1168
1169 if (event->attr.read_format & PERF_FORMAT_GROUP) {
1170 nr += event->group_leader->nr_siblings;
1171 size += sizeof(u64);
1172 }
1173
1174 size += entry * nr;
1175 event->read_size = size;
1176}
1177
1178static void perf_event__header_size(struct perf_event *event)
1179{
1180 struct perf_sample_data *data;
1181 u64 sample_type = event->attr.sample_type;
1182 u16 size = 0;
1183
1184 perf_event__read_size(event);
1185
1186 if (sample_type & PERF_SAMPLE_IP)
1187 size += sizeof(data->ip);
1188
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001189 if (sample_type & PERF_SAMPLE_ADDR)
1190 size += sizeof(data->addr);
1191
1192 if (sample_type & PERF_SAMPLE_PERIOD)
1193 size += sizeof(data->period);
1194
Andi Kleenc3feedf2013-01-24 16:10:28 +01001195 if (sample_type & PERF_SAMPLE_WEIGHT)
1196 size += sizeof(data->weight);
1197
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001198 if (sample_type & PERF_SAMPLE_READ)
1199 size += event->read_size;
1200
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001201 if (sample_type & PERF_SAMPLE_DATA_SRC)
1202 size += sizeof(data->data_src.val);
1203
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001204 event->header_size = size;
1205}
1206
1207static void perf_event__id_header_size(struct perf_event *event)
1208{
1209 struct perf_sample_data *data;
1210 u64 sample_type = event->attr.sample_type;
1211 u16 size = 0;
1212
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001213 if (sample_type & PERF_SAMPLE_TID)
1214 size += sizeof(data->tid_entry);
1215
1216 if (sample_type & PERF_SAMPLE_TIME)
1217 size += sizeof(data->time);
1218
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001219 if (sample_type & PERF_SAMPLE_ID)
1220 size += sizeof(data->id);
1221
1222 if (sample_type & PERF_SAMPLE_STREAM_ID)
1223 size += sizeof(data->stream_id);
1224
1225 if (sample_type & PERF_SAMPLE_CPU)
1226 size += sizeof(data->cpu_entry);
1227
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001228 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001229}
1230
Peter Zijlstra8a495422010-05-27 15:47:49 +02001231static void perf_group_attach(struct perf_event *event)
1232{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001233 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001234
Peter Zijlstra74c33372010-10-15 11:40:29 +02001235 /*
1236 * We can have double attach due to group movement in perf_event_open.
1237 */
1238 if (event->attach_state & PERF_ATTACH_GROUP)
1239 return;
1240
Peter Zijlstra8a495422010-05-27 15:47:49 +02001241 event->attach_state |= PERF_ATTACH_GROUP;
1242
1243 if (group_leader == event)
1244 return;
1245
1246 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1247 !is_software_event(event))
1248 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1249
1250 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1251 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001252
1253 perf_event__header_size(group_leader);
1254
1255 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1256 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001257}
1258
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001259/*
1260 * Remove a event from the lists for its context.
1261 * Must be called with ctx->mutex and ctx->lock held.
1262 */
1263static void
1264list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1265{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001266 struct perf_cpu_context *cpuctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001267 /*
1268 * We can have double detach due to exit/hot-unplug + close.
1269 */
1270 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001271 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001272
1273 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1274
Stephane Eranian68cacd22011-03-23 16:03:06 +01001275 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001276 ctx->nr_cgroups--;
Stephane Eranian68cacd22011-03-23 16:03:06 +01001277 cpuctx = __get_cpu_context(ctx);
1278 /*
1279 * if there are no more cgroup events
1280 * then cler cgrp to avoid stale pointer
1281 * in update_cgrp_time_from_cpuctx()
1282 */
1283 if (!ctx->nr_cgroups)
1284 cpuctx->cgrp = NULL;
1285 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001286
Stephane Eraniand010b332012-02-09 23:21:00 +01001287 if (has_branch_stack(event))
1288 ctx->nr_branch_stack--;
1289
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001290 ctx->nr_events--;
1291 if (event->attr.inherit_stat)
1292 ctx->nr_stat--;
1293
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001294 list_del_rcu(&event->event_entry);
1295
Peter Zijlstra8a495422010-05-27 15:47:49 +02001296 if (event->group_leader == event)
1297 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001298
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001299 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001300
1301 /*
1302 * If event was in error state, then keep it
1303 * that way, otherwise bogus counts will be
1304 * returned on read(). The only way to get out
1305 * of error state is by explicit re-enabling
1306 * of the event
1307 */
1308 if (event->state > PERF_EVENT_STATE_OFF)
1309 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001310}
1311
Peter Zijlstra8a495422010-05-27 15:47:49 +02001312static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001313{
1314 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001315 struct list_head *list = NULL;
1316
1317 /*
1318 * We can have double detach due to exit/hot-unplug + close.
1319 */
1320 if (!(event->attach_state & PERF_ATTACH_GROUP))
1321 return;
1322
1323 event->attach_state &= ~PERF_ATTACH_GROUP;
1324
1325 /*
1326 * If this is a sibling, remove it from its group.
1327 */
1328 if (event->group_leader != event) {
1329 list_del_init(&event->group_entry);
1330 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001331 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001332 }
1333
1334 if (!list_empty(&event->group_entry))
1335 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001336
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001337 /*
1338 * If this was a group event with sibling events then
1339 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001340 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001341 */
1342 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001343 if (list)
1344 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001345 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001346
1347 /* Inherit group flags from the previous leader */
1348 sibling->group_flags = event->group_flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001349 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001350
1351out:
1352 perf_event__header_size(event->group_leader);
1353
1354 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1355 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001356}
1357
Stephane Eranianfa66f072010-08-26 16:40:01 +02001358static inline int
1359event_filter_match(struct perf_event *event)
1360{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001361 return (event->cpu == -1 || event->cpu == smp_processor_id())
1362 && perf_cgroup_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001363}
1364
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001365static void
1366event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001367 struct perf_cpu_context *cpuctx,
1368 struct perf_event_context *ctx)
1369{
Stephane Eranian41587552011-01-03 18:20:01 +02001370 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001371 u64 delta;
1372 /*
1373 * An event which could not be activated because of
1374 * filter mismatch still needs to have its timings
1375 * maintained, otherwise bogus information is return
1376 * via read() for time_enabled, time_running:
1377 */
1378 if (event->state == PERF_EVENT_STATE_INACTIVE
1379 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001380 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001381 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001382 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001383 }
1384
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001385 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001386 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001387
1388 event->state = PERF_EVENT_STATE_INACTIVE;
1389 if (event->pending_disable) {
1390 event->pending_disable = 0;
1391 event->state = PERF_EVENT_STATE_OFF;
1392 }
Stephane Eranian41587552011-01-03 18:20:01 +02001393 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001394 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001395 event->oncpu = -1;
1396
1397 if (!is_software_event(event))
1398 cpuctx->active_oncpu--;
1399 ctx->nr_active--;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001400 if (event->attr.freq && event->attr.sample_freq)
1401 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001402 if (event->attr.exclusive || !cpuctx->active_oncpu)
1403 cpuctx->exclusive = 0;
1404}
1405
1406static void
1407group_sched_out(struct perf_event *group_event,
1408 struct perf_cpu_context *cpuctx,
1409 struct perf_event_context *ctx)
1410{
1411 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001412 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001413
1414 event_sched_out(group_event, cpuctx, ctx);
1415
1416 /*
1417 * Schedule out siblings (if any):
1418 */
1419 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1420 event_sched_out(event, cpuctx, ctx);
1421
Stephane Eranianfa66f072010-08-26 16:40:01 +02001422 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001423 cpuctx->exclusive = 0;
1424}
1425
1426/*
1427 * Cross CPU call to remove a performance event
1428 *
1429 * We disable the event on the hardware level first. After that we
1430 * remove it from the context list.
1431 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001432static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001433{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001434 struct perf_event *event = info;
1435 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001436 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001437
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001438 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001439 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001440 list_del_event(event, ctx);
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001441 if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1442 ctx->is_active = 0;
1443 cpuctx->task_ctx = NULL;
1444 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001445 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001446
1447 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001448}
1449
1450
1451/*
1452 * Remove the event from a task's (or a CPU's) list of events.
1453 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001454 * CPU events are removed with a smp call. For task events we only
1455 * call when the task is on a CPU.
1456 *
1457 * If event->ctx is a cloned context, callers must make sure that
1458 * every task struct that event->ctx->task could possibly point to
1459 * remains valid. This is OK when called from perf_release since
1460 * that only calls us on the top-level context, which can't be a clone.
1461 * When called from perf_event_exit_task, it's OK because the
1462 * context has been detached from its task.
1463 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001464static void perf_remove_from_context(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001465{
1466 struct perf_event_context *ctx = event->ctx;
1467 struct task_struct *task = ctx->task;
1468
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001469 lockdep_assert_held(&ctx->mutex);
1470
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001471 if (!task) {
1472 /*
1473 * Per cpu events are removed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001474 * the removal is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001475 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001476 cpu_function_call(event->cpu, __perf_remove_from_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001477 return;
1478 }
1479
1480retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001481 if (!task_function_call(task, __perf_remove_from_context, event))
1482 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001483
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001484 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001485 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001486 * If we failed to find a running task, but find the context active now
1487 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001488 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001489 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001490 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001491 goto retry;
1492 }
1493
1494 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001495 * Since the task isn't running, its safe to remove the event, us
1496 * holding the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001497 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001498 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001499 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001500}
1501
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001502/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001503 * Cross CPU call to disable a performance event
1504 */
K.Prasad500ad2d2012-08-02 13:46:35 +05301505int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001506{
1507 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001508 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001509 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001510
1511 /*
1512 * If this is a per-task event, need to check whether this
1513 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001514 *
1515 * Can trigger due to concurrent perf_event_context_sched_out()
1516 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001517 */
1518 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001519 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001520
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001521 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001522
1523 /*
1524 * If the event is on, turn it off.
1525 * If it is in error state, leave it in error state.
1526 */
1527 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1528 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001529 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001530 update_group_times(event);
1531 if (event == event->group_leader)
1532 group_sched_out(event, cpuctx, ctx);
1533 else
1534 event_sched_out(event, cpuctx, ctx);
1535 event->state = PERF_EVENT_STATE_OFF;
1536 }
1537
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001538 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001539
1540 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001541}
1542
1543/*
1544 * Disable a event.
1545 *
1546 * If event->ctx is a cloned context, callers must make sure that
1547 * every task struct that event->ctx->task could possibly point to
1548 * remains valid. This condition is satisifed when called through
1549 * perf_event_for_each_child or perf_event_for_each because they
1550 * hold the top-level event's child_mutex, so any descendant that
1551 * goes to exit will block in sync_child_event.
1552 * When called from perf_pending_event it's OK because event->ctx
1553 * is the current context on this CPU and preemption is disabled,
1554 * hence we can't get into perf_event_task_sched_out for this context.
1555 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001556void perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001557{
1558 struct perf_event_context *ctx = event->ctx;
1559 struct task_struct *task = ctx->task;
1560
1561 if (!task) {
1562 /*
1563 * Disable the event on the cpu that it's on
1564 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001565 cpu_function_call(event->cpu, __perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001566 return;
1567 }
1568
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001569retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001570 if (!task_function_call(task, __perf_event_disable, event))
1571 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001572
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001573 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001574 /*
1575 * If the event is still active, we need to retry the cross-call.
1576 */
1577 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001578 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001579 /*
1580 * Reload the task pointer, it might have been changed by
1581 * a concurrent perf_event_context_sched_out().
1582 */
1583 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001584 goto retry;
1585 }
1586
1587 /*
1588 * Since we have the lock this context can't be scheduled
1589 * in, so we can change the state safely.
1590 */
1591 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1592 update_group_times(event);
1593 event->state = PERF_EVENT_STATE_OFF;
1594 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001595 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001596}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001597EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001598
Stephane Eraniane5d13672011-02-14 11:20:01 +02001599static void perf_set_shadow_time(struct perf_event *event,
1600 struct perf_event_context *ctx,
1601 u64 tstamp)
1602{
1603 /*
1604 * use the correct time source for the time snapshot
1605 *
1606 * We could get by without this by leveraging the
1607 * fact that to get to this function, the caller
1608 * has most likely already called update_context_time()
1609 * and update_cgrp_time_xx() and thus both timestamp
1610 * are identical (or very close). Given that tstamp is,
1611 * already adjusted for cgroup, we could say that:
1612 * tstamp - ctx->timestamp
1613 * is equivalent to
1614 * tstamp - cgrp->timestamp.
1615 *
1616 * Then, in perf_output_read(), the calculation would
1617 * work with no changes because:
1618 * - event is guaranteed scheduled in
1619 * - no scheduled out in between
1620 * - thus the timestamp would be the same
1621 *
1622 * But this is a bit hairy.
1623 *
1624 * So instead, we have an explicit cgroup call to remain
1625 * within the time time source all along. We believe it
1626 * is cleaner and simpler to understand.
1627 */
1628 if (is_cgroup_event(event))
1629 perf_cgroup_set_shadow_time(event, tstamp);
1630 else
1631 event->shadow_ctx_time = tstamp - ctx->timestamp;
1632}
1633
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001634#define MAX_INTERRUPTS (~0ULL)
1635
1636static void perf_log_throttle(struct perf_event *event, int enable);
1637
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001638static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001639event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001640 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001641 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001642{
Stephane Eranian41587552011-01-03 18:20:01 +02001643 u64 tstamp = perf_event_time(event);
1644
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001645 if (event->state <= PERF_EVENT_STATE_OFF)
1646 return 0;
1647
1648 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001649 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001650
1651 /*
1652 * Unthrottle events, since we scheduled we might have missed several
1653 * ticks already, also for a heavily scheduling task there is little
1654 * guarantee it'll get a tick in a timely manner.
1655 */
1656 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1657 perf_log_throttle(event, 1);
1658 event->hw.interrupts = 0;
1659 }
1660
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001661 /*
1662 * The new state must be visible before we turn it on in the hardware:
1663 */
1664 smp_wmb();
1665
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001666 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001667 event->state = PERF_EVENT_STATE_INACTIVE;
1668 event->oncpu = -1;
1669 return -EAGAIN;
1670 }
1671
Stephane Eranian41587552011-01-03 18:20:01 +02001672 event->tstamp_running += tstamp - event->tstamp_stopped;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001673
Stephane Eraniane5d13672011-02-14 11:20:01 +02001674 perf_set_shadow_time(event, ctx, tstamp);
Stephane Eranianeed01522010-10-26 16:08:01 +02001675
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001676 if (!is_software_event(event))
1677 cpuctx->active_oncpu++;
1678 ctx->nr_active++;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001679 if (event->attr.freq && event->attr.sample_freq)
1680 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001681
1682 if (event->attr.exclusive)
1683 cpuctx->exclusive = 1;
1684
1685 return 0;
1686}
1687
1688static int
1689group_sched_in(struct perf_event *group_event,
1690 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001691 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001692{
Lin Ming6bde9b62010-04-23 13:56:00 +08001693 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001694 struct pmu *pmu = group_event->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001695 u64 now = ctx->time;
1696 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001697
1698 if (group_event->state == PERF_EVENT_STATE_OFF)
1699 return 0;
1700
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001701 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +08001702
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001703 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001704 pmu->cancel_txn(pmu);
Stephane Eranian9e630202013-04-03 14:21:33 +02001705 perf_cpu_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001706 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001707 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001708
1709 /*
1710 * Schedule in siblings as one group (if any):
1711 */
1712 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001713 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001714 partial_group = event;
1715 goto group_error;
1716 }
1717 }
1718
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001719 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001720 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001721
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001722group_error:
1723 /*
1724 * Groups can be scheduled in as one unit only, so undo any
1725 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001726 * The events up to the failed event are scheduled out normally,
1727 * tstamp_stopped will be updated.
1728 *
1729 * The failed events and the remaining siblings need to have
1730 * their timings updated as if they had gone thru event_sched_in()
1731 * and event_sched_out(). This is required to get consistent timings
1732 * across the group. This also takes care of the case where the group
1733 * could never be scheduled by ensuring tstamp_stopped is set to mark
1734 * the time the event was actually stopped, such that time delta
1735 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001736 */
1737 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1738 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001739 simulate = true;
1740
1741 if (simulate) {
1742 event->tstamp_running += now - event->tstamp_stopped;
1743 event->tstamp_stopped = now;
1744 } else {
1745 event_sched_out(event, cpuctx, ctx);
1746 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001747 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001748 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001749
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001750 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02001751
Stephane Eranian9e630202013-04-03 14:21:33 +02001752 perf_cpu_hrtimer_restart(cpuctx);
1753
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001754 return -EAGAIN;
1755}
1756
1757/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001758 * Work out whether we can put this event group on the CPU now.
1759 */
1760static int group_can_go_on(struct perf_event *event,
1761 struct perf_cpu_context *cpuctx,
1762 int can_add_hw)
1763{
1764 /*
1765 * Groups consisting entirely of software events can always go on.
1766 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001767 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001768 return 1;
1769 /*
1770 * If an exclusive group is already on, no other hardware
1771 * events can go on.
1772 */
1773 if (cpuctx->exclusive)
1774 return 0;
1775 /*
1776 * If this group is exclusive and there are already
1777 * events on the CPU, it can't go on.
1778 */
1779 if (event->attr.exclusive && cpuctx->active_oncpu)
1780 return 0;
1781 /*
1782 * Otherwise, try to add it if all previous groups were able
1783 * to go on.
1784 */
1785 return can_add_hw;
1786}
1787
1788static void add_event_to_ctx(struct perf_event *event,
1789 struct perf_event_context *ctx)
1790{
Stephane Eranian41587552011-01-03 18:20:01 +02001791 u64 tstamp = perf_event_time(event);
1792
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001793 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001794 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02001795 event->tstamp_enabled = tstamp;
1796 event->tstamp_running = tstamp;
1797 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001798}
1799
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001800static void task_ctx_sched_out(struct perf_event_context *ctx);
1801static void
1802ctx_sched_in(struct perf_event_context *ctx,
1803 struct perf_cpu_context *cpuctx,
1804 enum event_type_t event_type,
1805 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001806
Peter Zijlstradce58552011-04-09 21:17:46 +02001807static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
1808 struct perf_event_context *ctx,
1809 struct task_struct *task)
1810{
1811 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
1812 if (ctx)
1813 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
1814 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
1815 if (ctx)
1816 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
1817}
1818
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001819/*
1820 * Cross CPU call to install and enable a performance event
1821 *
1822 * Must be called with ctx->mutex held
1823 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001824static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001825{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001826 struct perf_event *event = info;
1827 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001828 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001829 struct perf_event_context *task_ctx = cpuctx->task_ctx;
1830 struct task_struct *task = current;
1831
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001832 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001833 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001834
1835 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001836 * If there was an active task_ctx schedule it out.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001837 */
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001838 if (task_ctx)
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001839 task_ctx_sched_out(task_ctx);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001840
1841 /*
1842 * If the context we're installing events in is not the
1843 * active task_ctx, flip them.
1844 */
1845 if (ctx->task && task_ctx != ctx) {
1846 if (task_ctx)
1847 raw_spin_unlock(&task_ctx->lock);
1848 raw_spin_lock(&ctx->lock);
1849 task_ctx = ctx;
1850 }
1851
1852 if (task_ctx) {
1853 cpuctx->task_ctx = task_ctx;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001854 task = task_ctx->task;
1855 }
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001856
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001857 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001858
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001859 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001860 /*
1861 * update cgrp time only if current cgrp
1862 * matches event->cgrp. Must be done before
1863 * calling add_event_to_ctx()
1864 */
1865 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001866
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001867 add_event_to_ctx(event, ctx);
1868
1869 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001870 * Schedule everything back in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001871 */
Peter Zijlstradce58552011-04-09 21:17:46 +02001872 perf_event_sched_in(cpuctx, task_ctx, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001873
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001874 perf_pmu_enable(cpuctx->ctx.pmu);
1875 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001876
1877 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001878}
1879
1880/*
1881 * Attach a performance event to a context
1882 *
1883 * First we add the event to the list with the hardware enable bit
1884 * in event->hw_config cleared.
1885 *
1886 * If the event is attached to a task which is on a CPU we use a smp
1887 * call to enable it in the task context. The task might have been
1888 * scheduled away, but we check this in the smp call again.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001889 */
1890static void
1891perf_install_in_context(struct perf_event_context *ctx,
1892 struct perf_event *event,
1893 int cpu)
1894{
1895 struct task_struct *task = ctx->task;
1896
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001897 lockdep_assert_held(&ctx->mutex);
1898
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001899 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08001900 if (event->cpu != -1)
1901 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001902
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001903 if (!task) {
1904 /*
1905 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001906 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001907 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001908 cpu_function_call(cpu, __perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001909 return;
1910 }
1911
1912retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001913 if (!task_function_call(task, __perf_install_in_context, event))
1914 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001915
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001916 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001917 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001918 * If we failed to find a running task, but find the context active now
1919 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001920 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001921 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001922 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001923 goto retry;
1924 }
1925
1926 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001927 * Since the task isn't running, its safe to add the event, us holding
1928 * the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001929 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001930 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001931 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001932}
1933
1934/*
1935 * Put a event into inactive state and update time fields.
1936 * Enabling the leader of a group effectively enables all
1937 * the group members that aren't explicitly disabled, so we
1938 * have to update their ->tstamp_enabled also.
1939 * Note: this works for group members as well as group leaders
1940 * since the non-leader members' sibling_lists will be empty.
1941 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001942static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001943{
1944 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02001945 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001946
1947 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02001948 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001949 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02001950 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
1951 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001952 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001953}
1954
1955/*
1956 * Cross CPU call to enable a performance event
1957 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001958static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001959{
1960 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001961 struct perf_event_context *ctx = event->ctx;
1962 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001963 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001964 int err;
1965
Jiri Olsa06f41792013-07-09 17:44:11 +02001966 /*
1967 * There's a time window between 'ctx->is_active' check
1968 * in perf_event_enable function and this place having:
1969 * - IRQs on
1970 * - ctx->lock unlocked
1971 *
1972 * where the task could be killed and 'ctx' deactivated
1973 * by perf_event_exit_task.
1974 */
1975 if (!ctx->is_active)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001976 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001977
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001978 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001979 update_context_time(ctx);
1980
1981 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1982 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001983
1984 /*
1985 * set current task's cgroup time reference point
1986 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001987 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001988
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001989 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001990
Stephane Eraniane5d13672011-02-14 11:20:01 +02001991 if (!event_filter_match(event)) {
1992 if (is_cgroup_event(event))
1993 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001994 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001995 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001996
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001997 /*
1998 * If the event is in a group and isn't the group leader,
1999 * then don't put it on unless the group is on.
2000 */
2001 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
2002 goto unlock;
2003
2004 if (!group_can_go_on(event, cpuctx, 1)) {
2005 err = -EEXIST;
2006 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002007 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002008 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002009 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01002010 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002011 }
2012
2013 if (err) {
2014 /*
2015 * If this event can't go on and it's part of a
2016 * group, then the whole group has to come off.
2017 */
Stephane Eranian9e630202013-04-03 14:21:33 +02002018 if (leader != event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002019 group_sched_out(leader, cpuctx, ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002020 perf_cpu_hrtimer_restart(cpuctx);
2021 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002022 if (leader->attr.pinned) {
2023 update_group_times(leader);
2024 leader->state = PERF_EVENT_STATE_ERROR;
2025 }
2026 }
2027
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002028unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002029 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002030
2031 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002032}
2033
2034/*
2035 * Enable a event.
2036 *
2037 * If event->ctx is a cloned context, callers must make sure that
2038 * every task struct that event->ctx->task could possibly point to
2039 * remains valid. This condition is satisfied when called through
2040 * perf_event_for_each_child or perf_event_for_each as described
2041 * for perf_event_disable.
2042 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01002043void perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002044{
2045 struct perf_event_context *ctx = event->ctx;
2046 struct task_struct *task = ctx->task;
2047
2048 if (!task) {
2049 /*
2050 * Enable the event on the cpu that it's on
2051 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002052 cpu_function_call(event->cpu, __perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002053 return;
2054 }
2055
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002056 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002057 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2058 goto out;
2059
2060 /*
2061 * If the event is in error state, clear that first.
2062 * That way, if we see the event in error state below, we
2063 * know that it has gone back into error state, as distinct
2064 * from the task having been scheduled away before the
2065 * cross-call arrived.
2066 */
2067 if (event->state == PERF_EVENT_STATE_ERROR)
2068 event->state = PERF_EVENT_STATE_OFF;
2069
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002070retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002071 if (!ctx->is_active) {
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002072 __perf_event_mark_enabled(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002073 goto out;
2074 }
2075
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002076 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002077
2078 if (!task_function_call(task, __perf_event_enable, event))
2079 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002080
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002081 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002082
2083 /*
2084 * If the context is active and the event is still off,
2085 * we need to retry the cross-call.
2086 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002087 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
2088 /*
2089 * task could have been flipped by a concurrent
2090 * perf_event_context_sched_out()
2091 */
2092 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002093 goto retry;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002094 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002095
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002096out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002097 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002098}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002099EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002100
Avi Kivity26ca5c12011-06-29 18:42:37 +03002101int perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002102{
2103 /*
2104 * not supported on inherited events
2105 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002106 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002107 return -EINVAL;
2108
2109 atomic_add(refresh, &event->event_limit);
2110 perf_event_enable(event);
2111
2112 return 0;
2113}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002114EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002115
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002116static void ctx_sched_out(struct perf_event_context *ctx,
2117 struct perf_cpu_context *cpuctx,
2118 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002119{
2120 struct perf_event *event;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002121 int is_active = ctx->is_active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002122
Peter Zijlstradb24d332011-04-09 21:17:45 +02002123 ctx->is_active &= ~event_type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002124 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002125 return;
2126
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002127 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002128 update_cgrp_time_from_cpuctx(cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002129 if (!ctx->nr_active)
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002130 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002131
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002132 perf_pmu_disable(ctx->pmu);
Peter Zijlstradb24d332011-04-09 21:17:45 +02002133 if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002134 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2135 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002136 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002137
Peter Zijlstradb24d332011-04-09 21:17:45 +02002138 if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002139 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002140 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002141 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002142 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002143}
2144
2145/*
2146 * Test whether two contexts are equivalent, i.e. whether they
2147 * have both been cloned from the same version of the same context
2148 * and they both have the same number of enabled events.
2149 * If the number of enabled events is the same, then the set
2150 * of enabled events should be the same, because these are both
2151 * inherited contexts, therefore we can't access individual events
2152 * in them directly with an fd; we can only enable/disable all
2153 * events via prctl, or enable/disable all events in a family
2154 * via ioctl, which will have the same effect on both contexts.
2155 */
2156static int context_equiv(struct perf_event_context *ctx1,
2157 struct perf_event_context *ctx2)
2158{
2159 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
2160 && ctx1->parent_gen == ctx2->parent_gen
2161 && !ctx1->pin_count && !ctx2->pin_count;
2162}
2163
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002164static void __perf_event_sync_stat(struct perf_event *event,
2165 struct perf_event *next_event)
2166{
2167 u64 value;
2168
2169 if (!event->attr.inherit_stat)
2170 return;
2171
2172 /*
2173 * Update the event value, we cannot use perf_event_read()
2174 * because we're in the middle of a context switch and have IRQs
2175 * disabled, which upsets smp_call_function_single(), however
2176 * we know the event must be on the current CPU, therefore we
2177 * don't need to use it.
2178 */
2179 switch (event->state) {
2180 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002181 event->pmu->read(event);
2182 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002183
2184 case PERF_EVENT_STATE_INACTIVE:
2185 update_event_times(event);
2186 break;
2187
2188 default:
2189 break;
2190 }
2191
2192 /*
2193 * In order to keep per-task stats reliable we need to flip the event
2194 * values when we flip the contexts.
2195 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002196 value = local64_read(&next_event->count);
2197 value = local64_xchg(&event->count, value);
2198 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002199
2200 swap(event->total_time_enabled, next_event->total_time_enabled);
2201 swap(event->total_time_running, next_event->total_time_running);
2202
2203 /*
2204 * Since we swizzled the values, update the user visible data too.
2205 */
2206 perf_event_update_userpage(event);
2207 perf_event_update_userpage(next_event);
2208}
2209
2210#define list_next_entry(pos, member) \
2211 list_entry(pos->member.next, typeof(*pos), member)
2212
2213static void perf_event_sync_stat(struct perf_event_context *ctx,
2214 struct perf_event_context *next_ctx)
2215{
2216 struct perf_event *event, *next_event;
2217
2218 if (!ctx->nr_stat)
2219 return;
2220
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002221 update_context_time(ctx);
2222
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002223 event = list_first_entry(&ctx->event_list,
2224 struct perf_event, event_entry);
2225
2226 next_event = list_first_entry(&next_ctx->event_list,
2227 struct perf_event, event_entry);
2228
2229 while (&event->event_entry != &ctx->event_list &&
2230 &next_event->event_entry != &next_ctx->event_list) {
2231
2232 __perf_event_sync_stat(event, next_event);
2233
2234 event = list_next_entry(event, event_entry);
2235 next_event = list_next_entry(next_event, event_entry);
2236 }
2237}
2238
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002239static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2240 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002241{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002242 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002243 struct perf_event_context *next_ctx;
2244 struct perf_event_context *parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002245 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002246 int do_switch = 1;
2247
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002248 if (likely(!ctx))
2249 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002250
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002251 cpuctx = __get_cpu_context(ctx);
2252 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002253 return;
2254
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002255 rcu_read_lock();
2256 parent = rcu_dereference(ctx->parent_ctx);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002257 next_ctx = next->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002258 if (parent && next_ctx &&
2259 rcu_dereference(next_ctx->parent_ctx) == parent) {
2260 /*
2261 * Looks like the two contexts are clones, so we might be
2262 * able to optimize the context switch. We lock both
2263 * contexts and check that they are clones under the
2264 * lock (including re-checking that neither has been
2265 * uncloned in the meantime). It doesn't matter which
2266 * order we take the locks because no other cpu could
2267 * be trying to lock both of these tasks.
2268 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002269 raw_spin_lock(&ctx->lock);
2270 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002271 if (context_equiv(ctx, next_ctx)) {
2272 /*
2273 * XXX do we need a memory barrier of sorts
2274 * wrt to rcu_dereference() of perf_event_ctxp
2275 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002276 task->perf_event_ctxp[ctxn] = next_ctx;
2277 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002278 ctx->task = next;
2279 next_ctx->task = task;
2280 do_switch = 0;
2281
2282 perf_event_sync_stat(ctx, next_ctx);
2283 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002284 raw_spin_unlock(&next_ctx->lock);
2285 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002286 }
2287 rcu_read_unlock();
2288
2289 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002290 raw_spin_lock(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002291 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002292 cpuctx->task_ctx = NULL;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002293 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002294 }
2295}
2296
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002297#define for_each_task_context_nr(ctxn) \
2298 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2299
2300/*
2301 * Called from scheduler to remove the events of the current task,
2302 * with interrupts disabled.
2303 *
2304 * We stop each event and update the event value in event->count.
2305 *
2306 * This does not protect us against NMI, but disable()
2307 * sets the disabled bit in the control field of event _before_
2308 * accessing the event control register. If a NMI hits, then it will
2309 * not restart the event.
2310 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002311void __perf_event_task_sched_out(struct task_struct *task,
2312 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002313{
2314 int ctxn;
2315
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002316 for_each_task_context_nr(ctxn)
2317 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002318
2319 /*
2320 * if cgroup events exist on this CPU, then we need
2321 * to check if we have to switch out PMU state.
2322 * cgroup event are system-wide mode only
2323 */
2324 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002325 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002326}
2327
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002328static void task_ctx_sched_out(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002329{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002330 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002331
2332 if (!cpuctx->task_ctx)
2333 return;
2334
2335 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2336 return;
2337
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002338 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002339 cpuctx->task_ctx = NULL;
2340}
2341
2342/*
2343 * Called with IRQs disabled
2344 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002345static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2346 enum event_type_t event_type)
2347{
2348 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002349}
2350
2351static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002352ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002353 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002354{
2355 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002356
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002357 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2358 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002359 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002360 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002361 continue;
2362
Stephane Eraniane5d13672011-02-14 11:20:01 +02002363 /* may need to reset tstamp_enabled */
2364 if (is_cgroup_event(event))
2365 perf_cgroup_mark_enabled(event, ctx);
2366
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002367 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002368 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002369
2370 /*
2371 * If this pinned group hasn't been scheduled,
2372 * put it in error state.
2373 */
2374 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2375 update_group_times(event);
2376 event->state = PERF_EVENT_STATE_ERROR;
2377 }
2378 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002379}
2380
2381static void
2382ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002383 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002384{
2385 struct perf_event *event;
2386 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002387
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002388 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2389 /* Ignore events in OFF or ERROR state */
2390 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002391 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002392 /*
2393 * Listen to the 'cpu' scheduling filter constraint
2394 * of events:
2395 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002396 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002397 continue;
2398
Stephane Eraniane5d13672011-02-14 11:20:01 +02002399 /* may need to reset tstamp_enabled */
2400 if (is_cgroup_event(event))
2401 perf_cgroup_mark_enabled(event, ctx);
2402
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002403 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002404 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002405 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002406 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002407 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002408}
2409
2410static void
2411ctx_sched_in(struct perf_event_context *ctx,
2412 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002413 enum event_type_t event_type,
2414 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002415{
Stephane Eraniane5d13672011-02-14 11:20:01 +02002416 u64 now;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002417 int is_active = ctx->is_active;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002418
Peter Zijlstradb24d332011-04-09 21:17:45 +02002419 ctx->is_active |= event_type;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002420 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002421 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002422
Stephane Eraniane5d13672011-02-14 11:20:01 +02002423 now = perf_clock();
2424 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002425 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002426 /*
2427 * First go through the list and put on any pinned groups
2428 * in order to give them the best chance of going on.
2429 */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002430 if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002431 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002432
2433 /* Then walk through the lower prio flexible groups */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002434 if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002435 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002436}
2437
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002438static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002439 enum event_type_t event_type,
2440 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002441{
2442 struct perf_event_context *ctx = &cpuctx->ctx;
2443
Stephane Eraniane5d13672011-02-14 11:20:01 +02002444 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002445}
2446
Stephane Eraniane5d13672011-02-14 11:20:01 +02002447static void perf_event_context_sched_in(struct perf_event_context *ctx,
2448 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002449{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002450 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002451
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002452 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002453 if (cpuctx->task_ctx == ctx)
2454 return;
2455
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002456 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002457 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002458 /*
2459 * We want to keep the following priority order:
2460 * cpu pinned (that don't need to move), task pinned,
2461 * cpu flexible, task flexible.
2462 */
2463 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2464
Gleb Natapov1d5f0032011-10-23 19:10:33 +02002465 if (ctx->nr_events)
2466 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002467
Gleb Natapov86b47c22011-11-22 16:08:21 +02002468 perf_event_sched_in(cpuctx, cpuctx->task_ctx, task);
2469
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002470 perf_pmu_enable(ctx->pmu);
2471 perf_ctx_unlock(cpuctx, ctx);
2472
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002473 /*
2474 * Since these rotations are per-cpu, we need to ensure the
2475 * cpu-context we got scheduled on is actually rotating.
2476 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002477 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002478}
2479
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002480/*
Stephane Eraniand010b332012-02-09 23:21:00 +01002481 * When sampling the branck stack in system-wide, it may be necessary
2482 * to flush the stack on context switch. This happens when the branch
2483 * stack does not tag its entries with the pid of the current task.
2484 * Otherwise it becomes impossible to associate a branch entry with a
2485 * task. This ambiguity is more likely to appear when the branch stack
2486 * supports priv level filtering and the user sets it to monitor only
2487 * at the user level (which could be a useful measurement in system-wide
2488 * mode). In that case, the risk is high of having a branch stack with
2489 * branch from multiple tasks. Flushing may mean dropping the existing
2490 * entries or stashing them somewhere in the PMU specific code layer.
2491 *
2492 * This function provides the context switch callback to the lower code
2493 * layer. It is invoked ONLY when there is at least one system-wide context
2494 * with at least one active event using taken branch sampling.
2495 */
2496static void perf_branch_stack_sched_in(struct task_struct *prev,
2497 struct task_struct *task)
2498{
2499 struct perf_cpu_context *cpuctx;
2500 struct pmu *pmu;
2501 unsigned long flags;
2502
2503 /* no need to flush branch stack if not changing task */
2504 if (prev == task)
2505 return;
2506
2507 local_irq_save(flags);
2508
2509 rcu_read_lock();
2510
2511 list_for_each_entry_rcu(pmu, &pmus, entry) {
2512 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2513
2514 /*
2515 * check if the context has at least one
2516 * event using PERF_SAMPLE_BRANCH_STACK
2517 */
2518 if (cpuctx->ctx.nr_branch_stack > 0
2519 && pmu->flush_branch_stack) {
2520
2521 pmu = cpuctx->ctx.pmu;
2522
2523 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2524
2525 perf_pmu_disable(pmu);
2526
2527 pmu->flush_branch_stack();
2528
2529 perf_pmu_enable(pmu);
2530
2531 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2532 }
2533 }
2534
2535 rcu_read_unlock();
2536
2537 local_irq_restore(flags);
2538}
2539
2540/*
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002541 * Called from scheduler to add the events of the current task
2542 * with interrupts disabled.
2543 *
2544 * We restore the event value and then enable it.
2545 *
2546 * This does not protect us against NMI, but enable()
2547 * sets the enabled bit in the control field of event _before_
2548 * accessing the event control register. If a NMI hits, then it will
2549 * keep the event running.
2550 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002551void __perf_event_task_sched_in(struct task_struct *prev,
2552 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002553{
2554 struct perf_event_context *ctx;
2555 int ctxn;
2556
2557 for_each_task_context_nr(ctxn) {
2558 ctx = task->perf_event_ctxp[ctxn];
2559 if (likely(!ctx))
2560 continue;
2561
Stephane Eraniane5d13672011-02-14 11:20:01 +02002562 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002563 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02002564 /*
2565 * if cgroup events exist on this CPU, then we need
2566 * to check if we have to switch in PMU state.
2567 * cgroup event are system-wide mode only
2568 */
2569 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002570 perf_cgroup_sched_in(prev, task);
Stephane Eraniand010b332012-02-09 23:21:00 +01002571
2572 /* check for system-wide branch_stack events */
2573 if (atomic_read(&__get_cpu_var(perf_branch_stack_events)))
2574 perf_branch_stack_sched_in(prev, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002575}
2576
Peter Zijlstraabd50712010-01-26 18:50:16 +01002577static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2578{
2579 u64 frequency = event->attr.sample_freq;
2580 u64 sec = NSEC_PER_SEC;
2581 u64 divisor, dividend;
2582
2583 int count_fls, nsec_fls, frequency_fls, sec_fls;
2584
2585 count_fls = fls64(count);
2586 nsec_fls = fls64(nsec);
2587 frequency_fls = fls64(frequency);
2588 sec_fls = 30;
2589
2590 /*
2591 * We got @count in @nsec, with a target of sample_freq HZ
2592 * the target period becomes:
2593 *
2594 * @count * 10^9
2595 * period = -------------------
2596 * @nsec * sample_freq
2597 *
2598 */
2599
2600 /*
2601 * Reduce accuracy by one bit such that @a and @b converge
2602 * to a similar magnitude.
2603 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002604#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002605do { \
2606 if (a##_fls > b##_fls) { \
2607 a >>= 1; \
2608 a##_fls--; \
2609 } else { \
2610 b >>= 1; \
2611 b##_fls--; \
2612 } \
2613} while (0)
2614
2615 /*
2616 * Reduce accuracy until either term fits in a u64, then proceed with
2617 * the other, so that finally we can do a u64/u64 division.
2618 */
2619 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2620 REDUCE_FLS(nsec, frequency);
2621 REDUCE_FLS(sec, count);
2622 }
2623
2624 if (count_fls + sec_fls > 64) {
2625 divisor = nsec * frequency;
2626
2627 while (count_fls + sec_fls > 64) {
2628 REDUCE_FLS(count, sec);
2629 divisor >>= 1;
2630 }
2631
2632 dividend = count * sec;
2633 } else {
2634 dividend = count * sec;
2635
2636 while (nsec_fls + frequency_fls > 64) {
2637 REDUCE_FLS(nsec, frequency);
2638 dividend >>= 1;
2639 }
2640
2641 divisor = nsec * frequency;
2642 }
2643
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02002644 if (!divisor)
2645 return dividend;
2646
Peter Zijlstraabd50712010-01-26 18:50:16 +01002647 return div64_u64(dividend, divisor);
2648}
2649
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002650static DEFINE_PER_CPU(int, perf_throttled_count);
2651static DEFINE_PER_CPU(u64, perf_throttled_seq);
2652
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002653static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002654{
2655 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02002656 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002657 s64 delta;
2658
Peter Zijlstraabd50712010-01-26 18:50:16 +01002659 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002660
2661 delta = (s64)(period - hwc->sample_period);
2662 delta = (delta + 7) / 8; /* low pass filter */
2663
2664 sample_period = hwc->sample_period + delta;
2665
2666 if (!sample_period)
2667 sample_period = 1;
2668
2669 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002670
Peter Zijlstrae7850592010-05-21 14:43:08 +02002671 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002672 if (disable)
2673 event->pmu->stop(event, PERF_EF_UPDATE);
2674
Peter Zijlstrae7850592010-05-21 14:43:08 +02002675 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002676
2677 if (disable)
2678 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002679 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002680}
2681
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002682/*
2683 * combine freq adjustment with unthrottling to avoid two passes over the
2684 * events. At the same time, make sure, having freq events does not change
2685 * the rate of unthrottling as that would introduce bias.
2686 */
2687static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
2688 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002689{
2690 struct perf_event *event;
2691 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002692 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002693 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002694
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002695 /*
2696 * only need to iterate over all events iff:
2697 * - context have events in frequency mode (needs freq adjust)
2698 * - there are events to unthrottle on this cpu
2699 */
2700 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002701 return;
2702
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002703 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002704 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002705
Paul Mackerras03541f82009-10-14 16:58:03 +11002706 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002707 if (event->state != PERF_EVENT_STATE_ACTIVE)
2708 continue;
2709
Stephane Eranian5632ab12011-01-03 18:20:01 +02002710 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002711 continue;
2712
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002713 hwc = &event->hw;
2714
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002715 if (needs_unthr && hwc->interrupts == MAX_INTERRUPTS) {
2716 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002717 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002718 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002719 }
2720
2721 if (!event->attr.freq || !event->attr.sample_freq)
2722 continue;
2723
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002724 /*
2725 * stop the event and update event->count
2726 */
2727 event->pmu->stop(event, PERF_EF_UPDATE);
2728
Peter Zijlstrae7850592010-05-21 14:43:08 +02002729 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002730 delta = now - hwc->freq_count_stamp;
2731 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002732
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002733 /*
2734 * restart the event
2735 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002736 * we have stopped the event so tell that
2737 * to perf_adjust_period() to avoid stopping it
2738 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002739 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01002740 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002741 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002742
2743 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002744 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002745
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002746 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002747 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002748}
2749
2750/*
2751 * Round-robin a context's events:
2752 */
2753static void rotate_ctx(struct perf_event_context *ctx)
2754{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01002755 /*
2756 * Rotate the first entry last of non-pinned groups. Rotation might be
2757 * disabled by the inheritance code.
2758 */
2759 if (!ctx->rotate_disable)
2760 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002761}
2762
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002763/*
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002764 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
2765 * because they're strictly cpu affine and rotate_start is called with IRQs
2766 * disabled, while rotate_context is called from IRQ context.
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002767 */
Stephane Eranian9e630202013-04-03 14:21:33 +02002768static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002769{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002770 struct perf_event_context *ctx = NULL;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002771 int rotate = 0, remove = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002772
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002773 if (cpuctx->ctx.nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002774 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002775 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
2776 rotate = 1;
2777 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002778
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002779 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002780 if (ctx && ctx->nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002781 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002782 if (ctx->nr_events != ctx->nr_active)
2783 rotate = 1;
2784 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002785
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002786 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002787 goto done;
2788
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002789 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002790 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002791
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002792 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2793 if (ctx)
2794 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01002795
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002796 rotate_ctx(&cpuctx->ctx);
2797 if (ctx)
2798 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002799
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002800 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002801
2802 perf_pmu_enable(cpuctx->ctx.pmu);
2803 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002804done:
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002805 if (remove)
2806 list_del_init(&cpuctx->rotation_list);
Stephane Eranian9e630202013-04-03 14:21:33 +02002807
2808 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002809}
2810
Frederic Weisbecker026249e2013-04-20 15:58:34 +02002811#ifdef CONFIG_NO_HZ_FULL
2812bool perf_event_can_stop_tick(void)
2813{
2814 if (list_empty(&__get_cpu_var(rotation_list)))
2815 return true;
2816 else
2817 return false;
2818}
2819#endif
2820
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002821void perf_event_task_tick(void)
2822{
2823 struct list_head *head = &__get_cpu_var(rotation_list);
2824 struct perf_cpu_context *cpuctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002825 struct perf_event_context *ctx;
2826 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002827
2828 WARN_ON(!irqs_disabled());
2829
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002830 __this_cpu_inc(perf_throttled_seq);
2831 throttled = __this_cpu_xchg(perf_throttled_count, 0);
2832
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002833 list_for_each_entry_safe(cpuctx, tmp, head, rotation_list) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002834 ctx = &cpuctx->ctx;
2835 perf_adjust_freq_unthr_context(ctx, throttled);
2836
2837 ctx = cpuctx->task_ctx;
2838 if (ctx)
2839 perf_adjust_freq_unthr_context(ctx, throttled);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002840 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002841}
2842
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002843static int event_enable_on_exec(struct perf_event *event,
2844 struct perf_event_context *ctx)
2845{
2846 if (!event->attr.enable_on_exec)
2847 return 0;
2848
2849 event->attr.enable_on_exec = 0;
2850 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2851 return 0;
2852
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002853 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002854
2855 return 1;
2856}
2857
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002858/*
2859 * Enable all of a task's events that have been marked enable-on-exec.
2860 * This expects task == current.
2861 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002862static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002863{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002864 struct perf_event *event;
2865 unsigned long flags;
2866 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002867 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002868
2869 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002870 if (!ctx || !ctx->nr_events)
2871 goto out;
2872
Stephane Eraniane566b762011-04-06 02:54:54 +02002873 /*
2874 * We must ctxsw out cgroup events to avoid conflict
2875 * when invoking perf_task_event_sched_in() later on
2876 * in this function. Otherwise we end up trying to
2877 * ctxswin cgroup events which are already scheduled
2878 * in.
2879 */
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002880 perf_cgroup_sched_out(current, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002881
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002882 raw_spin_lock(&ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002883 task_ctx_sched_out(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002884
Peter Zijlstrab79387e2011-11-22 11:25:43 +01002885 list_for_each_entry(event, &ctx->event_list, event_entry) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002886 ret = event_enable_on_exec(event, ctx);
2887 if (ret)
2888 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002889 }
2890
2891 /*
2892 * Unclone this context if we enabled any event.
2893 */
2894 if (enabled)
2895 unclone_ctx(ctx);
2896
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002897 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002898
Stephane Eraniane566b762011-04-06 02:54:54 +02002899 /*
2900 * Also calls ctxswin for cgroup events, if any:
2901 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002902 perf_event_context_sched_in(ctx, ctx->task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002903out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002904 local_irq_restore(flags);
2905}
2906
2907/*
2908 * Cross CPU call to read the hardware event
2909 */
2910static void __perf_event_read(void *info)
2911{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002912 struct perf_event *event = info;
2913 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002914 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002915
2916 /*
2917 * If this is a task context, we need to check whether it is
2918 * the current task context of this cpu. If not it has been
2919 * scheduled out before the smp call arrived. In that case
2920 * event->count would have been updated to a recent sample
2921 * when the event was scheduled out.
2922 */
2923 if (ctx->task && cpuctx->task_ctx != ctx)
2924 return;
2925
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002926 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002927 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002928 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002929 update_cgrp_time_from_event(event);
2930 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002931 update_event_times(event);
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002932 if (event->state == PERF_EVENT_STATE_ACTIVE)
2933 event->pmu->read(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002934 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002935}
2936
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002937static inline u64 perf_event_count(struct perf_event *event)
2938{
Peter Zijlstrae7850592010-05-21 14:43:08 +02002939 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002940}
2941
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002942static u64 perf_event_read(struct perf_event *event)
2943{
2944 /*
2945 * If event is enabled and currently active on a CPU, update the
2946 * value in the event structure:
2947 */
2948 if (event->state == PERF_EVENT_STATE_ACTIVE) {
2949 smp_call_function_single(event->oncpu,
2950 __perf_event_read, event, 1);
2951 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01002952 struct perf_event_context *ctx = event->ctx;
2953 unsigned long flags;
2954
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002955 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002956 /*
2957 * may read while context is not active
2958 * (e.g., thread is blocked), in that case
2959 * we cannot update context time
2960 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002961 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002962 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002963 update_cgrp_time_from_event(event);
2964 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002965 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002966 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002967 }
2968
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002969 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002970}
2971
2972/*
2973 * Initialize the perf_event context in a task_struct:
2974 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02002975static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002976{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002977 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002978 mutex_init(&ctx->mutex);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002979 INIT_LIST_HEAD(&ctx->pinned_groups);
2980 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002981 INIT_LIST_HEAD(&ctx->event_list);
2982 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002983}
2984
Peter Zijlstraeb184472010-09-07 15:55:13 +02002985static struct perf_event_context *
2986alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002987{
2988 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002989
2990 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
2991 if (!ctx)
2992 return NULL;
2993
2994 __perf_event_init_context(ctx);
2995 if (task) {
2996 ctx->task = task;
2997 get_task_struct(task);
2998 }
2999 ctx->pmu = pmu;
3000
3001 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003002}
3003
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003004static struct task_struct *
3005find_lively_task_by_vpid(pid_t vpid)
3006{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003007 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003008 int err;
3009
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003010 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003011 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003012 task = current;
3013 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003014 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003015 if (task)
3016 get_task_struct(task);
3017 rcu_read_unlock();
3018
3019 if (!task)
3020 return ERR_PTR(-ESRCH);
3021
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003022 /* Reuse ptrace permission checks for now. */
3023 err = -EACCES;
3024 if (!ptrace_may_access(task, PTRACE_MODE_READ))
3025 goto errout;
3026
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003027 return task;
3028errout:
3029 put_task_struct(task);
3030 return ERR_PTR(err);
3031
3032}
3033
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003034/*
3035 * Returns a matching context with refcount and pincount.
3036 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003037static struct perf_event_context *
Matt Helsley38a81da2010-09-13 13:01:20 -07003038find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003039{
3040 struct perf_event_context *ctx;
3041 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003042 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003043 int ctxn, err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003044
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003045 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003046 /* Must be root to operate on a CPU event: */
3047 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3048 return ERR_PTR(-EACCES);
3049
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003050 /*
3051 * We could be clever and allow to attach a event to an
3052 * offline CPU and activate it when the CPU comes up, but
3053 * that's for later.
3054 */
3055 if (!cpu_online(cpu))
3056 return ERR_PTR(-ENODEV);
3057
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003058 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003059 ctx = &cpuctx->ctx;
3060 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003061 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003062
3063 return ctx;
3064 }
3065
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003066 err = -EINVAL;
3067 ctxn = pmu->task_ctx_nr;
3068 if (ctxn < 0)
3069 goto errout;
3070
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003071retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003072 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003073 if (ctx) {
3074 unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003075 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003076 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003077 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003078 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003079 err = -ENOMEM;
3080 if (!ctx)
3081 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003082
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003083 err = 0;
3084 mutex_lock(&task->perf_event_mutex);
3085 /*
3086 * If it has already passed perf_event_exit_task().
3087 * we must see PF_EXITING, it takes this mutex too.
3088 */
3089 if (task->flags & PF_EXITING)
3090 err = -ESRCH;
3091 else if (task->perf_event_ctxp[ctxn])
3092 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003093 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003094 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003095 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003096 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003097 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003098 mutex_unlock(&task->perf_event_mutex);
3099
3100 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003101 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003102
3103 if (err == -EAGAIN)
3104 goto retry;
3105 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003106 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003107 }
3108
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003109 return ctx;
3110
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003111errout:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003112 return ERR_PTR(err);
3113}
3114
Li Zefan6fb29152009-10-15 11:21:42 +08003115static void perf_event_free_filter(struct perf_event *event);
3116
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003117static void free_event_rcu(struct rcu_head *head)
3118{
3119 struct perf_event *event;
3120
3121 event = container_of(head, struct perf_event, rcu_head);
3122 if (event->ns)
3123 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003124 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003125 kfree(event);
3126}
3127
Frederic Weisbecker76369132011-05-19 19:55:04 +02003128static void ring_buffer_put(struct ring_buffer *rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003129static void ring_buffer_detach(struct perf_event *event, struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003130
3131static void free_event(struct perf_event *event)
3132{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003133 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003134
3135 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02003136 if (event->attach_state & PERF_ATTACH_TASK)
Ingo Molnarc5905af2012-02-24 08:31:31 +01003137 static_key_slow_dec_deferred(&perf_sched_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01003138 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003139 atomic_dec(&nr_mmap_events);
3140 if (event->attr.comm)
3141 atomic_dec(&nr_comm_events);
3142 if (event->attr.task)
3143 atomic_dec(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02003144 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
3145 put_callchain_buffers();
Peter Zijlstra08309372011-03-03 11:31:20 +01003146 if (is_cgroup_event(event)) {
3147 atomic_dec(&per_cpu(perf_cgroup_events, event->cpu));
Ingo Molnarc5905af2012-02-24 08:31:31 +01003148 static_key_slow_dec_deferred(&perf_sched_events);
Peter Zijlstra08309372011-03-03 11:31:20 +01003149 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003150
3151 if (has_branch_stack(event)) {
3152 static_key_slow_dec_deferred(&perf_sched_events);
3153 /* is system-wide event */
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003154 if (!(event->attach_state & PERF_ATTACH_TASK)) {
Stephane Eraniand010b332012-02-09 23:21:00 +01003155 atomic_dec(&per_cpu(perf_branch_stack_events,
3156 event->cpu));
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003157 }
Stephane Eraniand010b332012-02-09 23:21:00 +01003158 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003159 }
3160
Frederic Weisbecker76369132011-05-19 19:55:04 +02003161 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003162 struct ring_buffer *rb;
3163
3164 /*
3165 * Can happen when we close an event with re-directed output.
3166 *
3167 * Since we have a 0 refcount, perf_mmap_close() will skip
3168 * over us; possibly making our ring_buffer_put() the last.
3169 */
3170 mutex_lock(&event->mmap_mutex);
3171 rb = event->rb;
3172 if (rb) {
3173 rcu_assign_pointer(event->rb, NULL);
3174 ring_buffer_detach(event, rb);
3175 ring_buffer_put(rb); /* could be last */
3176 }
3177 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003178 }
3179
Stephane Eraniane5d13672011-02-14 11:20:01 +02003180 if (is_cgroup_event(event))
3181 perf_detach_cgroup(event);
3182
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003183 if (event->destroy)
3184 event->destroy(event);
3185
Peter Zijlstra0c67b402010-09-13 11:15:58 +02003186 if (event->ctx)
3187 put_ctx(event->ctx);
3188
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003189 call_rcu(&event->rcu_head, free_event_rcu);
3190}
3191
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003192int perf_event_release_kernel(struct perf_event *event)
3193{
3194 struct perf_event_context *ctx = event->ctx;
3195
3196 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa0507c82010-05-06 15:42:53 +02003197 /*
3198 * There are two ways this annotation is useful:
3199 *
3200 * 1) there is a lock recursion from perf_event_exit_task
3201 * see the comment there.
3202 *
3203 * 2) there is a lock-inversion with mmap_sem through
3204 * perf_event_read_group(), which takes faults while
3205 * holding ctx->mutex, however this is called after
3206 * the last filedesc died, so there is no possibility
3207 * to trigger the AB-BA case.
3208 */
3209 mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
Peter Zijlstra050735b2010-05-11 11:51:53 +02003210 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02003211 perf_group_detach(event);
Peter Zijlstra050735b2010-05-11 11:51:53 +02003212 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrae03a9a52011-04-09 21:17:47 +02003213 perf_remove_from_context(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003214 mutex_unlock(&ctx->mutex);
3215
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003216 free_event(event);
3217
3218 return 0;
3219}
3220EXPORT_SYMBOL_GPL(perf_event_release_kernel);
3221
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003222/*
3223 * Called when the last reference to the file is gone.
3224 */
Al Viroa6fa9412012-08-20 14:59:25 +01003225static void put_event(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003226{
Peter Zijlstra88821352010-11-09 19:01:43 +01003227 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003228
Al Viroa6fa9412012-08-20 14:59:25 +01003229 if (!atomic_long_dec_and_test(&event->refcount))
3230 return;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003231
Peter Zijlstra88821352010-11-09 19:01:43 +01003232 rcu_read_lock();
3233 owner = ACCESS_ONCE(event->owner);
3234 /*
3235 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
3236 * !owner it means the list deletion is complete and we can indeed
3237 * free this event, otherwise we need to serialize on
3238 * owner->perf_event_mutex.
3239 */
3240 smp_read_barrier_depends();
3241 if (owner) {
3242 /*
3243 * Since delayed_put_task_struct() also drops the last
3244 * task reference we can safely take a new reference
3245 * while holding the rcu_read_lock().
3246 */
3247 get_task_struct(owner);
3248 }
3249 rcu_read_unlock();
3250
3251 if (owner) {
3252 mutex_lock(&owner->perf_event_mutex);
3253 /*
3254 * We have to re-check the event->owner field, if it is cleared
3255 * we raced with perf_event_exit_task(), acquiring the mutex
3256 * ensured they're done, and we can proceed with freeing the
3257 * event.
3258 */
3259 if (event->owner)
3260 list_del_init(&event->owner_entry);
3261 mutex_unlock(&owner->perf_event_mutex);
3262 put_task_struct(owner);
3263 }
3264
Al Viroa6fa9412012-08-20 14:59:25 +01003265 perf_event_release_kernel(event);
3266}
3267
3268static int perf_release(struct inode *inode, struct file *file)
3269{
3270 put_event(file->private_data);
3271 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003272}
3273
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003274u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003275{
3276 struct perf_event *child;
3277 u64 total = 0;
3278
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003279 *enabled = 0;
3280 *running = 0;
3281
Peter Zijlstra6f105812009-11-20 22:19:56 +01003282 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003283 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003284 *enabled += event->total_time_enabled +
3285 atomic64_read(&event->child_total_time_enabled);
3286 *running += event->total_time_running +
3287 atomic64_read(&event->child_total_time_running);
3288
3289 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003290 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003291 *enabled += child->total_time_enabled;
3292 *running += child->total_time_running;
3293 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003294 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003295
3296 return total;
3297}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003298EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003299
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003300static int perf_event_read_group(struct perf_event *event,
3301 u64 read_format, char __user *buf)
3302{
3303 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003304 int n = 0, size = 0, ret = -EFAULT;
3305 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003306 u64 values[5];
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003307 u64 count, enabled, running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003308
Peter Zijlstra6f105812009-11-20 22:19:56 +01003309 mutex_lock(&ctx->mutex);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003310 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003311
3312 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003313 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3314 values[n++] = enabled;
3315 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3316 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003317 values[n++] = count;
3318 if (read_format & PERF_FORMAT_ID)
3319 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003320
3321 size = n * sizeof(u64);
3322
3323 if (copy_to_user(buf, values, size))
Peter Zijlstra6f105812009-11-20 22:19:56 +01003324 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003325
Peter Zijlstra6f105812009-11-20 22:19:56 +01003326 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003327
3328 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01003329 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003330
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003331 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003332 if (read_format & PERF_FORMAT_ID)
3333 values[n++] = primary_event_id(sub);
3334
3335 size = n * sizeof(u64);
3336
Stephane Eranian184d3da2009-11-23 21:40:49 -08003337 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstra6f105812009-11-20 22:19:56 +01003338 ret = -EFAULT;
3339 goto unlock;
3340 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01003341
3342 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003343 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003344unlock:
3345 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003346
Peter Zijlstraabf48682009-11-20 22:19:49 +01003347 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003348}
3349
3350static int perf_event_read_one(struct perf_event *event,
3351 u64 read_format, char __user *buf)
3352{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003353 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003354 u64 values[4];
3355 int n = 0;
3356
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003357 values[n++] = perf_event_read_value(event, &enabled, &running);
3358 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3359 values[n++] = enabled;
3360 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3361 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003362 if (read_format & PERF_FORMAT_ID)
3363 values[n++] = primary_event_id(event);
3364
3365 if (copy_to_user(buf, values, n * sizeof(u64)))
3366 return -EFAULT;
3367
3368 return n * sizeof(u64);
3369}
3370
3371/*
3372 * Read the performance event - simple non blocking version for now
3373 */
3374static ssize_t
3375perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
3376{
3377 u64 read_format = event->attr.read_format;
3378 int ret;
3379
3380 /*
3381 * Return end-of-file for a read on a event that is in
3382 * error state (i.e. because it was pinned but it couldn't be
3383 * scheduled on to the CPU at some point).
3384 */
3385 if (event->state == PERF_EVENT_STATE_ERROR)
3386 return 0;
3387
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003388 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003389 return -ENOSPC;
3390
3391 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003392 if (read_format & PERF_FORMAT_GROUP)
3393 ret = perf_event_read_group(event, read_format, buf);
3394 else
3395 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003396
3397 return ret;
3398}
3399
3400static ssize_t
3401perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3402{
3403 struct perf_event *event = file->private_data;
3404
3405 return perf_read_hw(event, buf, count);
3406}
3407
3408static unsigned int perf_poll(struct file *file, poll_table *wait)
3409{
3410 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003411 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003412 unsigned int events = POLL_HUP;
3413
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003414 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003415 * Pin the event->rb by taking event->mmap_mutex; otherwise
3416 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003417 */
3418 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003419 rb = event->rb;
3420 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02003421 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003422 mutex_unlock(&event->mmap_mutex);
3423
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003424 poll_wait(file, &event->waitq, wait);
3425
3426 return events;
3427}
3428
3429static void perf_event_reset(struct perf_event *event)
3430{
3431 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02003432 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003433 perf_event_update_userpage(event);
3434}
3435
3436/*
3437 * Holding the top-level event's child_mutex means that any
3438 * descendant process that has inherited this event will block
3439 * in sync_child_event if it goes to exit, thus satisfying the
3440 * task existence requirements of perf_event_enable/disable.
3441 */
3442static void perf_event_for_each_child(struct perf_event *event,
3443 void (*func)(struct perf_event *))
3444{
3445 struct perf_event *child;
3446
3447 WARN_ON_ONCE(event->ctx->parent_ctx);
3448 mutex_lock(&event->child_mutex);
3449 func(event);
3450 list_for_each_entry(child, &event->child_list, child_list)
3451 func(child);
3452 mutex_unlock(&event->child_mutex);
3453}
3454
3455static void perf_event_for_each(struct perf_event *event,
3456 void (*func)(struct perf_event *))
3457{
3458 struct perf_event_context *ctx = event->ctx;
3459 struct perf_event *sibling;
3460
3461 WARN_ON_ONCE(ctx->parent_ctx);
3462 mutex_lock(&ctx->mutex);
3463 event = event->group_leader;
3464
3465 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003466 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10003467 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003468 mutex_unlock(&ctx->mutex);
3469}
3470
3471static int perf_event_period(struct perf_event *event, u64 __user *arg)
3472{
3473 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003474 int ret = 0;
3475 u64 value;
3476
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01003477 if (!is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003478 return -EINVAL;
3479
John Blackwoodad0cf342010-09-28 18:03:11 -04003480 if (copy_from_user(&value, arg, sizeof(value)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003481 return -EFAULT;
3482
3483 if (!value)
3484 return -EINVAL;
3485
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003486 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003487 if (event->attr.freq) {
3488 if (value > sysctl_perf_event_sample_rate) {
3489 ret = -EINVAL;
3490 goto unlock;
3491 }
3492
3493 event->attr.sample_freq = value;
3494 } else {
3495 event->attr.sample_period = value;
3496 event->hw.sample_period = value;
3497 }
3498unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003499 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003500
3501 return ret;
3502}
3503
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003504static const struct file_operations perf_fops;
3505
Al Viro2903ff02012-08-28 12:52:22 -04003506static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003507{
Al Viro2903ff02012-08-28 12:52:22 -04003508 struct fd f = fdget(fd);
3509 if (!f.file)
3510 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003511
Al Viro2903ff02012-08-28 12:52:22 -04003512 if (f.file->f_op != &perf_fops) {
3513 fdput(f);
3514 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003515 }
Al Viro2903ff02012-08-28 12:52:22 -04003516 *p = f;
3517 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003518}
3519
3520static int perf_event_set_output(struct perf_event *event,
3521 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08003522static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003523
3524static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3525{
3526 struct perf_event *event = file->private_data;
3527 void (*func)(struct perf_event *);
3528 u32 flags = arg;
3529
3530 switch (cmd) {
3531 case PERF_EVENT_IOC_ENABLE:
3532 func = perf_event_enable;
3533 break;
3534 case PERF_EVENT_IOC_DISABLE:
3535 func = perf_event_disable;
3536 break;
3537 case PERF_EVENT_IOC_RESET:
3538 func = perf_event_reset;
3539 break;
3540
3541 case PERF_EVENT_IOC_REFRESH:
3542 return perf_event_refresh(event, arg);
3543
3544 case PERF_EVENT_IOC_PERIOD:
3545 return perf_event_period(event, (u64 __user *)arg);
3546
3547 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003548 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003549 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003550 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04003551 struct perf_event *output_event;
3552 struct fd output;
3553 ret = perf_fget_light(arg, &output);
3554 if (ret)
3555 return ret;
3556 output_event = output.file->private_data;
3557 ret = perf_event_set_output(event, output_event);
3558 fdput(output);
3559 } else {
3560 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003561 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003562 return ret;
3563 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003564
Li Zefan6fb29152009-10-15 11:21:42 +08003565 case PERF_EVENT_IOC_SET_FILTER:
3566 return perf_event_set_filter(event, (void __user *)arg);
3567
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003568 default:
3569 return -ENOTTY;
3570 }
3571
3572 if (flags & PERF_IOC_FLAG_GROUP)
3573 perf_event_for_each(event, func);
3574 else
3575 perf_event_for_each_child(event, func);
3576
3577 return 0;
3578}
3579
3580int perf_event_task_enable(void)
3581{
3582 struct perf_event *event;
3583
3584 mutex_lock(&current->perf_event_mutex);
3585 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3586 perf_event_for_each_child(event, perf_event_enable);
3587 mutex_unlock(&current->perf_event_mutex);
3588
3589 return 0;
3590}
3591
3592int perf_event_task_disable(void)
3593{
3594 struct perf_event *event;
3595
3596 mutex_lock(&current->perf_event_mutex);
3597 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3598 perf_event_for_each_child(event, perf_event_disable);
3599 mutex_unlock(&current->perf_event_mutex);
3600
3601 return 0;
3602}
3603
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003604static int perf_event_index(struct perf_event *event)
3605{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003606 if (event->hw.state & PERF_HES_STOPPED)
3607 return 0;
3608
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003609 if (event->state != PERF_EVENT_STATE_ACTIVE)
3610 return 0;
3611
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01003612 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003613}
3614
Eric B Munsonc4794292011-06-23 16:34:38 -04003615static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003616 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04003617 u64 *enabled,
3618 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04003619{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003620 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04003621
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003622 *now = perf_clock();
3623 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04003624 *enabled = ctx_time - event->tstamp_enabled;
3625 *running = ctx_time - event->tstamp_running;
3626}
3627
Peter Zijlstrac7206202012-03-22 17:26:36 +01003628void __weak arch_perf_update_userpage(struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003629{
3630}
3631
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003632/*
3633 * Callers need to ensure there can be no nesting of this function, otherwise
3634 * the seqlock logic goes bad. We can not serialize this because the arch
3635 * code calls this from NMI context.
3636 */
3637void perf_event_update_userpage(struct perf_event *event)
3638{
3639 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003640 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003641 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003642
3643 rcu_read_lock();
Eric B Munson0d641202011-06-24 12:26:26 -04003644 /*
3645 * compute total_time_enabled, total_time_running
3646 * based on snapshot values taken when the event
3647 * was last scheduled in.
3648 *
3649 * we cannot simply called update_context_time()
3650 * because of locking issue as we can be called in
3651 * NMI context
3652 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003653 calc_timer_values(event, &now, &enabled, &running);
Frederic Weisbecker76369132011-05-19 19:55:04 +02003654 rb = rcu_dereference(event->rb);
3655 if (!rb)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003656 goto unlock;
3657
Frederic Weisbecker76369132011-05-19 19:55:04 +02003658 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003659
3660 /*
3661 * Disable preemption so as to not let the corresponding user-space
3662 * spin too long if we get preempted.
3663 */
3664 preempt_disable();
3665 ++userpg->lock;
3666 barrier();
3667 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003668 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01003669 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02003670 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003671
Eric B Munson0d641202011-06-24 12:26:26 -04003672 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003673 atomic64_read(&event->child_total_time_enabled);
3674
Eric B Munson0d641202011-06-24 12:26:26 -04003675 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003676 atomic64_read(&event->child_total_time_running);
3677
Peter Zijlstrac7206202012-03-22 17:26:36 +01003678 arch_perf_update_userpage(userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003679
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003680 barrier();
3681 ++userpg->lock;
3682 preempt_enable();
3683unlock:
3684 rcu_read_unlock();
3685}
3686
Peter Zijlstra906010b2009-09-21 16:08:49 +02003687static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
3688{
3689 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003690 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003691 int ret = VM_FAULT_SIGBUS;
3692
3693 if (vmf->flags & FAULT_FLAG_MKWRITE) {
3694 if (vmf->pgoff == 0)
3695 ret = 0;
3696 return ret;
3697 }
3698
3699 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003700 rb = rcu_dereference(event->rb);
3701 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003702 goto unlock;
3703
3704 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
3705 goto unlock;
3706
Frederic Weisbecker76369132011-05-19 19:55:04 +02003707 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003708 if (!vmf->page)
3709 goto unlock;
3710
3711 get_page(vmf->page);
3712 vmf->page->mapping = vma->vm_file->f_mapping;
3713 vmf->page->index = vmf->pgoff;
3714
3715 ret = 0;
3716unlock:
3717 rcu_read_unlock();
3718
3719 return ret;
3720}
3721
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003722static void ring_buffer_attach(struct perf_event *event,
3723 struct ring_buffer *rb)
3724{
3725 unsigned long flags;
3726
3727 if (!list_empty(&event->rb_entry))
3728 return;
3729
3730 spin_lock_irqsave(&rb->event_lock, flags);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003731 if (list_empty(&event->rb_entry))
3732 list_add(&event->rb_entry, &rb->event_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003733 spin_unlock_irqrestore(&rb->event_lock, flags);
3734}
3735
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003736static void ring_buffer_detach(struct perf_event *event, struct ring_buffer *rb)
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003737{
3738 unsigned long flags;
3739
3740 if (list_empty(&event->rb_entry))
3741 return;
3742
3743 spin_lock_irqsave(&rb->event_lock, flags);
3744 list_del_init(&event->rb_entry);
3745 wake_up_all(&event->waitq);
3746 spin_unlock_irqrestore(&rb->event_lock, flags);
3747}
3748
3749static void ring_buffer_wakeup(struct perf_event *event)
3750{
3751 struct ring_buffer *rb;
3752
3753 rcu_read_lock();
3754 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003755 if (rb) {
3756 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
3757 wake_up_all(&event->waitq);
3758 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003759 rcu_read_unlock();
3760}
3761
Frederic Weisbecker76369132011-05-19 19:55:04 +02003762static void rb_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003763{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003764 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003765
Frederic Weisbecker76369132011-05-19 19:55:04 +02003766 rb = container_of(rcu_head, struct ring_buffer, rcu_head);
3767 rb_free(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003768}
3769
Frederic Weisbecker76369132011-05-19 19:55:04 +02003770static struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003771{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003772 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003773
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003774 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003775 rb = rcu_dereference(event->rb);
3776 if (rb) {
3777 if (!atomic_inc_not_zero(&rb->refcount))
3778 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003779 }
3780 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003781
Frederic Weisbecker76369132011-05-19 19:55:04 +02003782 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003783}
3784
Frederic Weisbecker76369132011-05-19 19:55:04 +02003785static void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003786{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003787 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003788 return;
3789
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003790 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003791
Frederic Weisbecker76369132011-05-19 19:55:04 +02003792 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003793}
3794
3795static void perf_mmap_open(struct vm_area_struct *vma)
3796{
3797 struct perf_event *event = vma->vm_file->private_data;
3798
3799 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003800 atomic_inc(&event->rb->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003801}
3802
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003803/*
3804 * A buffer can be mmap()ed multiple times; either directly through the same
3805 * event, or through other events by use of perf_event_set_output().
3806 *
3807 * In order to undo the VM accounting done by perf_mmap() we need to destroy
3808 * the buffer here, where we still have a VM context. This means we need
3809 * to detach all events redirecting to us.
3810 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003811static void perf_mmap_close(struct vm_area_struct *vma)
3812{
3813 struct perf_event *event = vma->vm_file->private_data;
3814
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003815 struct ring_buffer *rb = event->rb;
3816 struct user_struct *mmap_user = rb->mmap_user;
3817 int mmap_locked = rb->mmap_locked;
3818 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003819
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003820 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003821
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003822 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
3823 return;
3824
3825 /* Detach current event from the buffer. */
3826 rcu_assign_pointer(event->rb, NULL);
3827 ring_buffer_detach(event, rb);
3828 mutex_unlock(&event->mmap_mutex);
3829
3830 /* If there's still other mmap()s of this buffer, we're done. */
3831 if (atomic_read(&rb->mmap_count)) {
3832 ring_buffer_put(rb); /* can't be last */
3833 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003834 }
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003835
3836 /*
3837 * No other mmap()s, detach from all other events that might redirect
3838 * into the now unreachable buffer. Somewhat complicated by the
3839 * fact that rb::event_lock otherwise nests inside mmap_mutex.
3840 */
3841again:
3842 rcu_read_lock();
3843 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
3844 if (!atomic_long_inc_not_zero(&event->refcount)) {
3845 /*
3846 * This event is en-route to free_event() which will
3847 * detach it and remove it from the list.
3848 */
3849 continue;
3850 }
3851 rcu_read_unlock();
3852
3853 mutex_lock(&event->mmap_mutex);
3854 /*
3855 * Check we didn't race with perf_event_set_output() which can
3856 * swizzle the rb from under us while we were waiting to
3857 * acquire mmap_mutex.
3858 *
3859 * If we find a different rb; ignore this event, a next
3860 * iteration will no longer find it on the list. We have to
3861 * still restart the iteration to make sure we're not now
3862 * iterating the wrong list.
3863 */
3864 if (event->rb == rb) {
3865 rcu_assign_pointer(event->rb, NULL);
3866 ring_buffer_detach(event, rb);
3867 ring_buffer_put(rb); /* can't be last, we still have one */
3868 }
3869 mutex_unlock(&event->mmap_mutex);
3870 put_event(event);
3871
3872 /*
3873 * Restart the iteration; either we're on the wrong list or
3874 * destroyed its integrity by doing a deletion.
3875 */
3876 goto again;
3877 }
3878 rcu_read_unlock();
3879
3880 /*
3881 * It could be there's still a few 0-ref events on the list; they'll
3882 * get cleaned up by free_event() -- they'll also still have their
3883 * ref on the rb and will free it whenever they are done with it.
3884 *
3885 * Aside from that, this buffer is 'fully' detached and unmapped,
3886 * undo the VM accounting.
3887 */
3888
3889 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
3890 vma->vm_mm->pinned_vm -= mmap_locked;
3891 free_uid(mmap_user);
3892
3893 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003894}
3895
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04003896static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003897 .open = perf_mmap_open,
3898 .close = perf_mmap_close,
3899 .fault = perf_mmap_fault,
3900 .page_mkwrite = perf_mmap_fault,
3901};
3902
3903static int perf_mmap(struct file *file, struct vm_area_struct *vma)
3904{
3905 struct perf_event *event = file->private_data;
3906 unsigned long user_locked, user_lock_limit;
3907 struct user_struct *user = current_user();
3908 unsigned long locked, lock_limit;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003909 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003910 unsigned long vma_size;
3911 unsigned long nr_pages;
3912 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003913 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003914
Peter Zijlstrac7920612010-05-18 10:33:24 +02003915 /*
3916 * Don't allow mmap() of inherited per-task counters. This would
3917 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02003918 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02003919 */
3920 if (event->cpu == -1 && event->attr.inherit)
3921 return -EINVAL;
3922
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003923 if (!(vma->vm_flags & VM_SHARED))
3924 return -EINVAL;
3925
3926 vma_size = vma->vm_end - vma->vm_start;
3927 nr_pages = (vma_size / PAGE_SIZE) - 1;
3928
3929 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02003930 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003931 * can do bitmasks instead of modulo.
3932 */
3933 if (nr_pages != 0 && !is_power_of_2(nr_pages))
3934 return -EINVAL;
3935
3936 if (vma_size != PAGE_SIZE * (1 + nr_pages))
3937 return -EINVAL;
3938
3939 if (vma->vm_pgoff != 0)
3940 return -EINVAL;
3941
3942 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003943again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003944 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02003945 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003946 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003947 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003948 goto unlock;
3949 }
3950
3951 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
3952 /*
3953 * Raced against perf_mmap_close() through
3954 * perf_event_set_output(). Try again, hope for better
3955 * luck.
3956 */
3957 mutex_unlock(&event->mmap_mutex);
3958 goto again;
3959 }
3960
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003961 goto unlock;
3962 }
3963
3964 user_extra = nr_pages + 1;
3965 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
3966
3967 /*
3968 * Increase the limit linearly with more CPUs:
3969 */
3970 user_lock_limit *= num_online_cpus();
3971
3972 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
3973
3974 extra = 0;
3975 if (user_locked > user_lock_limit)
3976 extra = user_locked - user_lock_limit;
3977
Jiri Slaby78d7d402010-03-05 13:42:54 -08003978 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003979 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07003980 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003981
3982 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
3983 !capable(CAP_IPC_LOCK)) {
3984 ret = -EPERM;
3985 goto unlock;
3986 }
3987
Frederic Weisbecker76369132011-05-19 19:55:04 +02003988 WARN_ON(event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003989
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003990 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02003991 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003992
Vince Weaver4ec83632011-06-01 15:15:36 -04003993 rb = rb_alloc(nr_pages,
3994 event->attr.watermark ? event->attr.wakeup_watermark : 0,
3995 event->cpu, flags);
3996
Frederic Weisbecker76369132011-05-19 19:55:04 +02003997 if (!rb) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003998 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003999 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004000 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004001
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004002 atomic_set(&rb->mmap_count, 1);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004003 rb->mmap_locked = extra;
4004 rb->mmap_user = get_current_user();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004005
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004006 atomic_long_add(user_extra, &user->locked_vm);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004007 vma->vm_mm->pinned_vm += extra;
4008
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004009 ring_buffer_attach(event, rb);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004010 rcu_assign_pointer(event->rb, rb);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004011
Peter Zijlstra9a0f05c2011-11-21 15:13:29 +01004012 perf_event_update_userpage(event);
4013
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004014unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004015 if (!ret)
4016 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004017 mutex_unlock(&event->mmap_mutex);
4018
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004019 /*
4020 * Since pinned accounting is per vm we cannot allow fork() to copy our
4021 * vma.
4022 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004023 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004024 vma->vm_ops = &perf_mmap_vmops;
4025
4026 return ret;
4027}
4028
4029static int perf_fasync(int fd, struct file *filp, int on)
4030{
Al Viro496ad9a2013-01-23 17:07:38 -05004031 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004032 struct perf_event *event = filp->private_data;
4033 int retval;
4034
4035 mutex_lock(&inode->i_mutex);
4036 retval = fasync_helper(fd, filp, on, &event->fasync);
4037 mutex_unlock(&inode->i_mutex);
4038
4039 if (retval < 0)
4040 return retval;
4041
4042 return 0;
4043}
4044
4045static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01004046 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004047 .release = perf_release,
4048 .read = perf_read,
4049 .poll = perf_poll,
4050 .unlocked_ioctl = perf_ioctl,
4051 .compat_ioctl = perf_ioctl,
4052 .mmap = perf_mmap,
4053 .fasync = perf_fasync,
4054};
4055
4056/*
4057 * Perf event wakeup
4058 *
4059 * If there's data, ensure we set the poll() state and publish everything
4060 * to user-space before waking everybody up.
4061 */
4062
4063void perf_event_wakeup(struct perf_event *event)
4064{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004065 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004066
4067 if (event->pending_kill) {
4068 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
4069 event->pending_kill = 0;
4070 }
4071}
4072
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004073static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004074{
4075 struct perf_event *event = container_of(entry,
4076 struct perf_event, pending);
4077
4078 if (event->pending_disable) {
4079 event->pending_disable = 0;
4080 __perf_event_disable(event);
4081 }
4082
4083 if (event->pending_wakeup) {
4084 event->pending_wakeup = 0;
4085 perf_event_wakeup(event);
4086 }
4087}
4088
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004089/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004090 * We assume there is only KVM supporting the callbacks.
4091 * Later on, we might change it to a list if there is
4092 * another virtualization implementation supporting the callbacks.
4093 */
4094struct perf_guest_info_callbacks *perf_guest_cbs;
4095
4096int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4097{
4098 perf_guest_cbs = cbs;
4099 return 0;
4100}
4101EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
4102
4103int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4104{
4105 perf_guest_cbs = NULL;
4106 return 0;
4107}
4108EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
4109
Jiri Olsa40189942012-08-07 15:20:37 +02004110static void
4111perf_output_sample_regs(struct perf_output_handle *handle,
4112 struct pt_regs *regs, u64 mask)
4113{
4114 int bit;
4115
4116 for_each_set_bit(bit, (const unsigned long *) &mask,
4117 sizeof(mask) * BITS_PER_BYTE) {
4118 u64 val;
4119
4120 val = perf_reg_value(regs, bit);
4121 perf_output_put(handle, val);
4122 }
4123}
4124
4125static void perf_sample_regs_user(struct perf_regs_user *regs_user,
4126 struct pt_regs *regs)
4127{
4128 if (!user_mode(regs)) {
4129 if (current->mm)
4130 regs = task_pt_regs(current);
4131 else
4132 regs = NULL;
4133 }
4134
4135 if (regs) {
4136 regs_user->regs = regs;
4137 regs_user->abi = perf_reg_abi(current);
4138 }
4139}
4140
Jiri Olsac5ebced2012-08-07 15:20:40 +02004141/*
4142 * Get remaining task size from user stack pointer.
4143 *
4144 * It'd be better to take stack vma map and limit this more
4145 * precisly, but there's no way to get it safely under interrupt,
4146 * so using TASK_SIZE as limit.
4147 */
4148static u64 perf_ustack_task_size(struct pt_regs *regs)
4149{
4150 unsigned long addr = perf_user_stack_pointer(regs);
4151
4152 if (!addr || addr >= TASK_SIZE)
4153 return 0;
4154
4155 return TASK_SIZE - addr;
4156}
4157
4158static u16
4159perf_sample_ustack_size(u16 stack_size, u16 header_size,
4160 struct pt_regs *regs)
4161{
4162 u64 task_size;
4163
4164 /* No regs, no stack pointer, no dump. */
4165 if (!regs)
4166 return 0;
4167
4168 /*
4169 * Check if we fit in with the requested stack size into the:
4170 * - TASK_SIZE
4171 * If we don't, we limit the size to the TASK_SIZE.
4172 *
4173 * - remaining sample size
4174 * If we don't, we customize the stack size to
4175 * fit in to the remaining sample size.
4176 */
4177
4178 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
4179 stack_size = min(stack_size, (u16) task_size);
4180
4181 /* Current header size plus static size and dynamic size. */
4182 header_size += 2 * sizeof(u64);
4183
4184 /* Do we fit in with the current stack dump size? */
4185 if ((u16) (header_size + stack_size) < header_size) {
4186 /*
4187 * If we overflow the maximum size for the sample,
4188 * we customize the stack dump size to fit in.
4189 */
4190 stack_size = USHRT_MAX - header_size - sizeof(u64);
4191 stack_size = round_up(stack_size, sizeof(u64));
4192 }
4193
4194 return stack_size;
4195}
4196
4197static void
4198perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
4199 struct pt_regs *regs)
4200{
4201 /* Case of a kernel thread, nothing to dump */
4202 if (!regs) {
4203 u64 size = 0;
4204 perf_output_put(handle, size);
4205 } else {
4206 unsigned long sp;
4207 unsigned int rem;
4208 u64 dyn_size;
4209
4210 /*
4211 * We dump:
4212 * static size
4213 * - the size requested by user or the best one we can fit
4214 * in to the sample max size
4215 * data
4216 * - user stack dump data
4217 * dynamic size
4218 * - the actual dumped size
4219 */
4220
4221 /* Static size. */
4222 perf_output_put(handle, dump_size);
4223
4224 /* Data. */
4225 sp = perf_user_stack_pointer(regs);
4226 rem = __output_copy_user(handle, (void *) sp, dump_size);
4227 dyn_size = dump_size - rem;
4228
4229 perf_output_skip(handle, rem);
4230
4231 /* Dynamic size. */
4232 perf_output_put(handle, dyn_size);
4233 }
4234}
4235
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004236static void __perf_event_header__init_id(struct perf_event_header *header,
4237 struct perf_sample_data *data,
4238 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004239{
4240 u64 sample_type = event->attr.sample_type;
4241
4242 data->type = sample_type;
4243 header->size += event->id_header_size;
4244
4245 if (sample_type & PERF_SAMPLE_TID) {
4246 /* namespace issues */
4247 data->tid_entry.pid = perf_event_pid(event, current);
4248 data->tid_entry.tid = perf_event_tid(event, current);
4249 }
4250
4251 if (sample_type & PERF_SAMPLE_TIME)
4252 data->time = perf_clock();
4253
4254 if (sample_type & PERF_SAMPLE_ID)
4255 data->id = primary_event_id(event);
4256
4257 if (sample_type & PERF_SAMPLE_STREAM_ID)
4258 data->stream_id = event->id;
4259
4260 if (sample_type & PERF_SAMPLE_CPU) {
4261 data->cpu_entry.cpu = raw_smp_processor_id();
4262 data->cpu_entry.reserved = 0;
4263 }
4264}
4265
Frederic Weisbecker76369132011-05-19 19:55:04 +02004266void perf_event_header__init_id(struct perf_event_header *header,
4267 struct perf_sample_data *data,
4268 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004269{
4270 if (event->attr.sample_id_all)
4271 __perf_event_header__init_id(header, data, event);
4272}
4273
4274static void __perf_event__output_id_sample(struct perf_output_handle *handle,
4275 struct perf_sample_data *data)
4276{
4277 u64 sample_type = data->type;
4278
4279 if (sample_type & PERF_SAMPLE_TID)
4280 perf_output_put(handle, data->tid_entry);
4281
4282 if (sample_type & PERF_SAMPLE_TIME)
4283 perf_output_put(handle, data->time);
4284
4285 if (sample_type & PERF_SAMPLE_ID)
4286 perf_output_put(handle, data->id);
4287
4288 if (sample_type & PERF_SAMPLE_STREAM_ID)
4289 perf_output_put(handle, data->stream_id);
4290
4291 if (sample_type & PERF_SAMPLE_CPU)
4292 perf_output_put(handle, data->cpu_entry);
4293}
4294
Frederic Weisbecker76369132011-05-19 19:55:04 +02004295void perf_event__output_id_sample(struct perf_event *event,
4296 struct perf_output_handle *handle,
4297 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004298{
4299 if (event->attr.sample_id_all)
4300 __perf_event__output_id_sample(handle, sample);
4301}
4302
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004303static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004304 struct perf_event *event,
4305 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004306{
4307 u64 read_format = event->attr.read_format;
4308 u64 values[4];
4309 int n = 0;
4310
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004311 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004312 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004313 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004314 atomic64_read(&event->child_total_time_enabled);
4315 }
4316 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004317 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004318 atomic64_read(&event->child_total_time_running);
4319 }
4320 if (read_format & PERF_FORMAT_ID)
4321 values[n++] = primary_event_id(event);
4322
Frederic Weisbecker76369132011-05-19 19:55:04 +02004323 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004324}
4325
4326/*
4327 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
4328 */
4329static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004330 struct perf_event *event,
4331 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004332{
4333 struct perf_event *leader = event->group_leader, *sub;
4334 u64 read_format = event->attr.read_format;
4335 u64 values[5];
4336 int n = 0;
4337
4338 values[n++] = 1 + leader->nr_siblings;
4339
4340 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02004341 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004342
4343 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02004344 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004345
4346 if (leader != event)
4347 leader->pmu->read(leader);
4348
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004349 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004350 if (read_format & PERF_FORMAT_ID)
4351 values[n++] = primary_event_id(leader);
4352
Frederic Weisbecker76369132011-05-19 19:55:04 +02004353 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004354
4355 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
4356 n = 0;
4357
4358 if (sub != event)
4359 sub->pmu->read(sub);
4360
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004361 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004362 if (read_format & PERF_FORMAT_ID)
4363 values[n++] = primary_event_id(sub);
4364
Frederic Weisbecker76369132011-05-19 19:55:04 +02004365 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004366 }
4367}
4368
Stephane Eranianeed01522010-10-26 16:08:01 +02004369#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
4370 PERF_FORMAT_TOTAL_TIME_RUNNING)
4371
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004372static void perf_output_read(struct perf_output_handle *handle,
4373 struct perf_event *event)
4374{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004375 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02004376 u64 read_format = event->attr.read_format;
4377
4378 /*
4379 * compute total_time_enabled, total_time_running
4380 * based on snapshot values taken when the event
4381 * was last scheduled in.
4382 *
4383 * we cannot simply called update_context_time()
4384 * because of locking issue as we are called in
4385 * NMI context
4386 */
Eric B Munsonc4794292011-06-23 16:34:38 -04004387 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004388 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02004389
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004390 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02004391 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004392 else
Stephane Eranianeed01522010-10-26 16:08:01 +02004393 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004394}
4395
4396void perf_output_sample(struct perf_output_handle *handle,
4397 struct perf_event_header *header,
4398 struct perf_sample_data *data,
4399 struct perf_event *event)
4400{
4401 u64 sample_type = data->type;
4402
4403 perf_output_put(handle, *header);
4404
4405 if (sample_type & PERF_SAMPLE_IP)
4406 perf_output_put(handle, data->ip);
4407
4408 if (sample_type & PERF_SAMPLE_TID)
4409 perf_output_put(handle, data->tid_entry);
4410
4411 if (sample_type & PERF_SAMPLE_TIME)
4412 perf_output_put(handle, data->time);
4413
4414 if (sample_type & PERF_SAMPLE_ADDR)
4415 perf_output_put(handle, data->addr);
4416
4417 if (sample_type & PERF_SAMPLE_ID)
4418 perf_output_put(handle, data->id);
4419
4420 if (sample_type & PERF_SAMPLE_STREAM_ID)
4421 perf_output_put(handle, data->stream_id);
4422
4423 if (sample_type & PERF_SAMPLE_CPU)
4424 perf_output_put(handle, data->cpu_entry);
4425
4426 if (sample_type & PERF_SAMPLE_PERIOD)
4427 perf_output_put(handle, data->period);
4428
4429 if (sample_type & PERF_SAMPLE_READ)
4430 perf_output_read(handle, event);
4431
4432 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4433 if (data->callchain) {
4434 int size = 1;
4435
4436 if (data->callchain)
4437 size += data->callchain->nr;
4438
4439 size *= sizeof(u64);
4440
Frederic Weisbecker76369132011-05-19 19:55:04 +02004441 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004442 } else {
4443 u64 nr = 0;
4444 perf_output_put(handle, nr);
4445 }
4446 }
4447
4448 if (sample_type & PERF_SAMPLE_RAW) {
4449 if (data->raw) {
4450 perf_output_put(handle, data->raw->size);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004451 __output_copy(handle, data->raw->data,
4452 data->raw->size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004453 } else {
4454 struct {
4455 u32 size;
4456 u32 data;
4457 } raw = {
4458 .size = sizeof(u32),
4459 .data = 0,
4460 };
4461 perf_output_put(handle, raw);
4462 }
4463 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004464
4465 if (!event->attr.watermark) {
4466 int wakeup_events = event->attr.wakeup_events;
4467
4468 if (wakeup_events) {
4469 struct ring_buffer *rb = handle->rb;
4470 int events = local_inc_return(&rb->events);
4471
4472 if (events >= wakeup_events) {
4473 local_sub(wakeup_events, &rb->events);
4474 local_inc(&rb->wakeup);
4475 }
4476 }
4477 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004478
4479 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4480 if (data->br_stack) {
4481 size_t size;
4482
4483 size = data->br_stack->nr
4484 * sizeof(struct perf_branch_entry);
4485
4486 perf_output_put(handle, data->br_stack->nr);
4487 perf_output_copy(handle, data->br_stack->entries, size);
4488 } else {
4489 /*
4490 * we always store at least the value of nr
4491 */
4492 u64 nr = 0;
4493 perf_output_put(handle, nr);
4494 }
4495 }
Jiri Olsa40189942012-08-07 15:20:37 +02004496
4497 if (sample_type & PERF_SAMPLE_REGS_USER) {
4498 u64 abi = data->regs_user.abi;
4499
4500 /*
4501 * If there are no regs to dump, notice it through
4502 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
4503 */
4504 perf_output_put(handle, abi);
4505
4506 if (abi) {
4507 u64 mask = event->attr.sample_regs_user;
4508 perf_output_sample_regs(handle,
4509 data->regs_user.regs,
4510 mask);
4511 }
4512 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004513
4514 if (sample_type & PERF_SAMPLE_STACK_USER)
4515 perf_output_sample_ustack(handle,
4516 data->stack_user_size,
4517 data->regs_user.regs);
Andi Kleenc3feedf2013-01-24 16:10:28 +01004518
4519 if (sample_type & PERF_SAMPLE_WEIGHT)
4520 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01004521
4522 if (sample_type & PERF_SAMPLE_DATA_SRC)
4523 perf_output_put(handle, data->data_src.val);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004524}
4525
4526void perf_prepare_sample(struct perf_event_header *header,
4527 struct perf_sample_data *data,
4528 struct perf_event *event,
4529 struct pt_regs *regs)
4530{
4531 u64 sample_type = event->attr.sample_type;
4532
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004533 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004534 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004535
4536 header->misc = 0;
4537 header->misc |= perf_misc_flags(regs);
4538
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004539 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004540
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004541 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004542 data->ip = perf_instruction_pointer(regs);
4543
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004544 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4545 int size = 1;
4546
Andrew Vagine6dab5f2012-07-11 18:14:58 +04004547 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004548
4549 if (data->callchain)
4550 size += data->callchain->nr;
4551
4552 header->size += size * sizeof(u64);
4553 }
4554
4555 if (sample_type & PERF_SAMPLE_RAW) {
4556 int size = sizeof(u32);
4557
4558 if (data->raw)
4559 size += data->raw->size;
4560 else
4561 size += sizeof(u32);
4562
4563 WARN_ON_ONCE(size & (sizeof(u64)-1));
4564 header->size += size;
4565 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004566
4567 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4568 int size = sizeof(u64); /* nr */
4569 if (data->br_stack) {
4570 size += data->br_stack->nr
4571 * sizeof(struct perf_branch_entry);
4572 }
4573 header->size += size;
4574 }
Jiri Olsa40189942012-08-07 15:20:37 +02004575
4576 if (sample_type & PERF_SAMPLE_REGS_USER) {
4577 /* regs dump ABI info */
4578 int size = sizeof(u64);
4579
4580 perf_sample_regs_user(&data->regs_user, regs);
4581
4582 if (data->regs_user.regs) {
4583 u64 mask = event->attr.sample_regs_user;
4584 size += hweight64(mask) * sizeof(u64);
4585 }
4586
4587 header->size += size;
4588 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004589
4590 if (sample_type & PERF_SAMPLE_STACK_USER) {
4591 /*
4592 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
4593 * processed as the last one or have additional check added
4594 * in case new sample type is added, because we could eat
4595 * up the rest of the sample size.
4596 */
4597 struct perf_regs_user *uregs = &data->regs_user;
4598 u16 stack_size = event->attr.sample_stack_user;
4599 u16 size = sizeof(u64);
4600
4601 if (!uregs->abi)
4602 perf_sample_regs_user(uregs, regs);
4603
4604 stack_size = perf_sample_ustack_size(stack_size, header->size,
4605 uregs->regs);
4606
4607 /*
4608 * If there is something to dump, add space for the dump
4609 * itself and for the field that tells the dynamic size,
4610 * which is how many have been actually dumped.
4611 */
4612 if (stack_size)
4613 size += sizeof(u64) + stack_size;
4614
4615 data->stack_user_size = stack_size;
4616 header->size += size;
4617 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004618}
4619
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004620static void perf_event_output(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004621 struct perf_sample_data *data,
4622 struct pt_regs *regs)
4623{
4624 struct perf_output_handle handle;
4625 struct perf_event_header header;
4626
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004627 /* protect the callchain buffers */
4628 rcu_read_lock();
4629
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004630 perf_prepare_sample(&header, data, event, regs);
4631
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004632 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004633 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004634
4635 perf_output_sample(&handle, &header, data, event);
4636
4637 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004638
4639exit:
4640 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004641}
4642
4643/*
4644 * read event_id
4645 */
4646
4647struct perf_read_event {
4648 struct perf_event_header header;
4649
4650 u32 pid;
4651 u32 tid;
4652};
4653
4654static void
4655perf_event_read_event(struct perf_event *event,
4656 struct task_struct *task)
4657{
4658 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004659 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004660 struct perf_read_event read_event = {
4661 .header = {
4662 .type = PERF_RECORD_READ,
4663 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004664 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004665 },
4666 .pid = perf_event_pid(event, task),
4667 .tid = perf_event_tid(event, task),
4668 };
4669 int ret;
4670
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004671 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004672 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004673 if (ret)
4674 return;
4675
4676 perf_output_put(&handle, read_event);
4677 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004678 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004679
4680 perf_output_end(&handle);
4681}
4682
Jiri Olsa52d857a2013-05-06 18:27:18 +02004683typedef int (perf_event_aux_match_cb)(struct perf_event *event, void *data);
4684typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
4685
4686static void
4687perf_event_aux_ctx(struct perf_event_context *ctx,
4688 perf_event_aux_match_cb match,
4689 perf_event_aux_output_cb output,
4690 void *data)
4691{
4692 struct perf_event *event;
4693
4694 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4695 if (event->state < PERF_EVENT_STATE_INACTIVE)
4696 continue;
4697 if (!event_filter_match(event))
4698 continue;
4699 if (match(event, data))
4700 output(event, data);
4701 }
4702}
4703
4704static void
4705perf_event_aux(perf_event_aux_match_cb match,
4706 perf_event_aux_output_cb output,
4707 void *data,
4708 struct perf_event_context *task_ctx)
4709{
4710 struct perf_cpu_context *cpuctx;
4711 struct perf_event_context *ctx;
4712 struct pmu *pmu;
4713 int ctxn;
4714
4715 rcu_read_lock();
4716 list_for_each_entry_rcu(pmu, &pmus, entry) {
4717 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
4718 if (cpuctx->unique_pmu != pmu)
4719 goto next;
4720 perf_event_aux_ctx(&cpuctx->ctx, match, output, data);
4721 if (task_ctx)
4722 goto next;
4723 ctxn = pmu->task_ctx_nr;
4724 if (ctxn < 0)
4725 goto next;
4726 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4727 if (ctx)
4728 perf_event_aux_ctx(ctx, match, output, data);
4729next:
4730 put_cpu_ptr(pmu->pmu_cpu_context);
4731 }
4732
4733 if (task_ctx) {
4734 preempt_disable();
4735 perf_event_aux_ctx(task_ctx, match, output, data);
4736 preempt_enable();
4737 }
4738 rcu_read_unlock();
4739}
4740
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004741/*
4742 * task tracking -- fork/exit
4743 *
Eric B Munson3af9e852010-05-18 15:30:49 +01004744 * enabled by: attr.comm | attr.mmap | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004745 */
4746
4747struct perf_task_event {
4748 struct task_struct *task;
4749 struct perf_event_context *task_ctx;
4750
4751 struct {
4752 struct perf_event_header header;
4753
4754 u32 pid;
4755 u32 ppid;
4756 u32 tid;
4757 u32 ptid;
4758 u64 time;
4759 } event_id;
4760};
4761
4762static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004763 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004764{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004765 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004766 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004767 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004768 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004769 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01004770
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004771 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004772
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004773 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004774 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02004775 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004776 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004777
4778 task_event->event_id.pid = perf_event_pid(event, task);
4779 task_event->event_id.ppid = perf_event_pid(event, current);
4780
4781 task_event->event_id.tid = perf_event_tid(event, task);
4782 task_event->event_id.ptid = perf_event_tid(event, current);
4783
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004784 perf_output_put(&handle, task_event->event_id);
4785
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004786 perf_event__output_id_sample(event, &handle, &sample);
4787
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004788 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004789out:
4790 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004791}
4792
Jiri Olsa52d857a2013-05-06 18:27:18 +02004793static int perf_event_task_match(struct perf_event *event,
4794 void *data __maybe_unused)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004795{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004796 return event->attr.comm || event->attr.mmap ||
4797 event->attr.mmap_data || event->attr.task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004798}
4799
4800static void perf_event_task(struct task_struct *task,
4801 struct perf_event_context *task_ctx,
4802 int new)
4803{
4804 struct perf_task_event task_event;
4805
4806 if (!atomic_read(&nr_comm_events) &&
4807 !atomic_read(&nr_mmap_events) &&
4808 !atomic_read(&nr_task_events))
4809 return;
4810
4811 task_event = (struct perf_task_event){
4812 .task = task,
4813 .task_ctx = task_ctx,
4814 .event_id = {
4815 .header = {
4816 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
4817 .misc = 0,
4818 .size = sizeof(task_event.event_id),
4819 },
4820 /* .pid */
4821 /* .ppid */
4822 /* .tid */
4823 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004824 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004825 },
4826 };
4827
Jiri Olsa52d857a2013-05-06 18:27:18 +02004828 perf_event_aux(perf_event_task_match,
4829 perf_event_task_output,
4830 &task_event,
4831 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004832}
4833
4834void perf_event_fork(struct task_struct *task)
4835{
4836 perf_event_task(task, NULL, 1);
4837}
4838
4839/*
4840 * comm tracking
4841 */
4842
4843struct perf_comm_event {
4844 struct task_struct *task;
4845 char *comm;
4846 int comm_size;
4847
4848 struct {
4849 struct perf_event_header header;
4850
4851 u32 pid;
4852 u32 tid;
4853 } event_id;
4854};
4855
4856static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004857 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004858{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004859 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004860 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004861 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004862 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004863 int ret;
4864
4865 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
4866 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004867 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004868
4869 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004870 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004871
4872 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
4873 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
4874
4875 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004876 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004877 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004878
4879 perf_event__output_id_sample(event, &handle, &sample);
4880
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004881 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004882out:
4883 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004884}
4885
Jiri Olsa52d857a2013-05-06 18:27:18 +02004886static int perf_event_comm_match(struct perf_event *event,
4887 void *data __maybe_unused)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004888{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004889 return event->attr.comm;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004890}
4891
4892static void perf_event_comm_event(struct perf_comm_event *comm_event)
4893{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004894 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004895 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004896
4897 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01004898 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004899 size = ALIGN(strlen(comm)+1, sizeof(u64));
4900
4901 comm_event->comm = comm;
4902 comm_event->comm_size = size;
4903
4904 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004905
Jiri Olsa52d857a2013-05-06 18:27:18 +02004906 perf_event_aux(perf_event_comm_match,
4907 perf_event_comm_output,
4908 comm_event,
4909 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004910}
4911
4912void perf_event_comm(struct task_struct *task)
4913{
4914 struct perf_comm_event comm_event;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004915 struct perf_event_context *ctx;
4916 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004917
Paul E. McKenneyc79aa0d92013-04-19 12:01:24 -07004918 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02004919 for_each_task_context_nr(ctxn) {
4920 ctx = task->perf_event_ctxp[ctxn];
4921 if (!ctx)
4922 continue;
4923
4924 perf_event_enable_on_exec(ctx);
4925 }
Paul E. McKenneyc79aa0d92013-04-19 12:01:24 -07004926 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004927
4928 if (!atomic_read(&nr_comm_events))
4929 return;
4930
4931 comm_event = (struct perf_comm_event){
4932 .task = task,
4933 /* .comm */
4934 /* .comm_size */
4935 .event_id = {
4936 .header = {
4937 .type = PERF_RECORD_COMM,
4938 .misc = 0,
4939 /* .size */
4940 },
4941 /* .pid */
4942 /* .tid */
4943 },
4944 };
4945
4946 perf_event_comm_event(&comm_event);
4947}
4948
4949/*
4950 * mmap tracking
4951 */
4952
4953struct perf_mmap_event {
4954 struct vm_area_struct *vma;
4955
4956 const char *file_name;
4957 int file_size;
4958
4959 struct {
4960 struct perf_event_header header;
4961
4962 u32 pid;
4963 u32 tid;
4964 u64 start;
4965 u64 len;
4966 u64 pgoff;
4967 } event_id;
4968};
4969
4970static void perf_event_mmap_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_mmap_event *mmap_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 = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004977 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004978
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004979 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
4980 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004981 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004982 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004983 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004984
4985 mmap_event->event_id.pid = perf_event_pid(event, current);
4986 mmap_event->event_id.tid = perf_event_tid(event, current);
4987
4988 perf_output_put(&handle, mmap_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004989 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004990 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004991
4992 perf_event__output_id_sample(event, &handle, &sample);
4993
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004994 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004995out:
4996 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004997}
4998
4999static int perf_event_mmap_match(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005000 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005001{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005002 struct perf_mmap_event *mmap_event = data;
5003 struct vm_area_struct *vma = mmap_event->vma;
5004 int executable = vma->vm_flags & VM_EXEC;
Peter Zijlstra22e19082010-01-18 09:12:32 +01005005
Jiri Olsa52d857a2013-05-06 18:27:18 +02005006 return (!executable && event->attr.mmap_data) ||
5007 (executable && event->attr.mmap);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005008}
5009
5010static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
5011{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005012 struct vm_area_struct *vma = mmap_event->vma;
5013 struct file *file = vma->vm_file;
5014 unsigned int size;
5015 char tmp[16];
5016 char *buf = NULL;
5017 const char *name;
5018
5019 memset(tmp, 0, sizeof(tmp));
5020
5021 if (file) {
5022 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005023 * d_path works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005024 * need to add enough zero bytes after the string to handle
5025 * the 64bit alignment we do later.
5026 */
5027 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
5028 if (!buf) {
5029 name = strncpy(tmp, "//enomem", sizeof(tmp));
5030 goto got_name;
5031 }
5032 name = d_path(&file->f_path, buf, PATH_MAX);
5033 if (IS_ERR(name)) {
5034 name = strncpy(tmp, "//toolong", sizeof(tmp));
5035 goto got_name;
5036 }
5037 } else {
5038 if (arch_vma_name(mmap_event->vma)) {
5039 name = strncpy(tmp, arch_vma_name(mmap_event->vma),
Chen Gangc97847d2013-04-08 11:48:27 +08005040 sizeof(tmp) - 1);
5041 tmp[sizeof(tmp) - 1] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005042 goto got_name;
5043 }
5044
5045 if (!vma->vm_mm) {
5046 name = strncpy(tmp, "[vdso]", sizeof(tmp));
5047 goto got_name;
Eric B Munson3af9e852010-05-18 15:30:49 +01005048 } else if (vma->vm_start <= vma->vm_mm->start_brk &&
5049 vma->vm_end >= vma->vm_mm->brk) {
5050 name = strncpy(tmp, "[heap]", sizeof(tmp));
5051 goto got_name;
5052 } else if (vma->vm_start <= vma->vm_mm->start_stack &&
5053 vma->vm_end >= vma->vm_mm->start_stack) {
5054 name = strncpy(tmp, "[stack]", sizeof(tmp));
5055 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005056 }
5057
5058 name = strncpy(tmp, "//anon", sizeof(tmp));
5059 goto got_name;
5060 }
5061
5062got_name:
5063 size = ALIGN(strlen(name)+1, sizeof(u64));
5064
5065 mmap_event->file_name = name;
5066 mmap_event->file_size = size;
5067
Stephane Eranian2fe85422013-01-24 16:10:39 +01005068 if (!(vma->vm_flags & VM_EXEC))
5069 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
5070
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005071 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
5072
Jiri Olsa52d857a2013-05-06 18:27:18 +02005073 perf_event_aux(perf_event_mmap_match,
5074 perf_event_mmap_output,
5075 mmap_event,
5076 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005077
5078 kfree(buf);
5079}
5080
Eric B Munson3af9e852010-05-18 15:30:49 +01005081void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005082{
5083 struct perf_mmap_event mmap_event;
5084
5085 if (!atomic_read(&nr_mmap_events))
5086 return;
5087
5088 mmap_event = (struct perf_mmap_event){
5089 .vma = vma,
5090 /* .file_name */
5091 /* .file_size */
5092 .event_id = {
5093 .header = {
5094 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005095 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005096 /* .size */
5097 },
5098 /* .pid */
5099 /* .tid */
5100 .start = vma->vm_start,
5101 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01005102 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005103 },
5104 };
5105
5106 perf_event_mmap_event(&mmap_event);
5107}
5108
5109/*
5110 * IRQ throttle logging
5111 */
5112
5113static void perf_log_throttle(struct perf_event *event, int enable)
5114{
5115 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005116 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005117 int ret;
5118
5119 struct {
5120 struct perf_event_header header;
5121 u64 time;
5122 u64 id;
5123 u64 stream_id;
5124 } throttle_event = {
5125 .header = {
5126 .type = PERF_RECORD_THROTTLE,
5127 .misc = 0,
5128 .size = sizeof(throttle_event),
5129 },
5130 .time = perf_clock(),
5131 .id = primary_event_id(event),
5132 .stream_id = event->id,
5133 };
5134
5135 if (enable)
5136 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
5137
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005138 perf_event_header__init_id(&throttle_event.header, &sample, event);
5139
5140 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005141 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005142 if (ret)
5143 return;
5144
5145 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005146 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005147 perf_output_end(&handle);
5148}
5149
5150/*
5151 * Generic event overflow handling, sampling.
5152 */
5153
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005154static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005155 int throttle, struct perf_sample_data *data,
5156 struct pt_regs *regs)
5157{
5158 int events = atomic_read(&event->event_limit);
5159 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005160 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005161 int ret = 0;
5162
Peter Zijlstra96398822010-11-24 18:55:29 +01005163 /*
5164 * Non-sampling counters might still use the PMI to fold short
5165 * hardware counters, ignore those.
5166 */
5167 if (unlikely(!is_sampling_event(event)))
5168 return 0;
5169
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005170 seq = __this_cpu_read(perf_throttled_seq);
5171 if (seq != hwc->interrupts_seq) {
5172 hwc->interrupts_seq = seq;
5173 hwc->interrupts = 1;
5174 } else {
5175 hwc->interrupts++;
5176 if (unlikely(throttle
5177 && hwc->interrupts >= max_samples_per_tick)) {
5178 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01005179 hwc->interrupts = MAX_INTERRUPTS;
5180 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005181 ret = 1;
5182 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005183 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005184
5185 if (event->attr.freq) {
5186 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01005187 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005188
Peter Zijlstraabd50712010-01-26 18:50:16 +01005189 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005190
Peter Zijlstraabd50712010-01-26 18:50:16 +01005191 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01005192 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005193 }
5194
5195 /*
5196 * XXX event_limit might not quite work as expected on inherited
5197 * events
5198 */
5199
5200 event->pending_kill = POLL_IN;
5201 if (events && atomic_dec_and_test(&event->event_limit)) {
5202 ret = 1;
5203 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005204 event->pending_disable = 1;
5205 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005206 }
5207
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005208 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005209 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005210 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005211 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005212
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005213 if (event->fasync && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005214 event->pending_wakeup = 1;
5215 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005216 }
5217
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005218 return ret;
5219}
5220
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005221int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005222 struct perf_sample_data *data,
5223 struct pt_regs *regs)
5224{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005225 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005226}
5227
5228/*
5229 * Generic software event infrastructure
5230 */
5231
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005232struct swevent_htable {
5233 struct swevent_hlist *swevent_hlist;
5234 struct mutex hlist_mutex;
5235 int hlist_refcount;
5236
5237 /* Recursion avoidance in each contexts */
5238 int recursion[PERF_NR_CONTEXTS];
5239};
5240
5241static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
5242
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005243/*
5244 * We directly increment event->count and keep a second value in
5245 * event->hw.period_left to count intervals. This period event
5246 * is kept in the range [-sample_period, 0] so that we can use the
5247 * sign as trigger.
5248 */
5249
Jiri Olsaab573842013-05-01 17:25:44 +02005250u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005251{
5252 struct hw_perf_event *hwc = &event->hw;
5253 u64 period = hwc->last_period;
5254 u64 nr, offset;
5255 s64 old, val;
5256
5257 hwc->last_period = hwc->sample_period;
5258
5259again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02005260 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005261 if (val < 0)
5262 return 0;
5263
5264 nr = div64_u64(period + val, period);
5265 offset = nr * period;
5266 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02005267 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005268 goto again;
5269
5270 return nr;
5271}
5272
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005273static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005274 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005275 struct pt_regs *regs)
5276{
5277 struct hw_perf_event *hwc = &event->hw;
5278 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005279
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005280 if (!overflow)
5281 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005282
5283 if (hwc->interrupts == MAX_INTERRUPTS)
5284 return;
5285
5286 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005287 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005288 data, regs)) {
5289 /*
5290 * We inhibit the overflow from happening when
5291 * hwc->interrupts == MAX_INTERRUPTS.
5292 */
5293 break;
5294 }
5295 throttle = 1;
5296 }
5297}
5298
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005299static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005300 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005301 struct pt_regs *regs)
5302{
5303 struct hw_perf_event *hwc = &event->hw;
5304
Peter Zijlstrae7850592010-05-21 14:43:08 +02005305 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005306
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005307 if (!regs)
5308 return;
5309
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005310 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005311 return;
5312
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03005313 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
5314 data->period = nr;
5315 return perf_swevent_overflow(event, 1, data, regs);
5316 } else
5317 data->period = event->hw.last_period;
5318
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005319 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005320 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005321
Peter Zijlstrae7850592010-05-21 14:43:08 +02005322 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005323 return;
5324
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005325 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005326}
5327
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005328static int perf_exclude_event(struct perf_event *event,
5329 struct pt_regs *regs)
5330{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005331 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01005332 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005333
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005334 if (regs) {
5335 if (event->attr.exclude_user && user_mode(regs))
5336 return 1;
5337
5338 if (event->attr.exclude_kernel && !user_mode(regs))
5339 return 1;
5340 }
5341
5342 return 0;
5343}
5344
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005345static int perf_swevent_match(struct perf_event *event,
5346 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08005347 u32 event_id,
5348 struct perf_sample_data *data,
5349 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005350{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005351 if (event->attr.type != type)
5352 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005353
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005354 if (event->attr.config != event_id)
5355 return 0;
5356
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005357 if (perf_exclude_event(event, regs))
5358 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005359
5360 return 1;
5361}
5362
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005363static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005364{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005365 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005366
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005367 return hash_64(val, SWEVENT_HLIST_BITS);
5368}
5369
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005370static inline struct hlist_head *
5371__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005372{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005373 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005374
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005375 return &hlist->heads[hash];
5376}
5377
5378/* For the read side: events when they trigger */
5379static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005380find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005381{
5382 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005383
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005384 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005385 if (!hlist)
5386 return NULL;
5387
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005388 return __find_swevent_head(hlist, type, event_id);
5389}
5390
5391/* For the event head insertion and removal in the hlist */
5392static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005393find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005394{
5395 struct swevent_hlist *hlist;
5396 u32 event_id = event->attr.config;
5397 u64 type = event->attr.type;
5398
5399 /*
5400 * Event scheduling is always serialized against hlist allocation
5401 * and release. Which makes the protected version suitable here.
5402 * The context lock guarantees that.
5403 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005404 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005405 lockdep_is_held(&event->ctx->lock));
5406 if (!hlist)
5407 return NULL;
5408
5409 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005410}
5411
5412static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005413 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005414 struct perf_sample_data *data,
5415 struct pt_regs *regs)
5416{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005417 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005418 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005419 struct hlist_head *head;
5420
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005421 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005422 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005423 if (!head)
5424 goto end;
5425
Sasha Levinb67bfe02013-02-27 17:06:00 -08005426 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08005427 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005428 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005429 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005430end:
5431 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005432}
5433
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005434int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005435{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005436 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005437
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005438 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005439}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01005440EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005441
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01005442inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005443{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005444 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005445
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005446 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005447}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005448
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005449void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005450{
Ingo Molnara4234bf2009-11-23 10:57:59 +01005451 struct perf_sample_data data;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005452 int rctx;
5453
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005454 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005455 rctx = perf_swevent_get_recursion_context();
5456 if (rctx < 0)
5457 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005458
Robert Richterfd0d0002012-04-02 20:19:08 +02005459 perf_sample_data_init(&data, addr, 0);
Ingo Molnara4234bf2009-11-23 10:57:59 +01005460
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005461 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005462
5463 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005464 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005465}
5466
5467static void perf_swevent_read(struct perf_event *event)
5468{
5469}
5470
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005471static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005472{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005473 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005474 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005475 struct hlist_head *head;
5476
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005477 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005478 hwc->last_period = hwc->sample_period;
5479 perf_swevent_set_period(event);
5480 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005481
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005482 hwc->state = !(flags & PERF_EF_START);
5483
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005484 head = find_swevent_head(swhash, event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005485 if (WARN_ON_ONCE(!head))
5486 return -EINVAL;
5487
5488 hlist_add_head_rcu(&event->hlist_entry, head);
5489
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005490 return 0;
5491}
5492
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005493static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005494{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005495 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005496}
5497
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005498static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005499{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005500 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005501}
5502
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005503static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005504{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005505 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005506}
5507
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005508/* Deref the hlist from the update side */
5509static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005510swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005511{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005512 return rcu_dereference_protected(swhash->swevent_hlist,
5513 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005514}
5515
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005516static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005517{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005518 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005519
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005520 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005521 return;
5522
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005523 rcu_assign_pointer(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08005524 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005525}
5526
5527static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
5528{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005529 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005530
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005531 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005532
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005533 if (!--swhash->hlist_refcount)
5534 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005535
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005536 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005537}
5538
5539static void swevent_hlist_put(struct perf_event *event)
5540{
5541 int cpu;
5542
5543 if (event->cpu != -1) {
5544 swevent_hlist_put_cpu(event, event->cpu);
5545 return;
5546 }
5547
5548 for_each_possible_cpu(cpu)
5549 swevent_hlist_put_cpu(event, cpu);
5550}
5551
5552static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
5553{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005554 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005555 int err = 0;
5556
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005557 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005558
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005559 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005560 struct swevent_hlist *hlist;
5561
5562 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
5563 if (!hlist) {
5564 err = -ENOMEM;
5565 goto exit;
5566 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005567 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005568 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005569 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005570exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005571 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005572
5573 return err;
5574}
5575
5576static int swevent_hlist_get(struct perf_event *event)
5577{
5578 int err;
5579 int cpu, failed_cpu;
5580
5581 if (event->cpu != -1)
5582 return swevent_hlist_get_cpu(event, event->cpu);
5583
5584 get_online_cpus();
5585 for_each_possible_cpu(cpu) {
5586 err = swevent_hlist_get_cpu(event, cpu);
5587 if (err) {
5588 failed_cpu = cpu;
5589 goto fail;
5590 }
5591 }
5592 put_online_cpus();
5593
5594 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005595fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005596 for_each_possible_cpu(cpu) {
5597 if (cpu == failed_cpu)
5598 break;
5599 swevent_hlist_put_cpu(event, cpu);
5600 }
5601
5602 put_online_cpus();
5603 return err;
5604}
5605
Ingo Molnarc5905af2012-02-24 08:31:31 +01005606struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005607
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005608static void sw_perf_event_destroy(struct perf_event *event)
5609{
5610 u64 event_id = event->attr.config;
5611
5612 WARN_ON(event->parent);
5613
Ingo Molnarc5905af2012-02-24 08:31:31 +01005614 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005615 swevent_hlist_put(event);
5616}
5617
5618static int perf_swevent_init(struct perf_event *event)
5619{
Tommi Rantala8176cce2013-04-13 22:49:14 +03005620 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005621
5622 if (event->attr.type != PERF_TYPE_SOFTWARE)
5623 return -ENOENT;
5624
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005625 /*
5626 * no branch sampling for software events
5627 */
5628 if (has_branch_stack(event))
5629 return -EOPNOTSUPP;
5630
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005631 switch (event_id) {
5632 case PERF_COUNT_SW_CPU_CLOCK:
5633 case PERF_COUNT_SW_TASK_CLOCK:
5634 return -ENOENT;
5635
5636 default:
5637 break;
5638 }
5639
Dan Carpenterce677832010-10-24 21:50:42 +02005640 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005641 return -ENOENT;
5642
5643 if (!event->parent) {
5644 int err;
5645
5646 err = swevent_hlist_get(event);
5647 if (err)
5648 return err;
5649
Ingo Molnarc5905af2012-02-24 08:31:31 +01005650 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005651 event->destroy = sw_perf_event_destroy;
5652 }
5653
5654 return 0;
5655}
5656
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005657static int perf_swevent_event_idx(struct perf_event *event)
5658{
5659 return 0;
5660}
5661
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005662static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005663 .task_ctx_nr = perf_sw_context,
5664
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005665 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005666 .add = perf_swevent_add,
5667 .del = perf_swevent_del,
5668 .start = perf_swevent_start,
5669 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005670 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005671
5672 .event_idx = perf_swevent_event_idx,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005673};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005674
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005675#ifdef CONFIG_EVENT_TRACING
5676
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005677static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005678 struct perf_sample_data *data)
5679{
5680 void *record = data->raw->data;
5681
5682 if (likely(!event->filter) || filter_match_preds(event->filter, record))
5683 return 1;
5684 return 0;
5685}
5686
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005687static int perf_tp_event_match(struct perf_event *event,
5688 struct perf_sample_data *data,
5689 struct pt_regs *regs)
5690{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01005691 if (event->hw.state & PERF_HES_STOPPED)
5692 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02005693 /*
5694 * All tracepoints are from kernel-space.
5695 */
5696 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005697 return 0;
5698
5699 if (!perf_tp_filter_match(event, data))
5700 return 0;
5701
5702 return 1;
5703}
5704
5705void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005706 struct pt_regs *regs, struct hlist_head *head, int rctx,
5707 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005708{
5709 struct perf_sample_data data;
5710 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005711
5712 struct perf_raw_record raw = {
5713 .size = entry_size,
5714 .data = record,
5715 };
5716
Robert Richterfd0d0002012-04-02 20:19:08 +02005717 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005718 data.raw = &raw;
5719
Sasha Levinb67bfe02013-02-27 17:06:00 -08005720 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005721 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005722 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005723 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005724
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005725 /*
5726 * If we got specified a target task, also iterate its context and
5727 * deliver this event there too.
5728 */
5729 if (task && task != current) {
5730 struct perf_event_context *ctx;
5731 struct trace_entry *entry = record;
5732
5733 rcu_read_lock();
5734 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
5735 if (!ctx)
5736 goto unlock;
5737
5738 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5739 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5740 continue;
5741 if (event->attr.config != entry->type)
5742 continue;
5743 if (perf_tp_event_match(event, &data, regs))
5744 perf_swevent_event(event, count, &data, regs);
5745 }
5746unlock:
5747 rcu_read_unlock();
5748 }
5749
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005750 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005751}
5752EXPORT_SYMBOL_GPL(perf_tp_event);
5753
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005754static void tp_perf_event_destroy(struct perf_event *event)
5755{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005756 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005757}
5758
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005759static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005760{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005761 int err;
5762
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005763 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5764 return -ENOENT;
5765
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005766 /*
5767 * no branch sampling for tracepoint events
5768 */
5769 if (has_branch_stack(event))
5770 return -EOPNOTSUPP;
5771
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005772 err = perf_trace_init(event);
5773 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005774 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005775
5776 event->destroy = tp_perf_event_destroy;
5777
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005778 return 0;
5779}
5780
5781static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005782 .task_ctx_nr = perf_sw_context,
5783
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005784 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005785 .add = perf_trace_add,
5786 .del = perf_trace_del,
5787 .start = perf_swevent_start,
5788 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005789 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005790
5791 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005792};
5793
5794static inline void perf_tp_register(void)
5795{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005796 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005797}
Li Zefan6fb29152009-10-15 11:21:42 +08005798
5799static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5800{
5801 char *filter_str;
5802 int ret;
5803
5804 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5805 return -EINVAL;
5806
5807 filter_str = strndup_user(arg, PAGE_SIZE);
5808 if (IS_ERR(filter_str))
5809 return PTR_ERR(filter_str);
5810
5811 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
5812
5813 kfree(filter_str);
5814 return ret;
5815}
5816
5817static void perf_event_free_filter(struct perf_event *event)
5818{
5819 ftrace_profile_free_filter(event);
5820}
5821
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005822#else
Li Zefan6fb29152009-10-15 11:21:42 +08005823
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005824static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005825{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005826}
Li Zefan6fb29152009-10-15 11:21:42 +08005827
5828static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5829{
5830 return -ENOENT;
5831}
5832
5833static void perf_event_free_filter(struct perf_event *event)
5834{
5835}
5836
Li Zefan07b139c2009-12-21 14:27:35 +08005837#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005838
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005839#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005840void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005841{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005842 struct perf_sample_data sample;
5843 struct pt_regs *regs = data;
5844
Robert Richterfd0d0002012-04-02 20:19:08 +02005845 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005846
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005847 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005848 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005849}
5850#endif
5851
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005852/*
5853 * hrtimer based swevent callback
5854 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005855
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005856static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005857{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005858 enum hrtimer_restart ret = HRTIMER_RESTART;
5859 struct perf_sample_data data;
5860 struct pt_regs *regs;
5861 struct perf_event *event;
5862 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005863
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005864 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005865
5866 if (event->state != PERF_EVENT_STATE_ACTIVE)
5867 return HRTIMER_NORESTART;
5868
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005869 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005870
Robert Richterfd0d0002012-04-02 20:19:08 +02005871 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005872 regs = get_irq_regs();
5873
5874 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08005875 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02005876 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005877 ret = HRTIMER_NORESTART;
5878 }
5879
5880 period = max_t(u64, 10000, event->hw.sample_period);
5881 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
5882
5883 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005884}
5885
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005886static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005887{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005888 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005889 s64 period;
5890
5891 if (!is_sampling_event(event))
5892 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005893
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005894 period = local64_read(&hwc->period_left);
5895 if (period) {
5896 if (period < 0)
5897 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02005898
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005899 local64_set(&hwc->period_left, 0);
5900 } else {
5901 period = max_t(u64, 10000, hwc->sample_period);
5902 }
5903 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005904 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02005905 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005906}
5907
5908static void perf_swevent_cancel_hrtimer(struct perf_event *event)
5909{
5910 struct hw_perf_event *hwc = &event->hw;
5911
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005912 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005913 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02005914 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005915
5916 hrtimer_cancel(&hwc->hrtimer);
5917 }
5918}
5919
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005920static void perf_swevent_init_hrtimer(struct perf_event *event)
5921{
5922 struct hw_perf_event *hwc = &event->hw;
5923
5924 if (!is_sampling_event(event))
5925 return;
5926
5927 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
5928 hwc->hrtimer.function = perf_swevent_hrtimer;
5929
5930 /*
5931 * Since hrtimers have a fixed rate, we can do a static freq->period
5932 * mapping and avoid the whole period adjust feedback stuff.
5933 */
5934 if (event->attr.freq) {
5935 long freq = event->attr.sample_freq;
5936
5937 event->attr.sample_period = NSEC_PER_SEC / freq;
5938 hwc->sample_period = event->attr.sample_period;
5939 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09005940 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005941 event->attr.freq = 0;
5942 }
5943}
5944
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005945/*
5946 * Software event: cpu wall time clock
5947 */
5948
5949static void cpu_clock_event_update(struct perf_event *event)
5950{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005951 s64 prev;
5952 u64 now;
5953
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005954 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005955 prev = local64_xchg(&event->hw.prev_count, now);
5956 local64_add(now - prev, &event->count);
5957}
5958
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005959static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005960{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005961 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005962 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005963}
5964
5965static void cpu_clock_event_stop(struct perf_event *event, int flags)
5966{
5967 perf_swevent_cancel_hrtimer(event);
5968 cpu_clock_event_update(event);
5969}
5970
5971static int cpu_clock_event_add(struct perf_event *event, int flags)
5972{
5973 if (flags & PERF_EF_START)
5974 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005975
5976 return 0;
5977}
5978
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005979static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005980{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005981 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005982}
5983
5984static void cpu_clock_event_read(struct perf_event *event)
5985{
5986 cpu_clock_event_update(event);
5987}
5988
5989static int cpu_clock_event_init(struct perf_event *event)
5990{
5991 if (event->attr.type != PERF_TYPE_SOFTWARE)
5992 return -ENOENT;
5993
5994 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
5995 return -ENOENT;
5996
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005997 /*
5998 * no branch sampling for software events
5999 */
6000 if (has_branch_stack(event))
6001 return -EOPNOTSUPP;
6002
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006003 perf_swevent_init_hrtimer(event);
6004
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006005 return 0;
6006}
6007
6008static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006009 .task_ctx_nr = perf_sw_context,
6010
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006011 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006012 .add = cpu_clock_event_add,
6013 .del = cpu_clock_event_del,
6014 .start = cpu_clock_event_start,
6015 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006016 .read = cpu_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006017
6018 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006019};
6020
6021/*
6022 * Software event: task time clock
6023 */
6024
6025static void task_clock_event_update(struct perf_event *event, u64 now)
6026{
6027 u64 prev;
6028 s64 delta;
6029
6030 prev = local64_xchg(&event->hw.prev_count, now);
6031 delta = now - prev;
6032 local64_add(delta, &event->count);
6033}
6034
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006035static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006036{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006037 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006038 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006039}
6040
6041static void task_clock_event_stop(struct perf_event *event, int flags)
6042{
6043 perf_swevent_cancel_hrtimer(event);
6044 task_clock_event_update(event, event->ctx->time);
6045}
6046
6047static int task_clock_event_add(struct perf_event *event, int flags)
6048{
6049 if (flags & PERF_EF_START)
6050 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006051
6052 return 0;
6053}
6054
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006055static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006056{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006057 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006058}
6059
6060static void task_clock_event_read(struct perf_event *event)
6061{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01006062 u64 now = perf_clock();
6063 u64 delta = now - event->ctx->timestamp;
6064 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006065
6066 task_clock_event_update(event, time);
6067}
6068
6069static int task_clock_event_init(struct perf_event *event)
6070{
6071 if (event->attr.type != PERF_TYPE_SOFTWARE)
6072 return -ENOENT;
6073
6074 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
6075 return -ENOENT;
6076
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006077 /*
6078 * no branch sampling for software events
6079 */
6080 if (has_branch_stack(event))
6081 return -EOPNOTSUPP;
6082
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006083 perf_swevent_init_hrtimer(event);
6084
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006085 return 0;
6086}
6087
6088static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006089 .task_ctx_nr = perf_sw_context,
6090
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006091 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006092 .add = task_clock_event_add,
6093 .del = task_clock_event_del,
6094 .start = task_clock_event_start,
6095 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006096 .read = task_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006097
6098 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006099};
6100
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006101static void perf_pmu_nop_void(struct pmu *pmu)
6102{
6103}
6104
6105static int perf_pmu_nop_int(struct pmu *pmu)
6106{
6107 return 0;
6108}
6109
6110static void perf_pmu_start_txn(struct pmu *pmu)
6111{
6112 perf_pmu_disable(pmu);
6113}
6114
6115static int perf_pmu_commit_txn(struct pmu *pmu)
6116{
6117 perf_pmu_enable(pmu);
6118 return 0;
6119}
6120
6121static void perf_pmu_cancel_txn(struct pmu *pmu)
6122{
6123 perf_pmu_enable(pmu);
6124}
6125
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006126static int perf_event_idx_default(struct perf_event *event)
6127{
6128 return event->hw.idx + 1;
6129}
6130
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006131/*
6132 * Ensures all contexts with the same task_ctx_nr have the same
6133 * pmu_cpu_context too.
6134 */
6135static void *find_pmu_context(int ctxn)
6136{
6137 struct pmu *pmu;
6138
6139 if (ctxn < 0)
6140 return NULL;
6141
6142 list_for_each_entry(pmu, &pmus, entry) {
6143 if (pmu->task_ctx_nr == ctxn)
6144 return pmu->pmu_cpu_context;
6145 }
6146
6147 return NULL;
6148}
6149
Peter Zijlstra51676952010-12-07 14:18:20 +01006150static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006151{
Peter Zijlstra51676952010-12-07 14:18:20 +01006152 int cpu;
6153
6154 for_each_possible_cpu(cpu) {
6155 struct perf_cpu_context *cpuctx;
6156
6157 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6158
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006159 if (cpuctx->unique_pmu == old_pmu)
6160 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01006161 }
6162}
6163
6164static void free_pmu_context(struct pmu *pmu)
6165{
6166 struct pmu *i;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006167
6168 mutex_lock(&pmus_lock);
6169 /*
6170 * Like a real lame refcount.
6171 */
Peter Zijlstra51676952010-12-07 14:18:20 +01006172 list_for_each_entry(i, &pmus, entry) {
6173 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
6174 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006175 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01006176 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006177 }
6178
Peter Zijlstra51676952010-12-07 14:18:20 +01006179 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006180out:
6181 mutex_unlock(&pmus_lock);
6182}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006183static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006184
Peter Zijlstraabe43402010-11-17 23:17:37 +01006185static ssize_t
6186type_show(struct device *dev, struct device_attribute *attr, char *page)
6187{
6188 struct pmu *pmu = dev_get_drvdata(dev);
6189
6190 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
6191}
6192
Stephane Eranian62b85632013-04-03 14:21:34 +02006193static ssize_t
6194perf_event_mux_interval_ms_show(struct device *dev,
6195 struct device_attribute *attr,
6196 char *page)
6197{
6198 struct pmu *pmu = dev_get_drvdata(dev);
6199
6200 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
6201}
6202
6203static ssize_t
6204perf_event_mux_interval_ms_store(struct device *dev,
6205 struct device_attribute *attr,
6206 const char *buf, size_t count)
6207{
6208 struct pmu *pmu = dev_get_drvdata(dev);
6209 int timer, cpu, ret;
6210
6211 ret = kstrtoint(buf, 0, &timer);
6212 if (ret)
6213 return ret;
6214
6215 if (timer < 1)
6216 return -EINVAL;
6217
6218 /* same value, noting to do */
6219 if (timer == pmu->hrtimer_interval_ms)
6220 return count;
6221
6222 pmu->hrtimer_interval_ms = timer;
6223
6224 /* update all cpuctx for this PMU */
6225 for_each_possible_cpu(cpu) {
6226 struct perf_cpu_context *cpuctx;
6227 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6228 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
6229
6230 if (hrtimer_active(&cpuctx->hrtimer))
6231 hrtimer_forward_now(&cpuctx->hrtimer, cpuctx->hrtimer_interval);
6232 }
6233
6234 return count;
6235}
6236
6237#define __ATTR_RW(attr) __ATTR(attr, 0644, attr##_show, attr##_store)
6238
Peter Zijlstraabe43402010-11-17 23:17:37 +01006239static struct device_attribute pmu_dev_attrs[] = {
Stephane Eranian62b85632013-04-03 14:21:34 +02006240 __ATTR_RO(type),
6241 __ATTR_RW(perf_event_mux_interval_ms),
6242 __ATTR_NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01006243};
6244
6245static int pmu_bus_running;
6246static struct bus_type pmu_bus = {
6247 .name = "event_source",
6248 .dev_attrs = pmu_dev_attrs,
6249};
6250
6251static void pmu_dev_release(struct device *dev)
6252{
6253 kfree(dev);
6254}
6255
6256static int pmu_dev_alloc(struct pmu *pmu)
6257{
6258 int ret = -ENOMEM;
6259
6260 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
6261 if (!pmu->dev)
6262 goto out;
6263
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01006264 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01006265 device_initialize(pmu->dev);
6266 ret = dev_set_name(pmu->dev, "%s", pmu->name);
6267 if (ret)
6268 goto free_dev;
6269
6270 dev_set_drvdata(pmu->dev, pmu);
6271 pmu->dev->bus = &pmu_bus;
6272 pmu->dev->release = pmu_dev_release;
6273 ret = device_add(pmu->dev);
6274 if (ret)
6275 goto free_dev;
6276
6277out:
6278 return ret;
6279
6280free_dev:
6281 put_device(pmu->dev);
6282 goto out;
6283}
6284
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006285static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006286static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006287
Mischa Jonker03d8e802013-06-04 11:45:48 +02006288int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006289{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006290 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006291
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006292 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006293 ret = -ENOMEM;
6294 pmu->pmu_disable_count = alloc_percpu(int);
6295 if (!pmu->pmu_disable_count)
6296 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006297
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006298 pmu->type = -1;
6299 if (!name)
6300 goto skip_type;
6301 pmu->name = name;
6302
6303 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08006304 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
6305 if (type < 0) {
6306 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006307 goto free_pdc;
6308 }
6309 }
6310 pmu->type = type;
6311
Peter Zijlstraabe43402010-11-17 23:17:37 +01006312 if (pmu_bus_running) {
6313 ret = pmu_dev_alloc(pmu);
6314 if (ret)
6315 goto free_idr;
6316 }
6317
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006318skip_type:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006319 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
6320 if (pmu->pmu_cpu_context)
6321 goto got_cpu_context;
6322
Wei Yongjunc4814202013-04-12 11:05:54 +08006323 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006324 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
6325 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01006326 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006327
6328 for_each_possible_cpu(cpu) {
6329 struct perf_cpu_context *cpuctx;
6330
6331 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02006332 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006333 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006334 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006335 cpuctx->ctx.type = cpu_context;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006336 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02006337
6338 __perf_cpu_hrtimer_init(cpuctx, cpu);
6339
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006340 INIT_LIST_HEAD(&cpuctx->rotation_list);
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006341 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006342 }
6343
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02006344got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006345 if (!pmu->start_txn) {
6346 if (pmu->pmu_enable) {
6347 /*
6348 * If we have pmu_enable/pmu_disable calls, install
6349 * transaction stubs that use that to try and batch
6350 * hardware accesses.
6351 */
6352 pmu->start_txn = perf_pmu_start_txn;
6353 pmu->commit_txn = perf_pmu_commit_txn;
6354 pmu->cancel_txn = perf_pmu_cancel_txn;
6355 } else {
6356 pmu->start_txn = perf_pmu_nop_void;
6357 pmu->commit_txn = perf_pmu_nop_int;
6358 pmu->cancel_txn = perf_pmu_nop_void;
6359 }
6360 }
6361
6362 if (!pmu->pmu_enable) {
6363 pmu->pmu_enable = perf_pmu_nop_void;
6364 pmu->pmu_disable = perf_pmu_nop_void;
6365 }
6366
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006367 if (!pmu->event_idx)
6368 pmu->event_idx = perf_event_idx_default;
6369
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006370 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006371 ret = 0;
6372unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006373 mutex_unlock(&pmus_lock);
6374
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006375 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006376
Peter Zijlstraabe43402010-11-17 23:17:37 +01006377free_dev:
6378 device_del(pmu->dev);
6379 put_device(pmu->dev);
6380
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006381free_idr:
6382 if (pmu->type >= PERF_TYPE_MAX)
6383 idr_remove(&pmu_idr, pmu->type);
6384
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006385free_pdc:
6386 free_percpu(pmu->pmu_disable_count);
6387 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006388}
6389
6390void perf_pmu_unregister(struct pmu *pmu)
6391{
6392 mutex_lock(&pmus_lock);
6393 list_del_rcu(&pmu->entry);
6394 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006395
6396 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02006397 * We dereference the pmu list under both SRCU and regular RCU, so
6398 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006399 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006400 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02006401 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006402
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006403 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006404 if (pmu->type >= PERF_TYPE_MAX)
6405 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006406 device_del(pmu->dev);
6407 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01006408 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006409}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006410
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006411struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006412{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006413 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006414 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08006415 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006416
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006417 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006418
6419 rcu_read_lock();
6420 pmu = idr_find(&pmu_idr, event->attr.type);
6421 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08006422 if (pmu) {
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006423 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006424 ret = pmu->event_init(event);
6425 if (ret)
6426 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006427 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08006428 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006429
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006430 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006431 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006432 ret = pmu->event_init(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006433 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006434 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006435
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006436 if (ret != -ENOENT) {
6437 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006438 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006439 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006440 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006441 pmu = ERR_PTR(-ENOENT);
6442unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006443 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006444
6445 return pmu;
6446}
6447
6448/*
6449 * Allocate and initialize a event structure
6450 */
6451static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006452perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006453 struct task_struct *task,
6454 struct perf_event *group_leader,
6455 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03006456 perf_overflow_handler_t overflow_handler,
6457 void *context)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006458{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006459 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006460 struct perf_event *event;
6461 struct hw_perf_event *hwc;
6462 long err;
6463
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006464 if ((unsigned)cpu >= nr_cpu_ids) {
6465 if (!task || cpu != -1)
6466 return ERR_PTR(-EINVAL);
6467 }
6468
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006469 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006470 if (!event)
6471 return ERR_PTR(-ENOMEM);
6472
6473 /*
6474 * Single events are their own group leaders, with an
6475 * empty sibling list:
6476 */
6477 if (!group_leader)
6478 group_leader = event;
6479
6480 mutex_init(&event->child_mutex);
6481 INIT_LIST_HEAD(&event->child_list);
6482
6483 INIT_LIST_HEAD(&event->group_entry);
6484 INIT_LIST_HEAD(&event->event_entry);
6485 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006486 INIT_LIST_HEAD(&event->rb_entry);
6487
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006488 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006489 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006490
6491 mutex_init(&event->mmap_mutex);
6492
Al Viroa6fa9412012-08-20 14:59:25 +01006493 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006494 event->cpu = cpu;
6495 event->attr = *attr;
6496 event->group_leader = group_leader;
6497 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006498 event->oncpu = -1;
6499
6500 event->parent = parent_event;
6501
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08006502 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006503 event->id = atomic64_inc_return(&perf_event_id);
6504
6505 event->state = PERF_EVENT_STATE_INACTIVE;
6506
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006507 if (task) {
6508 event->attach_state = PERF_ATTACH_TASK;
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006509
6510 if (attr->type == PERF_TYPE_TRACEPOINT)
6511 event->hw.tp_target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006512#ifdef CONFIG_HAVE_HW_BREAKPOINT
6513 /*
6514 * hw_breakpoint is a bit difficult here..
6515 */
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006516 else if (attr->type == PERF_TYPE_BREAKPOINT)
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006517 event->hw.bp_target = task;
6518#endif
6519 }
6520
Avi Kivity4dc0da82011-06-29 18:42:35 +03006521 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006522 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006523 context = parent_event->overflow_handler_context;
6524 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006525
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006526 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006527 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02006528
Jiri Olsa0231bb52013-02-01 11:23:45 +01006529 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006530
6531 pmu = NULL;
6532
6533 hwc = &event->hw;
6534 hwc->sample_period = attr->sample_period;
6535 if (attr->freq && attr->sample_freq)
6536 hwc->sample_period = 1;
6537 hwc->last_period = hwc->sample_period;
6538
Peter Zijlstrae7850592010-05-21 14:43:08 +02006539 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006540
6541 /*
6542 * we currently do not support PERF_FORMAT_GROUP on inherited events
6543 */
6544 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
6545 goto done;
6546
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006547 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006548
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006549done:
6550 err = 0;
6551 if (!pmu)
6552 err = -EINVAL;
6553 else if (IS_ERR(pmu))
6554 err = PTR_ERR(pmu);
6555
6556 if (err) {
6557 if (event->ns)
6558 put_pid_ns(event->ns);
6559 kfree(event);
6560 return ERR_PTR(err);
6561 }
6562
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006563 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02006564 if (event->attach_state & PERF_ATTACH_TASK)
Ingo Molnarc5905af2012-02-24 08:31:31 +01006565 static_key_slow_inc(&perf_sched_events.key);
Eric B Munson3af9e852010-05-18 15:30:49 +01006566 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006567 atomic_inc(&nr_mmap_events);
6568 if (event->attr.comm)
6569 atomic_inc(&nr_comm_events);
6570 if (event->attr.task)
6571 atomic_inc(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006572 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
6573 err = get_callchain_buffers();
6574 if (err) {
6575 free_event(event);
6576 return ERR_PTR(err);
6577 }
6578 }
Stephane Eraniand010b332012-02-09 23:21:00 +01006579 if (has_branch_stack(event)) {
6580 static_key_slow_inc(&perf_sched_events.key);
6581 if (!(event->attach_state & PERF_ATTACH_TASK))
6582 atomic_inc(&per_cpu(perf_branch_stack_events,
6583 event->cpu));
6584 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006585 }
6586
6587 return event;
6588}
6589
6590static int perf_copy_attr(struct perf_event_attr __user *uattr,
6591 struct perf_event_attr *attr)
6592{
6593 u32 size;
6594 int ret;
6595
6596 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
6597 return -EFAULT;
6598
6599 /*
6600 * zero the full structure, so that a short copy will be nice.
6601 */
6602 memset(attr, 0, sizeof(*attr));
6603
6604 ret = get_user(size, &uattr->size);
6605 if (ret)
6606 return ret;
6607
6608 if (size > PAGE_SIZE) /* silly large */
6609 goto err_size;
6610
6611 if (!size) /* abi compat */
6612 size = PERF_ATTR_SIZE_VER0;
6613
6614 if (size < PERF_ATTR_SIZE_VER0)
6615 goto err_size;
6616
6617 /*
6618 * If we're handed a bigger struct than we know of,
6619 * ensure all the unknown bits are 0 - i.e. new
6620 * user-space does not rely on any kernel feature
6621 * extensions we dont know about yet.
6622 */
6623 if (size > sizeof(*attr)) {
6624 unsigned char __user *addr;
6625 unsigned char __user *end;
6626 unsigned char val;
6627
6628 addr = (void __user *)uattr + sizeof(*attr);
6629 end = (void __user *)uattr + size;
6630
6631 for (; addr < end; addr++) {
6632 ret = get_user(val, addr);
6633 if (ret)
6634 return ret;
6635 if (val)
6636 goto err_size;
6637 }
6638 size = sizeof(*attr);
6639 }
6640
6641 ret = copy_from_user(attr, uattr, size);
6642 if (ret)
6643 return -EFAULT;
6644
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05306645 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006646 return -EINVAL;
6647
6648 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
6649 return -EINVAL;
6650
6651 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
6652 return -EINVAL;
6653
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006654 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
6655 u64 mask = attr->branch_sample_type;
6656
6657 /* only using defined bits */
6658 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
6659 return -EINVAL;
6660
6661 /* at least one branch bit must be set */
6662 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
6663 return -EINVAL;
6664
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006665 /* propagate priv level, when not set for branch */
6666 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
6667
6668 /* exclude_kernel checked on syscall entry */
6669 if (!attr->exclude_kernel)
6670 mask |= PERF_SAMPLE_BRANCH_KERNEL;
6671
6672 if (!attr->exclude_user)
6673 mask |= PERF_SAMPLE_BRANCH_USER;
6674
6675 if (!attr->exclude_hv)
6676 mask |= PERF_SAMPLE_BRANCH_HV;
6677 /*
6678 * adjust user setting (for HW filter setup)
6679 */
6680 attr->branch_sample_type = mask;
6681 }
Stephane Eraniane7122092013-06-06 11:02:04 +02006682 /* privileged levels capture (kernel, hv): check permissions */
6683 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02006684 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6685 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006686 }
Jiri Olsa40189942012-08-07 15:20:37 +02006687
Jiri Olsac5ebced2012-08-07 15:20:40 +02006688 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02006689 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006690 if (ret)
6691 return ret;
6692 }
6693
6694 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
6695 if (!arch_perf_have_user_stack_dump())
6696 return -ENOSYS;
6697
6698 /*
6699 * We have __u32 type for the size, but so far
6700 * we can only use __u16 as maximum due to the
6701 * __u16 sample size limit.
6702 */
6703 if (attr->sample_stack_user >= USHRT_MAX)
6704 ret = -EINVAL;
6705 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
6706 ret = -EINVAL;
6707 }
Jiri Olsa40189942012-08-07 15:20:37 +02006708
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006709out:
6710 return ret;
6711
6712err_size:
6713 put_user(sizeof(*attr), &uattr->size);
6714 ret = -E2BIG;
6715 goto out;
6716}
6717
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006718static int
6719perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006720{
Frederic Weisbecker76369132011-05-19 19:55:04 +02006721 struct ring_buffer *rb = NULL, *old_rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006722 int ret = -EINVAL;
6723
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006724 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006725 goto set;
6726
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006727 /* don't allow circular references */
6728 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006729 goto out;
6730
Peter Zijlstra0f139302010-05-20 14:35:15 +02006731 /*
6732 * Don't allow cross-cpu buffers
6733 */
6734 if (output_event->cpu != event->cpu)
6735 goto out;
6736
6737 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02006738 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02006739 */
6740 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
6741 goto out;
6742
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006743set:
6744 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006745 /* Can't redirect output if we've got an active mmap() */
6746 if (atomic_read(&event->mmap_count))
6747 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006748
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006749 old_rb = event->rb;
6750
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006751 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02006752 /* get the rb we want to redirect to */
6753 rb = ring_buffer_get(output_event);
6754 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006755 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006756 }
6757
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006758 if (old_rb)
6759 ring_buffer_detach(event, old_rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006760
6761 if (rb)
6762 ring_buffer_attach(event, rb);
6763
6764 rcu_assign_pointer(event->rb, rb);
6765
6766 if (old_rb) {
6767 ring_buffer_put(old_rb);
6768 /*
6769 * Since we detached before setting the new rb, so that we
6770 * could attach the new rb, we could have missed a wakeup.
6771 * Provide it now.
6772 */
6773 wake_up_all(&event->waitq);
6774 }
6775
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006776 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006777unlock:
6778 mutex_unlock(&event->mmap_mutex);
6779
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006780out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006781 return ret;
6782}
6783
6784/**
6785 * sys_perf_event_open - open a performance event, associate it to a task/cpu
6786 *
6787 * @attr_uptr: event_id type attributes for monitoring/sampling
6788 * @pid: target pid
6789 * @cpu: target cpu
6790 * @group_fd: group leader event fd
6791 */
6792SYSCALL_DEFINE5(perf_event_open,
6793 struct perf_event_attr __user *, attr_uptr,
6794 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
6795{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006796 struct perf_event *group_leader = NULL, *output_event = NULL;
6797 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006798 struct perf_event_attr attr;
6799 struct perf_event_context *ctx;
6800 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04006801 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07006802 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006803 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04006804 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006805 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006806 int err;
6807
6808 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02006809 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006810 return -EINVAL;
6811
6812 err = perf_copy_attr(attr_uptr, &attr);
6813 if (err)
6814 return err;
6815
6816 if (!attr.exclude_kernel) {
6817 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6818 return -EACCES;
6819 }
6820
6821 if (attr.freq) {
6822 if (attr.sample_freq > sysctl_perf_event_sample_rate)
6823 return -EINVAL;
6824 }
6825
Stephane Eraniane5d13672011-02-14 11:20:01 +02006826 /*
6827 * In cgroup mode, the pid argument is used to pass the fd
6828 * opened to the cgroup directory in cgroupfs. The cpu argument
6829 * designates the cpu on which to monitor threads from that
6830 * cgroup.
6831 */
6832 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
6833 return -EINVAL;
6834
Al Viroab72a702012-08-21 09:40:46 -04006835 event_fd = get_unused_fd();
Al Viroea635c62010-05-26 17:40:29 -04006836 if (event_fd < 0)
6837 return event_fd;
6838
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006839 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04006840 err = perf_fget_light(group_fd, &group);
6841 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006842 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04006843 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006844 if (flags & PERF_FLAG_FD_OUTPUT)
6845 output_event = group_leader;
6846 if (flags & PERF_FLAG_FD_NO_GROUP)
6847 group_leader = NULL;
6848 }
6849
Stephane Eraniane5d13672011-02-14 11:20:01 +02006850 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006851 task = find_lively_task_by_vpid(pid);
6852 if (IS_ERR(task)) {
6853 err = PTR_ERR(task);
6854 goto err_group_fd;
6855 }
6856 }
6857
Yan, Zhengfbfc6232012-06-15 14:31:31 +08006858 get_online_cpus();
6859
Avi Kivity4dc0da82011-06-29 18:42:35 +03006860 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
6861 NULL, NULL);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006862 if (IS_ERR(event)) {
6863 err = PTR_ERR(event);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006864 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006865 }
6866
Stephane Eraniane5d13672011-02-14 11:20:01 +02006867 if (flags & PERF_FLAG_PID_CGROUP) {
6868 err = perf_cgroup_connect(pid, event, &attr, group_leader);
6869 if (err)
6870 goto err_alloc;
Peter Zijlstra08309372011-03-03 11:31:20 +01006871 /*
6872 * one more event:
6873 * - that has cgroup constraint on event->cpu
6874 * - that may need work on context switch
6875 */
6876 atomic_inc(&per_cpu(perf_cgroup_events, event->cpu));
Ingo Molnarc5905af2012-02-24 08:31:31 +01006877 static_key_slow_inc(&perf_sched_events.key);
Stephane Eraniane5d13672011-02-14 11:20:01 +02006878 }
6879
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006880 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006881 * Special case software events and allow them to be part of
6882 * any hardware group.
6883 */
6884 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006885
6886 if (group_leader &&
6887 (is_software_event(event) != is_software_event(group_leader))) {
6888 if (is_software_event(event)) {
6889 /*
6890 * If event and group_leader are not both a software
6891 * event, and event is, then group leader is not.
6892 *
6893 * Allow the addition of software events to !software
6894 * groups, this is safe because software events never
6895 * fail to schedule.
6896 */
6897 pmu = group_leader->pmu;
6898 } else if (is_software_event(group_leader) &&
6899 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
6900 /*
6901 * In case the group is a pure software group, and we
6902 * try to add a hardware event, move the whole group to
6903 * the hardware context.
6904 */
6905 move_group = 1;
6906 }
6907 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006908
6909 /*
6910 * Get the target context (task or percpu):
6911 */
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08006912 ctx = find_get_context(pmu, task, event->cpu);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006913 if (IS_ERR(ctx)) {
6914 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006915 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006916 }
6917
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02006918 if (task) {
6919 put_task_struct(task);
6920 task = NULL;
6921 }
6922
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006923 /*
6924 * Look up the group leader (we will attach this event to it):
6925 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006926 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006927 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006928
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006929 /*
6930 * Do not allow a recursive hierarchy (this new sibling
6931 * becoming part of another group-sibling):
6932 */
6933 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006934 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006935 /*
6936 * Do not allow to attach to a group in a different
6937 * task or CPU context:
6938 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006939 if (move_group) {
6940 if (group_leader->ctx->type != ctx->type)
6941 goto err_context;
6942 } else {
6943 if (group_leader->ctx != ctx)
6944 goto err_context;
6945 }
6946
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006947 /*
6948 * Only a group leader can be exclusive or pinned
6949 */
6950 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006951 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006952 }
6953
6954 if (output_event) {
6955 err = perf_event_set_output(event, output_event);
6956 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006957 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006958 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006959
Al Viroea635c62010-05-26 17:40:29 -04006960 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
6961 if (IS_ERR(event_file)) {
6962 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006963 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04006964 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006965
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006966 if (move_group) {
6967 struct perf_event_context *gctx = group_leader->ctx;
6968
6969 mutex_lock(&gctx->mutex);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006970 perf_remove_from_context(group_leader);
Jiri Olsa0231bb52013-02-01 11:23:45 +01006971
6972 /*
6973 * Removing from the context ends up with disabled
6974 * event. What we want here is event in the initial
6975 * startup state, ready to be add into new context.
6976 */
6977 perf_event__state_init(group_leader);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006978 list_for_each_entry(sibling, &group_leader->sibling_list,
6979 group_entry) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006980 perf_remove_from_context(sibling);
Jiri Olsa0231bb52013-02-01 11:23:45 +01006981 perf_event__state_init(sibling);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006982 put_ctx(gctx);
6983 }
6984 mutex_unlock(&gctx->mutex);
6985 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006986 }
6987
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006988 WARN_ON_ONCE(ctx->parent_ctx);
6989 mutex_lock(&ctx->mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006990
6991 if (move_group) {
Yan, Zheng0cda4c02012-06-15 14:31:33 +08006992 synchronize_rcu();
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08006993 perf_install_in_context(ctx, group_leader, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006994 get_ctx(ctx);
6995 list_for_each_entry(sibling, &group_leader->sibling_list,
6996 group_entry) {
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08006997 perf_install_in_context(ctx, sibling, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006998 get_ctx(ctx);
6999 }
7000 }
7001
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007002 perf_install_in_context(ctx, event, event->cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007003 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007004 perf_unpin_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007005 mutex_unlock(&ctx->mutex);
7006
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007007 put_online_cpus();
7008
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007009 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01007010
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007011 mutex_lock(&current->perf_event_mutex);
7012 list_add_tail(&event->owner_entry, &current->perf_event_list);
7013 mutex_unlock(&current->perf_event_mutex);
7014
Peter Zijlstra8a495422010-05-27 15:47:49 +02007015 /*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007016 * Precalculate sample_data sizes
7017 */
7018 perf_event__header_size(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007019 perf_event__id_header_size(event);
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007020
7021 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02007022 * Drop the reference on the group_event after placing the
7023 * new event on the sibling_list. This ensures destruction
7024 * of the group leader will find the pointer to itself in
7025 * perf_group_detach().
7026 */
Al Viro2903ff02012-08-28 12:52:22 -04007027 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007028 fd_install(event_fd, event_file);
7029 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007030
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007031err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007032 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04007033 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007034err_alloc:
7035 free_event(event);
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02007036err_task:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007037 put_online_cpus();
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02007038 if (task)
7039 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007040err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04007041 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007042err_fd:
7043 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007044 return err;
7045}
7046
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007047/**
7048 * perf_event_create_kernel_counter
7049 *
7050 * @attr: attributes of the counter to create
7051 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07007052 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007053 */
7054struct perf_event *
7055perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07007056 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007057 perf_overflow_handler_t overflow_handler,
7058 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007059{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007060 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007061 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007062 int err;
7063
7064 /*
7065 * Get the target context (task or percpu):
7066 */
7067
Avi Kivity4dc0da82011-06-29 18:42:35 +03007068 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
7069 overflow_handler, context);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007070 if (IS_ERR(event)) {
7071 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007072 goto err;
7073 }
7074
Matt Helsley38a81da2010-09-13 13:01:20 -07007075 ctx = find_get_context(event->pmu, task, cpu);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007076 if (IS_ERR(ctx)) {
7077 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007078 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007079 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007080
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007081 WARN_ON_ONCE(ctx->parent_ctx);
7082 mutex_lock(&ctx->mutex);
7083 perf_install_in_context(ctx, event, cpu);
7084 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007085 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007086 mutex_unlock(&ctx->mutex);
7087
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007088 return event;
7089
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007090err_free:
7091 free_event(event);
7092err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007093 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007094}
7095EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
7096
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007097void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
7098{
7099 struct perf_event_context *src_ctx;
7100 struct perf_event_context *dst_ctx;
7101 struct perf_event *event, *tmp;
7102 LIST_HEAD(events);
7103
7104 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
7105 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
7106
7107 mutex_lock(&src_ctx->mutex);
7108 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
7109 event_entry) {
7110 perf_remove_from_context(event);
7111 put_ctx(src_ctx);
7112 list_add(&event->event_entry, &events);
7113 }
7114 mutex_unlock(&src_ctx->mutex);
7115
7116 synchronize_rcu();
7117
7118 mutex_lock(&dst_ctx->mutex);
7119 list_for_each_entry_safe(event, tmp, &events, event_entry) {
7120 list_del(&event->event_entry);
7121 if (event->state >= PERF_EVENT_STATE_OFF)
7122 event->state = PERF_EVENT_STATE_INACTIVE;
7123 perf_install_in_context(dst_ctx, event, dst_cpu);
7124 get_ctx(dst_ctx);
7125 }
7126 mutex_unlock(&dst_ctx->mutex);
7127}
7128EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
7129
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007130static void sync_child_event(struct perf_event *child_event,
7131 struct task_struct *child)
7132{
7133 struct perf_event *parent_event = child_event->parent;
7134 u64 child_val;
7135
7136 if (child_event->attr.inherit_stat)
7137 perf_event_read_event(child_event, child);
7138
Peter Zijlstrab5e58792010-05-21 14:43:12 +02007139 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007140
7141 /*
7142 * Add back the child's count to the parent's count:
7143 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02007144 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007145 atomic64_add(child_event->total_time_enabled,
7146 &parent_event->child_total_time_enabled);
7147 atomic64_add(child_event->total_time_running,
7148 &parent_event->child_total_time_running);
7149
7150 /*
7151 * Remove this event from the parent's list
7152 */
7153 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7154 mutex_lock(&parent_event->child_mutex);
7155 list_del_init(&child_event->child_list);
7156 mutex_unlock(&parent_event->child_mutex);
7157
7158 /*
7159 * Release the parent event, if this was the last
7160 * reference to it.
7161 */
Al Viroa6fa9412012-08-20 14:59:25 +01007162 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007163}
7164
7165static void
7166__perf_event_exit_task(struct perf_event *child_event,
7167 struct perf_event_context *child_ctx,
7168 struct task_struct *child)
7169{
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007170 if (child_event->parent) {
7171 raw_spin_lock_irq(&child_ctx->lock);
7172 perf_group_detach(child_event);
7173 raw_spin_unlock_irq(&child_ctx->lock);
7174 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007175
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007176 perf_remove_from_context(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007177
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007178 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007179 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007180 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007181 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007182 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007183 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007184 sync_child_event(child_event, child);
7185 free_event(child_event);
7186 }
7187}
7188
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007189static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007190{
7191 struct perf_event *child_event, *tmp;
7192 struct perf_event_context *child_ctx;
7193 unsigned long flags;
7194
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007195 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007196 perf_event_task(child, NULL, 0);
7197 return;
7198 }
7199
7200 local_irq_save(flags);
7201 /*
7202 * We can't reschedule here because interrupts are disabled,
7203 * and either child is current or it is a task that can't be
7204 * scheduled, so we are now safe from rescheduling changing
7205 * our context.
7206 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01007207 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007208
7209 /*
7210 * Take the context lock here so that if find_get_context is
7211 * reading child->perf_event_ctxp, we wait until it has
7212 * incremented the context's refcount before we do put_ctx below.
7213 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007214 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02007215 task_ctx_sched_out(child_ctx);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007216 child->perf_event_ctxp[ctxn] = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007217 /*
7218 * If this context is a clone; unclone it so it can't get
7219 * swapped to another process while we're removing all
7220 * the events from it.
7221 */
7222 unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01007223 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007224 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007225
7226 /*
7227 * Report the task dead after unscheduling the events so that we
7228 * won't get any samples after PERF_RECORD_EXIT. We can however still
7229 * get a few PERF_RECORD_READ events.
7230 */
7231 perf_event_task(child, child_ctx, 0);
7232
7233 /*
7234 * We can recurse on the same lock type through:
7235 *
7236 * __perf_event_exit_task()
7237 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01007238 * put_event()
7239 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007240 *
7241 * But since its the parent context it won't be the same instance.
7242 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02007243 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007244
7245again:
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007246 list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
7247 group_entry)
7248 __perf_event_exit_task(child_event, child_ctx, child);
7249
7250 list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007251 group_entry)
7252 __perf_event_exit_task(child_event, child_ctx, child);
7253
7254 /*
7255 * If the last event was a group event, it will have appended all
7256 * its siblings to the list, but we obtained 'tmp' before that which
7257 * will still point to the list head terminating the iteration.
7258 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007259 if (!list_empty(&child_ctx->pinned_groups) ||
7260 !list_empty(&child_ctx->flexible_groups))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007261 goto again;
7262
7263 mutex_unlock(&child_ctx->mutex);
7264
7265 put_ctx(child_ctx);
7266}
7267
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007268/*
7269 * When a child task exits, feed back event values to parent events.
7270 */
7271void perf_event_exit_task(struct task_struct *child)
7272{
Peter Zijlstra88821352010-11-09 19:01:43 +01007273 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007274 int ctxn;
7275
Peter Zijlstra88821352010-11-09 19:01:43 +01007276 mutex_lock(&child->perf_event_mutex);
7277 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
7278 owner_entry) {
7279 list_del_init(&event->owner_entry);
7280
7281 /*
7282 * Ensure the list deletion is visible before we clear
7283 * the owner, closes a race against perf_release() where
7284 * we need to serialize on the owner->perf_event_mutex.
7285 */
7286 smp_wmb();
7287 event->owner = NULL;
7288 }
7289 mutex_unlock(&child->perf_event_mutex);
7290
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007291 for_each_task_context_nr(ctxn)
7292 perf_event_exit_task_context(child, ctxn);
7293}
7294
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007295static void perf_free_event(struct perf_event *event,
7296 struct perf_event_context *ctx)
7297{
7298 struct perf_event *parent = event->parent;
7299
7300 if (WARN_ON_ONCE(!parent))
7301 return;
7302
7303 mutex_lock(&parent->child_mutex);
7304 list_del_init(&event->child_list);
7305 mutex_unlock(&parent->child_mutex);
7306
Al Viroa6fa9412012-08-20 14:59:25 +01007307 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007308
Peter Zijlstra8a495422010-05-27 15:47:49 +02007309 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007310 list_del_event(event, ctx);
7311 free_event(event);
7312}
7313
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007314/*
7315 * free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007316 * perf_event_init_task below, used by fork() in case of fail.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007317 */
7318void perf_event_free_task(struct task_struct *task)
7319{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007320 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007321 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007322 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007323
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007324 for_each_task_context_nr(ctxn) {
7325 ctx = task->perf_event_ctxp[ctxn];
7326 if (!ctx)
7327 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007328
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007329 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007330again:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007331 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
7332 group_entry)
7333 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007334
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007335 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
7336 group_entry)
7337 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007338
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007339 if (!list_empty(&ctx->pinned_groups) ||
7340 !list_empty(&ctx->flexible_groups))
7341 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007342
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007343 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007344
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007345 put_ctx(ctx);
7346 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007347}
7348
Peter Zijlstra4e231c72010-09-09 21:01:59 +02007349void perf_event_delayed_put(struct task_struct *task)
7350{
7351 int ctxn;
7352
7353 for_each_task_context_nr(ctxn)
7354 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
7355}
7356
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007357/*
7358 * inherit a event from parent task to child task:
7359 */
7360static struct perf_event *
7361inherit_event(struct perf_event *parent_event,
7362 struct task_struct *parent,
7363 struct perf_event_context *parent_ctx,
7364 struct task_struct *child,
7365 struct perf_event *group_leader,
7366 struct perf_event_context *child_ctx)
7367{
7368 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02007369 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007370
7371 /*
7372 * Instead of creating recursive hierarchies of events,
7373 * we link inherited events back to the original parent,
7374 * which has a filp for sure, which we use as the reference
7375 * count:
7376 */
7377 if (parent_event->parent)
7378 parent_event = parent_event->parent;
7379
7380 child_event = perf_event_alloc(&parent_event->attr,
7381 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007382 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007383 group_leader, parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007384 NULL, NULL);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007385 if (IS_ERR(child_event))
7386 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01007387
7388 if (!atomic_long_inc_not_zero(&parent_event->refcount)) {
7389 free_event(child_event);
7390 return NULL;
7391 }
7392
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007393 get_ctx(child_ctx);
7394
7395 /*
7396 * Make the child state follow the state of the parent event,
7397 * not its attr.disabled bit. We hold the parent's mutex,
7398 * so we won't race with perf_event_{en, dis}able_family.
7399 */
7400 if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
7401 child_event->state = PERF_EVENT_STATE_INACTIVE;
7402 else
7403 child_event->state = PERF_EVENT_STATE_OFF;
7404
7405 if (parent_event->attr.freq) {
7406 u64 sample_period = parent_event->hw.sample_period;
7407 struct hw_perf_event *hwc = &child_event->hw;
7408
7409 hwc->sample_period = sample_period;
7410 hwc->last_period = sample_period;
7411
7412 local64_set(&hwc->period_left, sample_period);
7413 }
7414
7415 child_event->ctx = child_ctx;
7416 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007417 child_event->overflow_handler_context
7418 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007419
7420 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02007421 * Precalculate sample_data sizes
7422 */
7423 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007424 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02007425
7426 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007427 * Link it up in the child's context:
7428 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02007429 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007430 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02007431 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007432
7433 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007434 * Link this into the parent event's child list
7435 */
7436 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7437 mutex_lock(&parent_event->child_mutex);
7438 list_add_tail(&child_event->child_list, &parent_event->child_list);
7439 mutex_unlock(&parent_event->child_mutex);
7440
7441 return child_event;
7442}
7443
7444static int inherit_group(struct perf_event *parent_event,
7445 struct task_struct *parent,
7446 struct perf_event_context *parent_ctx,
7447 struct task_struct *child,
7448 struct perf_event_context *child_ctx)
7449{
7450 struct perf_event *leader;
7451 struct perf_event *sub;
7452 struct perf_event *child_ctr;
7453
7454 leader = inherit_event(parent_event, parent, parent_ctx,
7455 child, NULL, child_ctx);
7456 if (IS_ERR(leader))
7457 return PTR_ERR(leader);
7458 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
7459 child_ctr = inherit_event(sub, parent, parent_ctx,
7460 child, leader, child_ctx);
7461 if (IS_ERR(child_ctr))
7462 return PTR_ERR(child_ctr);
7463 }
7464 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007465}
7466
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007467static int
7468inherit_task_group(struct perf_event *event, struct task_struct *parent,
7469 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007470 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007471 int *inherited_all)
7472{
7473 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007474 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007475
7476 if (!event->attr.inherit) {
7477 *inherited_all = 0;
7478 return 0;
7479 }
7480
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007481 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007482 if (!child_ctx) {
7483 /*
7484 * This is executed from the parent task context, so
7485 * inherit events that have been marked for cloning.
7486 * First allocate and initialize a context for the
7487 * child.
7488 */
7489
Jiri Olsa734df5a2013-07-09 17:44:10 +02007490 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007491 if (!child_ctx)
7492 return -ENOMEM;
7493
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007494 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007495 }
7496
7497 ret = inherit_group(event, parent, parent_ctx,
7498 child, child_ctx);
7499
7500 if (ret)
7501 *inherited_all = 0;
7502
7503 return ret;
7504}
7505
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007506/*
7507 * Initialize the perf_event context in task_struct
7508 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007509int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007510{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007511 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007512 struct perf_event_context *cloned_ctx;
7513 struct perf_event *event;
7514 struct task_struct *parent = current;
7515 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007516 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007517 int ret = 0;
7518
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007519 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007520 return 0;
7521
7522 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007523 * If the parent's context is a clone, pin it so it won't get
7524 * swapped under us.
7525 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007526 parent_ctx = perf_pin_task_context(parent, ctxn);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007527
7528 /*
7529 * No need to check if parent_ctx != NULL here; since we saw
7530 * it non-NULL earlier, the only reason for it to become NULL
7531 * is if we exit, and since we're currently in the middle of
7532 * a fork we can't be exiting at the same time.
7533 */
7534
7535 /*
7536 * Lock the parent list. No need to lock the child - not PID
7537 * hashed yet and not running, so nobody can access it.
7538 */
7539 mutex_lock(&parent_ctx->mutex);
7540
7541 /*
7542 * We dont have to disable NMIs - we are only looking at
7543 * the list, not manipulating it:
7544 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007545 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007546 ret = inherit_task_group(event, parent, parent_ctx,
7547 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007548 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007549 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007550 }
7551
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007552 /*
7553 * We can't hold ctx->lock when iterating the ->flexible_group list due
7554 * to allocations, but we need to prevent rotation because
7555 * rotate_ctx() will change the list from interrupt context.
7556 */
7557 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7558 parent_ctx->rotate_disable = 1;
7559 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
7560
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007561 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007562 ret = inherit_task_group(event, parent, parent_ctx,
7563 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007564 if (ret)
7565 break;
7566 }
7567
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007568 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7569 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007570
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007571 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007572
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01007573 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007574 /*
7575 * Mark the child context as a clone of the parent
7576 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007577 *
7578 * Note that if the parent is a clone, the holding of
7579 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007580 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007581 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007582 if (cloned_ctx) {
7583 child_ctx->parent_ctx = cloned_ctx;
7584 child_ctx->parent_gen = parent_ctx->parent_gen;
7585 } else {
7586 child_ctx->parent_ctx = parent_ctx;
7587 child_ctx->parent_gen = parent_ctx->generation;
7588 }
7589 get_ctx(child_ctx->parent_ctx);
7590 }
7591
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007592 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007593 mutex_unlock(&parent_ctx->mutex);
7594
7595 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007596 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007597
7598 return ret;
7599}
7600
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007601/*
7602 * Initialize the perf_event context in task_struct
7603 */
7604int perf_event_init_task(struct task_struct *child)
7605{
7606 int ctxn, ret;
7607
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01007608 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
7609 mutex_init(&child->perf_event_mutex);
7610 INIT_LIST_HEAD(&child->perf_event_list);
7611
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007612 for_each_task_context_nr(ctxn) {
7613 ret = perf_event_init_context(child, ctxn);
7614 if (ret)
7615 return ret;
7616 }
7617
7618 return 0;
7619}
7620
Paul Mackerras220b1402010-03-10 20:45:52 +11007621static void __init perf_event_init_all_cpus(void)
7622{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007623 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11007624 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11007625
7626 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007627 swhash = &per_cpu(swevent_htable, cpu);
7628 mutex_init(&swhash->hlist_mutex);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007629 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11007630 }
7631}
7632
Paul Gortmaker0db06282013-06-19 14:53:51 -04007633static void perf_event_init_cpu(int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007634{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007635 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007636
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007637 mutex_lock(&swhash->hlist_mutex);
Linus Torvalds4536e4d2011-11-03 07:44:04 -07007638 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007639 struct swevent_hlist *hlist;
7640
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007641 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
7642 WARN_ON(!hlist);
7643 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007644 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007645 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007646}
7647
Peter Zijlstrac2774432010-12-08 15:29:02 +01007648#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007649static void perf_pmu_rotate_stop(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007650{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007651 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
7652
7653 WARN_ON(!irqs_disabled());
7654
7655 list_del_init(&cpuctx->rotation_list);
7656}
7657
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007658static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007659{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007660 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007661 struct perf_event *event, *tmp;
7662
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007663 perf_pmu_rotate_stop(ctx->pmu);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02007664
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007665 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007666 __perf_remove_from_context(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007667 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007668 __perf_remove_from_context(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007669}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007670
7671static void perf_event_exit_cpu_context(int cpu)
7672{
7673 struct perf_event_context *ctx;
7674 struct pmu *pmu;
7675 int idx;
7676
7677 idx = srcu_read_lock(&pmus_srcu);
7678 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02007679 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007680
7681 mutex_lock(&ctx->mutex);
7682 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
7683 mutex_unlock(&ctx->mutex);
7684 }
7685 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007686}
7687
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007688static void perf_event_exit_cpu(int cpu)
7689{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007690 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007691
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007692 mutex_lock(&swhash->hlist_mutex);
7693 swevent_hlist_release(swhash);
7694 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007695
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007696 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007697}
7698#else
7699static inline void perf_event_exit_cpu(int cpu) { }
7700#endif
7701
Peter Zijlstrac2774432010-12-08 15:29:02 +01007702static int
7703perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
7704{
7705 int cpu;
7706
7707 for_each_online_cpu(cpu)
7708 perf_event_exit_cpu(cpu);
7709
7710 return NOTIFY_OK;
7711}
7712
7713/*
7714 * Run the perf reboot notifier at the very last possible moment so that
7715 * the generic watchdog code runs as long as possible.
7716 */
7717static struct notifier_block perf_reboot_notifier = {
7718 .notifier_call = perf_reboot,
7719 .priority = INT_MIN,
7720};
7721
Paul Gortmaker0db06282013-06-19 14:53:51 -04007722static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007723perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
7724{
7725 unsigned int cpu = (long)hcpu;
7726
Linus Torvalds4536e4d2011-11-03 07:44:04 -07007727 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007728
7729 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02007730 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007731 perf_event_init_cpu(cpu);
7732 break;
7733
Peter Zijlstra5e116372010-06-11 13:35:08 +02007734 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007735 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007736 perf_event_exit_cpu(cpu);
7737 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007738 default:
7739 break;
7740 }
7741
7742 return NOTIFY_OK;
7743}
7744
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007745void __init perf_event_init(void)
7746{
Jason Wessel3c502e72010-11-04 17:33:01 -05007747 int ret;
7748
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007749 idr_init(&pmu_idr);
7750
Paul Mackerras220b1402010-03-10 20:45:52 +11007751 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007752 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007753 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
7754 perf_pmu_register(&perf_cpu_clock, NULL, -1);
7755 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007756 perf_tp_register();
7757 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01007758 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05007759
7760 ret = init_hw_breakpoint();
7761 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02007762
7763 /* do not patch jump label more than once per second */
7764 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01007765
7766 /*
7767 * Build time assertion that we keep the data_head at the intended
7768 * location. IOW, validation we got the __reserved[] size right.
7769 */
7770 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
7771 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007772}
Peter Zijlstraabe43402010-11-17 23:17:37 +01007773
7774static int __init perf_event_sysfs_init(void)
7775{
7776 struct pmu *pmu;
7777 int ret;
7778
7779 mutex_lock(&pmus_lock);
7780
7781 ret = bus_register(&pmu_bus);
7782 if (ret)
7783 goto unlock;
7784
7785 list_for_each_entry(pmu, &pmus, entry) {
7786 if (!pmu->name || pmu->type < 0)
7787 continue;
7788
7789 ret = pmu_dev_alloc(pmu);
7790 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
7791 }
7792 pmu_bus_running = 1;
7793 ret = 0;
7794
7795unlock:
7796 mutex_unlock(&pmus_lock);
7797
7798 return ret;
7799}
7800device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007801
7802#ifdef CONFIG_CGROUP_PERF
Tejun Heo92fb9742012-11-19 08:13:38 -08007803static struct cgroup_subsys_state *perf_cgroup_css_alloc(struct cgroup *cont)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007804{
7805 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02007806
Li Zefan1b15d052011-03-03 14:26:06 +08007807 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007808 if (!jc)
7809 return ERR_PTR(-ENOMEM);
7810
Stephane Eraniane5d13672011-02-14 11:20:01 +02007811 jc->info = alloc_percpu(struct perf_cgroup_info);
7812 if (!jc->info) {
7813 kfree(jc);
7814 return ERR_PTR(-ENOMEM);
7815 }
7816
Stephane Eraniane5d13672011-02-14 11:20:01 +02007817 return &jc->css;
7818}
7819
Tejun Heo92fb9742012-11-19 08:13:38 -08007820static void perf_cgroup_css_free(struct cgroup *cont)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007821{
7822 struct perf_cgroup *jc;
7823 jc = container_of(cgroup_subsys_state(cont, perf_subsys_id),
7824 struct perf_cgroup, css);
7825 free_percpu(jc->info);
7826 kfree(jc);
7827}
7828
7829static int __perf_cgroup_move(void *info)
7830{
7831 struct task_struct *task = info;
7832 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
7833 return 0;
7834}
7835
Li Zefan761b3ef52012-01-31 13:47:36 +08007836static void perf_cgroup_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007837{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007838 struct task_struct *task;
7839
7840 cgroup_taskset_for_each(task, cgrp, tset)
7841 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007842}
7843
Li Zefan761b3ef52012-01-31 13:47:36 +08007844static void perf_cgroup_exit(struct cgroup *cgrp, struct cgroup *old_cgrp,
7845 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007846{
7847 /*
7848 * cgroup_exit() is called in the copy_process() failure path.
7849 * Ignore this case since the task hasn't ran yet, this avoids
7850 * trying to poke a half freed task state from generic code.
7851 */
7852 if (!(task->flags & PF_EXITING))
7853 return;
7854
Tejun Heobb9d97b2011-12-12 18:12:21 -08007855 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007856}
7857
7858struct cgroup_subsys perf_subsys = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +02007859 .name = "perf_event",
7860 .subsys_id = perf_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08007861 .css_alloc = perf_cgroup_css_alloc,
7862 .css_free = perf_cgroup_css_free,
Ingo Molnare7e7ee22011-05-04 08:42:29 +02007863 .exit = perf_cgroup_exit,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007864 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +02007865};
7866#endif /* CONFIG_CGROUP_PERF */