blob: d49a9d29334cc4d67c24bad9814221a0371a6350 [file] [log] [blame]
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001/*
Ingo Molnar57c0c152009-09-21 12:20:38 +02002 * Performance events core code:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003 *
4 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
Ingo Molnare7e7ee22011-05-04 08:42:29 +02005 * Copyright (C) 2008-2011 Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Al Virod36b6912011-12-29 17:09:01 -05007 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008 *
Ingo Molnar57c0c152009-09-21 12:20:38 +02009 * For licensing details see kernel-base/COPYING
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010 */
11
12#include <linux/fs.h>
13#include <linux/mm.h>
14#include <linux/cpu.h>
15#include <linux/smp.h>
Peter Zijlstra2e80a822010-11-17 23:17:36 +010016#include <linux/idr.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020017#include <linux/file.h>
18#include <linux/poll.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020020#include <linux/hash.h>
Frederic Weisbecker12351ef2013-04-20 15:48:22 +020021#include <linux/tick.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020022#include <linux/sysfs.h>
23#include <linux/dcache.h>
24#include <linux/percpu.h>
25#include <linux/ptrace.h>
Peter Zijlstrac2774432010-12-08 15:29:02 +010026#include <linux/reboot.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020027#include <linux/vmstat.h>
Peter Zijlstraabe43402010-11-17 23:17:37 +010028#include <linux/device.h>
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -040029#include <linux/export.h>
Peter Zijlstra906010b2009-09-21 16:08:49 +020030#include <linux/vmalloc.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020031#include <linux/hardirq.h>
32#include <linux/rculist.h>
33#include <linux/uaccess.h>
34#include <linux/syscalls.h>
35#include <linux/anon_inodes.h>
36#include <linux/kernel_stat.h>
37#include <linux/perf_event.h>
Li Zefan6fb29152009-10-15 11:21:42 +080038#include <linux/ftrace_event.h>
Jason Wessel3c502e72010-11-04 17:33:01 -050039#include <linux/hw_breakpoint.h>
Jiri Olsac5ebced2012-08-07 15:20:40 +020040#include <linux/mm_types.h>
Li Zefan877c6852013-03-05 11:38:08 +080041#include <linux/cgroup.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020042
Frederic Weisbecker76369132011-05-19 19:55:04 +020043#include "internal.h"
44
Ingo Molnarcdd6c482009-09-21 12:02:48 +020045#include <asm/irq_regs.h>
46
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010047struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020048 struct task_struct *p;
49 int (*func)(void *info);
50 void *info;
51 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010052};
53
54static void remote_function(void *data)
55{
56 struct remote_function_call *tfc = data;
57 struct task_struct *p = tfc->p;
58
59 if (p) {
60 tfc->ret = -EAGAIN;
61 if (task_cpu(p) != smp_processor_id() || !task_curr(p))
62 return;
63 }
64
65 tfc->ret = tfc->func(tfc->info);
66}
67
68/**
69 * task_function_call - call a function on the cpu on which a task runs
70 * @p: the task to evaluate
71 * @func: the function to be called
72 * @info: the function call argument
73 *
74 * Calls the function @func when the task is currently running. This might
75 * be on the current CPU, which just calls the function directly
76 *
77 * returns: @func return value, or
78 * -ESRCH - when the process isn't running
79 * -EAGAIN - when the process moved away
80 */
81static int
82task_function_call(struct task_struct *p, int (*func) (void *info), void *info)
83{
84 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020085 .p = p,
86 .func = func,
87 .info = info,
88 .ret = -ESRCH, /* No such (running) process */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010089 };
90
91 if (task_curr(p))
92 smp_call_function_single(task_cpu(p), remote_function, &data, 1);
93
94 return data.ret;
95}
96
97/**
98 * cpu_function_call - call a function on the cpu
99 * @func: the function to be called
100 * @info: the function call argument
101 *
102 * Calls the function @func on the remote cpu.
103 *
104 * returns: @func return value or -ENXIO when the cpu is offline
105 */
106static int cpu_function_call(int cpu, int (*func) (void *info), void *info)
107{
108 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200109 .p = NULL,
110 .func = func,
111 .info = info,
112 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100113 };
114
115 smp_call_function_single(cpu, remote_function, &data, 1);
116
117 return data.ret;
118}
119
Stephane Eraniane5d13672011-02-14 11:20:01 +0200120#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
121 PERF_FLAG_FD_OUTPUT |\
122 PERF_FLAG_PID_CGROUP)
123
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100124/*
125 * branch priv levels that need permission checks
126 */
127#define PERF_SAMPLE_BRANCH_PERM_PLM \
128 (PERF_SAMPLE_BRANCH_KERNEL |\
129 PERF_SAMPLE_BRANCH_HV)
130
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200131enum event_type_t {
132 EVENT_FLEXIBLE = 0x1,
133 EVENT_PINNED = 0x2,
134 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
135};
136
Stephane Eraniane5d13672011-02-14 11:20:01 +0200137/*
138 * perf_sched_events : >0 events exist
139 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
140 */
Ingo Molnarc5905af2012-02-24 08:31:31 +0100141struct static_key_deferred perf_sched_events __read_mostly;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200142static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Stephane Eraniand010b332012-02-09 23:21:00 +0100143static DEFINE_PER_CPU(atomic_t, perf_branch_stack_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200144
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200145static atomic_t nr_mmap_events __read_mostly;
146static atomic_t nr_comm_events __read_mostly;
147static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200148static atomic_t nr_freq_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200149
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200150static LIST_HEAD(pmus);
151static DEFINE_MUTEX(pmus_lock);
152static struct srcu_struct pmus_srcu;
153
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200154/*
155 * perf event paranoia level:
156 * -1 - not paranoid at all
157 * 0 - disallow raw tracepoint access for unpriv
158 * 1 - disallow cpu events for unpriv
159 * 2 - disallow kernel profiling for unpriv
160 */
161int sysctl_perf_event_paranoid __read_mostly = 1;
162
Frederic Weisbecker20443382011-03-31 03:33:29 +0200163/* Minimum for 512 kiB + 1 user control page */
164int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200165
166/*
167 * max perf event sample rate
168 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700169#define DEFAULT_MAX_SAMPLE_RATE 100000
170#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
171#define DEFAULT_CPU_TIME_MAX_PERCENT 25
172
173int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
174
175static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
176static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
177
178static atomic_t perf_sample_allowed_ns __read_mostly =
179 ATOMIC_INIT( DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100);
180
181void update_perf_cpu_limits(void)
182{
183 u64 tmp = perf_sample_period_ns;
184
185 tmp *= sysctl_perf_cpu_time_max_percent;
Stephane Eraniane5302922013-07-05 00:30:11 +0200186 do_div(tmp, 100);
Dave Hansen14c63f12013-06-21 08:51:36 -0700187 atomic_set(&perf_sample_allowed_ns, tmp);
188}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100189
Stephane Eranian9e630202013-04-03 14:21:33 +0200190static int perf_rotate_context(struct perf_cpu_context *cpuctx);
191
Peter Zijlstra163ec432011-02-16 11:22:34 +0100192int perf_proc_update_handler(struct ctl_table *table, int write,
193 void __user *buffer, size_t *lenp,
194 loff_t *ppos)
195{
196 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
197
198 if (ret || !write)
199 return ret;
200
201 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700202 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
203 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100204
205 return 0;
206}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200207
Dave Hansen14c63f12013-06-21 08:51:36 -0700208int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
209
210int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
211 void __user *buffer, size_t *lenp,
212 loff_t *ppos)
213{
214 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
215
216 if (ret || !write)
217 return ret;
218
219 update_perf_cpu_limits();
220
221 return 0;
222}
223
224/*
225 * perf samples are done in some very critical code paths (NMIs).
226 * If they take too much CPU time, the system can lock up and not
227 * get any real work done. This will drop the sample rate when
228 * we detect that events are taking too long.
229 */
230#define NR_ACCUMULATED_SAMPLES 128
231DEFINE_PER_CPU(u64, running_sample_length);
232
233void perf_sample_event_took(u64 sample_len_ns)
234{
235 u64 avg_local_sample_len;
Stephane Eraniane5302922013-07-05 00:30:11 +0200236 u64 local_samples_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700237
238 if (atomic_read(&perf_sample_allowed_ns) == 0)
239 return;
240
241 /* decay the counter by 1 average sample */
242 local_samples_len = __get_cpu_var(running_sample_length);
243 local_samples_len -= local_samples_len/NR_ACCUMULATED_SAMPLES;
244 local_samples_len += sample_len_ns;
245 __get_cpu_var(running_sample_length) = local_samples_len;
246
247 /*
248 * note: this will be biased artifically low until we have
249 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
250 * from having to maintain a count.
251 */
252 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
253
254 if (avg_local_sample_len <= atomic_read(&perf_sample_allowed_ns))
255 return;
256
257 if (max_samples_per_tick <= 1)
258 return;
259
260 max_samples_per_tick = DIV_ROUND_UP(max_samples_per_tick, 2);
261 sysctl_perf_event_sample_rate = max_samples_per_tick * HZ;
262 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
263
264 printk_ratelimited(KERN_WARNING
265 "perf samples too long (%lld > %d), lowering "
266 "kernel.perf_event_max_sample_rate to %d\n",
267 avg_local_sample_len,
268 atomic_read(&perf_sample_allowed_ns),
269 sysctl_perf_event_sample_rate);
270
271 update_perf_cpu_limits();
272}
273
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200274static atomic64_t perf_event_id;
275
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200276static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
277 enum event_type_t event_type);
278
279static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200280 enum event_type_t event_type,
281 struct task_struct *task);
282
283static void update_context_time(struct perf_event_context *ctx);
284static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200285
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200286void __weak perf_event_print_debug(void) { }
287
Matt Fleming84c79912010-10-03 21:41:13 +0100288extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200289{
Matt Fleming84c79912010-10-03 21:41:13 +0100290 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200291}
292
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200293static inline u64 perf_clock(void)
294{
295 return local_clock();
296}
297
Stephane Eraniane5d13672011-02-14 11:20:01 +0200298static inline struct perf_cpu_context *
299__get_cpu_context(struct perf_event_context *ctx)
300{
301 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
302}
303
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200304static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
305 struct perf_event_context *ctx)
306{
307 raw_spin_lock(&cpuctx->ctx.lock);
308 if (ctx)
309 raw_spin_lock(&ctx->lock);
310}
311
312static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
313 struct perf_event_context *ctx)
314{
315 if (ctx)
316 raw_spin_unlock(&ctx->lock);
317 raw_spin_unlock(&cpuctx->ctx.lock);
318}
319
Stephane Eraniane5d13672011-02-14 11:20:01 +0200320#ifdef CONFIG_CGROUP_PERF
321
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200322/*
Li Zefan877c6852013-03-05 11:38:08 +0800323 * perf_cgroup_info keeps track of time_enabled for a cgroup.
324 * This is a per-cpu dynamically allocated data structure.
325 */
326struct perf_cgroup_info {
327 u64 time;
328 u64 timestamp;
329};
330
331struct perf_cgroup {
332 struct cgroup_subsys_state css;
Namhyung Kim86e213e2013-03-18 18:56:34 +0900333 struct perf_cgroup_info __percpu *info;
Li Zefan877c6852013-03-05 11:38:08 +0800334};
335
336/*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200337 * Must ensure cgroup is pinned (css_get) before calling
338 * this function. In other words, we cannot call this function
339 * if there is no cgroup event for the current CPU context.
340 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200341static inline struct perf_cgroup *
342perf_cgroup_from_task(struct task_struct *task)
343{
Tejun Heo8af01f52013-08-08 20:11:22 -0400344 return container_of(task_css(task, perf_subsys_id),
345 struct perf_cgroup, css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200346}
347
348static inline bool
349perf_cgroup_match(struct perf_event *event)
350{
351 struct perf_event_context *ctx = event->ctx;
352 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
353
Tejun Heoef824fa2013-04-08 19:00:38 -0700354 /* @event doesn't care about cgroup */
355 if (!event->cgrp)
356 return true;
357
358 /* wants specific cgroup scope but @cpuctx isn't associated with any */
359 if (!cpuctx->cgrp)
360 return false;
361
362 /*
363 * Cgroup scoping is recursive. An event enabled for a cgroup is
364 * also enabled for all its descendant cgroups. If @cpuctx's
365 * cgroup is a descendant of @event's (the test covers identity
366 * case), it's a match.
367 */
368 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
369 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200370}
371
Salman Qazi9c5da092012-06-14 15:31:09 -0700372static inline bool perf_tryget_cgroup(struct perf_event *event)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200373{
Salman Qazi9c5da092012-06-14 15:31:09 -0700374 return css_tryget(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200375}
376
377static inline void perf_put_cgroup(struct perf_event *event)
378{
379 css_put(&event->cgrp->css);
380}
381
382static inline void perf_detach_cgroup(struct perf_event *event)
383{
384 perf_put_cgroup(event);
385 event->cgrp = NULL;
386}
387
388static inline int is_cgroup_event(struct perf_event *event)
389{
390 return event->cgrp != NULL;
391}
392
393static inline u64 perf_cgroup_event_time(struct perf_event *event)
394{
395 struct perf_cgroup_info *t;
396
397 t = per_cpu_ptr(event->cgrp->info, event->cpu);
398 return t->time;
399}
400
401static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
402{
403 struct perf_cgroup_info *info;
404 u64 now;
405
406 now = perf_clock();
407
408 info = this_cpu_ptr(cgrp->info);
409
410 info->time += now - info->timestamp;
411 info->timestamp = now;
412}
413
414static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
415{
416 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
417 if (cgrp_out)
418 __update_cgrp_time(cgrp_out);
419}
420
421static inline void update_cgrp_time_from_event(struct perf_event *event)
422{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200423 struct perf_cgroup *cgrp;
424
Stephane Eraniane5d13672011-02-14 11:20:01 +0200425 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200426 * ensure we access cgroup data only when needed and
427 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200428 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200429 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200430 return;
431
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200432 cgrp = perf_cgroup_from_task(current);
433 /*
434 * Do not update time when cgroup is not active
435 */
436 if (cgrp == event->cgrp)
437 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200438}
439
440static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200441perf_cgroup_set_timestamp(struct task_struct *task,
442 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200443{
444 struct perf_cgroup *cgrp;
445 struct perf_cgroup_info *info;
446
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200447 /*
448 * ctx->lock held by caller
449 * ensure we do not access cgroup data
450 * unless we have the cgroup pinned (css_get)
451 */
452 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200453 return;
454
455 cgrp = perf_cgroup_from_task(task);
456 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200457 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200458}
459
460#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
461#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
462
463/*
464 * reschedule events based on the cgroup constraint of task.
465 *
466 * mode SWOUT : schedule out everything
467 * mode SWIN : schedule in based on cgroup for next
468 */
469void perf_cgroup_switch(struct task_struct *task, int mode)
470{
471 struct perf_cpu_context *cpuctx;
472 struct pmu *pmu;
473 unsigned long flags;
474
475 /*
476 * disable interrupts to avoid geting nr_cgroup
477 * changes via __perf_event_disable(). Also
478 * avoids preemption.
479 */
480 local_irq_save(flags);
481
482 /*
483 * we reschedule only in the presence of cgroup
484 * constrained events.
485 */
486 rcu_read_lock();
487
488 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200489 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200490 if (cpuctx->unique_pmu != pmu)
491 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200492
Stephane Eraniane5d13672011-02-14 11:20:01 +0200493 /*
494 * perf_cgroup_events says at least one
495 * context on this CPU has cgroup events.
496 *
497 * ctx->nr_cgroups reports the number of cgroup
498 * events for a context.
499 */
500 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200501 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
502 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200503
504 if (mode & PERF_CGROUP_SWOUT) {
505 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
506 /*
507 * must not be done before ctxswout due
508 * to event_filter_match() in event_sched_out()
509 */
510 cpuctx->cgrp = NULL;
511 }
512
513 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200514 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200515 /*
516 * set cgrp before ctxsw in to allow
517 * event_filter_match() to not have to pass
518 * task around
Stephane Eraniane5d13672011-02-14 11:20:01 +0200519 */
520 cpuctx->cgrp = perf_cgroup_from_task(task);
521 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
522 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200523 perf_pmu_enable(cpuctx->ctx.pmu);
524 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200525 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200526 }
527
528 rcu_read_unlock();
529
530 local_irq_restore(flags);
531}
532
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200533static inline void perf_cgroup_sched_out(struct task_struct *task,
534 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200535{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200536 struct perf_cgroup *cgrp1;
537 struct perf_cgroup *cgrp2 = NULL;
538
539 /*
540 * we come here when we know perf_cgroup_events > 0
541 */
542 cgrp1 = perf_cgroup_from_task(task);
543
544 /*
545 * next is NULL when called from perf_event_enable_on_exec()
546 * that will systematically cause a cgroup_switch()
547 */
548 if (next)
549 cgrp2 = perf_cgroup_from_task(next);
550
551 /*
552 * only schedule out current cgroup events if we know
553 * that we are switching to a different cgroup. Otherwise,
554 * do no touch the cgroup events.
555 */
556 if (cgrp1 != cgrp2)
557 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200558}
559
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200560static inline void perf_cgroup_sched_in(struct task_struct *prev,
561 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200562{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200563 struct perf_cgroup *cgrp1;
564 struct perf_cgroup *cgrp2 = NULL;
565
566 /*
567 * we come here when we know perf_cgroup_events > 0
568 */
569 cgrp1 = perf_cgroup_from_task(task);
570
571 /* prev can never be NULL */
572 cgrp2 = perf_cgroup_from_task(prev);
573
574 /*
575 * only need to schedule in cgroup events if we are changing
576 * cgroup during ctxsw. Cgroup events were not scheduled
577 * out of ctxsw out if that was not the case.
578 */
579 if (cgrp1 != cgrp2)
580 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200581}
582
583static inline int perf_cgroup_connect(int fd, struct perf_event *event,
584 struct perf_event_attr *attr,
585 struct perf_event *group_leader)
586{
587 struct perf_cgroup *cgrp;
588 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400589 struct fd f = fdget(fd);
590 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200591
Al Viro2903ff02012-08-28 12:52:22 -0400592 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200593 return -EBADF;
594
Tejun Heob77d7b62013-08-13 11:01:54 -0400595 rcu_read_lock();
596
Tejun Heo35cf0832013-08-26 18:40:56 -0400597 css = css_from_dir(f.file->f_dentry, &perf_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800598 if (IS_ERR(css)) {
599 ret = PTR_ERR(css);
600 goto out;
601 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200602
603 cgrp = container_of(css, struct perf_cgroup, css);
604 event->cgrp = cgrp;
605
Li Zefanf75e18c2011-03-03 14:25:50 +0800606 /* must be done before we fput() the file */
Salman Qazi9c5da092012-06-14 15:31:09 -0700607 if (!perf_tryget_cgroup(event)) {
608 event->cgrp = NULL;
609 ret = -ENOENT;
610 goto out;
611 }
Li Zefanf75e18c2011-03-03 14:25:50 +0800612
Stephane Eraniane5d13672011-02-14 11:20:01 +0200613 /*
614 * all events in a group must monitor
615 * the same cgroup because a task belongs
616 * to only one perf cgroup at a time
617 */
618 if (group_leader && group_leader->cgrp != cgrp) {
619 perf_detach_cgroup(event);
620 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200621 }
Li Zefan3db272c2011-03-03 14:25:37 +0800622out:
Tejun Heob77d7b62013-08-13 11:01:54 -0400623 rcu_read_unlock();
Al Viro2903ff02012-08-28 12:52:22 -0400624 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200625 return ret;
626}
627
628static inline void
629perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
630{
631 struct perf_cgroup_info *t;
632 t = per_cpu_ptr(event->cgrp->info, event->cpu);
633 event->shadow_ctx_time = now - t->timestamp;
634}
635
636static inline void
637perf_cgroup_defer_enabled(struct perf_event *event)
638{
639 /*
640 * when the current task's perf cgroup does not match
641 * the event's, we need to remember to call the
642 * perf_mark_enable() function the first time a task with
643 * a matching perf cgroup is scheduled in.
644 */
645 if (is_cgroup_event(event) && !perf_cgroup_match(event))
646 event->cgrp_defer_enabled = 1;
647}
648
649static inline void
650perf_cgroup_mark_enabled(struct perf_event *event,
651 struct perf_event_context *ctx)
652{
653 struct perf_event *sub;
654 u64 tstamp = perf_event_time(event);
655
656 if (!event->cgrp_defer_enabled)
657 return;
658
659 event->cgrp_defer_enabled = 0;
660
661 event->tstamp_enabled = tstamp - event->total_time_enabled;
662 list_for_each_entry(sub, &event->sibling_list, group_entry) {
663 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
664 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
665 sub->cgrp_defer_enabled = 0;
666 }
667 }
668}
669#else /* !CONFIG_CGROUP_PERF */
670
671static inline bool
672perf_cgroup_match(struct perf_event *event)
673{
674 return true;
675}
676
677static inline void perf_detach_cgroup(struct perf_event *event)
678{}
679
680static inline int is_cgroup_event(struct perf_event *event)
681{
682 return 0;
683}
684
685static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
686{
687 return 0;
688}
689
690static inline void update_cgrp_time_from_event(struct perf_event *event)
691{
692}
693
694static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
695{
696}
697
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200698static inline void perf_cgroup_sched_out(struct task_struct *task,
699 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200700{
701}
702
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200703static inline void perf_cgroup_sched_in(struct task_struct *prev,
704 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200705{
706}
707
708static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
709 struct perf_event_attr *attr,
710 struct perf_event *group_leader)
711{
712 return -EINVAL;
713}
714
715static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200716perf_cgroup_set_timestamp(struct task_struct *task,
717 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200718{
719}
720
721void
722perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
723{
724}
725
726static inline void
727perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
728{
729}
730
731static inline u64 perf_cgroup_event_time(struct perf_event *event)
732{
733 return 0;
734}
735
736static inline void
737perf_cgroup_defer_enabled(struct perf_event *event)
738{
739}
740
741static inline void
742perf_cgroup_mark_enabled(struct perf_event *event,
743 struct perf_event_context *ctx)
744{
745}
746#endif
747
Stephane Eranian9e630202013-04-03 14:21:33 +0200748/*
749 * set default to be dependent on timer tick just
750 * like original code
751 */
752#define PERF_CPU_HRTIMER (1000 / HZ)
753/*
754 * function must be called with interrupts disbled
755 */
756static enum hrtimer_restart perf_cpu_hrtimer_handler(struct hrtimer *hr)
757{
758 struct perf_cpu_context *cpuctx;
759 enum hrtimer_restart ret = HRTIMER_NORESTART;
760 int rotations = 0;
761
762 WARN_ON(!irqs_disabled());
763
764 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
765
766 rotations = perf_rotate_context(cpuctx);
767
768 /*
769 * arm timer if needed
770 */
771 if (rotations) {
772 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
773 ret = HRTIMER_RESTART;
774 }
775
776 return ret;
777}
778
779/* CPU is going down */
780void perf_cpu_hrtimer_cancel(int cpu)
781{
782 struct perf_cpu_context *cpuctx;
783 struct pmu *pmu;
784 unsigned long flags;
785
786 if (WARN_ON(cpu != smp_processor_id()))
787 return;
788
789 local_irq_save(flags);
790
791 rcu_read_lock();
792
793 list_for_each_entry_rcu(pmu, &pmus, entry) {
794 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
795
796 if (pmu->task_ctx_nr == perf_sw_context)
797 continue;
798
799 hrtimer_cancel(&cpuctx->hrtimer);
800 }
801
802 rcu_read_unlock();
803
804 local_irq_restore(flags);
805}
806
807static void __perf_cpu_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
808{
809 struct hrtimer *hr = &cpuctx->hrtimer;
810 struct pmu *pmu = cpuctx->ctx.pmu;
Stephane Eranian62b85632013-04-03 14:21:34 +0200811 int timer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200812
813 /* no multiplexing needed for SW PMU */
814 if (pmu->task_ctx_nr == perf_sw_context)
815 return;
816
Stephane Eranian62b85632013-04-03 14:21:34 +0200817 /*
818 * check default is sane, if not set then force to
819 * default interval (1/tick)
820 */
821 timer = pmu->hrtimer_interval_ms;
822 if (timer < 1)
823 timer = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
824
825 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
Stephane Eranian9e630202013-04-03 14:21:33 +0200826
827 hrtimer_init(hr, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
828 hr->function = perf_cpu_hrtimer_handler;
829}
830
831static void perf_cpu_hrtimer_restart(struct perf_cpu_context *cpuctx)
832{
833 struct hrtimer *hr = &cpuctx->hrtimer;
834 struct pmu *pmu = cpuctx->ctx.pmu;
835
836 /* not for SW PMU */
837 if (pmu->task_ctx_nr == perf_sw_context)
838 return;
839
840 if (hrtimer_active(hr))
841 return;
842
843 if (!hrtimer_callback_running(hr))
844 __hrtimer_start_range_ns(hr, cpuctx->hrtimer_interval,
845 0, HRTIMER_MODE_REL_PINNED, 0);
846}
847
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200848void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200849{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200850 int *count = this_cpu_ptr(pmu->pmu_disable_count);
851 if (!(*count)++)
852 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200853}
854
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200855void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200856{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200857 int *count = this_cpu_ptr(pmu->pmu_disable_count);
858 if (!--(*count))
859 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200860}
861
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200862static DEFINE_PER_CPU(struct list_head, rotation_list);
863
864/*
865 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
866 * because they're strictly cpu affine and rotate_start is called with IRQs
867 * disabled, while rotate_context is called from IRQ context.
868 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200869static void perf_pmu_rotate_start(struct pmu *pmu)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200870{
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200871 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200872 struct list_head *head = &__get_cpu_var(rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200873
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200874 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200875
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +0200876 if (list_empty(&cpuctx->rotation_list))
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200877 list_add(&cpuctx->rotation_list, head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200878}
879
880static void get_ctx(struct perf_event_context *ctx)
881{
882 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
883}
884
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200885static void put_ctx(struct perf_event_context *ctx)
886{
887 if (atomic_dec_and_test(&ctx->refcount)) {
888 if (ctx->parent_ctx)
889 put_ctx(ctx->parent_ctx);
890 if (ctx->task)
891 put_task_struct(ctx->task);
Lai Jiangshancb796ff2011-03-18 12:07:41 +0800892 kfree_rcu(ctx, rcu_head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200893 }
894}
895
896static void unclone_ctx(struct perf_event_context *ctx)
897{
898 if (ctx->parent_ctx) {
899 put_ctx(ctx->parent_ctx);
900 ctx->parent_ctx = NULL;
901 }
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 Zijlstra8dc85d52010-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 Zijlstra8dc85d52010-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 Zijlstra8dc85d52010-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 Zijlstra8dc85d52010-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 Zijlstra8dc85d52010-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
Adrian Hunterff3d5272013-08-27 11:23:07 +03001219 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1220 size += sizeof(data->id);
1221
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001222 if (sample_type & PERF_SAMPLE_ID)
1223 size += sizeof(data->id);
1224
1225 if (sample_type & PERF_SAMPLE_STREAM_ID)
1226 size += sizeof(data->stream_id);
1227
1228 if (sample_type & PERF_SAMPLE_CPU)
1229 size += sizeof(data->cpu_entry);
1230
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001231 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001232}
1233
Peter Zijlstra8a495422010-05-27 15:47:49 +02001234static void perf_group_attach(struct perf_event *event)
1235{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001236 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001237
Peter Zijlstra74c33372010-10-15 11:40:29 +02001238 /*
1239 * We can have double attach due to group movement in perf_event_open.
1240 */
1241 if (event->attach_state & PERF_ATTACH_GROUP)
1242 return;
1243
Peter Zijlstra8a495422010-05-27 15:47:49 +02001244 event->attach_state |= PERF_ATTACH_GROUP;
1245
1246 if (group_leader == event)
1247 return;
1248
1249 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1250 !is_software_event(event))
1251 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1252
1253 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1254 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001255
1256 perf_event__header_size(group_leader);
1257
1258 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1259 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001260}
1261
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001262/*
1263 * Remove a event from the lists for its context.
1264 * Must be called with ctx->mutex and ctx->lock held.
1265 */
1266static void
1267list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1268{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001269 struct perf_cpu_context *cpuctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001270 /*
1271 * We can have double detach due to exit/hot-unplug + close.
1272 */
1273 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001274 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001275
1276 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1277
Stephane Eranian68cacd22011-03-23 16:03:06 +01001278 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001279 ctx->nr_cgroups--;
Stephane Eranian68cacd22011-03-23 16:03:06 +01001280 cpuctx = __get_cpu_context(ctx);
1281 /*
1282 * if there are no more cgroup events
1283 * then cler cgrp to avoid stale pointer
1284 * in update_cgrp_time_from_cpuctx()
1285 */
1286 if (!ctx->nr_cgroups)
1287 cpuctx->cgrp = NULL;
1288 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001289
Stephane Eraniand010b332012-02-09 23:21:00 +01001290 if (has_branch_stack(event))
1291 ctx->nr_branch_stack--;
1292
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001293 ctx->nr_events--;
1294 if (event->attr.inherit_stat)
1295 ctx->nr_stat--;
1296
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001297 list_del_rcu(&event->event_entry);
1298
Peter Zijlstra8a495422010-05-27 15:47:49 +02001299 if (event->group_leader == event)
1300 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001301
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001302 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001303
1304 /*
1305 * If event was in error state, then keep it
1306 * that way, otherwise bogus counts will be
1307 * returned on read(). The only way to get out
1308 * of error state is by explicit re-enabling
1309 * of the event
1310 */
1311 if (event->state > PERF_EVENT_STATE_OFF)
1312 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001313}
1314
Peter Zijlstra8a495422010-05-27 15:47:49 +02001315static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001316{
1317 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001318 struct list_head *list = NULL;
1319
1320 /*
1321 * We can have double detach due to exit/hot-unplug + close.
1322 */
1323 if (!(event->attach_state & PERF_ATTACH_GROUP))
1324 return;
1325
1326 event->attach_state &= ~PERF_ATTACH_GROUP;
1327
1328 /*
1329 * If this is a sibling, remove it from its group.
1330 */
1331 if (event->group_leader != event) {
1332 list_del_init(&event->group_entry);
1333 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001334 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001335 }
1336
1337 if (!list_empty(&event->group_entry))
1338 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001339
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001340 /*
1341 * If this was a group event with sibling events then
1342 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001343 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001344 */
1345 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001346 if (list)
1347 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001348 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001349
1350 /* Inherit group flags from the previous leader */
1351 sibling->group_flags = event->group_flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001352 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001353
1354out:
1355 perf_event__header_size(event->group_leader);
1356
1357 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1358 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001359}
1360
Stephane Eranianfa66f072010-08-26 16:40:01 +02001361static inline int
1362event_filter_match(struct perf_event *event)
1363{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001364 return (event->cpu == -1 || event->cpu == smp_processor_id())
1365 && perf_cgroup_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001366}
1367
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001368static void
1369event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001370 struct perf_cpu_context *cpuctx,
1371 struct perf_event_context *ctx)
1372{
Stephane Eranian41587552011-01-03 18:20:01 +02001373 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001374 u64 delta;
1375 /*
1376 * An event which could not be activated because of
1377 * filter mismatch still needs to have its timings
1378 * maintained, otherwise bogus information is return
1379 * via read() for time_enabled, time_running:
1380 */
1381 if (event->state == PERF_EVENT_STATE_INACTIVE
1382 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001383 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001384 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001385 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001386 }
1387
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001388 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001389 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001390
1391 event->state = PERF_EVENT_STATE_INACTIVE;
1392 if (event->pending_disable) {
1393 event->pending_disable = 0;
1394 event->state = PERF_EVENT_STATE_OFF;
1395 }
Stephane Eranian41587552011-01-03 18:20:01 +02001396 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001397 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001398 event->oncpu = -1;
1399
1400 if (!is_software_event(event))
1401 cpuctx->active_oncpu--;
1402 ctx->nr_active--;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001403 if (event->attr.freq && event->attr.sample_freq)
1404 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001405 if (event->attr.exclusive || !cpuctx->active_oncpu)
1406 cpuctx->exclusive = 0;
1407}
1408
1409static void
1410group_sched_out(struct perf_event *group_event,
1411 struct perf_cpu_context *cpuctx,
1412 struct perf_event_context *ctx)
1413{
1414 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001415 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001416
1417 event_sched_out(group_event, cpuctx, ctx);
1418
1419 /*
1420 * Schedule out siblings (if any):
1421 */
1422 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1423 event_sched_out(event, cpuctx, ctx);
1424
Stephane Eranianfa66f072010-08-26 16:40:01 +02001425 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001426 cpuctx->exclusive = 0;
1427}
1428
1429/*
1430 * Cross CPU call to remove a performance event
1431 *
1432 * We disable the event on the hardware level first. After that we
1433 * remove it from the context list.
1434 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001435static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001436{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001437 struct perf_event *event = info;
1438 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001439 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001440
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001441 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001442 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001443 list_del_event(event, ctx);
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001444 if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1445 ctx->is_active = 0;
1446 cpuctx->task_ctx = NULL;
1447 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001448 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001449
1450 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001451}
1452
1453
1454/*
1455 * Remove the event from a task's (or a CPU's) list of events.
1456 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001457 * CPU events are removed with a smp call. For task events we only
1458 * call when the task is on a CPU.
1459 *
1460 * If event->ctx is a cloned context, callers must make sure that
1461 * every task struct that event->ctx->task could possibly point to
1462 * remains valid. This is OK when called from perf_release since
1463 * that only calls us on the top-level context, which can't be a clone.
1464 * When called from perf_event_exit_task, it's OK because the
1465 * context has been detached from its task.
1466 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001467static void perf_remove_from_context(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001468{
1469 struct perf_event_context *ctx = event->ctx;
1470 struct task_struct *task = ctx->task;
1471
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001472 lockdep_assert_held(&ctx->mutex);
1473
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001474 if (!task) {
1475 /*
1476 * Per cpu events are removed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001477 * the removal is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001478 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001479 cpu_function_call(event->cpu, __perf_remove_from_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001480 return;
1481 }
1482
1483retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001484 if (!task_function_call(task, __perf_remove_from_context, event))
1485 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001486
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001487 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001488 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001489 * If we failed to find a running task, but find the context active now
1490 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001491 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001492 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001493 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001494 goto retry;
1495 }
1496
1497 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001498 * Since the task isn't running, its safe to remove the event, us
1499 * holding the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001500 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001501 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001502 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001503}
1504
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001505/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001506 * Cross CPU call to disable a performance event
1507 */
K.Prasad500ad2d2012-08-02 13:46:35 +05301508int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001509{
1510 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001511 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001512 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001513
1514 /*
1515 * If this is a per-task event, need to check whether this
1516 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001517 *
1518 * Can trigger due to concurrent perf_event_context_sched_out()
1519 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001520 */
1521 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001522 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001523
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001524 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001525
1526 /*
1527 * If the event is on, turn it off.
1528 * If it is in error state, leave it in error state.
1529 */
1530 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1531 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001532 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001533 update_group_times(event);
1534 if (event == event->group_leader)
1535 group_sched_out(event, cpuctx, ctx);
1536 else
1537 event_sched_out(event, cpuctx, ctx);
1538 event->state = PERF_EVENT_STATE_OFF;
1539 }
1540
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001541 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001542
1543 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001544}
1545
1546/*
1547 * Disable a event.
1548 *
1549 * If event->ctx is a cloned context, callers must make sure that
1550 * every task struct that event->ctx->task could possibly point to
1551 * remains valid. This condition is satisifed when called through
1552 * perf_event_for_each_child or perf_event_for_each because they
1553 * hold the top-level event's child_mutex, so any descendant that
1554 * goes to exit will block in sync_child_event.
1555 * When called from perf_pending_event it's OK because event->ctx
1556 * is the current context on this CPU and preemption is disabled,
1557 * hence we can't get into perf_event_task_sched_out for this context.
1558 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001559void perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001560{
1561 struct perf_event_context *ctx = event->ctx;
1562 struct task_struct *task = ctx->task;
1563
1564 if (!task) {
1565 /*
1566 * Disable the event on the cpu that it's on
1567 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001568 cpu_function_call(event->cpu, __perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001569 return;
1570 }
1571
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001572retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001573 if (!task_function_call(task, __perf_event_disable, event))
1574 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001575
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001576 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001577 /*
1578 * If the event is still active, we need to retry the cross-call.
1579 */
1580 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001581 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001582 /*
1583 * Reload the task pointer, it might have been changed by
1584 * a concurrent perf_event_context_sched_out().
1585 */
1586 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001587 goto retry;
1588 }
1589
1590 /*
1591 * Since we have the lock this context can't be scheduled
1592 * in, so we can change the state safely.
1593 */
1594 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1595 update_group_times(event);
1596 event->state = PERF_EVENT_STATE_OFF;
1597 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001598 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001599}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001600EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001601
Stephane Eraniane5d13672011-02-14 11:20:01 +02001602static void perf_set_shadow_time(struct perf_event *event,
1603 struct perf_event_context *ctx,
1604 u64 tstamp)
1605{
1606 /*
1607 * use the correct time source for the time snapshot
1608 *
1609 * We could get by without this by leveraging the
1610 * fact that to get to this function, the caller
1611 * has most likely already called update_context_time()
1612 * and update_cgrp_time_xx() and thus both timestamp
1613 * are identical (or very close). Given that tstamp is,
1614 * already adjusted for cgroup, we could say that:
1615 * tstamp - ctx->timestamp
1616 * is equivalent to
1617 * tstamp - cgrp->timestamp.
1618 *
1619 * Then, in perf_output_read(), the calculation would
1620 * work with no changes because:
1621 * - event is guaranteed scheduled in
1622 * - no scheduled out in between
1623 * - thus the timestamp would be the same
1624 *
1625 * But this is a bit hairy.
1626 *
1627 * So instead, we have an explicit cgroup call to remain
1628 * within the time time source all along. We believe it
1629 * is cleaner and simpler to understand.
1630 */
1631 if (is_cgroup_event(event))
1632 perf_cgroup_set_shadow_time(event, tstamp);
1633 else
1634 event->shadow_ctx_time = tstamp - ctx->timestamp;
1635}
1636
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001637#define MAX_INTERRUPTS (~0ULL)
1638
1639static void perf_log_throttle(struct perf_event *event, int enable);
1640
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001641static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001642event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001643 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001644 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001645{
Stephane Eranian41587552011-01-03 18:20:01 +02001646 u64 tstamp = perf_event_time(event);
1647
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001648 if (event->state <= PERF_EVENT_STATE_OFF)
1649 return 0;
1650
1651 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001652 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001653
1654 /*
1655 * Unthrottle events, since we scheduled we might have missed several
1656 * ticks already, also for a heavily scheduling task there is little
1657 * guarantee it'll get a tick in a timely manner.
1658 */
1659 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1660 perf_log_throttle(event, 1);
1661 event->hw.interrupts = 0;
1662 }
1663
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001664 /*
1665 * The new state must be visible before we turn it on in the hardware:
1666 */
1667 smp_wmb();
1668
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001669 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001670 event->state = PERF_EVENT_STATE_INACTIVE;
1671 event->oncpu = -1;
1672 return -EAGAIN;
1673 }
1674
Stephane Eranian41587552011-01-03 18:20:01 +02001675 event->tstamp_running += tstamp - event->tstamp_stopped;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001676
Stephane Eraniane5d13672011-02-14 11:20:01 +02001677 perf_set_shadow_time(event, ctx, tstamp);
Stephane Eranianeed01522010-10-26 16:08:01 +02001678
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001679 if (!is_software_event(event))
1680 cpuctx->active_oncpu++;
1681 ctx->nr_active++;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001682 if (event->attr.freq && event->attr.sample_freq)
1683 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001684
1685 if (event->attr.exclusive)
1686 cpuctx->exclusive = 1;
1687
1688 return 0;
1689}
1690
1691static int
1692group_sched_in(struct perf_event *group_event,
1693 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001694 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001695{
Lin Ming6bde9b62010-04-23 13:56:00 +08001696 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001697 struct pmu *pmu = group_event->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001698 u64 now = ctx->time;
1699 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001700
1701 if (group_event->state == PERF_EVENT_STATE_OFF)
1702 return 0;
1703
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001704 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +08001705
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001706 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001707 pmu->cancel_txn(pmu);
Stephane Eranian9e630202013-04-03 14:21:33 +02001708 perf_cpu_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001709 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001710 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001711
1712 /*
1713 * Schedule in siblings as one group (if any):
1714 */
1715 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001716 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001717 partial_group = event;
1718 goto group_error;
1719 }
1720 }
1721
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001722 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001723 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001724
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001725group_error:
1726 /*
1727 * Groups can be scheduled in as one unit only, so undo any
1728 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001729 * The events up to the failed event are scheduled out normally,
1730 * tstamp_stopped will be updated.
1731 *
1732 * The failed events and the remaining siblings need to have
1733 * their timings updated as if they had gone thru event_sched_in()
1734 * and event_sched_out(). This is required to get consistent timings
1735 * across the group. This also takes care of the case where the group
1736 * could never be scheduled by ensuring tstamp_stopped is set to mark
1737 * the time the event was actually stopped, such that time delta
1738 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001739 */
1740 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1741 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001742 simulate = true;
1743
1744 if (simulate) {
1745 event->tstamp_running += now - event->tstamp_stopped;
1746 event->tstamp_stopped = now;
1747 } else {
1748 event_sched_out(event, cpuctx, ctx);
1749 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001750 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001751 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001752
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001753 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02001754
Stephane Eranian9e630202013-04-03 14:21:33 +02001755 perf_cpu_hrtimer_restart(cpuctx);
1756
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001757 return -EAGAIN;
1758}
1759
1760/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001761 * Work out whether we can put this event group on the CPU now.
1762 */
1763static int group_can_go_on(struct perf_event *event,
1764 struct perf_cpu_context *cpuctx,
1765 int can_add_hw)
1766{
1767 /*
1768 * Groups consisting entirely of software events can always go on.
1769 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001770 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001771 return 1;
1772 /*
1773 * If an exclusive group is already on, no other hardware
1774 * events can go on.
1775 */
1776 if (cpuctx->exclusive)
1777 return 0;
1778 /*
1779 * If this group is exclusive and there are already
1780 * events on the CPU, it can't go on.
1781 */
1782 if (event->attr.exclusive && cpuctx->active_oncpu)
1783 return 0;
1784 /*
1785 * Otherwise, try to add it if all previous groups were able
1786 * to go on.
1787 */
1788 return can_add_hw;
1789}
1790
1791static void add_event_to_ctx(struct perf_event *event,
1792 struct perf_event_context *ctx)
1793{
Stephane Eranian41587552011-01-03 18:20:01 +02001794 u64 tstamp = perf_event_time(event);
1795
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001796 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001797 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02001798 event->tstamp_enabled = tstamp;
1799 event->tstamp_running = tstamp;
1800 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001801}
1802
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001803static void task_ctx_sched_out(struct perf_event_context *ctx);
1804static void
1805ctx_sched_in(struct perf_event_context *ctx,
1806 struct perf_cpu_context *cpuctx,
1807 enum event_type_t event_type,
1808 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001809
Peter Zijlstradce58552011-04-09 21:17:46 +02001810static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
1811 struct perf_event_context *ctx,
1812 struct task_struct *task)
1813{
1814 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
1815 if (ctx)
1816 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
1817 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
1818 if (ctx)
1819 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
1820}
1821
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001822/*
1823 * Cross CPU call to install and enable a performance event
1824 *
1825 * Must be called with ctx->mutex held
1826 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001827static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001828{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001829 struct perf_event *event = info;
1830 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001831 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001832 struct perf_event_context *task_ctx = cpuctx->task_ctx;
1833 struct task_struct *task = current;
1834
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001835 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001836 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001837
1838 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001839 * If there was an active task_ctx schedule it out.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001840 */
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001841 if (task_ctx)
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001842 task_ctx_sched_out(task_ctx);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001843
1844 /*
1845 * If the context we're installing events in is not the
1846 * active task_ctx, flip them.
1847 */
1848 if (ctx->task && task_ctx != ctx) {
1849 if (task_ctx)
1850 raw_spin_unlock(&task_ctx->lock);
1851 raw_spin_lock(&ctx->lock);
1852 task_ctx = ctx;
1853 }
1854
1855 if (task_ctx) {
1856 cpuctx->task_ctx = task_ctx;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001857 task = task_ctx->task;
1858 }
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001859
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001860 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001861
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001862 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001863 /*
1864 * update cgrp time only if current cgrp
1865 * matches event->cgrp. Must be done before
1866 * calling add_event_to_ctx()
1867 */
1868 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001869
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001870 add_event_to_ctx(event, ctx);
1871
1872 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001873 * Schedule everything back in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001874 */
Peter Zijlstradce58552011-04-09 21:17:46 +02001875 perf_event_sched_in(cpuctx, task_ctx, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001876
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001877 perf_pmu_enable(cpuctx->ctx.pmu);
1878 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001879
1880 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001881}
1882
1883/*
1884 * Attach a performance event to a context
1885 *
1886 * First we add the event to the list with the hardware enable bit
1887 * in event->hw_config cleared.
1888 *
1889 * If the event is attached to a task which is on a CPU we use a smp
1890 * call to enable it in the task context. The task might have been
1891 * scheduled away, but we check this in the smp call again.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001892 */
1893static void
1894perf_install_in_context(struct perf_event_context *ctx,
1895 struct perf_event *event,
1896 int cpu)
1897{
1898 struct task_struct *task = ctx->task;
1899
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001900 lockdep_assert_held(&ctx->mutex);
1901
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001902 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08001903 if (event->cpu != -1)
1904 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001905
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001906 if (!task) {
1907 /*
1908 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001909 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001910 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001911 cpu_function_call(cpu, __perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001912 return;
1913 }
1914
1915retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001916 if (!task_function_call(task, __perf_install_in_context, event))
1917 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001918
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001919 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001920 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001921 * If we failed to find a running task, but find the context active now
1922 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001923 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001924 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001925 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001926 goto retry;
1927 }
1928
1929 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001930 * Since the task isn't running, its safe to add the event, us holding
1931 * the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001932 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001933 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001934 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001935}
1936
1937/*
1938 * Put a event into inactive state and update time fields.
1939 * Enabling the leader of a group effectively enables all
1940 * the group members that aren't explicitly disabled, so we
1941 * have to update their ->tstamp_enabled also.
1942 * Note: this works for group members as well as group leaders
1943 * since the non-leader members' sibling_lists will be empty.
1944 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001945static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001946{
1947 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02001948 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001949
1950 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02001951 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001952 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02001953 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
1954 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001955 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001956}
1957
1958/*
1959 * Cross CPU call to enable a performance event
1960 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001961static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001962{
1963 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001964 struct perf_event_context *ctx = event->ctx;
1965 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001966 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001967 int err;
1968
Jiri Olsa06f41792013-07-09 17:44:11 +02001969 /*
1970 * There's a time window between 'ctx->is_active' check
1971 * in perf_event_enable function and this place having:
1972 * - IRQs on
1973 * - ctx->lock unlocked
1974 *
1975 * where the task could be killed and 'ctx' deactivated
1976 * by perf_event_exit_task.
1977 */
1978 if (!ctx->is_active)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001979 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001980
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001981 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001982 update_context_time(ctx);
1983
1984 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1985 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001986
1987 /*
1988 * set current task's cgroup time reference point
1989 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001990 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001991
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001992 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001993
Stephane Eraniane5d13672011-02-14 11:20:01 +02001994 if (!event_filter_match(event)) {
1995 if (is_cgroup_event(event))
1996 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001997 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001998 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001999
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002000 /*
2001 * If the event is in a group and isn't the group leader,
2002 * then don't put it on unless the group is on.
2003 */
2004 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
2005 goto unlock;
2006
2007 if (!group_can_go_on(event, cpuctx, 1)) {
2008 err = -EEXIST;
2009 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002010 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002011 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002012 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01002013 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002014 }
2015
2016 if (err) {
2017 /*
2018 * If this event can't go on and it's part of a
2019 * group, then the whole group has to come off.
2020 */
Stephane Eranian9e630202013-04-03 14:21:33 +02002021 if (leader != event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002022 group_sched_out(leader, cpuctx, ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002023 perf_cpu_hrtimer_restart(cpuctx);
2024 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002025 if (leader->attr.pinned) {
2026 update_group_times(leader);
2027 leader->state = PERF_EVENT_STATE_ERROR;
2028 }
2029 }
2030
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002031unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002032 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002033
2034 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002035}
2036
2037/*
2038 * Enable a event.
2039 *
2040 * If event->ctx is a cloned context, callers must make sure that
2041 * every task struct that event->ctx->task could possibly point to
2042 * remains valid. This condition is satisfied when called through
2043 * perf_event_for_each_child or perf_event_for_each as described
2044 * for perf_event_disable.
2045 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01002046void perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002047{
2048 struct perf_event_context *ctx = event->ctx;
2049 struct task_struct *task = ctx->task;
2050
2051 if (!task) {
2052 /*
2053 * Enable the event on the cpu that it's on
2054 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002055 cpu_function_call(event->cpu, __perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002056 return;
2057 }
2058
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002059 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002060 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2061 goto out;
2062
2063 /*
2064 * If the event is in error state, clear that first.
2065 * That way, if we see the event in error state below, we
2066 * know that it has gone back into error state, as distinct
2067 * from the task having been scheduled away before the
2068 * cross-call arrived.
2069 */
2070 if (event->state == PERF_EVENT_STATE_ERROR)
2071 event->state = PERF_EVENT_STATE_OFF;
2072
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002073retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002074 if (!ctx->is_active) {
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002075 __perf_event_mark_enabled(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002076 goto out;
2077 }
2078
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002079 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002080
2081 if (!task_function_call(task, __perf_event_enable, event))
2082 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002083
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002084 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002085
2086 /*
2087 * If the context is active and the event is still off,
2088 * we need to retry the cross-call.
2089 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002090 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
2091 /*
2092 * task could have been flipped by a concurrent
2093 * perf_event_context_sched_out()
2094 */
2095 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002096 goto retry;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002097 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002098
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002099out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002100 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002101}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002102EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002103
Avi Kivity26ca5c12011-06-29 18:42:37 +03002104int perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002105{
2106 /*
2107 * not supported on inherited events
2108 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002109 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002110 return -EINVAL;
2111
2112 atomic_add(refresh, &event->event_limit);
2113 perf_event_enable(event);
2114
2115 return 0;
2116}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002117EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002118
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002119static void ctx_sched_out(struct perf_event_context *ctx,
2120 struct perf_cpu_context *cpuctx,
2121 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002122{
2123 struct perf_event *event;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002124 int is_active = ctx->is_active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002125
Peter Zijlstradb24d332011-04-09 21:17:45 +02002126 ctx->is_active &= ~event_type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002127 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002128 return;
2129
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002130 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002131 update_cgrp_time_from_cpuctx(cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002132 if (!ctx->nr_active)
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002133 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002134
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002135 perf_pmu_disable(ctx->pmu);
Peter Zijlstradb24d332011-04-09 21:17:45 +02002136 if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002137 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2138 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002139 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002140
Peter Zijlstradb24d332011-04-09 21:17:45 +02002141 if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002142 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002143 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002144 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002145 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002146}
2147
2148/*
2149 * Test whether two contexts are equivalent, i.e. whether they
2150 * have both been cloned from the same version of the same context
2151 * and they both have the same number of enabled events.
2152 * If the number of enabled events is the same, then the set
2153 * of enabled events should be the same, because these are both
2154 * inherited contexts, therefore we can't access individual events
2155 * in them directly with an fd; we can only enable/disable all
2156 * events via prctl, or enable/disable all events in a family
2157 * via ioctl, which will have the same effect on both contexts.
2158 */
2159static int context_equiv(struct perf_event_context *ctx1,
2160 struct perf_event_context *ctx2)
2161{
2162 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
2163 && ctx1->parent_gen == ctx2->parent_gen
2164 && !ctx1->pin_count && !ctx2->pin_count;
2165}
2166
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002167static void __perf_event_sync_stat(struct perf_event *event,
2168 struct perf_event *next_event)
2169{
2170 u64 value;
2171
2172 if (!event->attr.inherit_stat)
2173 return;
2174
2175 /*
2176 * Update the event value, we cannot use perf_event_read()
2177 * because we're in the middle of a context switch and have IRQs
2178 * disabled, which upsets smp_call_function_single(), however
2179 * we know the event must be on the current CPU, therefore we
2180 * don't need to use it.
2181 */
2182 switch (event->state) {
2183 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002184 event->pmu->read(event);
2185 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002186
2187 case PERF_EVENT_STATE_INACTIVE:
2188 update_event_times(event);
2189 break;
2190
2191 default:
2192 break;
2193 }
2194
2195 /*
2196 * In order to keep per-task stats reliable we need to flip the event
2197 * values when we flip the contexts.
2198 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002199 value = local64_read(&next_event->count);
2200 value = local64_xchg(&event->count, value);
2201 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002202
2203 swap(event->total_time_enabled, next_event->total_time_enabled);
2204 swap(event->total_time_running, next_event->total_time_running);
2205
2206 /*
2207 * Since we swizzled the values, update the user visible data too.
2208 */
2209 perf_event_update_userpage(event);
2210 perf_event_update_userpage(next_event);
2211}
2212
2213#define list_next_entry(pos, member) \
2214 list_entry(pos->member.next, typeof(*pos), member)
2215
2216static void perf_event_sync_stat(struct perf_event_context *ctx,
2217 struct perf_event_context *next_ctx)
2218{
2219 struct perf_event *event, *next_event;
2220
2221 if (!ctx->nr_stat)
2222 return;
2223
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002224 update_context_time(ctx);
2225
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002226 event = list_first_entry(&ctx->event_list,
2227 struct perf_event, event_entry);
2228
2229 next_event = list_first_entry(&next_ctx->event_list,
2230 struct perf_event, event_entry);
2231
2232 while (&event->event_entry != &ctx->event_list &&
2233 &next_event->event_entry != &next_ctx->event_list) {
2234
2235 __perf_event_sync_stat(event, next_event);
2236
2237 event = list_next_entry(event, event_entry);
2238 next_event = list_next_entry(next_event, event_entry);
2239 }
2240}
2241
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002242static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2243 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002244{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002245 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002246 struct perf_event_context *next_ctx;
2247 struct perf_event_context *parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002248 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002249 int do_switch = 1;
2250
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002251 if (likely(!ctx))
2252 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002253
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002254 cpuctx = __get_cpu_context(ctx);
2255 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002256 return;
2257
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002258 rcu_read_lock();
2259 parent = rcu_dereference(ctx->parent_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002260 next_ctx = next->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002261 if (parent && next_ctx &&
2262 rcu_dereference(next_ctx->parent_ctx) == parent) {
2263 /*
2264 * Looks like the two contexts are clones, so we might be
2265 * able to optimize the context switch. We lock both
2266 * contexts and check that they are clones under the
2267 * lock (including re-checking that neither has been
2268 * uncloned in the meantime). It doesn't matter which
2269 * order we take the locks because no other cpu could
2270 * be trying to lock both of these tasks.
2271 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002272 raw_spin_lock(&ctx->lock);
2273 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002274 if (context_equiv(ctx, next_ctx)) {
2275 /*
2276 * XXX do we need a memory barrier of sorts
2277 * wrt to rcu_dereference() of perf_event_ctxp
2278 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002279 task->perf_event_ctxp[ctxn] = next_ctx;
2280 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002281 ctx->task = next;
2282 next_ctx->task = task;
2283 do_switch = 0;
2284
2285 perf_event_sync_stat(ctx, next_ctx);
2286 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002287 raw_spin_unlock(&next_ctx->lock);
2288 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002289 }
2290 rcu_read_unlock();
2291
2292 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002293 raw_spin_lock(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002294 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002295 cpuctx->task_ctx = NULL;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002296 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002297 }
2298}
2299
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002300#define for_each_task_context_nr(ctxn) \
2301 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2302
2303/*
2304 * Called from scheduler to remove the events of the current task,
2305 * with interrupts disabled.
2306 *
2307 * We stop each event and update the event value in event->count.
2308 *
2309 * This does not protect us against NMI, but disable()
2310 * sets the disabled bit in the control field of event _before_
2311 * accessing the event control register. If a NMI hits, then it will
2312 * not restart the event.
2313 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002314void __perf_event_task_sched_out(struct task_struct *task,
2315 struct task_struct *next)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002316{
2317 int ctxn;
2318
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002319 for_each_task_context_nr(ctxn)
2320 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002321
2322 /*
2323 * if cgroup events exist on this CPU, then we need
2324 * to check if we have to switch out PMU state.
2325 * cgroup event are system-wide mode only
2326 */
2327 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002328 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002329}
2330
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002331static void task_ctx_sched_out(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002332{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002333 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002334
2335 if (!cpuctx->task_ctx)
2336 return;
2337
2338 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2339 return;
2340
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002341 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002342 cpuctx->task_ctx = NULL;
2343}
2344
2345/*
2346 * Called with IRQs disabled
2347 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002348static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2349 enum event_type_t event_type)
2350{
2351 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002352}
2353
2354static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002355ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002356 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002357{
2358 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002359
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002360 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2361 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002362 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002363 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002364 continue;
2365
Stephane Eraniane5d13672011-02-14 11:20:01 +02002366 /* may need to reset tstamp_enabled */
2367 if (is_cgroup_event(event))
2368 perf_cgroup_mark_enabled(event, ctx);
2369
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002370 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002371 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002372
2373 /*
2374 * If this pinned group hasn't been scheduled,
2375 * put it in error state.
2376 */
2377 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2378 update_group_times(event);
2379 event->state = PERF_EVENT_STATE_ERROR;
2380 }
2381 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002382}
2383
2384static void
2385ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002386 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002387{
2388 struct perf_event *event;
2389 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002390
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002391 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2392 /* Ignore events in OFF or ERROR state */
2393 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002394 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002395 /*
2396 * Listen to the 'cpu' scheduling filter constraint
2397 * of events:
2398 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002399 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002400 continue;
2401
Stephane Eraniane5d13672011-02-14 11:20:01 +02002402 /* may need to reset tstamp_enabled */
2403 if (is_cgroup_event(event))
2404 perf_cgroup_mark_enabled(event, ctx);
2405
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002406 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002407 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002408 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002409 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002410 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002411}
2412
2413static void
2414ctx_sched_in(struct perf_event_context *ctx,
2415 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002416 enum event_type_t event_type,
2417 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002418{
Stephane Eraniane5d13672011-02-14 11:20:01 +02002419 u64 now;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002420 int is_active = ctx->is_active;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002421
Peter Zijlstradb24d332011-04-09 21:17:45 +02002422 ctx->is_active |= event_type;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002423 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002424 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002425
Stephane Eraniane5d13672011-02-14 11:20:01 +02002426 now = perf_clock();
2427 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002428 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002429 /*
2430 * First go through the list and put on any pinned groups
2431 * in order to give them the best chance of going on.
2432 */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002433 if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002434 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002435
2436 /* Then walk through the lower prio flexible groups */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002437 if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002438 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002439}
2440
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002441static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002442 enum event_type_t event_type,
2443 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002444{
2445 struct perf_event_context *ctx = &cpuctx->ctx;
2446
Stephane Eraniane5d13672011-02-14 11:20:01 +02002447 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002448}
2449
Stephane Eraniane5d13672011-02-14 11:20:01 +02002450static void perf_event_context_sched_in(struct perf_event_context *ctx,
2451 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002452{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002453 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002454
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002455 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002456 if (cpuctx->task_ctx == ctx)
2457 return;
2458
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002459 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002460 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002461 /*
2462 * We want to keep the following priority order:
2463 * cpu pinned (that don't need to move), task pinned,
2464 * cpu flexible, task flexible.
2465 */
2466 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2467
Gleb Natapov1d5f0032011-10-23 19:10:33 +02002468 if (ctx->nr_events)
2469 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002470
Gleb Natapov86b47c22011-11-22 16:08:21 +02002471 perf_event_sched_in(cpuctx, cpuctx->task_ctx, task);
2472
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002473 perf_pmu_enable(ctx->pmu);
2474 perf_ctx_unlock(cpuctx, ctx);
2475
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002476 /*
2477 * Since these rotations are per-cpu, we need to ensure the
2478 * cpu-context we got scheduled on is actually rotating.
2479 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002480 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002481}
2482
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002483/*
Stephane Eraniand010b332012-02-09 23:21:00 +01002484 * When sampling the branck stack in system-wide, it may be necessary
2485 * to flush the stack on context switch. This happens when the branch
2486 * stack does not tag its entries with the pid of the current task.
2487 * Otherwise it becomes impossible to associate a branch entry with a
2488 * task. This ambiguity is more likely to appear when the branch stack
2489 * supports priv level filtering and the user sets it to monitor only
2490 * at the user level (which could be a useful measurement in system-wide
2491 * mode). In that case, the risk is high of having a branch stack with
2492 * branch from multiple tasks. Flushing may mean dropping the existing
2493 * entries or stashing them somewhere in the PMU specific code layer.
2494 *
2495 * This function provides the context switch callback to the lower code
2496 * layer. It is invoked ONLY when there is at least one system-wide context
2497 * with at least one active event using taken branch sampling.
2498 */
2499static void perf_branch_stack_sched_in(struct task_struct *prev,
2500 struct task_struct *task)
2501{
2502 struct perf_cpu_context *cpuctx;
2503 struct pmu *pmu;
2504 unsigned long flags;
2505
2506 /* no need to flush branch stack if not changing task */
2507 if (prev == task)
2508 return;
2509
2510 local_irq_save(flags);
2511
2512 rcu_read_lock();
2513
2514 list_for_each_entry_rcu(pmu, &pmus, entry) {
2515 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2516
2517 /*
2518 * check if the context has at least one
2519 * event using PERF_SAMPLE_BRANCH_STACK
2520 */
2521 if (cpuctx->ctx.nr_branch_stack > 0
2522 && pmu->flush_branch_stack) {
2523
2524 pmu = cpuctx->ctx.pmu;
2525
2526 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2527
2528 perf_pmu_disable(pmu);
2529
2530 pmu->flush_branch_stack();
2531
2532 perf_pmu_enable(pmu);
2533
2534 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2535 }
2536 }
2537
2538 rcu_read_unlock();
2539
2540 local_irq_restore(flags);
2541}
2542
2543/*
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002544 * Called from scheduler to add the events of the current task
2545 * with interrupts disabled.
2546 *
2547 * We restore the event value and then enable it.
2548 *
2549 * This does not protect us against NMI, but enable()
2550 * sets the enabled bit in the control field of event _before_
2551 * accessing the event control register. If a NMI hits, then it will
2552 * keep the event running.
2553 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002554void __perf_event_task_sched_in(struct task_struct *prev,
2555 struct task_struct *task)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002556{
2557 struct perf_event_context *ctx;
2558 int ctxn;
2559
2560 for_each_task_context_nr(ctxn) {
2561 ctx = task->perf_event_ctxp[ctxn];
2562 if (likely(!ctx))
2563 continue;
2564
Stephane Eraniane5d13672011-02-14 11:20:01 +02002565 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002566 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02002567 /*
2568 * if cgroup events exist on this CPU, then we need
2569 * to check if we have to switch in PMU state.
2570 * cgroup event are system-wide mode only
2571 */
2572 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002573 perf_cgroup_sched_in(prev, task);
Stephane Eraniand010b332012-02-09 23:21:00 +01002574
2575 /* check for system-wide branch_stack events */
2576 if (atomic_read(&__get_cpu_var(perf_branch_stack_events)))
2577 perf_branch_stack_sched_in(prev, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002578}
2579
Peter Zijlstraabd50712010-01-26 18:50:16 +01002580static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2581{
2582 u64 frequency = event->attr.sample_freq;
2583 u64 sec = NSEC_PER_SEC;
2584 u64 divisor, dividend;
2585
2586 int count_fls, nsec_fls, frequency_fls, sec_fls;
2587
2588 count_fls = fls64(count);
2589 nsec_fls = fls64(nsec);
2590 frequency_fls = fls64(frequency);
2591 sec_fls = 30;
2592
2593 /*
2594 * We got @count in @nsec, with a target of sample_freq HZ
2595 * the target period becomes:
2596 *
2597 * @count * 10^9
2598 * period = -------------------
2599 * @nsec * sample_freq
2600 *
2601 */
2602
2603 /*
2604 * Reduce accuracy by one bit such that @a and @b converge
2605 * to a similar magnitude.
2606 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002607#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002608do { \
2609 if (a##_fls > b##_fls) { \
2610 a >>= 1; \
2611 a##_fls--; \
2612 } else { \
2613 b >>= 1; \
2614 b##_fls--; \
2615 } \
2616} while (0)
2617
2618 /*
2619 * Reduce accuracy until either term fits in a u64, then proceed with
2620 * the other, so that finally we can do a u64/u64 division.
2621 */
2622 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2623 REDUCE_FLS(nsec, frequency);
2624 REDUCE_FLS(sec, count);
2625 }
2626
2627 if (count_fls + sec_fls > 64) {
2628 divisor = nsec * frequency;
2629
2630 while (count_fls + sec_fls > 64) {
2631 REDUCE_FLS(count, sec);
2632 divisor >>= 1;
2633 }
2634
2635 dividend = count * sec;
2636 } else {
2637 dividend = count * sec;
2638
2639 while (nsec_fls + frequency_fls > 64) {
2640 REDUCE_FLS(nsec, frequency);
2641 dividend >>= 1;
2642 }
2643
2644 divisor = nsec * frequency;
2645 }
2646
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002647 if (!divisor)
2648 return dividend;
2649
Peter Zijlstraabd50712010-01-26 18:50:16 +01002650 return div64_u64(dividend, divisor);
2651}
2652
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002653static DEFINE_PER_CPU(int, perf_throttled_count);
2654static DEFINE_PER_CPU(u64, perf_throttled_seq);
2655
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002656static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002657{
2658 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002659 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002660 s64 delta;
2661
Peter Zijlstraabd50712010-01-26 18:50:16 +01002662 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002663
2664 delta = (s64)(period - hwc->sample_period);
2665 delta = (delta + 7) / 8; /* low pass filter */
2666
2667 sample_period = hwc->sample_period + delta;
2668
2669 if (!sample_period)
2670 sample_period = 1;
2671
2672 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002673
Peter Zijlstrae7850592010-05-21 14:43:08 +02002674 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002675 if (disable)
2676 event->pmu->stop(event, PERF_EF_UPDATE);
2677
Peter Zijlstrae7850592010-05-21 14:43:08 +02002678 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002679
2680 if (disable)
2681 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002682 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002683}
2684
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002685/*
2686 * combine freq adjustment with unthrottling to avoid two passes over the
2687 * events. At the same time, make sure, having freq events does not change
2688 * the rate of unthrottling as that would introduce bias.
2689 */
2690static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
2691 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002692{
2693 struct perf_event *event;
2694 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002695 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002696 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002697
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002698 /*
2699 * only need to iterate over all events iff:
2700 * - context have events in frequency mode (needs freq adjust)
2701 * - there are events to unthrottle on this cpu
2702 */
2703 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002704 return;
2705
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002706 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002707 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002708
Paul Mackerras03541f82009-10-14 16:58:03 +11002709 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002710 if (event->state != PERF_EVENT_STATE_ACTIVE)
2711 continue;
2712
Stephane Eranian5632ab12011-01-03 18:20:01 +02002713 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002714 continue;
2715
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002716 hwc = &event->hw;
2717
Jiri Olsaae23bff2013-08-24 16:45:54 +02002718 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002719 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002720 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002721 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002722 }
2723
2724 if (!event->attr.freq || !event->attr.sample_freq)
2725 continue;
2726
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002727 /*
2728 * stop the event and update event->count
2729 */
2730 event->pmu->stop(event, PERF_EF_UPDATE);
2731
Peter Zijlstrae7850592010-05-21 14:43:08 +02002732 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002733 delta = now - hwc->freq_count_stamp;
2734 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002735
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002736 /*
2737 * restart the event
2738 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002739 * we have stopped the event so tell that
2740 * to perf_adjust_period() to avoid stopping it
2741 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002742 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01002743 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002744 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002745
2746 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002747 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002748
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002749 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002750 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002751}
2752
2753/*
2754 * Round-robin a context's events:
2755 */
2756static void rotate_ctx(struct perf_event_context *ctx)
2757{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01002758 /*
2759 * Rotate the first entry last of non-pinned groups. Rotation might be
2760 * disabled by the inheritance code.
2761 */
2762 if (!ctx->rotate_disable)
2763 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002764}
2765
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002766/*
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002767 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
2768 * because they're strictly cpu affine and rotate_start is called with IRQs
2769 * disabled, while rotate_context is called from IRQ context.
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002770 */
Stephane Eranian9e630202013-04-03 14:21:33 +02002771static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002772{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002773 struct perf_event_context *ctx = NULL;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002774 int rotate = 0, remove = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002775
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002776 if (cpuctx->ctx.nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002777 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002778 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
2779 rotate = 1;
2780 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002781
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002782 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002783 if (ctx && ctx->nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002784 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002785 if (ctx->nr_events != ctx->nr_active)
2786 rotate = 1;
2787 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002788
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002789 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002790 goto done;
2791
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002792 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002793 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002794
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002795 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2796 if (ctx)
2797 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01002798
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002799 rotate_ctx(&cpuctx->ctx);
2800 if (ctx)
2801 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002802
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002803 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002804
2805 perf_pmu_enable(cpuctx->ctx.pmu);
2806 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002807done:
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002808 if (remove)
2809 list_del_init(&cpuctx->rotation_list);
Stephane Eranian9e630202013-04-03 14:21:33 +02002810
2811 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002812}
2813
Frederic Weisbecker026249e2013-04-20 15:58:34 +02002814#ifdef CONFIG_NO_HZ_FULL
2815bool perf_event_can_stop_tick(void)
2816{
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02002817 if (atomic_read(&nr_freq_events) ||
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02002818 __this_cpu_read(perf_throttled_count))
Frederic Weisbecker026249e2013-04-20 15:58:34 +02002819 return false;
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02002820 else
2821 return true;
Frederic Weisbecker026249e2013-04-20 15:58:34 +02002822}
2823#endif
2824
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002825void perf_event_task_tick(void)
2826{
2827 struct list_head *head = &__get_cpu_var(rotation_list);
2828 struct perf_cpu_context *cpuctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002829 struct perf_event_context *ctx;
2830 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002831
2832 WARN_ON(!irqs_disabled());
2833
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002834 __this_cpu_inc(perf_throttled_seq);
2835 throttled = __this_cpu_xchg(perf_throttled_count, 0);
2836
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002837 list_for_each_entry_safe(cpuctx, tmp, head, rotation_list) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002838 ctx = &cpuctx->ctx;
2839 perf_adjust_freq_unthr_context(ctx, throttled);
2840
2841 ctx = cpuctx->task_ctx;
2842 if (ctx)
2843 perf_adjust_freq_unthr_context(ctx, throttled);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002844 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002845}
2846
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002847static int event_enable_on_exec(struct perf_event *event,
2848 struct perf_event_context *ctx)
2849{
2850 if (!event->attr.enable_on_exec)
2851 return 0;
2852
2853 event->attr.enable_on_exec = 0;
2854 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2855 return 0;
2856
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002857 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002858
2859 return 1;
2860}
2861
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002862/*
2863 * Enable all of a task's events that have been marked enable-on-exec.
2864 * This expects task == current.
2865 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002866static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002867{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002868 struct perf_event *event;
2869 unsigned long flags;
2870 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002871 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002872
2873 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002874 if (!ctx || !ctx->nr_events)
2875 goto out;
2876
Stephane Eraniane566b762011-04-06 02:54:54 +02002877 /*
2878 * We must ctxsw out cgroup events to avoid conflict
2879 * when invoking perf_task_event_sched_in() later on
2880 * in this function. Otherwise we end up trying to
2881 * ctxswin cgroup events which are already scheduled
2882 * in.
2883 */
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002884 perf_cgroup_sched_out(current, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002885
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002886 raw_spin_lock(&ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002887 task_ctx_sched_out(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002888
Peter Zijlstrab79387e2011-11-22 11:25:43 +01002889 list_for_each_entry(event, &ctx->event_list, event_entry) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002890 ret = event_enable_on_exec(event, ctx);
2891 if (ret)
2892 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002893 }
2894
2895 /*
2896 * Unclone this context if we enabled any event.
2897 */
2898 if (enabled)
2899 unclone_ctx(ctx);
2900
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002901 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002902
Stephane Eraniane566b762011-04-06 02:54:54 +02002903 /*
2904 * Also calls ctxswin for cgroup events, if any:
2905 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002906 perf_event_context_sched_in(ctx, ctx->task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002907out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002908 local_irq_restore(flags);
2909}
2910
2911/*
2912 * Cross CPU call to read the hardware event
2913 */
2914static void __perf_event_read(void *info)
2915{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002916 struct perf_event *event = info;
2917 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002918 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002919
2920 /*
2921 * If this is a task context, we need to check whether it is
2922 * the current task context of this cpu. If not it has been
2923 * scheduled out before the smp call arrived. In that case
2924 * event->count would have been updated to a recent sample
2925 * when the event was scheduled out.
2926 */
2927 if (ctx->task && cpuctx->task_ctx != ctx)
2928 return;
2929
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002930 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002931 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002932 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002933 update_cgrp_time_from_event(event);
2934 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002935 update_event_times(event);
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002936 if (event->state == PERF_EVENT_STATE_ACTIVE)
2937 event->pmu->read(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002938 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002939}
2940
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002941static inline u64 perf_event_count(struct perf_event *event)
2942{
Peter Zijlstrae7850592010-05-21 14:43:08 +02002943 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002944}
2945
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002946static u64 perf_event_read(struct perf_event *event)
2947{
2948 /*
2949 * If event is enabled and currently active on a CPU, update the
2950 * value in the event structure:
2951 */
2952 if (event->state == PERF_EVENT_STATE_ACTIVE) {
2953 smp_call_function_single(event->oncpu,
2954 __perf_event_read, event, 1);
2955 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01002956 struct perf_event_context *ctx = event->ctx;
2957 unsigned long flags;
2958
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002959 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002960 /*
2961 * may read while context is not active
2962 * (e.g., thread is blocked), in that case
2963 * we cannot update context time
2964 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002965 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002966 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002967 update_cgrp_time_from_event(event);
2968 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002969 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002970 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002971 }
2972
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002973 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002974}
2975
2976/*
2977 * Initialize the perf_event context in a task_struct:
2978 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02002979static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002980{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002981 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002982 mutex_init(&ctx->mutex);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002983 INIT_LIST_HEAD(&ctx->pinned_groups);
2984 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002985 INIT_LIST_HEAD(&ctx->event_list);
2986 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002987}
2988
Peter Zijlstraeb184472010-09-07 15:55:13 +02002989static struct perf_event_context *
2990alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002991{
2992 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002993
2994 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
2995 if (!ctx)
2996 return NULL;
2997
2998 __perf_event_init_context(ctx);
2999 if (task) {
3000 ctx->task = task;
3001 get_task_struct(task);
3002 }
3003 ctx->pmu = pmu;
3004
3005 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003006}
3007
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003008static struct task_struct *
3009find_lively_task_by_vpid(pid_t vpid)
3010{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003011 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003012 int err;
3013
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003014 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003015 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003016 task = current;
3017 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003018 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003019 if (task)
3020 get_task_struct(task);
3021 rcu_read_unlock();
3022
3023 if (!task)
3024 return ERR_PTR(-ESRCH);
3025
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003026 /* Reuse ptrace permission checks for now. */
3027 err = -EACCES;
3028 if (!ptrace_may_access(task, PTRACE_MODE_READ))
3029 goto errout;
3030
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003031 return task;
3032errout:
3033 put_task_struct(task);
3034 return ERR_PTR(err);
3035
3036}
3037
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003038/*
3039 * Returns a matching context with refcount and pincount.
3040 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003041static struct perf_event_context *
Matt Helsley38a81da2010-09-13 13:01:20 -07003042find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003043{
3044 struct perf_event_context *ctx;
3045 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003046 unsigned long flags;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003047 int ctxn, err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003048
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003049 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003050 /* Must be root to operate on a CPU event: */
3051 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3052 return ERR_PTR(-EACCES);
3053
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003054 /*
3055 * We could be clever and allow to attach a event to an
3056 * offline CPU and activate it when the CPU comes up, but
3057 * that's for later.
3058 */
3059 if (!cpu_online(cpu))
3060 return ERR_PTR(-ENODEV);
3061
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003062 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003063 ctx = &cpuctx->ctx;
3064 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003065 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003066
3067 return ctx;
3068 }
3069
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003070 err = -EINVAL;
3071 ctxn = pmu->task_ctx_nr;
3072 if (ctxn < 0)
3073 goto errout;
3074
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003075retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003076 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003077 if (ctx) {
3078 unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003079 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003080 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003081 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003082 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003083 err = -ENOMEM;
3084 if (!ctx)
3085 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003086
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003087 err = 0;
3088 mutex_lock(&task->perf_event_mutex);
3089 /*
3090 * If it has already passed perf_event_exit_task().
3091 * we must see PF_EXITING, it takes this mutex too.
3092 */
3093 if (task->flags & PF_EXITING)
3094 err = -ESRCH;
3095 else if (task->perf_event_ctxp[ctxn])
3096 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003097 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003098 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003099 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003100 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003101 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003102 mutex_unlock(&task->perf_event_mutex);
3103
3104 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003105 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003106
3107 if (err == -EAGAIN)
3108 goto retry;
3109 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003110 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003111 }
3112
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003113 return ctx;
3114
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003115errout:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003116 return ERR_PTR(err);
3117}
3118
Li Zefan6fb29152009-10-15 11:21:42 +08003119static void perf_event_free_filter(struct perf_event *event);
3120
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003121static void free_event_rcu(struct rcu_head *head)
3122{
3123 struct perf_event *event;
3124
3125 event = container_of(head, struct perf_event, rcu_head);
3126 if (event->ns)
3127 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003128 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003129 kfree(event);
3130}
3131
Frederic Weisbecker76369132011-05-19 19:55:04 +02003132static void ring_buffer_put(struct ring_buffer *rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003133static void ring_buffer_detach(struct perf_event *event, struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003134
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003135static void unaccount_event_cpu(struct perf_event *event, int cpu)
3136{
3137 if (event->parent)
3138 return;
3139
3140 if (has_branch_stack(event)) {
3141 if (!(event->attach_state & PERF_ATTACH_TASK))
3142 atomic_dec(&per_cpu(perf_branch_stack_events, cpu));
3143 }
3144 if (is_cgroup_event(event))
3145 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3146}
3147
3148static void unaccount_event(struct perf_event *event)
3149{
3150 if (event->parent)
3151 return;
3152
3153 if (event->attach_state & PERF_ATTACH_TASK)
3154 static_key_slow_dec_deferred(&perf_sched_events);
3155 if (event->attr.mmap || event->attr.mmap_data)
3156 atomic_dec(&nr_mmap_events);
3157 if (event->attr.comm)
3158 atomic_dec(&nr_comm_events);
3159 if (event->attr.task)
3160 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003161 if (event->attr.freq)
3162 atomic_dec(&nr_freq_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003163 if (is_cgroup_event(event))
3164 static_key_slow_dec_deferred(&perf_sched_events);
3165 if (has_branch_stack(event))
3166 static_key_slow_dec_deferred(&perf_sched_events);
3167
3168 unaccount_event_cpu(event, event->cpu);
3169}
3170
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003171static void __free_event(struct perf_event *event)
3172{
3173 if (!event->parent) {
3174 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
3175 put_callchain_buffers();
3176 }
3177
3178 if (event->destroy)
3179 event->destroy(event);
3180
3181 if (event->ctx)
3182 put_ctx(event->ctx);
3183
3184 call_rcu(&event->rcu_head, free_event_rcu);
3185}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003186static void free_event(struct perf_event *event)
3187{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003188 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003189
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003190 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003191
Frederic Weisbecker76369132011-05-19 19:55:04 +02003192 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003193 struct ring_buffer *rb;
3194
3195 /*
3196 * Can happen when we close an event with re-directed output.
3197 *
3198 * Since we have a 0 refcount, perf_mmap_close() will skip
3199 * over us; possibly making our ring_buffer_put() the last.
3200 */
3201 mutex_lock(&event->mmap_mutex);
3202 rb = event->rb;
3203 if (rb) {
3204 rcu_assign_pointer(event->rb, NULL);
3205 ring_buffer_detach(event, rb);
3206 ring_buffer_put(rb); /* could be last */
3207 }
3208 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003209 }
3210
Stephane Eraniane5d13672011-02-14 11:20:01 +02003211 if (is_cgroup_event(event))
3212 perf_detach_cgroup(event);
3213
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003214
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003215 __free_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003216}
3217
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003218int perf_event_release_kernel(struct perf_event *event)
3219{
3220 struct perf_event_context *ctx = event->ctx;
3221
3222 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa0507c82010-05-06 15:42:53 +02003223 /*
3224 * There are two ways this annotation is useful:
3225 *
3226 * 1) there is a lock recursion from perf_event_exit_task
3227 * see the comment there.
3228 *
3229 * 2) there is a lock-inversion with mmap_sem through
3230 * perf_event_read_group(), which takes faults while
3231 * holding ctx->mutex, however this is called after
3232 * the last filedesc died, so there is no possibility
3233 * to trigger the AB-BA case.
3234 */
3235 mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
Peter Zijlstra050735b2010-05-11 11:51:53 +02003236 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02003237 perf_group_detach(event);
Peter Zijlstra050735b2010-05-11 11:51:53 +02003238 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrae03a9a52011-04-09 21:17:47 +02003239 perf_remove_from_context(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003240 mutex_unlock(&ctx->mutex);
3241
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003242 free_event(event);
3243
3244 return 0;
3245}
3246EXPORT_SYMBOL_GPL(perf_event_release_kernel);
3247
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003248/*
3249 * Called when the last reference to the file is gone.
3250 */
Al Viroa6fa9412012-08-20 14:59:25 +01003251static void put_event(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003252{
Peter Zijlstra88821352010-11-09 19:01:43 +01003253 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003254
Al Viroa6fa9412012-08-20 14:59:25 +01003255 if (!atomic_long_dec_and_test(&event->refcount))
3256 return;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003257
Peter Zijlstra88821352010-11-09 19:01:43 +01003258 rcu_read_lock();
3259 owner = ACCESS_ONCE(event->owner);
3260 /*
3261 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
3262 * !owner it means the list deletion is complete and we can indeed
3263 * free this event, otherwise we need to serialize on
3264 * owner->perf_event_mutex.
3265 */
3266 smp_read_barrier_depends();
3267 if (owner) {
3268 /*
3269 * Since delayed_put_task_struct() also drops the last
3270 * task reference we can safely take a new reference
3271 * while holding the rcu_read_lock().
3272 */
3273 get_task_struct(owner);
3274 }
3275 rcu_read_unlock();
3276
3277 if (owner) {
3278 mutex_lock(&owner->perf_event_mutex);
3279 /*
3280 * We have to re-check the event->owner field, if it is cleared
3281 * we raced with perf_event_exit_task(), acquiring the mutex
3282 * ensured they're done, and we can proceed with freeing the
3283 * event.
3284 */
3285 if (event->owner)
3286 list_del_init(&event->owner_entry);
3287 mutex_unlock(&owner->perf_event_mutex);
3288 put_task_struct(owner);
3289 }
3290
Al Viroa6fa9412012-08-20 14:59:25 +01003291 perf_event_release_kernel(event);
3292}
3293
3294static int perf_release(struct inode *inode, struct file *file)
3295{
3296 put_event(file->private_data);
3297 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003298}
3299
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003300u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003301{
3302 struct perf_event *child;
3303 u64 total = 0;
3304
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003305 *enabled = 0;
3306 *running = 0;
3307
Peter Zijlstra6f105812009-11-20 22:19:56 +01003308 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003309 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003310 *enabled += event->total_time_enabled +
3311 atomic64_read(&event->child_total_time_enabled);
3312 *running += event->total_time_running +
3313 atomic64_read(&event->child_total_time_running);
3314
3315 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003316 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003317 *enabled += child->total_time_enabled;
3318 *running += child->total_time_running;
3319 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003320 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003321
3322 return total;
3323}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003324EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003325
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003326static int perf_event_read_group(struct perf_event *event,
3327 u64 read_format, char __user *buf)
3328{
3329 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003330 int n = 0, size = 0, ret = -EFAULT;
3331 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003332 u64 values[5];
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003333 u64 count, enabled, running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003334
Peter Zijlstra6f105812009-11-20 22:19:56 +01003335 mutex_lock(&ctx->mutex);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003336 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003337
3338 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003339 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3340 values[n++] = enabled;
3341 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3342 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003343 values[n++] = count;
3344 if (read_format & PERF_FORMAT_ID)
3345 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003346
3347 size = n * sizeof(u64);
3348
3349 if (copy_to_user(buf, values, size))
Peter Zijlstra6f105812009-11-20 22:19:56 +01003350 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003351
Peter Zijlstra6f105812009-11-20 22:19:56 +01003352 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003353
3354 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01003355 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003356
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003357 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003358 if (read_format & PERF_FORMAT_ID)
3359 values[n++] = primary_event_id(sub);
3360
3361 size = n * sizeof(u64);
3362
Stephane Eranian184d3da2009-11-23 21:40:49 -08003363 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstra6f105812009-11-20 22:19:56 +01003364 ret = -EFAULT;
3365 goto unlock;
3366 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01003367
3368 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003369 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003370unlock:
3371 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003372
Peter Zijlstraabf48682009-11-20 22:19:49 +01003373 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003374}
3375
3376static int perf_event_read_one(struct perf_event *event,
3377 u64 read_format, char __user *buf)
3378{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003379 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003380 u64 values[4];
3381 int n = 0;
3382
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003383 values[n++] = perf_event_read_value(event, &enabled, &running);
3384 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3385 values[n++] = enabled;
3386 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3387 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003388 if (read_format & PERF_FORMAT_ID)
3389 values[n++] = primary_event_id(event);
3390
3391 if (copy_to_user(buf, values, n * sizeof(u64)))
3392 return -EFAULT;
3393
3394 return n * sizeof(u64);
3395}
3396
3397/*
3398 * Read the performance event - simple non blocking version for now
3399 */
3400static ssize_t
3401perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
3402{
3403 u64 read_format = event->attr.read_format;
3404 int ret;
3405
3406 /*
3407 * Return end-of-file for a read on a event that is in
3408 * error state (i.e. because it was pinned but it couldn't be
3409 * scheduled on to the CPU at some point).
3410 */
3411 if (event->state == PERF_EVENT_STATE_ERROR)
3412 return 0;
3413
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003414 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003415 return -ENOSPC;
3416
3417 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003418 if (read_format & PERF_FORMAT_GROUP)
3419 ret = perf_event_read_group(event, read_format, buf);
3420 else
3421 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003422
3423 return ret;
3424}
3425
3426static ssize_t
3427perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3428{
3429 struct perf_event *event = file->private_data;
3430
3431 return perf_read_hw(event, buf, count);
3432}
3433
3434static unsigned int perf_poll(struct file *file, poll_table *wait)
3435{
3436 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003437 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003438 unsigned int events = POLL_HUP;
3439
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003440 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003441 * Pin the event->rb by taking event->mmap_mutex; otherwise
3442 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003443 */
3444 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003445 rb = event->rb;
3446 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02003447 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003448 mutex_unlock(&event->mmap_mutex);
3449
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003450 poll_wait(file, &event->waitq, wait);
3451
3452 return events;
3453}
3454
3455static void perf_event_reset(struct perf_event *event)
3456{
3457 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02003458 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003459 perf_event_update_userpage(event);
3460}
3461
3462/*
3463 * Holding the top-level event's child_mutex means that any
3464 * descendant process that has inherited this event will block
3465 * in sync_child_event if it goes to exit, thus satisfying the
3466 * task existence requirements of perf_event_enable/disable.
3467 */
3468static void perf_event_for_each_child(struct perf_event *event,
3469 void (*func)(struct perf_event *))
3470{
3471 struct perf_event *child;
3472
3473 WARN_ON_ONCE(event->ctx->parent_ctx);
3474 mutex_lock(&event->child_mutex);
3475 func(event);
3476 list_for_each_entry(child, &event->child_list, child_list)
3477 func(child);
3478 mutex_unlock(&event->child_mutex);
3479}
3480
3481static void perf_event_for_each(struct perf_event *event,
3482 void (*func)(struct perf_event *))
3483{
3484 struct perf_event_context *ctx = event->ctx;
3485 struct perf_event *sibling;
3486
3487 WARN_ON_ONCE(ctx->parent_ctx);
3488 mutex_lock(&ctx->mutex);
3489 event = event->group_leader;
3490
3491 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003492 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10003493 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003494 mutex_unlock(&ctx->mutex);
3495}
3496
3497static int perf_event_period(struct perf_event *event, u64 __user *arg)
3498{
3499 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003500 int ret = 0;
3501 u64 value;
3502
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01003503 if (!is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003504 return -EINVAL;
3505
John Blackwoodad0cf342010-09-28 18:03:11 -04003506 if (copy_from_user(&value, arg, sizeof(value)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003507 return -EFAULT;
3508
3509 if (!value)
3510 return -EINVAL;
3511
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003512 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003513 if (event->attr.freq) {
3514 if (value > sysctl_perf_event_sample_rate) {
3515 ret = -EINVAL;
3516 goto unlock;
3517 }
3518
3519 event->attr.sample_freq = value;
3520 } else {
3521 event->attr.sample_period = value;
3522 event->hw.sample_period = value;
3523 }
3524unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003525 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003526
3527 return ret;
3528}
3529
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003530static const struct file_operations perf_fops;
3531
Al Viro2903ff02012-08-28 12:52:22 -04003532static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003533{
Al Viro2903ff02012-08-28 12:52:22 -04003534 struct fd f = fdget(fd);
3535 if (!f.file)
3536 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003537
Al Viro2903ff02012-08-28 12:52:22 -04003538 if (f.file->f_op != &perf_fops) {
3539 fdput(f);
3540 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003541 }
Al Viro2903ff02012-08-28 12:52:22 -04003542 *p = f;
3543 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003544}
3545
3546static int perf_event_set_output(struct perf_event *event,
3547 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08003548static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003549
3550static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3551{
3552 struct perf_event *event = file->private_data;
3553 void (*func)(struct perf_event *);
3554 u32 flags = arg;
3555
3556 switch (cmd) {
3557 case PERF_EVENT_IOC_ENABLE:
3558 func = perf_event_enable;
3559 break;
3560 case PERF_EVENT_IOC_DISABLE:
3561 func = perf_event_disable;
3562 break;
3563 case PERF_EVENT_IOC_RESET:
3564 func = perf_event_reset;
3565 break;
3566
3567 case PERF_EVENT_IOC_REFRESH:
3568 return perf_event_refresh(event, arg);
3569
3570 case PERF_EVENT_IOC_PERIOD:
3571 return perf_event_period(event, (u64 __user *)arg);
3572
Jiri Olsacf4957f2012-10-24 13:37:58 +02003573 case PERF_EVENT_IOC_ID:
3574 {
3575 u64 id = primary_event_id(event);
3576
3577 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
3578 return -EFAULT;
3579 return 0;
3580 }
3581
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003582 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003583 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003584 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003585 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04003586 struct perf_event *output_event;
3587 struct fd output;
3588 ret = perf_fget_light(arg, &output);
3589 if (ret)
3590 return ret;
3591 output_event = output.file->private_data;
3592 ret = perf_event_set_output(event, output_event);
3593 fdput(output);
3594 } else {
3595 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003596 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003597 return ret;
3598 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003599
Li Zefan6fb29152009-10-15 11:21:42 +08003600 case PERF_EVENT_IOC_SET_FILTER:
3601 return perf_event_set_filter(event, (void __user *)arg);
3602
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003603 default:
3604 return -ENOTTY;
3605 }
3606
3607 if (flags & PERF_IOC_FLAG_GROUP)
3608 perf_event_for_each(event, func);
3609 else
3610 perf_event_for_each_child(event, func);
3611
3612 return 0;
3613}
3614
3615int perf_event_task_enable(void)
3616{
3617 struct perf_event *event;
3618
3619 mutex_lock(&current->perf_event_mutex);
3620 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3621 perf_event_for_each_child(event, perf_event_enable);
3622 mutex_unlock(&current->perf_event_mutex);
3623
3624 return 0;
3625}
3626
3627int perf_event_task_disable(void)
3628{
3629 struct perf_event *event;
3630
3631 mutex_lock(&current->perf_event_mutex);
3632 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3633 perf_event_for_each_child(event, perf_event_disable);
3634 mutex_unlock(&current->perf_event_mutex);
3635
3636 return 0;
3637}
3638
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003639static int perf_event_index(struct perf_event *event)
3640{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003641 if (event->hw.state & PERF_HES_STOPPED)
3642 return 0;
3643
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003644 if (event->state != PERF_EVENT_STATE_ACTIVE)
3645 return 0;
3646
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01003647 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003648}
3649
Eric B Munsonc4794292011-06-23 16:34:38 -04003650static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003651 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04003652 u64 *enabled,
3653 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04003654{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003655 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04003656
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003657 *now = perf_clock();
3658 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04003659 *enabled = ctx_time - event->tstamp_enabled;
3660 *running = ctx_time - event->tstamp_running;
3661}
3662
Peter Zijlstrafa731582013-09-19 10:16:42 +02003663static void perf_event_init_userpage(struct perf_event *event)
3664{
3665 struct perf_event_mmap_page *userpg;
3666 struct ring_buffer *rb;
3667
3668 rcu_read_lock();
3669 rb = rcu_dereference(event->rb);
3670 if (!rb)
3671 goto unlock;
3672
3673 userpg = rb->user_page;
3674
3675 /* Allow new userspace to detect that bit 0 is deprecated */
3676 userpg->cap_bit0_is_deprecated = 1;
3677 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
3678
3679unlock:
3680 rcu_read_unlock();
3681}
3682
Peter Zijlstrac7206202012-03-22 17:26:36 +01003683void __weak arch_perf_update_userpage(struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003684{
3685}
3686
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003687/*
3688 * Callers need to ensure there can be no nesting of this function, otherwise
3689 * the seqlock logic goes bad. We can not serialize this because the arch
3690 * code calls this from NMI context.
3691 */
3692void perf_event_update_userpage(struct perf_event *event)
3693{
3694 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003695 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003696 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003697
3698 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02003699 rb = rcu_dereference(event->rb);
3700 if (!rb)
3701 goto unlock;
3702
Eric B Munson0d641202011-06-24 12:26:26 -04003703 /*
3704 * compute total_time_enabled, total_time_running
3705 * based on snapshot values taken when the event
3706 * was last scheduled in.
3707 *
3708 * we cannot simply called update_context_time()
3709 * because of locking issue as we can be called in
3710 * NMI context
3711 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003712 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003713
Frederic Weisbecker76369132011-05-19 19:55:04 +02003714 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003715 /*
3716 * Disable preemption so as to not let the corresponding user-space
3717 * spin too long if we get preempted.
3718 */
3719 preempt_disable();
3720 ++userpg->lock;
3721 barrier();
3722 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003723 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01003724 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02003725 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003726
Eric B Munson0d641202011-06-24 12:26:26 -04003727 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003728 atomic64_read(&event->child_total_time_enabled);
3729
Eric B Munson0d641202011-06-24 12:26:26 -04003730 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003731 atomic64_read(&event->child_total_time_running);
3732
Peter Zijlstrac7206202012-03-22 17:26:36 +01003733 arch_perf_update_userpage(userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003734
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003735 barrier();
3736 ++userpg->lock;
3737 preempt_enable();
3738unlock:
3739 rcu_read_unlock();
3740}
3741
Peter Zijlstra906010b2009-09-21 16:08:49 +02003742static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
3743{
3744 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003745 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003746 int ret = VM_FAULT_SIGBUS;
3747
3748 if (vmf->flags & FAULT_FLAG_MKWRITE) {
3749 if (vmf->pgoff == 0)
3750 ret = 0;
3751 return ret;
3752 }
3753
3754 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003755 rb = rcu_dereference(event->rb);
3756 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003757 goto unlock;
3758
3759 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
3760 goto unlock;
3761
Frederic Weisbecker76369132011-05-19 19:55:04 +02003762 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003763 if (!vmf->page)
3764 goto unlock;
3765
3766 get_page(vmf->page);
3767 vmf->page->mapping = vma->vm_file->f_mapping;
3768 vmf->page->index = vmf->pgoff;
3769
3770 ret = 0;
3771unlock:
3772 rcu_read_unlock();
3773
3774 return ret;
3775}
3776
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003777static void ring_buffer_attach(struct perf_event *event,
3778 struct ring_buffer *rb)
3779{
3780 unsigned long flags;
3781
3782 if (!list_empty(&event->rb_entry))
3783 return;
3784
3785 spin_lock_irqsave(&rb->event_lock, flags);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003786 if (list_empty(&event->rb_entry))
3787 list_add(&event->rb_entry, &rb->event_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003788 spin_unlock_irqrestore(&rb->event_lock, flags);
3789}
3790
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003791static void ring_buffer_detach(struct perf_event *event, struct ring_buffer *rb)
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003792{
3793 unsigned long flags;
3794
3795 if (list_empty(&event->rb_entry))
3796 return;
3797
3798 spin_lock_irqsave(&rb->event_lock, flags);
3799 list_del_init(&event->rb_entry);
3800 wake_up_all(&event->waitq);
3801 spin_unlock_irqrestore(&rb->event_lock, flags);
3802}
3803
3804static void ring_buffer_wakeup(struct perf_event *event)
3805{
3806 struct ring_buffer *rb;
3807
3808 rcu_read_lock();
3809 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003810 if (rb) {
3811 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
3812 wake_up_all(&event->waitq);
3813 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003814 rcu_read_unlock();
3815}
3816
Frederic Weisbecker76369132011-05-19 19:55:04 +02003817static void rb_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003818{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003819 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003820
Frederic Weisbecker76369132011-05-19 19:55:04 +02003821 rb = container_of(rcu_head, struct ring_buffer, rcu_head);
3822 rb_free(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003823}
3824
Frederic Weisbecker76369132011-05-19 19:55:04 +02003825static struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003826{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003827 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003828
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003829 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003830 rb = rcu_dereference(event->rb);
3831 if (rb) {
3832 if (!atomic_inc_not_zero(&rb->refcount))
3833 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003834 }
3835 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003836
Frederic Weisbecker76369132011-05-19 19:55:04 +02003837 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003838}
3839
Frederic Weisbecker76369132011-05-19 19:55:04 +02003840static void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003841{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003842 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003843 return;
3844
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003845 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003846
Frederic Weisbecker76369132011-05-19 19:55:04 +02003847 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003848}
3849
3850static void perf_mmap_open(struct vm_area_struct *vma)
3851{
3852 struct perf_event *event = vma->vm_file->private_data;
3853
3854 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003855 atomic_inc(&event->rb->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003856}
3857
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003858/*
3859 * A buffer can be mmap()ed multiple times; either directly through the same
3860 * event, or through other events by use of perf_event_set_output().
3861 *
3862 * In order to undo the VM accounting done by perf_mmap() we need to destroy
3863 * the buffer here, where we still have a VM context. This means we need
3864 * to detach all events redirecting to us.
3865 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003866static void perf_mmap_close(struct vm_area_struct *vma)
3867{
3868 struct perf_event *event = vma->vm_file->private_data;
3869
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003870 struct ring_buffer *rb = event->rb;
3871 struct user_struct *mmap_user = rb->mmap_user;
3872 int mmap_locked = rb->mmap_locked;
3873 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003874
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003875 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003876
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003877 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
3878 return;
3879
3880 /* Detach current event from the buffer. */
3881 rcu_assign_pointer(event->rb, NULL);
3882 ring_buffer_detach(event, rb);
3883 mutex_unlock(&event->mmap_mutex);
3884
3885 /* If there's still other mmap()s of this buffer, we're done. */
3886 if (atomic_read(&rb->mmap_count)) {
3887 ring_buffer_put(rb); /* can't be last */
3888 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003889 }
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003890
3891 /*
3892 * No other mmap()s, detach from all other events that might redirect
3893 * into the now unreachable buffer. Somewhat complicated by the
3894 * fact that rb::event_lock otherwise nests inside mmap_mutex.
3895 */
3896again:
3897 rcu_read_lock();
3898 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
3899 if (!atomic_long_inc_not_zero(&event->refcount)) {
3900 /*
3901 * This event is en-route to free_event() which will
3902 * detach it and remove it from the list.
3903 */
3904 continue;
3905 }
3906 rcu_read_unlock();
3907
3908 mutex_lock(&event->mmap_mutex);
3909 /*
3910 * Check we didn't race with perf_event_set_output() which can
3911 * swizzle the rb from under us while we were waiting to
3912 * acquire mmap_mutex.
3913 *
3914 * If we find a different rb; ignore this event, a next
3915 * iteration will no longer find it on the list. We have to
3916 * still restart the iteration to make sure we're not now
3917 * iterating the wrong list.
3918 */
3919 if (event->rb == rb) {
3920 rcu_assign_pointer(event->rb, NULL);
3921 ring_buffer_detach(event, rb);
3922 ring_buffer_put(rb); /* can't be last, we still have one */
3923 }
3924 mutex_unlock(&event->mmap_mutex);
3925 put_event(event);
3926
3927 /*
3928 * Restart the iteration; either we're on the wrong list or
3929 * destroyed its integrity by doing a deletion.
3930 */
3931 goto again;
3932 }
3933 rcu_read_unlock();
3934
3935 /*
3936 * It could be there's still a few 0-ref events on the list; they'll
3937 * get cleaned up by free_event() -- they'll also still have their
3938 * ref on the rb and will free it whenever they are done with it.
3939 *
3940 * Aside from that, this buffer is 'fully' detached and unmapped,
3941 * undo the VM accounting.
3942 */
3943
3944 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
3945 vma->vm_mm->pinned_vm -= mmap_locked;
3946 free_uid(mmap_user);
3947
3948 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003949}
3950
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003951static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003952 .open = perf_mmap_open,
3953 .close = perf_mmap_close,
3954 .fault = perf_mmap_fault,
3955 .page_mkwrite = perf_mmap_fault,
3956};
3957
3958static int perf_mmap(struct file *file, struct vm_area_struct *vma)
3959{
3960 struct perf_event *event = file->private_data;
3961 unsigned long user_locked, user_lock_limit;
3962 struct user_struct *user = current_user();
3963 unsigned long locked, lock_limit;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003964 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003965 unsigned long vma_size;
3966 unsigned long nr_pages;
3967 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003968 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003969
Peter Zijlstrac7920612010-05-18 10:33:24 +02003970 /*
3971 * Don't allow mmap() of inherited per-task counters. This would
3972 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02003973 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02003974 */
3975 if (event->cpu == -1 && event->attr.inherit)
3976 return -EINVAL;
3977
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003978 if (!(vma->vm_flags & VM_SHARED))
3979 return -EINVAL;
3980
3981 vma_size = vma->vm_end - vma->vm_start;
3982 nr_pages = (vma_size / PAGE_SIZE) - 1;
3983
3984 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02003985 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003986 * can do bitmasks instead of modulo.
3987 */
3988 if (nr_pages != 0 && !is_power_of_2(nr_pages))
3989 return -EINVAL;
3990
3991 if (vma_size != PAGE_SIZE * (1 + nr_pages))
3992 return -EINVAL;
3993
3994 if (vma->vm_pgoff != 0)
3995 return -EINVAL;
3996
3997 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003998again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003999 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004000 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004001 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004002 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004003 goto unlock;
4004 }
4005
4006 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
4007 /*
4008 * Raced against perf_mmap_close() through
4009 * perf_event_set_output(). Try again, hope for better
4010 * luck.
4011 */
4012 mutex_unlock(&event->mmap_mutex);
4013 goto again;
4014 }
4015
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004016 goto unlock;
4017 }
4018
4019 user_extra = nr_pages + 1;
4020 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
4021
4022 /*
4023 * Increase the limit linearly with more CPUs:
4024 */
4025 user_lock_limit *= num_online_cpus();
4026
4027 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
4028
4029 extra = 0;
4030 if (user_locked > user_lock_limit)
4031 extra = user_locked - user_lock_limit;
4032
Jiri Slaby78d7d402010-03-05 13:42:54 -08004033 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004034 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07004035 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004036
4037 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
4038 !capable(CAP_IPC_LOCK)) {
4039 ret = -EPERM;
4040 goto unlock;
4041 }
4042
Frederic Weisbecker76369132011-05-19 19:55:04 +02004043 WARN_ON(event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004044
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004045 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004046 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004047
Vince Weaver4ec83632011-06-01 15:15:36 -04004048 rb = rb_alloc(nr_pages,
4049 event->attr.watermark ? event->attr.wakeup_watermark : 0,
4050 event->cpu, flags);
4051
Frederic Weisbecker76369132011-05-19 19:55:04 +02004052 if (!rb) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004053 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004054 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004055 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004056
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004057 atomic_set(&rb->mmap_count, 1);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004058 rb->mmap_locked = extra;
4059 rb->mmap_user = get_current_user();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004060
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004061 atomic_long_add(user_extra, &user->locked_vm);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004062 vma->vm_mm->pinned_vm += extra;
4063
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004064 ring_buffer_attach(event, rb);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004065 rcu_assign_pointer(event->rb, rb);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004066
Peter Zijlstrafa731582013-09-19 10:16:42 +02004067 perf_event_init_userpage(event);
Peter Zijlstra9a0f05c2011-11-21 15:13:29 +01004068 perf_event_update_userpage(event);
4069
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004070unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004071 if (!ret)
4072 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004073 mutex_unlock(&event->mmap_mutex);
4074
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004075 /*
4076 * Since pinned accounting is per vm we cannot allow fork() to copy our
4077 * vma.
4078 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004079 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004080 vma->vm_ops = &perf_mmap_vmops;
4081
4082 return ret;
4083}
4084
4085static int perf_fasync(int fd, struct file *filp, int on)
4086{
Al Viro496ad9a2013-01-23 17:07:38 -05004087 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004088 struct perf_event *event = filp->private_data;
4089 int retval;
4090
4091 mutex_lock(&inode->i_mutex);
4092 retval = fasync_helper(fd, filp, on, &event->fasync);
4093 mutex_unlock(&inode->i_mutex);
4094
4095 if (retval < 0)
4096 return retval;
4097
4098 return 0;
4099}
4100
4101static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01004102 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004103 .release = perf_release,
4104 .read = perf_read,
4105 .poll = perf_poll,
4106 .unlocked_ioctl = perf_ioctl,
4107 .compat_ioctl = perf_ioctl,
4108 .mmap = perf_mmap,
4109 .fasync = perf_fasync,
4110};
4111
4112/*
4113 * Perf event wakeup
4114 *
4115 * If there's data, ensure we set the poll() state and publish everything
4116 * to user-space before waking everybody up.
4117 */
4118
4119void perf_event_wakeup(struct perf_event *event)
4120{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004121 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004122
4123 if (event->pending_kill) {
4124 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
4125 event->pending_kill = 0;
4126 }
4127}
4128
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004129static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004130{
4131 struct perf_event *event = container_of(entry,
4132 struct perf_event, pending);
4133
4134 if (event->pending_disable) {
4135 event->pending_disable = 0;
4136 __perf_event_disable(event);
4137 }
4138
4139 if (event->pending_wakeup) {
4140 event->pending_wakeup = 0;
4141 perf_event_wakeup(event);
4142 }
4143}
4144
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004145/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004146 * We assume there is only KVM supporting the callbacks.
4147 * Later on, we might change it to a list if there is
4148 * another virtualization implementation supporting the callbacks.
4149 */
4150struct perf_guest_info_callbacks *perf_guest_cbs;
4151
4152int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4153{
4154 perf_guest_cbs = cbs;
4155 return 0;
4156}
4157EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
4158
4159int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4160{
4161 perf_guest_cbs = NULL;
4162 return 0;
4163}
4164EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
4165
Jiri Olsa40189942012-08-07 15:20:37 +02004166static void
4167perf_output_sample_regs(struct perf_output_handle *handle,
4168 struct pt_regs *regs, u64 mask)
4169{
4170 int bit;
4171
4172 for_each_set_bit(bit, (const unsigned long *) &mask,
4173 sizeof(mask) * BITS_PER_BYTE) {
4174 u64 val;
4175
4176 val = perf_reg_value(regs, bit);
4177 perf_output_put(handle, val);
4178 }
4179}
4180
4181static void perf_sample_regs_user(struct perf_regs_user *regs_user,
4182 struct pt_regs *regs)
4183{
4184 if (!user_mode(regs)) {
4185 if (current->mm)
4186 regs = task_pt_regs(current);
4187 else
4188 regs = NULL;
4189 }
4190
4191 if (regs) {
4192 regs_user->regs = regs;
4193 regs_user->abi = perf_reg_abi(current);
4194 }
4195}
4196
Jiri Olsac5ebced2012-08-07 15:20:40 +02004197/*
4198 * Get remaining task size from user stack pointer.
4199 *
4200 * It'd be better to take stack vma map and limit this more
4201 * precisly, but there's no way to get it safely under interrupt,
4202 * so using TASK_SIZE as limit.
4203 */
4204static u64 perf_ustack_task_size(struct pt_regs *regs)
4205{
4206 unsigned long addr = perf_user_stack_pointer(regs);
4207
4208 if (!addr || addr >= TASK_SIZE)
4209 return 0;
4210
4211 return TASK_SIZE - addr;
4212}
4213
4214static u16
4215perf_sample_ustack_size(u16 stack_size, u16 header_size,
4216 struct pt_regs *regs)
4217{
4218 u64 task_size;
4219
4220 /* No regs, no stack pointer, no dump. */
4221 if (!regs)
4222 return 0;
4223
4224 /*
4225 * Check if we fit in with the requested stack size into the:
4226 * - TASK_SIZE
4227 * If we don't, we limit the size to the TASK_SIZE.
4228 *
4229 * - remaining sample size
4230 * If we don't, we customize the stack size to
4231 * fit in to the remaining sample size.
4232 */
4233
4234 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
4235 stack_size = min(stack_size, (u16) task_size);
4236
4237 /* Current header size plus static size and dynamic size. */
4238 header_size += 2 * sizeof(u64);
4239
4240 /* Do we fit in with the current stack dump size? */
4241 if ((u16) (header_size + stack_size) < header_size) {
4242 /*
4243 * If we overflow the maximum size for the sample,
4244 * we customize the stack dump size to fit in.
4245 */
4246 stack_size = USHRT_MAX - header_size - sizeof(u64);
4247 stack_size = round_up(stack_size, sizeof(u64));
4248 }
4249
4250 return stack_size;
4251}
4252
4253static void
4254perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
4255 struct pt_regs *regs)
4256{
4257 /* Case of a kernel thread, nothing to dump */
4258 if (!regs) {
4259 u64 size = 0;
4260 perf_output_put(handle, size);
4261 } else {
4262 unsigned long sp;
4263 unsigned int rem;
4264 u64 dyn_size;
4265
4266 /*
4267 * We dump:
4268 * static size
4269 * - the size requested by user or the best one we can fit
4270 * in to the sample max size
4271 * data
4272 * - user stack dump data
4273 * dynamic size
4274 * - the actual dumped size
4275 */
4276
4277 /* Static size. */
4278 perf_output_put(handle, dump_size);
4279
4280 /* Data. */
4281 sp = perf_user_stack_pointer(regs);
4282 rem = __output_copy_user(handle, (void *) sp, dump_size);
4283 dyn_size = dump_size - rem;
4284
4285 perf_output_skip(handle, rem);
4286
4287 /* Dynamic size. */
4288 perf_output_put(handle, dyn_size);
4289 }
4290}
4291
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004292static void __perf_event_header__init_id(struct perf_event_header *header,
4293 struct perf_sample_data *data,
4294 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004295{
4296 u64 sample_type = event->attr.sample_type;
4297
4298 data->type = sample_type;
4299 header->size += event->id_header_size;
4300
4301 if (sample_type & PERF_SAMPLE_TID) {
4302 /* namespace issues */
4303 data->tid_entry.pid = perf_event_pid(event, current);
4304 data->tid_entry.tid = perf_event_tid(event, current);
4305 }
4306
4307 if (sample_type & PERF_SAMPLE_TIME)
4308 data->time = perf_clock();
4309
Adrian Hunterff3d5272013-08-27 11:23:07 +03004310 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004311 data->id = primary_event_id(event);
4312
4313 if (sample_type & PERF_SAMPLE_STREAM_ID)
4314 data->stream_id = event->id;
4315
4316 if (sample_type & PERF_SAMPLE_CPU) {
4317 data->cpu_entry.cpu = raw_smp_processor_id();
4318 data->cpu_entry.reserved = 0;
4319 }
4320}
4321
Frederic Weisbecker76369132011-05-19 19:55:04 +02004322void perf_event_header__init_id(struct perf_event_header *header,
4323 struct perf_sample_data *data,
4324 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004325{
4326 if (event->attr.sample_id_all)
4327 __perf_event_header__init_id(header, data, event);
4328}
4329
4330static void __perf_event__output_id_sample(struct perf_output_handle *handle,
4331 struct perf_sample_data *data)
4332{
4333 u64 sample_type = data->type;
4334
4335 if (sample_type & PERF_SAMPLE_TID)
4336 perf_output_put(handle, data->tid_entry);
4337
4338 if (sample_type & PERF_SAMPLE_TIME)
4339 perf_output_put(handle, data->time);
4340
4341 if (sample_type & PERF_SAMPLE_ID)
4342 perf_output_put(handle, data->id);
4343
4344 if (sample_type & PERF_SAMPLE_STREAM_ID)
4345 perf_output_put(handle, data->stream_id);
4346
4347 if (sample_type & PERF_SAMPLE_CPU)
4348 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03004349
4350 if (sample_type & PERF_SAMPLE_IDENTIFIER)
4351 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004352}
4353
Frederic Weisbecker76369132011-05-19 19:55:04 +02004354void perf_event__output_id_sample(struct perf_event *event,
4355 struct perf_output_handle *handle,
4356 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004357{
4358 if (event->attr.sample_id_all)
4359 __perf_event__output_id_sample(handle, sample);
4360}
4361
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004362static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004363 struct perf_event *event,
4364 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004365{
4366 u64 read_format = event->attr.read_format;
4367 u64 values[4];
4368 int n = 0;
4369
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004370 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004371 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004372 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004373 atomic64_read(&event->child_total_time_enabled);
4374 }
4375 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004376 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004377 atomic64_read(&event->child_total_time_running);
4378 }
4379 if (read_format & PERF_FORMAT_ID)
4380 values[n++] = primary_event_id(event);
4381
Frederic Weisbecker76369132011-05-19 19:55:04 +02004382 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004383}
4384
4385/*
4386 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
4387 */
4388static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004389 struct perf_event *event,
4390 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004391{
4392 struct perf_event *leader = event->group_leader, *sub;
4393 u64 read_format = event->attr.read_format;
4394 u64 values[5];
4395 int n = 0;
4396
4397 values[n++] = 1 + leader->nr_siblings;
4398
4399 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02004400 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004401
4402 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02004403 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004404
4405 if (leader != event)
4406 leader->pmu->read(leader);
4407
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004408 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004409 if (read_format & PERF_FORMAT_ID)
4410 values[n++] = primary_event_id(leader);
4411
Frederic Weisbecker76369132011-05-19 19:55:04 +02004412 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004413
4414 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
4415 n = 0;
4416
Jiri Olsa6f5ab002012-10-15 20:13:45 +02004417 if ((sub != event) &&
4418 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004419 sub->pmu->read(sub);
4420
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004421 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004422 if (read_format & PERF_FORMAT_ID)
4423 values[n++] = primary_event_id(sub);
4424
Frederic Weisbecker76369132011-05-19 19:55:04 +02004425 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004426 }
4427}
4428
Stephane Eranianeed01522010-10-26 16:08:01 +02004429#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
4430 PERF_FORMAT_TOTAL_TIME_RUNNING)
4431
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004432static void perf_output_read(struct perf_output_handle *handle,
4433 struct perf_event *event)
4434{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004435 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02004436 u64 read_format = event->attr.read_format;
4437
4438 /*
4439 * compute total_time_enabled, total_time_running
4440 * based on snapshot values taken when the event
4441 * was last scheduled in.
4442 *
4443 * we cannot simply called update_context_time()
4444 * because of locking issue as we are called in
4445 * NMI context
4446 */
Eric B Munsonc4794292011-06-23 16:34:38 -04004447 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004448 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02004449
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004450 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02004451 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004452 else
Stephane Eranianeed01522010-10-26 16:08:01 +02004453 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004454}
4455
4456void perf_output_sample(struct perf_output_handle *handle,
4457 struct perf_event_header *header,
4458 struct perf_sample_data *data,
4459 struct perf_event *event)
4460{
4461 u64 sample_type = data->type;
4462
4463 perf_output_put(handle, *header);
4464
Adrian Hunterff3d5272013-08-27 11:23:07 +03004465 if (sample_type & PERF_SAMPLE_IDENTIFIER)
4466 perf_output_put(handle, data->id);
4467
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004468 if (sample_type & PERF_SAMPLE_IP)
4469 perf_output_put(handle, data->ip);
4470
4471 if (sample_type & PERF_SAMPLE_TID)
4472 perf_output_put(handle, data->tid_entry);
4473
4474 if (sample_type & PERF_SAMPLE_TIME)
4475 perf_output_put(handle, data->time);
4476
4477 if (sample_type & PERF_SAMPLE_ADDR)
4478 perf_output_put(handle, data->addr);
4479
4480 if (sample_type & PERF_SAMPLE_ID)
4481 perf_output_put(handle, data->id);
4482
4483 if (sample_type & PERF_SAMPLE_STREAM_ID)
4484 perf_output_put(handle, data->stream_id);
4485
4486 if (sample_type & PERF_SAMPLE_CPU)
4487 perf_output_put(handle, data->cpu_entry);
4488
4489 if (sample_type & PERF_SAMPLE_PERIOD)
4490 perf_output_put(handle, data->period);
4491
4492 if (sample_type & PERF_SAMPLE_READ)
4493 perf_output_read(handle, event);
4494
4495 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4496 if (data->callchain) {
4497 int size = 1;
4498
4499 if (data->callchain)
4500 size += data->callchain->nr;
4501
4502 size *= sizeof(u64);
4503
Frederic Weisbecker76369132011-05-19 19:55:04 +02004504 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004505 } else {
4506 u64 nr = 0;
4507 perf_output_put(handle, nr);
4508 }
4509 }
4510
4511 if (sample_type & PERF_SAMPLE_RAW) {
4512 if (data->raw) {
4513 perf_output_put(handle, data->raw->size);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004514 __output_copy(handle, data->raw->data,
4515 data->raw->size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004516 } else {
4517 struct {
4518 u32 size;
4519 u32 data;
4520 } raw = {
4521 .size = sizeof(u32),
4522 .data = 0,
4523 };
4524 perf_output_put(handle, raw);
4525 }
4526 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004527
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004528 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4529 if (data->br_stack) {
4530 size_t size;
4531
4532 size = data->br_stack->nr
4533 * sizeof(struct perf_branch_entry);
4534
4535 perf_output_put(handle, data->br_stack->nr);
4536 perf_output_copy(handle, data->br_stack->entries, size);
4537 } else {
4538 /*
4539 * we always store at least the value of nr
4540 */
4541 u64 nr = 0;
4542 perf_output_put(handle, nr);
4543 }
4544 }
Jiri Olsa40189942012-08-07 15:20:37 +02004545
4546 if (sample_type & PERF_SAMPLE_REGS_USER) {
4547 u64 abi = data->regs_user.abi;
4548
4549 /*
4550 * If there are no regs to dump, notice it through
4551 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
4552 */
4553 perf_output_put(handle, abi);
4554
4555 if (abi) {
4556 u64 mask = event->attr.sample_regs_user;
4557 perf_output_sample_regs(handle,
4558 data->regs_user.regs,
4559 mask);
4560 }
4561 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004562
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02004563 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02004564 perf_output_sample_ustack(handle,
4565 data->stack_user_size,
4566 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02004567 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01004568
4569 if (sample_type & PERF_SAMPLE_WEIGHT)
4570 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01004571
4572 if (sample_type & PERF_SAMPLE_DATA_SRC)
4573 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02004574
4575 if (!event->attr.watermark) {
4576 int wakeup_events = event->attr.wakeup_events;
4577
4578 if (wakeup_events) {
4579 struct ring_buffer *rb = handle->rb;
4580 int events = local_inc_return(&rb->events);
4581
4582 if (events >= wakeup_events) {
4583 local_sub(wakeup_events, &rb->events);
4584 local_inc(&rb->wakeup);
4585 }
4586 }
4587 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004588}
4589
4590void perf_prepare_sample(struct perf_event_header *header,
4591 struct perf_sample_data *data,
4592 struct perf_event *event,
4593 struct pt_regs *regs)
4594{
4595 u64 sample_type = event->attr.sample_type;
4596
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004597 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004598 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004599
4600 header->misc = 0;
4601 header->misc |= perf_misc_flags(regs);
4602
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004603 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004604
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004605 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004606 data->ip = perf_instruction_pointer(regs);
4607
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004608 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4609 int size = 1;
4610
Andrew Vagine6dab5f2012-07-11 18:14:58 +04004611 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004612
4613 if (data->callchain)
4614 size += data->callchain->nr;
4615
4616 header->size += size * sizeof(u64);
4617 }
4618
4619 if (sample_type & PERF_SAMPLE_RAW) {
4620 int size = sizeof(u32);
4621
4622 if (data->raw)
4623 size += data->raw->size;
4624 else
4625 size += sizeof(u32);
4626
4627 WARN_ON_ONCE(size & (sizeof(u64)-1));
4628 header->size += size;
4629 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004630
4631 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4632 int size = sizeof(u64); /* nr */
4633 if (data->br_stack) {
4634 size += data->br_stack->nr
4635 * sizeof(struct perf_branch_entry);
4636 }
4637 header->size += size;
4638 }
Jiri Olsa40189942012-08-07 15:20:37 +02004639
4640 if (sample_type & PERF_SAMPLE_REGS_USER) {
4641 /* regs dump ABI info */
4642 int size = sizeof(u64);
4643
4644 perf_sample_regs_user(&data->regs_user, regs);
4645
4646 if (data->regs_user.regs) {
4647 u64 mask = event->attr.sample_regs_user;
4648 size += hweight64(mask) * sizeof(u64);
4649 }
4650
4651 header->size += size;
4652 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004653
4654 if (sample_type & PERF_SAMPLE_STACK_USER) {
4655 /*
4656 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
4657 * processed as the last one or have additional check added
4658 * in case new sample type is added, because we could eat
4659 * up the rest of the sample size.
4660 */
4661 struct perf_regs_user *uregs = &data->regs_user;
4662 u16 stack_size = event->attr.sample_stack_user;
4663 u16 size = sizeof(u64);
4664
4665 if (!uregs->abi)
4666 perf_sample_regs_user(uregs, regs);
4667
4668 stack_size = perf_sample_ustack_size(stack_size, header->size,
4669 uregs->regs);
4670
4671 /*
4672 * If there is something to dump, add space for the dump
4673 * itself and for the field that tells the dynamic size,
4674 * which is how many have been actually dumped.
4675 */
4676 if (stack_size)
4677 size += sizeof(u64) + stack_size;
4678
4679 data->stack_user_size = stack_size;
4680 header->size += size;
4681 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004682}
4683
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004684static void perf_event_output(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004685 struct perf_sample_data *data,
4686 struct pt_regs *regs)
4687{
4688 struct perf_output_handle handle;
4689 struct perf_event_header header;
4690
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004691 /* protect the callchain buffers */
4692 rcu_read_lock();
4693
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004694 perf_prepare_sample(&header, data, event, regs);
4695
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004696 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004697 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004698
4699 perf_output_sample(&handle, &header, data, event);
4700
4701 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004702
4703exit:
4704 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004705}
4706
4707/*
4708 * read event_id
4709 */
4710
4711struct perf_read_event {
4712 struct perf_event_header header;
4713
4714 u32 pid;
4715 u32 tid;
4716};
4717
4718static void
4719perf_event_read_event(struct perf_event *event,
4720 struct task_struct *task)
4721{
4722 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004723 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004724 struct perf_read_event read_event = {
4725 .header = {
4726 .type = PERF_RECORD_READ,
4727 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004728 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004729 },
4730 .pid = perf_event_pid(event, task),
4731 .tid = perf_event_tid(event, task),
4732 };
4733 int ret;
4734
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004735 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004736 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004737 if (ret)
4738 return;
4739
4740 perf_output_put(&handle, read_event);
4741 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004742 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004743
4744 perf_output_end(&handle);
4745}
4746
Jiri Olsa52d857a2013-05-06 18:27:18 +02004747typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
4748
4749static void
4750perf_event_aux_ctx(struct perf_event_context *ctx,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004751 perf_event_aux_output_cb output,
4752 void *data)
4753{
4754 struct perf_event *event;
4755
4756 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4757 if (event->state < PERF_EVENT_STATE_INACTIVE)
4758 continue;
4759 if (!event_filter_match(event))
4760 continue;
Jiri Olsa67516842013-07-09 18:56:31 +02004761 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004762 }
4763}
4764
4765static void
Jiri Olsa67516842013-07-09 18:56:31 +02004766perf_event_aux(perf_event_aux_output_cb output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004767 struct perf_event_context *task_ctx)
4768{
4769 struct perf_cpu_context *cpuctx;
4770 struct perf_event_context *ctx;
4771 struct pmu *pmu;
4772 int ctxn;
4773
4774 rcu_read_lock();
4775 list_for_each_entry_rcu(pmu, &pmus, entry) {
4776 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
4777 if (cpuctx->unique_pmu != pmu)
4778 goto next;
Jiri Olsa67516842013-07-09 18:56:31 +02004779 perf_event_aux_ctx(&cpuctx->ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004780 if (task_ctx)
4781 goto next;
4782 ctxn = pmu->task_ctx_nr;
4783 if (ctxn < 0)
4784 goto next;
4785 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4786 if (ctx)
Jiri Olsa67516842013-07-09 18:56:31 +02004787 perf_event_aux_ctx(ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004788next:
4789 put_cpu_ptr(pmu->pmu_cpu_context);
4790 }
4791
4792 if (task_ctx) {
4793 preempt_disable();
Jiri Olsa67516842013-07-09 18:56:31 +02004794 perf_event_aux_ctx(task_ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004795 preempt_enable();
4796 }
4797 rcu_read_unlock();
4798}
4799
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004800/*
4801 * task tracking -- fork/exit
4802 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02004803 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004804 */
4805
4806struct perf_task_event {
4807 struct task_struct *task;
4808 struct perf_event_context *task_ctx;
4809
4810 struct {
4811 struct perf_event_header header;
4812
4813 u32 pid;
4814 u32 ppid;
4815 u32 tid;
4816 u32 ptid;
4817 u64 time;
4818 } event_id;
4819};
4820
Jiri Olsa67516842013-07-09 18:56:31 +02004821static int perf_event_task_match(struct perf_event *event)
4822{
Stephane Eranian13d7a242013-08-21 12:10:24 +02004823 return event->attr.comm || event->attr.mmap ||
4824 event->attr.mmap2 || event->attr.mmap_data ||
4825 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02004826}
4827
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004828static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004829 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004830{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004831 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004832 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004833 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004834 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004835 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01004836
Jiri Olsa67516842013-07-09 18:56:31 +02004837 if (!perf_event_task_match(event))
4838 return;
4839
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004840 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004841
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004842 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004843 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02004844 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004845 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004846
4847 task_event->event_id.pid = perf_event_pid(event, task);
4848 task_event->event_id.ppid = perf_event_pid(event, current);
4849
4850 task_event->event_id.tid = perf_event_tid(event, task);
4851 task_event->event_id.ptid = perf_event_tid(event, current);
4852
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004853 perf_output_put(&handle, task_event->event_id);
4854
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004855 perf_event__output_id_sample(event, &handle, &sample);
4856
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004857 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004858out:
4859 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004860}
4861
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004862static void perf_event_task(struct task_struct *task,
4863 struct perf_event_context *task_ctx,
4864 int new)
4865{
4866 struct perf_task_event task_event;
4867
4868 if (!atomic_read(&nr_comm_events) &&
4869 !atomic_read(&nr_mmap_events) &&
4870 !atomic_read(&nr_task_events))
4871 return;
4872
4873 task_event = (struct perf_task_event){
4874 .task = task,
4875 .task_ctx = task_ctx,
4876 .event_id = {
4877 .header = {
4878 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
4879 .misc = 0,
4880 .size = sizeof(task_event.event_id),
4881 },
4882 /* .pid */
4883 /* .ppid */
4884 /* .tid */
4885 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004886 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004887 },
4888 };
4889
Jiri Olsa67516842013-07-09 18:56:31 +02004890 perf_event_aux(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004891 &task_event,
4892 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004893}
4894
4895void perf_event_fork(struct task_struct *task)
4896{
4897 perf_event_task(task, NULL, 1);
4898}
4899
4900/*
4901 * comm tracking
4902 */
4903
4904struct perf_comm_event {
4905 struct task_struct *task;
4906 char *comm;
4907 int comm_size;
4908
4909 struct {
4910 struct perf_event_header header;
4911
4912 u32 pid;
4913 u32 tid;
4914 } event_id;
4915};
4916
Jiri Olsa67516842013-07-09 18:56:31 +02004917static int perf_event_comm_match(struct perf_event *event)
4918{
4919 return event->attr.comm;
4920}
4921
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004922static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004923 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004924{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004925 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004926 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004927 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004928 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004929 int ret;
4930
Jiri Olsa67516842013-07-09 18:56:31 +02004931 if (!perf_event_comm_match(event))
4932 return;
4933
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004934 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
4935 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004936 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004937
4938 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004939 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004940
4941 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
4942 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
4943
4944 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004945 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004946 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004947
4948 perf_event__output_id_sample(event, &handle, &sample);
4949
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004950 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004951out:
4952 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004953}
4954
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004955static void perf_event_comm_event(struct perf_comm_event *comm_event)
4956{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004957 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004958 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004959
4960 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01004961 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004962 size = ALIGN(strlen(comm)+1, sizeof(u64));
4963
4964 comm_event->comm = comm;
4965 comm_event->comm_size = size;
4966
4967 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004968
Jiri Olsa67516842013-07-09 18:56:31 +02004969 perf_event_aux(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004970 comm_event,
4971 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004972}
4973
4974void perf_event_comm(struct task_struct *task)
4975{
4976 struct perf_comm_event comm_event;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004977 struct perf_event_context *ctx;
4978 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004979
Paul E. McKenneyc79aa0d92013-04-19 12:01:24 -07004980 rcu_read_lock();
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004981 for_each_task_context_nr(ctxn) {
4982 ctx = task->perf_event_ctxp[ctxn];
4983 if (!ctx)
4984 continue;
4985
4986 perf_event_enable_on_exec(ctx);
4987 }
Paul E. McKenneyc79aa0d92013-04-19 12:01:24 -07004988 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004989
4990 if (!atomic_read(&nr_comm_events))
4991 return;
4992
4993 comm_event = (struct perf_comm_event){
4994 .task = task,
4995 /* .comm */
4996 /* .comm_size */
4997 .event_id = {
4998 .header = {
4999 .type = PERF_RECORD_COMM,
5000 .misc = 0,
5001 /* .size */
5002 },
5003 /* .pid */
5004 /* .tid */
5005 },
5006 };
5007
5008 perf_event_comm_event(&comm_event);
5009}
5010
5011/*
5012 * mmap tracking
5013 */
5014
5015struct perf_mmap_event {
5016 struct vm_area_struct *vma;
5017
5018 const char *file_name;
5019 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005020 int maj, min;
5021 u64 ino;
5022 u64 ino_generation;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005023
5024 struct {
5025 struct perf_event_header header;
5026
5027 u32 pid;
5028 u32 tid;
5029 u64 start;
5030 u64 len;
5031 u64 pgoff;
5032 } event_id;
5033};
5034
Jiri Olsa67516842013-07-09 18:56:31 +02005035static int perf_event_mmap_match(struct perf_event *event,
5036 void *data)
5037{
5038 struct perf_mmap_event *mmap_event = data;
5039 struct vm_area_struct *vma = mmap_event->vma;
5040 int executable = vma->vm_flags & VM_EXEC;
5041
5042 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02005043 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02005044}
5045
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005046static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005047 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005048{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005049 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005050 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005051 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005052 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005053 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005054
Jiri Olsa67516842013-07-09 18:56:31 +02005055 if (!perf_event_mmap_match(event, data))
5056 return;
5057
Stephane Eranian13d7a242013-08-21 12:10:24 +02005058 if (event->attr.mmap2) {
5059 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
5060 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
5061 mmap_event->event_id.header.size += sizeof(mmap_event->min);
5062 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03005063 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005064 }
5065
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005066 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
5067 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005068 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005069 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005070 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005071
5072 mmap_event->event_id.pid = perf_event_pid(event, current);
5073 mmap_event->event_id.tid = perf_event_tid(event, current);
5074
5075 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005076
5077 if (event->attr.mmap2) {
5078 perf_output_put(&handle, mmap_event->maj);
5079 perf_output_put(&handle, mmap_event->min);
5080 perf_output_put(&handle, mmap_event->ino);
5081 perf_output_put(&handle, mmap_event->ino_generation);
5082 }
5083
Frederic Weisbecker76369132011-05-19 19:55:04 +02005084 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005085 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005086
5087 perf_event__output_id_sample(event, &handle, &sample);
5088
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005089 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005090out:
5091 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005092}
5093
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005094static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
5095{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005096 struct vm_area_struct *vma = mmap_event->vma;
5097 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005098 int maj = 0, min = 0;
5099 u64 ino = 0, gen = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005100 unsigned int size;
5101 char tmp[16];
5102 char *buf = NULL;
5103 const char *name;
5104
5105 memset(tmp, 0, sizeof(tmp));
5106
5107 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02005108 struct inode *inode;
5109 dev_t dev;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005110 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02005111 * d_path works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005112 * need to add enough zero bytes after the string to handle
5113 * the 64bit alignment we do later.
5114 */
5115 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
5116 if (!buf) {
5117 name = strncpy(tmp, "//enomem", sizeof(tmp));
5118 goto got_name;
5119 }
5120 name = d_path(&file->f_path, buf, PATH_MAX);
5121 if (IS_ERR(name)) {
5122 name = strncpy(tmp, "//toolong", sizeof(tmp));
5123 goto got_name;
5124 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02005125 inode = file_inode(vma->vm_file);
5126 dev = inode->i_sb->s_dev;
5127 ino = inode->i_ino;
5128 gen = inode->i_generation;
5129 maj = MAJOR(dev);
5130 min = MINOR(dev);
5131
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005132 } else {
5133 if (arch_vma_name(mmap_event->vma)) {
5134 name = strncpy(tmp, arch_vma_name(mmap_event->vma),
Chen Gangc97847d2013-04-08 11:48:27 +08005135 sizeof(tmp) - 1);
5136 tmp[sizeof(tmp) - 1] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005137 goto got_name;
5138 }
5139
5140 if (!vma->vm_mm) {
5141 name = strncpy(tmp, "[vdso]", sizeof(tmp));
5142 goto got_name;
Eric B Munson3af9e852010-05-18 15:30:49 +01005143 } else if (vma->vm_start <= vma->vm_mm->start_brk &&
5144 vma->vm_end >= vma->vm_mm->brk) {
5145 name = strncpy(tmp, "[heap]", sizeof(tmp));
5146 goto got_name;
5147 } else if (vma->vm_start <= vma->vm_mm->start_stack &&
5148 vma->vm_end >= vma->vm_mm->start_stack) {
5149 name = strncpy(tmp, "[stack]", sizeof(tmp));
5150 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005151 }
5152
5153 name = strncpy(tmp, "//anon", sizeof(tmp));
5154 goto got_name;
5155 }
5156
5157got_name:
5158 size = ALIGN(strlen(name)+1, sizeof(u64));
5159
5160 mmap_event->file_name = name;
5161 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005162 mmap_event->maj = maj;
5163 mmap_event->min = min;
5164 mmap_event->ino = ino;
5165 mmap_event->ino_generation = gen;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005166
Stephane Eranian2fe85422013-01-24 16:10:39 +01005167 if (!(vma->vm_flags & VM_EXEC))
5168 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
5169
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005170 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
5171
Jiri Olsa67516842013-07-09 18:56:31 +02005172 perf_event_aux(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005173 mmap_event,
5174 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005175
5176 kfree(buf);
5177}
5178
Eric B Munson3af9e852010-05-18 15:30:49 +01005179void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005180{
5181 struct perf_mmap_event mmap_event;
5182
5183 if (!atomic_read(&nr_mmap_events))
5184 return;
5185
5186 mmap_event = (struct perf_mmap_event){
5187 .vma = vma,
5188 /* .file_name */
5189 /* .file_size */
5190 .event_id = {
5191 .header = {
5192 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005193 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005194 /* .size */
5195 },
5196 /* .pid */
5197 /* .tid */
5198 .start = vma->vm_start,
5199 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01005200 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005201 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02005202 /* .maj (attr_mmap2 only) */
5203 /* .min (attr_mmap2 only) */
5204 /* .ino (attr_mmap2 only) */
5205 /* .ino_generation (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005206 };
5207
5208 perf_event_mmap_event(&mmap_event);
5209}
5210
5211/*
5212 * IRQ throttle logging
5213 */
5214
5215static void perf_log_throttle(struct perf_event *event, int enable)
5216{
5217 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005218 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005219 int ret;
5220
5221 struct {
5222 struct perf_event_header header;
5223 u64 time;
5224 u64 id;
5225 u64 stream_id;
5226 } throttle_event = {
5227 .header = {
5228 .type = PERF_RECORD_THROTTLE,
5229 .misc = 0,
5230 .size = sizeof(throttle_event),
5231 },
5232 .time = perf_clock(),
5233 .id = primary_event_id(event),
5234 .stream_id = event->id,
5235 };
5236
5237 if (enable)
5238 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
5239
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005240 perf_event_header__init_id(&throttle_event.header, &sample, event);
5241
5242 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005243 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005244 if (ret)
5245 return;
5246
5247 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005248 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005249 perf_output_end(&handle);
5250}
5251
5252/*
5253 * Generic event overflow handling, sampling.
5254 */
5255
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005256static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005257 int throttle, struct perf_sample_data *data,
5258 struct pt_regs *regs)
5259{
5260 int events = atomic_read(&event->event_limit);
5261 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005262 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005263 int ret = 0;
5264
Peter Zijlstra96398822010-11-24 18:55:29 +01005265 /*
5266 * Non-sampling counters might still use the PMI to fold short
5267 * hardware counters, ignore those.
5268 */
5269 if (unlikely(!is_sampling_event(event)))
5270 return 0;
5271
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005272 seq = __this_cpu_read(perf_throttled_seq);
5273 if (seq != hwc->interrupts_seq) {
5274 hwc->interrupts_seq = seq;
5275 hwc->interrupts = 1;
5276 } else {
5277 hwc->interrupts++;
5278 if (unlikely(throttle
5279 && hwc->interrupts >= max_samples_per_tick)) {
5280 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01005281 hwc->interrupts = MAX_INTERRUPTS;
5282 perf_log_throttle(event, 0);
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02005283 tick_nohz_full_kick();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005284 ret = 1;
5285 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005286 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005287
5288 if (event->attr.freq) {
5289 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01005290 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005291
Peter Zijlstraabd50712010-01-26 18:50:16 +01005292 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005293
Peter Zijlstraabd50712010-01-26 18:50:16 +01005294 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01005295 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005296 }
5297
5298 /*
5299 * XXX event_limit might not quite work as expected on inherited
5300 * events
5301 */
5302
5303 event->pending_kill = POLL_IN;
5304 if (events && atomic_dec_and_test(&event->event_limit)) {
5305 ret = 1;
5306 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005307 event->pending_disable = 1;
5308 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005309 }
5310
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005311 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005312 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005313 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005314 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005315
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005316 if (event->fasync && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005317 event->pending_wakeup = 1;
5318 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005319 }
5320
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005321 return ret;
5322}
5323
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005324int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005325 struct perf_sample_data *data,
5326 struct pt_regs *regs)
5327{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005328 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005329}
5330
5331/*
5332 * Generic software event infrastructure
5333 */
5334
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005335struct swevent_htable {
5336 struct swevent_hlist *swevent_hlist;
5337 struct mutex hlist_mutex;
5338 int hlist_refcount;
5339
5340 /* Recursion avoidance in each contexts */
5341 int recursion[PERF_NR_CONTEXTS];
5342};
5343
5344static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
5345
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005346/*
5347 * We directly increment event->count and keep a second value in
5348 * event->hw.period_left to count intervals. This period event
5349 * is kept in the range [-sample_period, 0] so that we can use the
5350 * sign as trigger.
5351 */
5352
Jiri Olsaab573842013-05-01 17:25:44 +02005353u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005354{
5355 struct hw_perf_event *hwc = &event->hw;
5356 u64 period = hwc->last_period;
5357 u64 nr, offset;
5358 s64 old, val;
5359
5360 hwc->last_period = hwc->sample_period;
5361
5362again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02005363 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005364 if (val < 0)
5365 return 0;
5366
5367 nr = div64_u64(period + val, period);
5368 offset = nr * period;
5369 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02005370 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005371 goto again;
5372
5373 return nr;
5374}
5375
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005376static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005377 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005378 struct pt_regs *regs)
5379{
5380 struct hw_perf_event *hwc = &event->hw;
5381 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005382
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005383 if (!overflow)
5384 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005385
5386 if (hwc->interrupts == MAX_INTERRUPTS)
5387 return;
5388
5389 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005390 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005391 data, regs)) {
5392 /*
5393 * We inhibit the overflow from happening when
5394 * hwc->interrupts == MAX_INTERRUPTS.
5395 */
5396 break;
5397 }
5398 throttle = 1;
5399 }
5400}
5401
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005402static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005403 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005404 struct pt_regs *regs)
5405{
5406 struct hw_perf_event *hwc = &event->hw;
5407
Peter Zijlstrae7850592010-05-21 14:43:08 +02005408 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005409
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005410 if (!regs)
5411 return;
5412
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005413 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005414 return;
5415
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03005416 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
5417 data->period = nr;
5418 return perf_swevent_overflow(event, 1, data, regs);
5419 } else
5420 data->period = event->hw.last_period;
5421
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005422 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005423 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005424
Peter Zijlstrae7850592010-05-21 14:43:08 +02005425 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005426 return;
5427
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005428 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005429}
5430
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005431static int perf_exclude_event(struct perf_event *event,
5432 struct pt_regs *regs)
5433{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005434 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01005435 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005436
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005437 if (regs) {
5438 if (event->attr.exclude_user && user_mode(regs))
5439 return 1;
5440
5441 if (event->attr.exclude_kernel && !user_mode(regs))
5442 return 1;
5443 }
5444
5445 return 0;
5446}
5447
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005448static int perf_swevent_match(struct perf_event *event,
5449 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08005450 u32 event_id,
5451 struct perf_sample_data *data,
5452 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005453{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005454 if (event->attr.type != type)
5455 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005456
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005457 if (event->attr.config != event_id)
5458 return 0;
5459
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005460 if (perf_exclude_event(event, regs))
5461 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005462
5463 return 1;
5464}
5465
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005466static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005467{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005468 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005469
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005470 return hash_64(val, SWEVENT_HLIST_BITS);
5471}
5472
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005473static inline struct hlist_head *
5474__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005475{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005476 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005477
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005478 return &hlist->heads[hash];
5479}
5480
5481/* For the read side: events when they trigger */
5482static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005483find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005484{
5485 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005486
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005487 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005488 if (!hlist)
5489 return NULL;
5490
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005491 return __find_swevent_head(hlist, type, event_id);
5492}
5493
5494/* For the event head insertion and removal in the hlist */
5495static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005496find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005497{
5498 struct swevent_hlist *hlist;
5499 u32 event_id = event->attr.config;
5500 u64 type = event->attr.type;
5501
5502 /*
5503 * Event scheduling is always serialized against hlist allocation
5504 * and release. Which makes the protected version suitable here.
5505 * The context lock guarantees that.
5506 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005507 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005508 lockdep_is_held(&event->ctx->lock));
5509 if (!hlist)
5510 return NULL;
5511
5512 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005513}
5514
5515static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005516 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005517 struct perf_sample_data *data,
5518 struct pt_regs *regs)
5519{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005520 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005521 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005522 struct hlist_head *head;
5523
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005524 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005525 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005526 if (!head)
5527 goto end;
5528
Sasha Levinb67bfe02013-02-27 17:06:00 -08005529 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08005530 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005531 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005532 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005533end:
5534 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005535}
5536
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005537int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005538{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005539 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005540
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005541 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005542}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01005543EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005544
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01005545inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005546{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005547 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005548
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005549 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005550}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005551
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005552void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005553{
Ingo Molnara4234bf2009-11-23 10:57:59 +01005554 struct perf_sample_data data;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005555 int rctx;
5556
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005557 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005558 rctx = perf_swevent_get_recursion_context();
5559 if (rctx < 0)
5560 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005561
Robert Richterfd0d0002012-04-02 20:19:08 +02005562 perf_sample_data_init(&data, addr, 0);
Ingo Molnara4234bf2009-11-23 10:57:59 +01005563
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005564 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005565
5566 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005567 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005568}
5569
5570static void perf_swevent_read(struct perf_event *event)
5571{
5572}
5573
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005574static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005575{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005576 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005577 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005578 struct hlist_head *head;
5579
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005580 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005581 hwc->last_period = hwc->sample_period;
5582 perf_swevent_set_period(event);
5583 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005584
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005585 hwc->state = !(flags & PERF_EF_START);
5586
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005587 head = find_swevent_head(swhash, event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005588 if (WARN_ON_ONCE(!head))
5589 return -EINVAL;
5590
5591 hlist_add_head_rcu(&event->hlist_entry, head);
5592
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005593 return 0;
5594}
5595
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005596static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005597{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005598 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005599}
5600
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005601static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005602{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005603 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005604}
5605
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005606static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005607{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005608 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005609}
5610
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005611/* Deref the hlist from the update side */
5612static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005613swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005614{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005615 return rcu_dereference_protected(swhash->swevent_hlist,
5616 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005617}
5618
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005619static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005620{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005621 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005622
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005623 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005624 return;
5625
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005626 rcu_assign_pointer(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08005627 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005628}
5629
5630static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
5631{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005632 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005633
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005634 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005635
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005636 if (!--swhash->hlist_refcount)
5637 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005638
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005639 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005640}
5641
5642static void swevent_hlist_put(struct perf_event *event)
5643{
5644 int cpu;
5645
5646 if (event->cpu != -1) {
5647 swevent_hlist_put_cpu(event, event->cpu);
5648 return;
5649 }
5650
5651 for_each_possible_cpu(cpu)
5652 swevent_hlist_put_cpu(event, cpu);
5653}
5654
5655static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
5656{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005657 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005658 int err = 0;
5659
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005660 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005661
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005662 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005663 struct swevent_hlist *hlist;
5664
5665 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
5666 if (!hlist) {
5667 err = -ENOMEM;
5668 goto exit;
5669 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005670 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005671 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005672 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005673exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005674 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005675
5676 return err;
5677}
5678
5679static int swevent_hlist_get(struct perf_event *event)
5680{
5681 int err;
5682 int cpu, failed_cpu;
5683
5684 if (event->cpu != -1)
5685 return swevent_hlist_get_cpu(event, event->cpu);
5686
5687 get_online_cpus();
5688 for_each_possible_cpu(cpu) {
5689 err = swevent_hlist_get_cpu(event, cpu);
5690 if (err) {
5691 failed_cpu = cpu;
5692 goto fail;
5693 }
5694 }
5695 put_online_cpus();
5696
5697 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005698fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005699 for_each_possible_cpu(cpu) {
5700 if (cpu == failed_cpu)
5701 break;
5702 swevent_hlist_put_cpu(event, cpu);
5703 }
5704
5705 put_online_cpus();
5706 return err;
5707}
5708
Ingo Molnarc5905af2012-02-24 08:31:31 +01005709struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005710
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005711static void sw_perf_event_destroy(struct perf_event *event)
5712{
5713 u64 event_id = event->attr.config;
5714
5715 WARN_ON(event->parent);
5716
Ingo Molnarc5905af2012-02-24 08:31:31 +01005717 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005718 swevent_hlist_put(event);
5719}
5720
5721static int perf_swevent_init(struct perf_event *event)
5722{
Tommi Rantala8176cce2013-04-13 22:49:14 +03005723 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005724
5725 if (event->attr.type != PERF_TYPE_SOFTWARE)
5726 return -ENOENT;
5727
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005728 /*
5729 * no branch sampling for software events
5730 */
5731 if (has_branch_stack(event))
5732 return -EOPNOTSUPP;
5733
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005734 switch (event_id) {
5735 case PERF_COUNT_SW_CPU_CLOCK:
5736 case PERF_COUNT_SW_TASK_CLOCK:
5737 return -ENOENT;
5738
5739 default:
5740 break;
5741 }
5742
Dan Carpenterce677832010-10-24 21:50:42 +02005743 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005744 return -ENOENT;
5745
5746 if (!event->parent) {
5747 int err;
5748
5749 err = swevent_hlist_get(event);
5750 if (err)
5751 return err;
5752
Ingo Molnarc5905af2012-02-24 08:31:31 +01005753 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005754 event->destroy = sw_perf_event_destroy;
5755 }
5756
5757 return 0;
5758}
5759
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005760static int perf_swevent_event_idx(struct perf_event *event)
5761{
5762 return 0;
5763}
5764
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005765static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005766 .task_ctx_nr = perf_sw_context,
5767
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005768 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005769 .add = perf_swevent_add,
5770 .del = perf_swevent_del,
5771 .start = perf_swevent_start,
5772 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005773 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005774
5775 .event_idx = perf_swevent_event_idx,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005776};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005777
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005778#ifdef CONFIG_EVENT_TRACING
5779
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005780static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005781 struct perf_sample_data *data)
5782{
5783 void *record = data->raw->data;
5784
5785 if (likely(!event->filter) || filter_match_preds(event->filter, record))
5786 return 1;
5787 return 0;
5788}
5789
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005790static int perf_tp_event_match(struct perf_event *event,
5791 struct perf_sample_data *data,
5792 struct pt_regs *regs)
5793{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01005794 if (event->hw.state & PERF_HES_STOPPED)
5795 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02005796 /*
5797 * All tracepoints are from kernel-space.
5798 */
5799 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005800 return 0;
5801
5802 if (!perf_tp_filter_match(event, data))
5803 return 0;
5804
5805 return 1;
5806}
5807
5808void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005809 struct pt_regs *regs, struct hlist_head *head, int rctx,
5810 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005811{
5812 struct perf_sample_data data;
5813 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005814
5815 struct perf_raw_record raw = {
5816 .size = entry_size,
5817 .data = record,
5818 };
5819
Robert Richterfd0d0002012-04-02 20:19:08 +02005820 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005821 data.raw = &raw;
5822
Sasha Levinb67bfe02013-02-27 17:06:00 -08005823 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005824 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005825 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005826 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005827
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005828 /*
5829 * If we got specified a target task, also iterate its context and
5830 * deliver this event there too.
5831 */
5832 if (task && task != current) {
5833 struct perf_event_context *ctx;
5834 struct trace_entry *entry = record;
5835
5836 rcu_read_lock();
5837 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
5838 if (!ctx)
5839 goto unlock;
5840
5841 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5842 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5843 continue;
5844 if (event->attr.config != entry->type)
5845 continue;
5846 if (perf_tp_event_match(event, &data, regs))
5847 perf_swevent_event(event, count, &data, regs);
5848 }
5849unlock:
5850 rcu_read_unlock();
5851 }
5852
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005853 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005854}
5855EXPORT_SYMBOL_GPL(perf_tp_event);
5856
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005857static void tp_perf_event_destroy(struct perf_event *event)
5858{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005859 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005860}
5861
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005862static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005863{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005864 int err;
5865
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005866 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5867 return -ENOENT;
5868
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005869 /*
5870 * no branch sampling for tracepoint events
5871 */
5872 if (has_branch_stack(event))
5873 return -EOPNOTSUPP;
5874
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005875 err = perf_trace_init(event);
5876 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005877 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005878
5879 event->destroy = tp_perf_event_destroy;
5880
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005881 return 0;
5882}
5883
5884static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005885 .task_ctx_nr = perf_sw_context,
5886
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005887 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005888 .add = perf_trace_add,
5889 .del = perf_trace_del,
5890 .start = perf_swevent_start,
5891 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005892 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005893
5894 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005895};
5896
5897static inline void perf_tp_register(void)
5898{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005899 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005900}
Li Zefan6fb29152009-10-15 11:21:42 +08005901
5902static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5903{
5904 char *filter_str;
5905 int ret;
5906
5907 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5908 return -EINVAL;
5909
5910 filter_str = strndup_user(arg, PAGE_SIZE);
5911 if (IS_ERR(filter_str))
5912 return PTR_ERR(filter_str);
5913
5914 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
5915
5916 kfree(filter_str);
5917 return ret;
5918}
5919
5920static void perf_event_free_filter(struct perf_event *event)
5921{
5922 ftrace_profile_free_filter(event);
5923}
5924
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005925#else
Li Zefan6fb29152009-10-15 11:21:42 +08005926
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005927static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005928{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005929}
Li Zefan6fb29152009-10-15 11:21:42 +08005930
5931static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5932{
5933 return -ENOENT;
5934}
5935
5936static void perf_event_free_filter(struct perf_event *event)
5937{
5938}
5939
Li Zefan07b139c2009-12-21 14:27:35 +08005940#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005941
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005942#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005943void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005944{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005945 struct perf_sample_data sample;
5946 struct pt_regs *regs = data;
5947
Robert Richterfd0d0002012-04-02 20:19:08 +02005948 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005949
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005950 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005951 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005952}
5953#endif
5954
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005955/*
5956 * hrtimer based swevent callback
5957 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005958
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005959static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005960{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005961 enum hrtimer_restart ret = HRTIMER_RESTART;
5962 struct perf_sample_data data;
5963 struct pt_regs *regs;
5964 struct perf_event *event;
5965 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005966
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005967 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005968
5969 if (event->state != PERF_EVENT_STATE_ACTIVE)
5970 return HRTIMER_NORESTART;
5971
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005972 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005973
Robert Richterfd0d0002012-04-02 20:19:08 +02005974 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005975 regs = get_irq_regs();
5976
5977 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08005978 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02005979 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005980 ret = HRTIMER_NORESTART;
5981 }
5982
5983 period = max_t(u64, 10000, event->hw.sample_period);
5984 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
5985
5986 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005987}
5988
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005989static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005990{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005991 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005992 s64 period;
5993
5994 if (!is_sampling_event(event))
5995 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005996
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005997 period = local64_read(&hwc->period_left);
5998 if (period) {
5999 if (period < 0)
6000 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02006001
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006002 local64_set(&hwc->period_left, 0);
6003 } else {
6004 period = max_t(u64, 10000, hwc->sample_period);
6005 }
6006 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006007 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02006008 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006009}
6010
6011static void perf_swevent_cancel_hrtimer(struct perf_event *event)
6012{
6013 struct hw_perf_event *hwc = &event->hw;
6014
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006015 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006016 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02006017 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006018
6019 hrtimer_cancel(&hwc->hrtimer);
6020 }
6021}
6022
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006023static void perf_swevent_init_hrtimer(struct perf_event *event)
6024{
6025 struct hw_perf_event *hwc = &event->hw;
6026
6027 if (!is_sampling_event(event))
6028 return;
6029
6030 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
6031 hwc->hrtimer.function = perf_swevent_hrtimer;
6032
6033 /*
6034 * Since hrtimers have a fixed rate, we can do a static freq->period
6035 * mapping and avoid the whole period adjust feedback stuff.
6036 */
6037 if (event->attr.freq) {
6038 long freq = event->attr.sample_freq;
6039
6040 event->attr.sample_period = NSEC_PER_SEC / freq;
6041 hwc->sample_period = event->attr.sample_period;
6042 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09006043 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006044 event->attr.freq = 0;
6045 }
6046}
6047
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006048/*
6049 * Software event: cpu wall time clock
6050 */
6051
6052static void cpu_clock_event_update(struct perf_event *event)
6053{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006054 s64 prev;
6055 u64 now;
6056
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006057 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006058 prev = local64_xchg(&event->hw.prev_count, now);
6059 local64_add(now - prev, &event->count);
6060}
6061
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006062static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006063{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006064 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006065 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006066}
6067
6068static void cpu_clock_event_stop(struct perf_event *event, int flags)
6069{
6070 perf_swevent_cancel_hrtimer(event);
6071 cpu_clock_event_update(event);
6072}
6073
6074static int cpu_clock_event_add(struct perf_event *event, int flags)
6075{
6076 if (flags & PERF_EF_START)
6077 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006078
6079 return 0;
6080}
6081
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006082static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006083{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006084 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006085}
6086
6087static void cpu_clock_event_read(struct perf_event *event)
6088{
6089 cpu_clock_event_update(event);
6090}
6091
6092static int cpu_clock_event_init(struct perf_event *event)
6093{
6094 if (event->attr.type != PERF_TYPE_SOFTWARE)
6095 return -ENOENT;
6096
6097 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
6098 return -ENOENT;
6099
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006100 /*
6101 * no branch sampling for software events
6102 */
6103 if (has_branch_stack(event))
6104 return -EOPNOTSUPP;
6105
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006106 perf_swevent_init_hrtimer(event);
6107
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006108 return 0;
6109}
6110
6111static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006112 .task_ctx_nr = perf_sw_context,
6113
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006114 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006115 .add = cpu_clock_event_add,
6116 .del = cpu_clock_event_del,
6117 .start = cpu_clock_event_start,
6118 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006119 .read = cpu_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006120
6121 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006122};
6123
6124/*
6125 * Software event: task time clock
6126 */
6127
6128static void task_clock_event_update(struct perf_event *event, u64 now)
6129{
6130 u64 prev;
6131 s64 delta;
6132
6133 prev = local64_xchg(&event->hw.prev_count, now);
6134 delta = now - prev;
6135 local64_add(delta, &event->count);
6136}
6137
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006138static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006139{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006140 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006141 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006142}
6143
6144static void task_clock_event_stop(struct perf_event *event, int flags)
6145{
6146 perf_swevent_cancel_hrtimer(event);
6147 task_clock_event_update(event, event->ctx->time);
6148}
6149
6150static int task_clock_event_add(struct perf_event *event, int flags)
6151{
6152 if (flags & PERF_EF_START)
6153 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006154
6155 return 0;
6156}
6157
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006158static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006159{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006160 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006161}
6162
6163static void task_clock_event_read(struct perf_event *event)
6164{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01006165 u64 now = perf_clock();
6166 u64 delta = now - event->ctx->timestamp;
6167 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006168
6169 task_clock_event_update(event, time);
6170}
6171
6172static int task_clock_event_init(struct perf_event *event)
6173{
6174 if (event->attr.type != PERF_TYPE_SOFTWARE)
6175 return -ENOENT;
6176
6177 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
6178 return -ENOENT;
6179
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006180 /*
6181 * no branch sampling for software events
6182 */
6183 if (has_branch_stack(event))
6184 return -EOPNOTSUPP;
6185
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006186 perf_swevent_init_hrtimer(event);
6187
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006188 return 0;
6189}
6190
6191static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006192 .task_ctx_nr = perf_sw_context,
6193
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006194 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006195 .add = task_clock_event_add,
6196 .del = task_clock_event_del,
6197 .start = task_clock_event_start,
6198 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006199 .read = task_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006200
6201 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006202};
6203
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006204static void perf_pmu_nop_void(struct pmu *pmu)
6205{
6206}
6207
6208static int perf_pmu_nop_int(struct pmu *pmu)
6209{
6210 return 0;
6211}
6212
6213static void perf_pmu_start_txn(struct pmu *pmu)
6214{
6215 perf_pmu_disable(pmu);
6216}
6217
6218static int perf_pmu_commit_txn(struct pmu *pmu)
6219{
6220 perf_pmu_enable(pmu);
6221 return 0;
6222}
6223
6224static void perf_pmu_cancel_txn(struct pmu *pmu)
6225{
6226 perf_pmu_enable(pmu);
6227}
6228
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006229static int perf_event_idx_default(struct perf_event *event)
6230{
6231 return event->hw.idx + 1;
6232}
6233
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006234/*
6235 * Ensures all contexts with the same task_ctx_nr have the same
6236 * pmu_cpu_context too.
6237 */
6238static void *find_pmu_context(int ctxn)
6239{
6240 struct pmu *pmu;
6241
6242 if (ctxn < 0)
6243 return NULL;
6244
6245 list_for_each_entry(pmu, &pmus, entry) {
6246 if (pmu->task_ctx_nr == ctxn)
6247 return pmu->pmu_cpu_context;
6248 }
6249
6250 return NULL;
6251}
6252
Peter Zijlstra51676952010-12-07 14:18:20 +01006253static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006254{
Peter Zijlstra51676952010-12-07 14:18:20 +01006255 int cpu;
6256
6257 for_each_possible_cpu(cpu) {
6258 struct perf_cpu_context *cpuctx;
6259
6260 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6261
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006262 if (cpuctx->unique_pmu == old_pmu)
6263 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01006264 }
6265}
6266
6267static void free_pmu_context(struct pmu *pmu)
6268{
6269 struct pmu *i;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006270
6271 mutex_lock(&pmus_lock);
6272 /*
6273 * Like a real lame refcount.
6274 */
Peter Zijlstra51676952010-12-07 14:18:20 +01006275 list_for_each_entry(i, &pmus, entry) {
6276 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
6277 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006278 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01006279 }
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006280 }
6281
Peter Zijlstra51676952010-12-07 14:18:20 +01006282 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006283out:
6284 mutex_unlock(&pmus_lock);
6285}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006286static struct idr pmu_idr;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006287
Peter Zijlstraabe43402010-11-17 23:17:37 +01006288static ssize_t
6289type_show(struct device *dev, struct device_attribute *attr, char *page)
6290{
6291 struct pmu *pmu = dev_get_drvdata(dev);
6292
6293 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
6294}
6295
Stephane Eranian62b85632013-04-03 14:21:34 +02006296static ssize_t
6297perf_event_mux_interval_ms_show(struct device *dev,
6298 struct device_attribute *attr,
6299 char *page)
6300{
6301 struct pmu *pmu = dev_get_drvdata(dev);
6302
6303 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
6304}
6305
6306static ssize_t
6307perf_event_mux_interval_ms_store(struct device *dev,
6308 struct device_attribute *attr,
6309 const char *buf, size_t count)
6310{
6311 struct pmu *pmu = dev_get_drvdata(dev);
6312 int timer, cpu, ret;
6313
6314 ret = kstrtoint(buf, 0, &timer);
6315 if (ret)
6316 return ret;
6317
6318 if (timer < 1)
6319 return -EINVAL;
6320
6321 /* same value, noting to do */
6322 if (timer == pmu->hrtimer_interval_ms)
6323 return count;
6324
6325 pmu->hrtimer_interval_ms = timer;
6326
6327 /* update all cpuctx for this PMU */
6328 for_each_possible_cpu(cpu) {
6329 struct perf_cpu_context *cpuctx;
6330 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6331 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
6332
6333 if (hrtimer_active(&cpuctx->hrtimer))
6334 hrtimer_forward_now(&cpuctx->hrtimer, cpuctx->hrtimer_interval);
6335 }
6336
6337 return count;
6338}
6339
Peter Zijlstraabe43402010-11-17 23:17:37 +01006340static struct device_attribute pmu_dev_attrs[] = {
Stephane Eranian62b85632013-04-03 14:21:34 +02006341 __ATTR_RO(type),
6342 __ATTR_RW(perf_event_mux_interval_ms),
6343 __ATTR_NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01006344};
6345
6346static int pmu_bus_running;
6347static struct bus_type pmu_bus = {
6348 .name = "event_source",
6349 .dev_attrs = pmu_dev_attrs,
6350};
6351
6352static void pmu_dev_release(struct device *dev)
6353{
6354 kfree(dev);
6355}
6356
6357static int pmu_dev_alloc(struct pmu *pmu)
6358{
6359 int ret = -ENOMEM;
6360
6361 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
6362 if (!pmu->dev)
6363 goto out;
6364
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01006365 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01006366 device_initialize(pmu->dev);
6367 ret = dev_set_name(pmu->dev, "%s", pmu->name);
6368 if (ret)
6369 goto free_dev;
6370
6371 dev_set_drvdata(pmu->dev, pmu);
6372 pmu->dev->bus = &pmu_bus;
6373 pmu->dev->release = pmu_dev_release;
6374 ret = device_add(pmu->dev);
6375 if (ret)
6376 goto free_dev;
6377
6378out:
6379 return ret;
6380
6381free_dev:
6382 put_device(pmu->dev);
6383 goto out;
6384}
6385
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006386static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006387static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006388
Mischa Jonker03d8e802013-06-04 11:45:48 +02006389int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006390{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006391 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006392
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006393 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006394 ret = -ENOMEM;
6395 pmu->pmu_disable_count = alloc_percpu(int);
6396 if (!pmu->pmu_disable_count)
6397 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006398
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006399 pmu->type = -1;
6400 if (!name)
6401 goto skip_type;
6402 pmu->name = name;
6403
6404 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08006405 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
6406 if (type < 0) {
6407 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006408 goto free_pdc;
6409 }
6410 }
6411 pmu->type = type;
6412
Peter Zijlstraabe43402010-11-17 23:17:37 +01006413 if (pmu_bus_running) {
6414 ret = pmu_dev_alloc(pmu);
6415 if (ret)
6416 goto free_idr;
6417 }
6418
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006419skip_type:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006420 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
6421 if (pmu->pmu_cpu_context)
6422 goto got_cpu_context;
6423
Wei Yongjunc4814202013-04-12 11:05:54 +08006424 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006425 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
6426 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01006427 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006428
6429 for_each_possible_cpu(cpu) {
6430 struct perf_cpu_context *cpuctx;
6431
6432 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02006433 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006434 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006435 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006436 cpuctx->ctx.type = cpu_context;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006437 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02006438
6439 __perf_cpu_hrtimer_init(cpuctx, cpu);
6440
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006441 INIT_LIST_HEAD(&cpuctx->rotation_list);
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006442 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006443 }
6444
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006445got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006446 if (!pmu->start_txn) {
6447 if (pmu->pmu_enable) {
6448 /*
6449 * If we have pmu_enable/pmu_disable calls, install
6450 * transaction stubs that use that to try and batch
6451 * hardware accesses.
6452 */
6453 pmu->start_txn = perf_pmu_start_txn;
6454 pmu->commit_txn = perf_pmu_commit_txn;
6455 pmu->cancel_txn = perf_pmu_cancel_txn;
6456 } else {
6457 pmu->start_txn = perf_pmu_nop_void;
6458 pmu->commit_txn = perf_pmu_nop_int;
6459 pmu->cancel_txn = perf_pmu_nop_void;
6460 }
6461 }
6462
6463 if (!pmu->pmu_enable) {
6464 pmu->pmu_enable = perf_pmu_nop_void;
6465 pmu->pmu_disable = perf_pmu_nop_void;
6466 }
6467
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006468 if (!pmu->event_idx)
6469 pmu->event_idx = perf_event_idx_default;
6470
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006471 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006472 ret = 0;
6473unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006474 mutex_unlock(&pmus_lock);
6475
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006476 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006477
Peter Zijlstraabe43402010-11-17 23:17:37 +01006478free_dev:
6479 device_del(pmu->dev);
6480 put_device(pmu->dev);
6481
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006482free_idr:
6483 if (pmu->type >= PERF_TYPE_MAX)
6484 idr_remove(&pmu_idr, pmu->type);
6485
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006486free_pdc:
6487 free_percpu(pmu->pmu_disable_count);
6488 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006489}
6490
6491void perf_pmu_unregister(struct pmu *pmu)
6492{
6493 mutex_lock(&pmus_lock);
6494 list_del_rcu(&pmu->entry);
6495 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006496
6497 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02006498 * We dereference the pmu list under both SRCU and regular RCU, so
6499 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006500 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006501 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02006502 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006503
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006504 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006505 if (pmu->type >= PERF_TYPE_MAX)
6506 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006507 device_del(pmu->dev);
6508 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01006509 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006510}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006511
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006512struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006513{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006514 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006515 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08006516 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006517
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006518 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006519
6520 rcu_read_lock();
6521 pmu = idr_find(&pmu_idr, event->attr.type);
6522 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08006523 if (pmu) {
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006524 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006525 ret = pmu->event_init(event);
6526 if (ret)
6527 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006528 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08006529 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006530
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006531 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006532 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006533 ret = pmu->event_init(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006534 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006535 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006536
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006537 if (ret != -ENOENT) {
6538 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006539 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006540 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006541 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006542 pmu = ERR_PTR(-ENOENT);
6543unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006544 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006545
6546 return pmu;
6547}
6548
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006549static void account_event_cpu(struct perf_event *event, int cpu)
6550{
6551 if (event->parent)
6552 return;
6553
6554 if (has_branch_stack(event)) {
6555 if (!(event->attach_state & PERF_ATTACH_TASK))
6556 atomic_inc(&per_cpu(perf_branch_stack_events, cpu));
6557 }
6558 if (is_cgroup_event(event))
6559 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
6560}
6561
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006562static void account_event(struct perf_event *event)
6563{
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006564 if (event->parent)
6565 return;
6566
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006567 if (event->attach_state & PERF_ATTACH_TASK)
6568 static_key_slow_inc(&perf_sched_events.key);
6569 if (event->attr.mmap || event->attr.mmap_data)
6570 atomic_inc(&nr_mmap_events);
6571 if (event->attr.comm)
6572 atomic_inc(&nr_comm_events);
6573 if (event->attr.task)
6574 atomic_inc(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02006575 if (event->attr.freq) {
6576 if (atomic_inc_return(&nr_freq_events) == 1)
6577 tick_nohz_full_kick_all();
6578 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006579 if (has_branch_stack(event))
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006580 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006581 if (is_cgroup_event(event))
6582 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006583
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006584 account_event_cpu(event, event->cpu);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006585}
6586
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006587/*
6588 * Allocate and initialize a event structure
6589 */
6590static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006591perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006592 struct task_struct *task,
6593 struct perf_event *group_leader,
6594 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03006595 perf_overflow_handler_t overflow_handler,
6596 void *context)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006597{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006598 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006599 struct perf_event *event;
6600 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006601 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006602
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006603 if ((unsigned)cpu >= nr_cpu_ids) {
6604 if (!task || cpu != -1)
6605 return ERR_PTR(-EINVAL);
6606 }
6607
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006608 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006609 if (!event)
6610 return ERR_PTR(-ENOMEM);
6611
6612 /*
6613 * Single events are their own group leaders, with an
6614 * empty sibling list:
6615 */
6616 if (!group_leader)
6617 group_leader = event;
6618
6619 mutex_init(&event->child_mutex);
6620 INIT_LIST_HEAD(&event->child_list);
6621
6622 INIT_LIST_HEAD(&event->group_entry);
6623 INIT_LIST_HEAD(&event->event_entry);
6624 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006625 INIT_LIST_HEAD(&event->rb_entry);
6626
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006627 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006628 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006629
6630 mutex_init(&event->mmap_mutex);
6631
Al Viroa6fa9412012-08-20 14:59:25 +01006632 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006633 event->cpu = cpu;
6634 event->attr = *attr;
6635 event->group_leader = group_leader;
6636 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006637 event->oncpu = -1;
6638
6639 event->parent = parent_event;
6640
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08006641 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006642 event->id = atomic64_inc_return(&perf_event_id);
6643
6644 event->state = PERF_EVENT_STATE_INACTIVE;
6645
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006646 if (task) {
6647 event->attach_state = PERF_ATTACH_TASK;
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006648
6649 if (attr->type == PERF_TYPE_TRACEPOINT)
6650 event->hw.tp_target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006651#ifdef CONFIG_HAVE_HW_BREAKPOINT
6652 /*
6653 * hw_breakpoint is a bit difficult here..
6654 */
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006655 else if (attr->type == PERF_TYPE_BREAKPOINT)
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006656 event->hw.bp_target = task;
6657#endif
6658 }
6659
Avi Kivity4dc0da82011-06-29 18:42:35 +03006660 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006661 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006662 context = parent_event->overflow_handler_context;
6663 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006664
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006665 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006666 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02006667
Jiri Olsa0231bb52013-02-01 11:23:45 +01006668 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006669
6670 pmu = NULL;
6671
6672 hwc = &event->hw;
6673 hwc->sample_period = attr->sample_period;
6674 if (attr->freq && attr->sample_freq)
6675 hwc->sample_period = 1;
6676 hwc->last_period = hwc->sample_period;
6677
Peter Zijlstrae7850592010-05-21 14:43:08 +02006678 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006679
6680 /*
6681 * we currently do not support PERF_FORMAT_GROUP on inherited events
6682 */
6683 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006684 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006685
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006686 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006687 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006688 goto err_ns;
6689 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006690 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006691 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006692 }
6693
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006694 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006695 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
6696 err = get_callchain_buffers();
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006697 if (err)
6698 goto err_pmu;
Stephane Eraniand010b332012-02-09 23:21:00 +01006699 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006700 }
6701
6702 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006703
6704err_pmu:
6705 if (event->destroy)
6706 event->destroy(event);
6707err_ns:
6708 if (event->ns)
6709 put_pid_ns(event->ns);
6710 kfree(event);
6711
6712 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006713}
6714
6715static int perf_copy_attr(struct perf_event_attr __user *uattr,
6716 struct perf_event_attr *attr)
6717{
6718 u32 size;
6719 int ret;
6720
6721 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
6722 return -EFAULT;
6723
6724 /*
6725 * zero the full structure, so that a short copy will be nice.
6726 */
6727 memset(attr, 0, sizeof(*attr));
6728
6729 ret = get_user(size, &uattr->size);
6730 if (ret)
6731 return ret;
6732
6733 if (size > PAGE_SIZE) /* silly large */
6734 goto err_size;
6735
6736 if (!size) /* abi compat */
6737 size = PERF_ATTR_SIZE_VER0;
6738
6739 if (size < PERF_ATTR_SIZE_VER0)
6740 goto err_size;
6741
6742 /*
6743 * If we're handed a bigger struct than we know of,
6744 * ensure all the unknown bits are 0 - i.e. new
6745 * user-space does not rely on any kernel feature
6746 * extensions we dont know about yet.
6747 */
6748 if (size > sizeof(*attr)) {
6749 unsigned char __user *addr;
6750 unsigned char __user *end;
6751 unsigned char val;
6752
6753 addr = (void __user *)uattr + sizeof(*attr);
6754 end = (void __user *)uattr + size;
6755
6756 for (; addr < end; addr++) {
6757 ret = get_user(val, addr);
6758 if (ret)
6759 return ret;
6760 if (val)
6761 goto err_size;
6762 }
6763 size = sizeof(*attr);
6764 }
6765
6766 ret = copy_from_user(attr, uattr, size);
6767 if (ret)
6768 return -EFAULT;
6769
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05306770 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006771 return -EINVAL;
6772
6773 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
6774 return -EINVAL;
6775
6776 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
6777 return -EINVAL;
6778
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006779 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
6780 u64 mask = attr->branch_sample_type;
6781
6782 /* only using defined bits */
6783 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
6784 return -EINVAL;
6785
6786 /* at least one branch bit must be set */
6787 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
6788 return -EINVAL;
6789
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006790 /* propagate priv level, when not set for branch */
6791 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
6792
6793 /* exclude_kernel checked on syscall entry */
6794 if (!attr->exclude_kernel)
6795 mask |= PERF_SAMPLE_BRANCH_KERNEL;
6796
6797 if (!attr->exclude_user)
6798 mask |= PERF_SAMPLE_BRANCH_USER;
6799
6800 if (!attr->exclude_hv)
6801 mask |= PERF_SAMPLE_BRANCH_HV;
6802 /*
6803 * adjust user setting (for HW filter setup)
6804 */
6805 attr->branch_sample_type = mask;
6806 }
Stephane Eraniane7122092013-06-06 11:02:04 +02006807 /* privileged levels capture (kernel, hv): check permissions */
6808 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02006809 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6810 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006811 }
Jiri Olsa40189942012-08-07 15:20:37 +02006812
Jiri Olsac5ebced2012-08-07 15:20:40 +02006813 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02006814 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006815 if (ret)
6816 return ret;
6817 }
6818
6819 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
6820 if (!arch_perf_have_user_stack_dump())
6821 return -ENOSYS;
6822
6823 /*
6824 * We have __u32 type for the size, but so far
6825 * we can only use __u16 as maximum due to the
6826 * __u16 sample size limit.
6827 */
6828 if (attr->sample_stack_user >= USHRT_MAX)
6829 ret = -EINVAL;
6830 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
6831 ret = -EINVAL;
6832 }
Jiri Olsa40189942012-08-07 15:20:37 +02006833
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006834out:
6835 return ret;
6836
6837err_size:
6838 put_user(sizeof(*attr), &uattr->size);
6839 ret = -E2BIG;
6840 goto out;
6841}
6842
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006843static int
6844perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006845{
Frederic Weisbecker76369132011-05-19 19:55:04 +02006846 struct ring_buffer *rb = NULL, *old_rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006847 int ret = -EINVAL;
6848
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006849 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006850 goto set;
6851
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006852 /* don't allow circular references */
6853 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006854 goto out;
6855
Peter Zijlstra0f139302010-05-20 14:35:15 +02006856 /*
6857 * Don't allow cross-cpu buffers
6858 */
6859 if (output_event->cpu != event->cpu)
6860 goto out;
6861
6862 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02006863 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02006864 */
6865 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
6866 goto out;
6867
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006868set:
6869 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006870 /* Can't redirect output if we've got an active mmap() */
6871 if (atomic_read(&event->mmap_count))
6872 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006873
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006874 old_rb = event->rb;
6875
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006876 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02006877 /* get the rb we want to redirect to */
6878 rb = ring_buffer_get(output_event);
6879 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006880 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006881 }
6882
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006883 if (old_rb)
6884 ring_buffer_detach(event, old_rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02006885
6886 if (rb)
6887 ring_buffer_attach(event, rb);
6888
6889 rcu_assign_pointer(event->rb, rb);
6890
6891 if (old_rb) {
6892 ring_buffer_put(old_rb);
6893 /*
6894 * Since we detached before setting the new rb, so that we
6895 * could attach the new rb, we could have missed a wakeup.
6896 * Provide it now.
6897 */
6898 wake_up_all(&event->waitq);
6899 }
6900
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006901 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006902unlock:
6903 mutex_unlock(&event->mmap_mutex);
6904
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006905out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006906 return ret;
6907}
6908
6909/**
6910 * sys_perf_event_open - open a performance event, associate it to a task/cpu
6911 *
6912 * @attr_uptr: event_id type attributes for monitoring/sampling
6913 * @pid: target pid
6914 * @cpu: target cpu
6915 * @group_fd: group leader event fd
6916 */
6917SYSCALL_DEFINE5(perf_event_open,
6918 struct perf_event_attr __user *, attr_uptr,
6919 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
6920{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006921 struct perf_event *group_leader = NULL, *output_event = NULL;
6922 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006923 struct perf_event_attr attr;
6924 struct perf_event_context *ctx;
6925 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04006926 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07006927 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006928 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04006929 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006930 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006931 int err;
6932
6933 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02006934 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006935 return -EINVAL;
6936
6937 err = perf_copy_attr(attr_uptr, &attr);
6938 if (err)
6939 return err;
6940
6941 if (!attr.exclude_kernel) {
6942 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6943 return -EACCES;
6944 }
6945
6946 if (attr.freq) {
6947 if (attr.sample_freq > sysctl_perf_event_sample_rate)
6948 return -EINVAL;
6949 }
6950
Stephane Eraniane5d13672011-02-14 11:20:01 +02006951 /*
6952 * In cgroup mode, the pid argument is used to pass the fd
6953 * opened to the cgroup directory in cgroupfs. The cpu argument
6954 * designates the cpu on which to monitor threads from that
6955 * cgroup.
6956 */
6957 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
6958 return -EINVAL;
6959
Al Viroab72a702012-08-21 09:40:46 -04006960 event_fd = get_unused_fd();
Al Viroea635c62010-05-26 17:40:29 -04006961 if (event_fd < 0)
6962 return event_fd;
6963
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006964 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04006965 err = perf_fget_light(group_fd, &group);
6966 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006967 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04006968 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006969 if (flags & PERF_FLAG_FD_OUTPUT)
6970 output_event = group_leader;
6971 if (flags & PERF_FLAG_FD_NO_GROUP)
6972 group_leader = NULL;
6973 }
6974
Stephane Eraniane5d13672011-02-14 11:20:01 +02006975 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006976 task = find_lively_task_by_vpid(pid);
6977 if (IS_ERR(task)) {
6978 err = PTR_ERR(task);
6979 goto err_group_fd;
6980 }
6981 }
6982
Yan, Zhengfbfc6232012-06-15 14:31:31 +08006983 get_online_cpus();
6984
Avi Kivity4dc0da82011-06-29 18:42:35 +03006985 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
6986 NULL, NULL);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006987 if (IS_ERR(event)) {
6988 err = PTR_ERR(event);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006989 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006990 }
6991
Stephane Eraniane5d13672011-02-14 11:20:01 +02006992 if (flags & PERF_FLAG_PID_CGROUP) {
6993 err = perf_cgroup_connect(pid, event, &attr, group_leader);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006994 if (err) {
6995 __free_event(event);
6996 goto err_task;
6997 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02006998 }
6999
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007000 account_event(event);
7001
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007002 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007003 * Special case software events and allow them to be part of
7004 * any hardware group.
7005 */
7006 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007007
7008 if (group_leader &&
7009 (is_software_event(event) != is_software_event(group_leader))) {
7010 if (is_software_event(event)) {
7011 /*
7012 * If event and group_leader are not both a software
7013 * event, and event is, then group leader is not.
7014 *
7015 * Allow the addition of software events to !software
7016 * groups, this is safe because software events never
7017 * fail to schedule.
7018 */
7019 pmu = group_leader->pmu;
7020 } else if (is_software_event(group_leader) &&
7021 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
7022 /*
7023 * In case the group is a pure software group, and we
7024 * try to add a hardware event, move the whole group to
7025 * the hardware context.
7026 */
7027 move_group = 1;
7028 }
7029 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007030
7031 /*
7032 * Get the target context (task or percpu):
7033 */
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007034 ctx = find_get_context(pmu, task, event->cpu);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007035 if (IS_ERR(ctx)) {
7036 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007037 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007038 }
7039
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02007040 if (task) {
7041 put_task_struct(task);
7042 task = NULL;
7043 }
7044
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007045 /*
7046 * Look up the group leader (we will attach this event to it):
7047 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007048 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007049 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007050
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007051 /*
7052 * Do not allow a recursive hierarchy (this new sibling
7053 * becoming part of another group-sibling):
7054 */
7055 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007056 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007057 /*
7058 * Do not allow to attach to a group in a different
7059 * task or CPU context:
7060 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007061 if (move_group) {
7062 if (group_leader->ctx->type != ctx->type)
7063 goto err_context;
7064 } else {
7065 if (group_leader->ctx != ctx)
7066 goto err_context;
7067 }
7068
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007069 /*
7070 * Only a group leader can be exclusive or pinned
7071 */
7072 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007073 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007074 }
7075
7076 if (output_event) {
7077 err = perf_event_set_output(event, output_event);
7078 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007079 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007080 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007081
Al Viroea635c62010-05-26 17:40:29 -04007082 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
7083 if (IS_ERR(event_file)) {
7084 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007085 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04007086 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007087
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007088 if (move_group) {
7089 struct perf_event_context *gctx = group_leader->ctx;
7090
7091 mutex_lock(&gctx->mutex);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007092 perf_remove_from_context(group_leader);
Jiri Olsa0231bb52013-02-01 11:23:45 +01007093
7094 /*
7095 * Removing from the context ends up with disabled
7096 * event. What we want here is event in the initial
7097 * startup state, ready to be add into new context.
7098 */
7099 perf_event__state_init(group_leader);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007100 list_for_each_entry(sibling, &group_leader->sibling_list,
7101 group_entry) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007102 perf_remove_from_context(sibling);
Jiri Olsa0231bb52013-02-01 11:23:45 +01007103 perf_event__state_init(sibling);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007104 put_ctx(gctx);
7105 }
7106 mutex_unlock(&gctx->mutex);
7107 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007108 }
7109
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007110 WARN_ON_ONCE(ctx->parent_ctx);
7111 mutex_lock(&ctx->mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007112
7113 if (move_group) {
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007114 synchronize_rcu();
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007115 perf_install_in_context(ctx, group_leader, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007116 get_ctx(ctx);
7117 list_for_each_entry(sibling, &group_leader->sibling_list,
7118 group_entry) {
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007119 perf_install_in_context(ctx, sibling, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007120 get_ctx(ctx);
7121 }
7122 }
7123
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007124 perf_install_in_context(ctx, event, event->cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007125 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007126 perf_unpin_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007127 mutex_unlock(&ctx->mutex);
7128
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007129 put_online_cpus();
7130
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007131 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01007132
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007133 mutex_lock(&current->perf_event_mutex);
7134 list_add_tail(&event->owner_entry, &current->perf_event_list);
7135 mutex_unlock(&current->perf_event_mutex);
7136
Peter Zijlstra8a495422010-05-27 15:47:49 +02007137 /*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007138 * Precalculate sample_data sizes
7139 */
7140 perf_event__header_size(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007141 perf_event__id_header_size(event);
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007142
7143 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02007144 * Drop the reference on the group_event after placing the
7145 * new event on the sibling_list. This ensures destruction
7146 * of the group leader will find the pointer to itself in
7147 * perf_group_detach().
7148 */
Al Viro2903ff02012-08-28 12:52:22 -04007149 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007150 fd_install(event_fd, event_file);
7151 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007152
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007153err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007154 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04007155 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007156err_alloc:
7157 free_event(event);
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02007158err_task:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007159 put_online_cpus();
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02007160 if (task)
7161 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007162err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04007163 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007164err_fd:
7165 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007166 return err;
7167}
7168
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007169/**
7170 * perf_event_create_kernel_counter
7171 *
7172 * @attr: attributes of the counter to create
7173 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07007174 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007175 */
7176struct perf_event *
7177perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07007178 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007179 perf_overflow_handler_t overflow_handler,
7180 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007181{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007182 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007183 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007184 int err;
7185
7186 /*
7187 * Get the target context (task or percpu):
7188 */
7189
Avi Kivity4dc0da82011-06-29 18:42:35 +03007190 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
7191 overflow_handler, context);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007192 if (IS_ERR(event)) {
7193 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007194 goto err;
7195 }
7196
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007197 account_event(event);
7198
Matt Helsley38a81da2010-09-13 13:01:20 -07007199 ctx = find_get_context(event->pmu, task, cpu);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007200 if (IS_ERR(ctx)) {
7201 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007202 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007203 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007204
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007205 WARN_ON_ONCE(ctx->parent_ctx);
7206 mutex_lock(&ctx->mutex);
7207 perf_install_in_context(ctx, event, cpu);
7208 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007209 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007210 mutex_unlock(&ctx->mutex);
7211
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007212 return event;
7213
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007214err_free:
7215 free_event(event);
7216err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007217 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007218}
7219EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
7220
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007221void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
7222{
7223 struct perf_event_context *src_ctx;
7224 struct perf_event_context *dst_ctx;
7225 struct perf_event *event, *tmp;
7226 LIST_HEAD(events);
7227
7228 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
7229 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
7230
7231 mutex_lock(&src_ctx->mutex);
7232 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
7233 event_entry) {
7234 perf_remove_from_context(event);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02007235 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007236 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +02007237 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007238 }
7239 mutex_unlock(&src_ctx->mutex);
7240
7241 synchronize_rcu();
7242
7243 mutex_lock(&dst_ctx->mutex);
Peter Zijlstra98861672013-10-03 16:02:23 +02007244 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
7245 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007246 if (event->state >= PERF_EVENT_STATE_OFF)
7247 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02007248 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007249 perf_install_in_context(dst_ctx, event, dst_cpu);
7250 get_ctx(dst_ctx);
7251 }
7252 mutex_unlock(&dst_ctx->mutex);
7253}
7254EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
7255
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007256static void sync_child_event(struct perf_event *child_event,
7257 struct task_struct *child)
7258{
7259 struct perf_event *parent_event = child_event->parent;
7260 u64 child_val;
7261
7262 if (child_event->attr.inherit_stat)
7263 perf_event_read_event(child_event, child);
7264
Peter Zijlstrab5e58792010-05-21 14:43:12 +02007265 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007266
7267 /*
7268 * Add back the child's count to the parent's count:
7269 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02007270 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007271 atomic64_add(child_event->total_time_enabled,
7272 &parent_event->child_total_time_enabled);
7273 atomic64_add(child_event->total_time_running,
7274 &parent_event->child_total_time_running);
7275
7276 /*
7277 * Remove this event from the parent's list
7278 */
7279 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7280 mutex_lock(&parent_event->child_mutex);
7281 list_del_init(&child_event->child_list);
7282 mutex_unlock(&parent_event->child_mutex);
7283
7284 /*
7285 * Release the parent event, if this was the last
7286 * reference to it.
7287 */
Al Viroa6fa9412012-08-20 14:59:25 +01007288 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007289}
7290
7291static void
7292__perf_event_exit_task(struct perf_event *child_event,
7293 struct perf_event_context *child_ctx,
7294 struct task_struct *child)
7295{
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007296 if (child_event->parent) {
7297 raw_spin_lock_irq(&child_ctx->lock);
7298 perf_group_detach(child_event);
7299 raw_spin_unlock_irq(&child_ctx->lock);
7300 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007301
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007302 perf_remove_from_context(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007303
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007304 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007305 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007306 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007307 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007308 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007309 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007310 sync_child_event(child_event, child);
7311 free_event(child_event);
7312 }
7313}
7314
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007315static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007316{
7317 struct perf_event *child_event, *tmp;
7318 struct perf_event_context *child_ctx;
7319 unsigned long flags;
7320
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007321 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007322 perf_event_task(child, NULL, 0);
7323 return;
7324 }
7325
7326 local_irq_save(flags);
7327 /*
7328 * We can't reschedule here because interrupts are disabled,
7329 * and either child is current or it is a task that can't be
7330 * scheduled, so we are now safe from rescheduling changing
7331 * our context.
7332 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01007333 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007334
7335 /*
7336 * Take the context lock here so that if find_get_context is
7337 * reading child->perf_event_ctxp, we wait until it has
7338 * incremented the context's refcount before we do put_ctx below.
7339 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007340 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02007341 task_ctx_sched_out(child_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007342 child->perf_event_ctxp[ctxn] = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007343 /*
7344 * If this context is a clone; unclone it so it can't get
7345 * swapped to another process while we're removing all
7346 * the events from it.
7347 */
7348 unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01007349 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007350 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007351
7352 /*
7353 * Report the task dead after unscheduling the events so that we
7354 * won't get any samples after PERF_RECORD_EXIT. We can however still
7355 * get a few PERF_RECORD_READ events.
7356 */
7357 perf_event_task(child, child_ctx, 0);
7358
7359 /*
7360 * We can recurse on the same lock type through:
7361 *
7362 * __perf_event_exit_task()
7363 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01007364 * put_event()
7365 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007366 *
7367 * But since its the parent context it won't be the same instance.
7368 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02007369 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007370
7371again:
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007372 list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
7373 group_entry)
7374 __perf_event_exit_task(child_event, child_ctx, child);
7375
7376 list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007377 group_entry)
7378 __perf_event_exit_task(child_event, child_ctx, child);
7379
7380 /*
7381 * If the last event was a group event, it will have appended all
7382 * its siblings to the list, but we obtained 'tmp' before that which
7383 * will still point to the list head terminating the iteration.
7384 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007385 if (!list_empty(&child_ctx->pinned_groups) ||
7386 !list_empty(&child_ctx->flexible_groups))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007387 goto again;
7388
7389 mutex_unlock(&child_ctx->mutex);
7390
7391 put_ctx(child_ctx);
7392}
7393
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007394/*
7395 * When a child task exits, feed back event values to parent events.
7396 */
7397void perf_event_exit_task(struct task_struct *child)
7398{
Peter Zijlstra88821352010-11-09 19:01:43 +01007399 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007400 int ctxn;
7401
Peter Zijlstra88821352010-11-09 19:01:43 +01007402 mutex_lock(&child->perf_event_mutex);
7403 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
7404 owner_entry) {
7405 list_del_init(&event->owner_entry);
7406
7407 /*
7408 * Ensure the list deletion is visible before we clear
7409 * the owner, closes a race against perf_release() where
7410 * we need to serialize on the owner->perf_event_mutex.
7411 */
7412 smp_wmb();
7413 event->owner = NULL;
7414 }
7415 mutex_unlock(&child->perf_event_mutex);
7416
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007417 for_each_task_context_nr(ctxn)
7418 perf_event_exit_task_context(child, ctxn);
7419}
7420
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007421static void perf_free_event(struct perf_event *event,
7422 struct perf_event_context *ctx)
7423{
7424 struct perf_event *parent = event->parent;
7425
7426 if (WARN_ON_ONCE(!parent))
7427 return;
7428
7429 mutex_lock(&parent->child_mutex);
7430 list_del_init(&event->child_list);
7431 mutex_unlock(&parent->child_mutex);
7432
Al Viroa6fa9412012-08-20 14:59:25 +01007433 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007434
Peter Zijlstra8a495422010-05-27 15:47:49 +02007435 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007436 list_del_event(event, ctx);
7437 free_event(event);
7438}
7439
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007440/*
7441 * free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007442 * perf_event_init_task below, used by fork() in case of fail.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007443 */
7444void perf_event_free_task(struct task_struct *task)
7445{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007446 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007447 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007448 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007449
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007450 for_each_task_context_nr(ctxn) {
7451 ctx = task->perf_event_ctxp[ctxn];
7452 if (!ctx)
7453 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007454
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007455 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007456again:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007457 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
7458 group_entry)
7459 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007460
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007461 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
7462 group_entry)
7463 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007464
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007465 if (!list_empty(&ctx->pinned_groups) ||
7466 !list_empty(&ctx->flexible_groups))
7467 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007468
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007469 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007470
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007471 put_ctx(ctx);
7472 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007473}
7474
Peter Zijlstra4e231c72010-09-09 21:01:59 +02007475void perf_event_delayed_put(struct task_struct *task)
7476{
7477 int ctxn;
7478
7479 for_each_task_context_nr(ctxn)
7480 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
7481}
7482
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007483/*
7484 * inherit a event from parent task to child task:
7485 */
7486static struct perf_event *
7487inherit_event(struct perf_event *parent_event,
7488 struct task_struct *parent,
7489 struct perf_event_context *parent_ctx,
7490 struct task_struct *child,
7491 struct perf_event *group_leader,
7492 struct perf_event_context *child_ctx)
7493{
7494 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02007495 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007496
7497 /*
7498 * Instead of creating recursive hierarchies of events,
7499 * we link inherited events back to the original parent,
7500 * which has a filp for sure, which we use as the reference
7501 * count:
7502 */
7503 if (parent_event->parent)
7504 parent_event = parent_event->parent;
7505
7506 child_event = perf_event_alloc(&parent_event->attr,
7507 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007508 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007509 group_leader, parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007510 NULL, NULL);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007511 if (IS_ERR(child_event))
7512 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01007513
7514 if (!atomic_long_inc_not_zero(&parent_event->refcount)) {
7515 free_event(child_event);
7516 return NULL;
7517 }
7518
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007519 get_ctx(child_ctx);
7520
7521 /*
7522 * Make the child state follow the state of the parent event,
7523 * not its attr.disabled bit. We hold the parent's mutex,
7524 * so we won't race with perf_event_{en, dis}able_family.
7525 */
7526 if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
7527 child_event->state = PERF_EVENT_STATE_INACTIVE;
7528 else
7529 child_event->state = PERF_EVENT_STATE_OFF;
7530
7531 if (parent_event->attr.freq) {
7532 u64 sample_period = parent_event->hw.sample_period;
7533 struct hw_perf_event *hwc = &child_event->hw;
7534
7535 hwc->sample_period = sample_period;
7536 hwc->last_period = sample_period;
7537
7538 local64_set(&hwc->period_left, sample_period);
7539 }
7540
7541 child_event->ctx = child_ctx;
7542 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007543 child_event->overflow_handler_context
7544 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007545
7546 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02007547 * Precalculate sample_data sizes
7548 */
7549 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007550 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02007551
7552 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007553 * Link it up in the child's context:
7554 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02007555 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007556 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02007557 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007558
7559 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007560 * Link this into the parent event's child list
7561 */
7562 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7563 mutex_lock(&parent_event->child_mutex);
7564 list_add_tail(&child_event->child_list, &parent_event->child_list);
7565 mutex_unlock(&parent_event->child_mutex);
7566
7567 return child_event;
7568}
7569
7570static int inherit_group(struct perf_event *parent_event,
7571 struct task_struct *parent,
7572 struct perf_event_context *parent_ctx,
7573 struct task_struct *child,
7574 struct perf_event_context *child_ctx)
7575{
7576 struct perf_event *leader;
7577 struct perf_event *sub;
7578 struct perf_event *child_ctr;
7579
7580 leader = inherit_event(parent_event, parent, parent_ctx,
7581 child, NULL, child_ctx);
7582 if (IS_ERR(leader))
7583 return PTR_ERR(leader);
7584 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
7585 child_ctr = inherit_event(sub, parent, parent_ctx,
7586 child, leader, child_ctx);
7587 if (IS_ERR(child_ctr))
7588 return PTR_ERR(child_ctr);
7589 }
7590 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007591}
7592
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007593static int
7594inherit_task_group(struct perf_event *event, struct task_struct *parent,
7595 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007596 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007597 int *inherited_all)
7598{
7599 int ret;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007600 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007601
7602 if (!event->attr.inherit) {
7603 *inherited_all = 0;
7604 return 0;
7605 }
7606
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007607 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007608 if (!child_ctx) {
7609 /*
7610 * This is executed from the parent task context, so
7611 * inherit events that have been marked for cloning.
7612 * First allocate and initialize a context for the
7613 * child.
7614 */
7615
Jiri Olsa734df5a2013-07-09 17:44:10 +02007616 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007617 if (!child_ctx)
7618 return -ENOMEM;
7619
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007620 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007621 }
7622
7623 ret = inherit_group(event, parent, parent_ctx,
7624 child, child_ctx);
7625
7626 if (ret)
7627 *inherited_all = 0;
7628
7629 return ret;
7630}
7631
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007632/*
7633 * Initialize the perf_event context in task_struct
7634 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007635int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007636{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007637 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007638 struct perf_event_context *cloned_ctx;
7639 struct perf_event *event;
7640 struct task_struct *parent = current;
7641 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007642 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007643 int ret = 0;
7644
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007645 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007646 return 0;
7647
7648 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007649 * If the parent's context is a clone, pin it so it won't get
7650 * swapped under us.
7651 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007652 parent_ctx = perf_pin_task_context(parent, ctxn);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007653
7654 /*
7655 * No need to check if parent_ctx != NULL here; since we saw
7656 * it non-NULL earlier, the only reason for it to become NULL
7657 * is if we exit, and since we're currently in the middle of
7658 * a fork we can't be exiting at the same time.
7659 */
7660
7661 /*
7662 * Lock the parent list. No need to lock the child - not PID
7663 * hashed yet and not running, so nobody can access it.
7664 */
7665 mutex_lock(&parent_ctx->mutex);
7666
7667 /*
7668 * We dont have to disable NMIs - we are only looking at
7669 * the list, not manipulating it:
7670 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007671 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007672 ret = inherit_task_group(event, parent, parent_ctx,
7673 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007674 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007675 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007676 }
7677
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007678 /*
7679 * We can't hold ctx->lock when iterating the ->flexible_group list due
7680 * to allocations, but we need to prevent rotation because
7681 * rotate_ctx() will change the list from interrupt context.
7682 */
7683 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7684 parent_ctx->rotate_disable = 1;
7685 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
7686
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007687 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007688 ret = inherit_task_group(event, parent, parent_ctx,
7689 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007690 if (ret)
7691 break;
7692 }
7693
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007694 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7695 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007696
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007697 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007698
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01007699 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007700 /*
7701 * Mark the child context as a clone of the parent
7702 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007703 *
7704 * Note that if the parent is a clone, the holding of
7705 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007706 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007707 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007708 if (cloned_ctx) {
7709 child_ctx->parent_ctx = cloned_ctx;
7710 child_ctx->parent_gen = parent_ctx->parent_gen;
7711 } else {
7712 child_ctx->parent_ctx = parent_ctx;
7713 child_ctx->parent_gen = parent_ctx->generation;
7714 }
7715 get_ctx(child_ctx->parent_ctx);
7716 }
7717
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007718 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007719 mutex_unlock(&parent_ctx->mutex);
7720
7721 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007722 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007723
7724 return ret;
7725}
7726
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007727/*
7728 * Initialize the perf_event context in task_struct
7729 */
7730int perf_event_init_task(struct task_struct *child)
7731{
7732 int ctxn, ret;
7733
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01007734 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
7735 mutex_init(&child->perf_event_mutex);
7736 INIT_LIST_HEAD(&child->perf_event_list);
7737
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007738 for_each_task_context_nr(ctxn) {
7739 ret = perf_event_init_context(child, ctxn);
7740 if (ret)
7741 return ret;
7742 }
7743
7744 return 0;
7745}
7746
Paul Mackerras220b1402010-03-10 20:45:52 +11007747static void __init perf_event_init_all_cpus(void)
7748{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007749 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11007750 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11007751
7752 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007753 swhash = &per_cpu(swevent_htable, cpu);
7754 mutex_init(&swhash->hlist_mutex);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007755 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11007756 }
7757}
7758
Paul Gortmaker0db06282013-06-19 14:53:51 -04007759static void perf_event_init_cpu(int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007760{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007761 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007762
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007763 mutex_lock(&swhash->hlist_mutex);
Linus Torvalds4536e4d2011-11-03 07:44:04 -07007764 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007765 struct swevent_hlist *hlist;
7766
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007767 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
7768 WARN_ON(!hlist);
7769 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007770 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007771 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007772}
7773
Peter Zijlstrac2774432010-12-08 15:29:02 +01007774#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007775static void perf_pmu_rotate_stop(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007776{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007777 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
7778
7779 WARN_ON(!irqs_disabled());
7780
7781 list_del_init(&cpuctx->rotation_list);
7782}
7783
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007784static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007785{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007786 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007787 struct perf_event *event, *tmp;
7788
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007789 perf_pmu_rotate_stop(ctx->pmu);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02007790
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007791 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007792 __perf_remove_from_context(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007793 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007794 __perf_remove_from_context(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007795}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007796
7797static void perf_event_exit_cpu_context(int cpu)
7798{
7799 struct perf_event_context *ctx;
7800 struct pmu *pmu;
7801 int idx;
7802
7803 idx = srcu_read_lock(&pmus_srcu);
7804 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02007805 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007806
7807 mutex_lock(&ctx->mutex);
7808 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
7809 mutex_unlock(&ctx->mutex);
7810 }
7811 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007812}
7813
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007814static void perf_event_exit_cpu(int cpu)
7815{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007816 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007817
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007818 mutex_lock(&swhash->hlist_mutex);
7819 swevent_hlist_release(swhash);
7820 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007821
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007822 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007823}
7824#else
7825static inline void perf_event_exit_cpu(int cpu) { }
7826#endif
7827
Peter Zijlstrac2774432010-12-08 15:29:02 +01007828static int
7829perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
7830{
7831 int cpu;
7832
7833 for_each_online_cpu(cpu)
7834 perf_event_exit_cpu(cpu);
7835
7836 return NOTIFY_OK;
7837}
7838
7839/*
7840 * Run the perf reboot notifier at the very last possible moment so that
7841 * the generic watchdog code runs as long as possible.
7842 */
7843static struct notifier_block perf_reboot_notifier = {
7844 .notifier_call = perf_reboot,
7845 .priority = INT_MIN,
7846};
7847
Paul Gortmaker0db06282013-06-19 14:53:51 -04007848static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007849perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
7850{
7851 unsigned int cpu = (long)hcpu;
7852
Linus Torvalds4536e4d2011-11-03 07:44:04 -07007853 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007854
7855 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02007856 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007857 perf_event_init_cpu(cpu);
7858 break;
7859
Peter Zijlstra5e116372010-06-11 13:35:08 +02007860 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007861 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007862 perf_event_exit_cpu(cpu);
7863 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007864 default:
7865 break;
7866 }
7867
7868 return NOTIFY_OK;
7869}
7870
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007871void __init perf_event_init(void)
7872{
Jason Wessel3c502e72010-11-04 17:33:01 -05007873 int ret;
7874
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007875 idr_init(&pmu_idr);
7876
Paul Mackerras220b1402010-03-10 20:45:52 +11007877 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007878 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007879 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
7880 perf_pmu_register(&perf_cpu_clock, NULL, -1);
7881 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007882 perf_tp_register();
7883 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01007884 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05007885
7886 ret = init_hw_breakpoint();
7887 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02007888
7889 /* do not patch jump label more than once per second */
7890 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01007891
7892 /*
7893 * Build time assertion that we keep the data_head at the intended
7894 * location. IOW, validation we got the __reserved[] size right.
7895 */
7896 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
7897 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007898}
Peter Zijlstraabe43402010-11-17 23:17:37 +01007899
7900static int __init perf_event_sysfs_init(void)
7901{
7902 struct pmu *pmu;
7903 int ret;
7904
7905 mutex_lock(&pmus_lock);
7906
7907 ret = bus_register(&pmu_bus);
7908 if (ret)
7909 goto unlock;
7910
7911 list_for_each_entry(pmu, &pmus, entry) {
7912 if (!pmu->name || pmu->type < 0)
7913 continue;
7914
7915 ret = pmu_dev_alloc(pmu);
7916 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
7917 }
7918 pmu_bus_running = 1;
7919 ret = 0;
7920
7921unlock:
7922 mutex_unlock(&pmus_lock);
7923
7924 return ret;
7925}
7926device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007927
7928#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -04007929static struct cgroup_subsys_state *
7930perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007931{
7932 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02007933
Li Zefan1b15d052011-03-03 14:26:06 +08007934 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007935 if (!jc)
7936 return ERR_PTR(-ENOMEM);
7937
Stephane Eraniane5d13672011-02-14 11:20:01 +02007938 jc->info = alloc_percpu(struct perf_cgroup_info);
7939 if (!jc->info) {
7940 kfree(jc);
7941 return ERR_PTR(-ENOMEM);
7942 }
7943
Stephane Eraniane5d13672011-02-14 11:20:01 +02007944 return &jc->css;
7945}
7946
Tejun Heoeb954192013-08-08 20:11:23 -04007947static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007948{
Tejun Heoeb954192013-08-08 20:11:23 -04007949 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
7950
Stephane Eraniane5d13672011-02-14 11:20:01 +02007951 free_percpu(jc->info);
7952 kfree(jc);
7953}
7954
7955static int __perf_cgroup_move(void *info)
7956{
7957 struct task_struct *task = info;
7958 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
7959 return 0;
7960}
7961
Tejun Heoeb954192013-08-08 20:11:23 -04007962static void perf_cgroup_attach(struct cgroup_subsys_state *css,
7963 struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007964{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007965 struct task_struct *task;
7966
Tejun Heod99c8722013-08-08 20:11:27 -04007967 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08007968 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007969}
7970
Tejun Heoeb954192013-08-08 20:11:23 -04007971static void perf_cgroup_exit(struct cgroup_subsys_state *css,
7972 struct cgroup_subsys_state *old_css,
Li Zefan761b3ef2012-01-31 13:47:36 +08007973 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007974{
7975 /*
7976 * cgroup_exit() is called in the copy_process() failure path.
7977 * Ignore this case since the task hasn't ran yet, this avoids
7978 * trying to poke a half freed task state from generic code.
7979 */
7980 if (!(task->flags & PF_EXITING))
7981 return;
7982
Tejun Heobb9d97b2011-12-12 18:12:21 -08007983 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007984}
7985
7986struct cgroup_subsys perf_subsys = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +02007987 .name = "perf_event",
7988 .subsys_id = perf_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08007989 .css_alloc = perf_cgroup_css_alloc,
7990 .css_free = perf_cgroup_css_free,
Ingo Molnare7e7ee22011-05-04 08:42:29 +02007991 .exit = perf_cgroup_exit,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007992 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +02007993};
7994#endif /* CONFIG_CGROUP_PERF */