blob: e0dcced282e4f67ace8923ff5a57e56c003e3b3c [file] [log] [blame]
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001/*
Ingo Molnar57c0c152009-09-21 12:20:38 +02002 * Performance events core code:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003 *
4 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
Ingo Molnare7e7ee22011-05-04 08:42:29 +02005 * Copyright (C) 2008-2011 Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Al Virod36b6912011-12-29 17:09:01 -05007 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008 *
Ingo Molnar57c0c152009-09-21 12:20:38 +02009 * For licensing details see kernel-base/COPYING
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010 */
11
12#include <linux/fs.h>
13#include <linux/mm.h>
14#include <linux/cpu.h>
15#include <linux/smp.h>
Peter Zijlstra2e80a822010-11-17 23:17:36 +010016#include <linux/idr.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020017#include <linux/file.h>
18#include <linux/poll.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020020#include <linux/hash.h>
Frederic Weisbecker12351ef2013-04-20 15:48:22 +020021#include <linux/tick.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020022#include <linux/sysfs.h>
23#include <linux/dcache.h>
24#include <linux/percpu.h>
25#include <linux/ptrace.h>
Peter Zijlstrac2774432010-12-08 15:29:02 +010026#include <linux/reboot.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020027#include <linux/vmstat.h>
Peter Zijlstraabe43402010-11-17 23:17:37 +010028#include <linux/device.h>
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -040029#include <linux/export.h>
Peter Zijlstra906010b2009-09-21 16:08:49 +020030#include <linux/vmalloc.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020031#include <linux/hardirq.h>
32#include <linux/rculist.h>
33#include <linux/uaccess.h>
34#include <linux/syscalls.h>
35#include <linux/anon_inodes.h>
36#include <linux/kernel_stat.h>
37#include <linux/perf_event.h>
Li Zefan6fb29152009-10-15 11:21:42 +080038#include <linux/ftrace_event.h>
Jason Wessel3c502e72010-11-04 17:33:01 -050039#include <linux/hw_breakpoint.h>
Jiri Olsac5ebced2012-08-07 15:20:40 +020040#include <linux/mm_types.h>
Li Zefan877c6852013-03-05 11:38:08 +080041#include <linux/cgroup.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020042
Frederic Weisbecker76369132011-05-19 19:55:04 +020043#include "internal.h"
44
Ingo Molnarcdd6c482009-09-21 12:02:48 +020045#include <asm/irq_regs.h>
46
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010047struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020048 struct task_struct *p;
49 int (*func)(void *info);
50 void *info;
51 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010052};
53
54static void remote_function(void *data)
55{
56 struct remote_function_call *tfc = data;
57 struct task_struct *p = tfc->p;
58
59 if (p) {
60 tfc->ret = -EAGAIN;
61 if (task_cpu(p) != smp_processor_id() || !task_curr(p))
62 return;
63 }
64
65 tfc->ret = tfc->func(tfc->info);
66}
67
68/**
69 * task_function_call - call a function on the cpu on which a task runs
70 * @p: the task to evaluate
71 * @func: the function to be called
72 * @info: the function call argument
73 *
74 * Calls the function @func when the task is currently running. This might
75 * be on the current CPU, which just calls the function directly
76 *
77 * returns: @func return value, or
78 * -ESRCH - when the process isn't running
79 * -EAGAIN - when the process moved away
80 */
81static int
82task_function_call(struct task_struct *p, int (*func) (void *info), void *info)
83{
84 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020085 .p = p,
86 .func = func,
87 .info = info,
88 .ret = -ESRCH, /* No such (running) process */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010089 };
90
91 if (task_curr(p))
92 smp_call_function_single(task_cpu(p), remote_function, &data, 1);
93
94 return data.ret;
95}
96
97/**
98 * cpu_function_call - call a function on the cpu
99 * @func: the function to be called
100 * @info: the function call argument
101 *
102 * Calls the function @func on the remote cpu.
103 *
104 * returns: @func return value or -ENXIO when the cpu is offline
105 */
106static int cpu_function_call(int cpu, int (*func) (void *info), void *info)
107{
108 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200109 .p = NULL,
110 .func = func,
111 .info = info,
112 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100113 };
114
115 smp_call_function_single(cpu, remote_function, &data, 1);
116
117 return data.ret;
118}
119
Stephane Eraniane5d13672011-02-14 11:20:01 +0200120#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
121 PERF_FLAG_FD_OUTPUT |\
122 PERF_FLAG_PID_CGROUP)
123
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100124/*
125 * branch priv levels that need permission checks
126 */
127#define PERF_SAMPLE_BRANCH_PERM_PLM \
128 (PERF_SAMPLE_BRANCH_KERNEL |\
129 PERF_SAMPLE_BRANCH_HV)
130
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200131enum event_type_t {
132 EVENT_FLEXIBLE = 0x1,
133 EVENT_PINNED = 0x2,
134 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
135};
136
Stephane Eraniane5d13672011-02-14 11:20:01 +0200137/*
138 * perf_sched_events : >0 events exist
139 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
140 */
Ingo Molnarc5905af2012-02-24 08:31:31 +0100141struct static_key_deferred perf_sched_events __read_mostly;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200142static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Stephane Eraniand010b332012-02-09 23:21:00 +0100143static DEFINE_PER_CPU(atomic_t, perf_branch_stack_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200144
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200145static atomic_t nr_mmap_events __read_mostly;
146static atomic_t nr_comm_events __read_mostly;
147static atomic_t nr_task_events __read_mostly;
148
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200149static LIST_HEAD(pmus);
150static DEFINE_MUTEX(pmus_lock);
151static struct srcu_struct pmus_srcu;
152
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200153/*
154 * perf event paranoia level:
155 * -1 - not paranoid at all
156 * 0 - disallow raw tracepoint access for unpriv
157 * 1 - disallow cpu events for unpriv
158 * 2 - disallow kernel profiling for unpriv
159 */
160int sysctl_perf_event_paranoid __read_mostly = 1;
161
Frederic Weisbecker20443382011-03-31 03:33:29 +0200162/* Minimum for 512 kiB + 1 user control page */
163int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200164
165/*
166 * max perf event sample rate
167 */
Peter Zijlstra163ec432011-02-16 11:22:34 +0100168#define DEFAULT_MAX_SAMPLE_RATE 100000
169int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
170static int max_samples_per_tick __read_mostly =
171 DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
172
173int perf_proc_update_handler(struct ctl_table *table, int write,
174 void __user *buffer, size_t *lenp,
175 loff_t *ppos)
176{
177 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
178
179 if (ret || !write)
180 return ret;
181
182 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
183
184 return 0;
185}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200186
187static atomic64_t perf_event_id;
188
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200189static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
190 enum event_type_t event_type);
191
192static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200193 enum event_type_t event_type,
194 struct task_struct *task);
195
196static void update_context_time(struct perf_event_context *ctx);
197static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200198
Peter Zijlstra10c6db12011-11-26 02:47:31 +0100199static void ring_buffer_attach(struct perf_event *event,
200 struct ring_buffer *rb);
201
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200202void __weak perf_event_print_debug(void) { }
203
Matt Fleming84c79912010-10-03 21:41:13 +0100204extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200205{
Matt Fleming84c79912010-10-03 21:41:13 +0100206 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200207}
208
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200209static inline u64 perf_clock(void)
210{
211 return local_clock();
212}
213
Stephane Eraniane5d13672011-02-14 11:20:01 +0200214static inline struct perf_cpu_context *
215__get_cpu_context(struct perf_event_context *ctx)
216{
217 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
218}
219
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200220static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
221 struct perf_event_context *ctx)
222{
223 raw_spin_lock(&cpuctx->ctx.lock);
224 if (ctx)
225 raw_spin_lock(&ctx->lock);
226}
227
228static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
229 struct perf_event_context *ctx)
230{
231 if (ctx)
232 raw_spin_unlock(&ctx->lock);
233 raw_spin_unlock(&cpuctx->ctx.lock);
234}
235
Stephane Eraniane5d13672011-02-14 11:20:01 +0200236#ifdef CONFIG_CGROUP_PERF
237
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200238/*
Li Zefan877c6852013-03-05 11:38:08 +0800239 * perf_cgroup_info keeps track of time_enabled for a cgroup.
240 * This is a per-cpu dynamically allocated data structure.
241 */
242struct perf_cgroup_info {
243 u64 time;
244 u64 timestamp;
245};
246
247struct perf_cgroup {
248 struct cgroup_subsys_state css;
Namhyung Kim86e213e2013-03-18 18:56:34 +0900249 struct perf_cgroup_info __percpu *info;
Li Zefan877c6852013-03-05 11:38:08 +0800250};
251
252/*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200253 * Must ensure cgroup is pinned (css_get) before calling
254 * this function. In other words, we cannot call this function
255 * if there is no cgroup event for the current CPU context.
256 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200257static inline struct perf_cgroup *
258perf_cgroup_from_task(struct task_struct *task)
259{
260 return container_of(task_subsys_state(task, perf_subsys_id),
261 struct perf_cgroup, css);
262}
263
264static inline bool
265perf_cgroup_match(struct perf_event *event)
266{
267 struct perf_event_context *ctx = event->ctx;
268 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
269
Tejun Heoef824fa2013-04-08 19:00:38 -0700270 /* @event doesn't care about cgroup */
271 if (!event->cgrp)
272 return true;
273
274 /* wants specific cgroup scope but @cpuctx isn't associated with any */
275 if (!cpuctx->cgrp)
276 return false;
277
278 /*
279 * Cgroup scoping is recursive. An event enabled for a cgroup is
280 * also enabled for all its descendant cgroups. If @cpuctx's
281 * cgroup is a descendant of @event's (the test covers identity
282 * case), it's a match.
283 */
284 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
285 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200286}
287
Salman Qazi9c5da092012-06-14 15:31:09 -0700288static inline bool perf_tryget_cgroup(struct perf_event *event)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200289{
Salman Qazi9c5da092012-06-14 15:31:09 -0700290 return css_tryget(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200291}
292
293static inline void perf_put_cgroup(struct perf_event *event)
294{
295 css_put(&event->cgrp->css);
296}
297
298static inline void perf_detach_cgroup(struct perf_event *event)
299{
300 perf_put_cgroup(event);
301 event->cgrp = NULL;
302}
303
304static inline int is_cgroup_event(struct perf_event *event)
305{
306 return event->cgrp != NULL;
307}
308
309static inline u64 perf_cgroup_event_time(struct perf_event *event)
310{
311 struct perf_cgroup_info *t;
312
313 t = per_cpu_ptr(event->cgrp->info, event->cpu);
314 return t->time;
315}
316
317static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
318{
319 struct perf_cgroup_info *info;
320 u64 now;
321
322 now = perf_clock();
323
324 info = this_cpu_ptr(cgrp->info);
325
326 info->time += now - info->timestamp;
327 info->timestamp = now;
328}
329
330static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
331{
332 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
333 if (cgrp_out)
334 __update_cgrp_time(cgrp_out);
335}
336
337static inline void update_cgrp_time_from_event(struct perf_event *event)
338{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200339 struct perf_cgroup *cgrp;
340
Stephane Eraniane5d13672011-02-14 11:20:01 +0200341 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200342 * ensure we access cgroup data only when needed and
343 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200344 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200345 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200346 return;
347
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200348 cgrp = perf_cgroup_from_task(current);
349 /*
350 * Do not update time when cgroup is not active
351 */
352 if (cgrp == event->cgrp)
353 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200354}
355
356static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200357perf_cgroup_set_timestamp(struct task_struct *task,
358 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200359{
360 struct perf_cgroup *cgrp;
361 struct perf_cgroup_info *info;
362
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200363 /*
364 * ctx->lock held by caller
365 * ensure we do not access cgroup data
366 * unless we have the cgroup pinned (css_get)
367 */
368 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200369 return;
370
371 cgrp = perf_cgroup_from_task(task);
372 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200373 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200374}
375
376#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
377#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
378
379/*
380 * reschedule events based on the cgroup constraint of task.
381 *
382 * mode SWOUT : schedule out everything
383 * mode SWIN : schedule in based on cgroup for next
384 */
385void perf_cgroup_switch(struct task_struct *task, int mode)
386{
387 struct perf_cpu_context *cpuctx;
388 struct pmu *pmu;
389 unsigned long flags;
390
391 /*
392 * disable interrupts to avoid geting nr_cgroup
393 * changes via __perf_event_disable(). Also
394 * avoids preemption.
395 */
396 local_irq_save(flags);
397
398 /*
399 * we reschedule only in the presence of cgroup
400 * constrained events.
401 */
402 rcu_read_lock();
403
404 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200405 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200406 if (cpuctx->unique_pmu != pmu)
407 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200408
Stephane Eraniane5d13672011-02-14 11:20:01 +0200409 /*
410 * perf_cgroup_events says at least one
411 * context on this CPU has cgroup events.
412 *
413 * ctx->nr_cgroups reports the number of cgroup
414 * events for a context.
415 */
416 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200417 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
418 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200419
420 if (mode & PERF_CGROUP_SWOUT) {
421 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
422 /*
423 * must not be done before ctxswout due
424 * to event_filter_match() in event_sched_out()
425 */
426 cpuctx->cgrp = NULL;
427 }
428
429 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200430 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200431 /*
432 * set cgrp before ctxsw in to allow
433 * event_filter_match() to not have to pass
434 * task around
Stephane Eraniane5d13672011-02-14 11:20:01 +0200435 */
436 cpuctx->cgrp = perf_cgroup_from_task(task);
437 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
438 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200439 perf_pmu_enable(cpuctx->ctx.pmu);
440 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200441 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200442 }
443
444 rcu_read_unlock();
445
446 local_irq_restore(flags);
447}
448
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200449static inline void perf_cgroup_sched_out(struct task_struct *task,
450 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200451{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200452 struct perf_cgroup *cgrp1;
453 struct perf_cgroup *cgrp2 = NULL;
454
455 /*
456 * we come here when we know perf_cgroup_events > 0
457 */
458 cgrp1 = perf_cgroup_from_task(task);
459
460 /*
461 * next is NULL when called from perf_event_enable_on_exec()
462 * that will systematically cause a cgroup_switch()
463 */
464 if (next)
465 cgrp2 = perf_cgroup_from_task(next);
466
467 /*
468 * only schedule out current cgroup events if we know
469 * that we are switching to a different cgroup. Otherwise,
470 * do no touch the cgroup events.
471 */
472 if (cgrp1 != cgrp2)
473 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200474}
475
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200476static inline void perf_cgroup_sched_in(struct task_struct *prev,
477 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200478{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200479 struct perf_cgroup *cgrp1;
480 struct perf_cgroup *cgrp2 = NULL;
481
482 /*
483 * we come here when we know perf_cgroup_events > 0
484 */
485 cgrp1 = perf_cgroup_from_task(task);
486
487 /* prev can never be NULL */
488 cgrp2 = perf_cgroup_from_task(prev);
489
490 /*
491 * only need to schedule in cgroup events if we are changing
492 * cgroup during ctxsw. Cgroup events were not scheduled
493 * out of ctxsw out if that was not the case.
494 */
495 if (cgrp1 != cgrp2)
496 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200497}
498
499static inline int perf_cgroup_connect(int fd, struct perf_event *event,
500 struct perf_event_attr *attr,
501 struct perf_event *group_leader)
502{
503 struct perf_cgroup *cgrp;
504 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400505 struct fd f = fdget(fd);
506 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200507
Al Viro2903ff02012-08-28 12:52:22 -0400508 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200509 return -EBADF;
510
Al Viro2903ff02012-08-28 12:52:22 -0400511 css = cgroup_css_from_dir(f.file, perf_subsys_id);
Li Zefan3db272c2011-03-03 14:25:37 +0800512 if (IS_ERR(css)) {
513 ret = PTR_ERR(css);
514 goto out;
515 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200516
517 cgrp = container_of(css, struct perf_cgroup, css);
518 event->cgrp = cgrp;
519
Li Zefanf75e18c2011-03-03 14:25:50 +0800520 /* must be done before we fput() the file */
Salman Qazi9c5da092012-06-14 15:31:09 -0700521 if (!perf_tryget_cgroup(event)) {
522 event->cgrp = NULL;
523 ret = -ENOENT;
524 goto out;
525 }
Li Zefanf75e18c2011-03-03 14:25:50 +0800526
Stephane Eraniane5d13672011-02-14 11:20:01 +0200527 /*
528 * all events in a group must monitor
529 * the same cgroup because a task belongs
530 * to only one perf cgroup at a time
531 */
532 if (group_leader && group_leader->cgrp != cgrp) {
533 perf_detach_cgroup(event);
534 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200535 }
Li Zefan3db272c2011-03-03 14:25:37 +0800536out:
Al Viro2903ff02012-08-28 12:52:22 -0400537 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200538 return ret;
539}
540
541static inline void
542perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
543{
544 struct perf_cgroup_info *t;
545 t = per_cpu_ptr(event->cgrp->info, event->cpu);
546 event->shadow_ctx_time = now - t->timestamp;
547}
548
549static inline void
550perf_cgroup_defer_enabled(struct perf_event *event)
551{
552 /*
553 * when the current task's perf cgroup does not match
554 * the event's, we need to remember to call the
555 * perf_mark_enable() function the first time a task with
556 * a matching perf cgroup is scheduled in.
557 */
558 if (is_cgroup_event(event) && !perf_cgroup_match(event))
559 event->cgrp_defer_enabled = 1;
560}
561
562static inline void
563perf_cgroup_mark_enabled(struct perf_event *event,
564 struct perf_event_context *ctx)
565{
566 struct perf_event *sub;
567 u64 tstamp = perf_event_time(event);
568
569 if (!event->cgrp_defer_enabled)
570 return;
571
572 event->cgrp_defer_enabled = 0;
573
574 event->tstamp_enabled = tstamp - event->total_time_enabled;
575 list_for_each_entry(sub, &event->sibling_list, group_entry) {
576 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
577 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
578 sub->cgrp_defer_enabled = 0;
579 }
580 }
581}
582#else /* !CONFIG_CGROUP_PERF */
583
584static inline bool
585perf_cgroup_match(struct perf_event *event)
586{
587 return true;
588}
589
590static inline void perf_detach_cgroup(struct perf_event *event)
591{}
592
593static inline int is_cgroup_event(struct perf_event *event)
594{
595 return 0;
596}
597
598static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
599{
600 return 0;
601}
602
603static inline void update_cgrp_time_from_event(struct perf_event *event)
604{
605}
606
607static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
608{
609}
610
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200611static inline void perf_cgroup_sched_out(struct task_struct *task,
612 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200613{
614}
615
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200616static inline void perf_cgroup_sched_in(struct task_struct *prev,
617 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200618{
619}
620
621static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
622 struct perf_event_attr *attr,
623 struct perf_event *group_leader)
624{
625 return -EINVAL;
626}
627
628static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200629perf_cgroup_set_timestamp(struct task_struct *task,
630 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200631{
632}
633
634void
635perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
636{
637}
638
639static inline void
640perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
641{
642}
643
644static inline u64 perf_cgroup_event_time(struct perf_event *event)
645{
646 return 0;
647}
648
649static inline void
650perf_cgroup_defer_enabled(struct perf_event *event)
651{
652}
653
654static inline void
655perf_cgroup_mark_enabled(struct perf_event *event,
656 struct perf_event_context *ctx)
657{
658}
659#endif
660
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200661void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200662{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200663 int *count = this_cpu_ptr(pmu->pmu_disable_count);
664 if (!(*count)++)
665 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200666}
667
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200668void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200669{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200670 int *count = this_cpu_ptr(pmu->pmu_disable_count);
671 if (!--(*count))
672 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200673}
674
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200675static DEFINE_PER_CPU(struct list_head, rotation_list);
676
677/*
678 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
679 * because they're strictly cpu affine and rotate_start is called with IRQs
680 * disabled, while rotate_context is called from IRQ context.
681 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200682static void perf_pmu_rotate_start(struct pmu *pmu)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200683{
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200684 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200685 struct list_head *head = &__get_cpu_var(rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200686
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200687 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200688
Frederic Weisbecker12351ef2013-04-20 15:48:22 +0200689 if (list_empty(&cpuctx->rotation_list)) {
690 int was_empty = list_empty(head);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200691 list_add(&cpuctx->rotation_list, head);
Frederic Weisbecker12351ef2013-04-20 15:48:22 +0200692 if (was_empty)
693 tick_nohz_full_kick();
694 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200695}
696
697static void get_ctx(struct perf_event_context *ctx)
698{
699 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
700}
701
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200702static void put_ctx(struct perf_event_context *ctx)
703{
704 if (atomic_dec_and_test(&ctx->refcount)) {
705 if (ctx->parent_ctx)
706 put_ctx(ctx->parent_ctx);
707 if (ctx->task)
708 put_task_struct(ctx->task);
Lai Jiangshancb796ff2011-03-18 12:07:41 +0800709 kfree_rcu(ctx, rcu_head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200710 }
711}
712
713static void unclone_ctx(struct perf_event_context *ctx)
714{
715 if (ctx->parent_ctx) {
716 put_ctx(ctx->parent_ctx);
717 ctx->parent_ctx = NULL;
718 }
719}
720
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200721static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
722{
723 /*
724 * only top level events have the pid namespace they were created in
725 */
726 if (event->parent)
727 event = event->parent;
728
729 return task_tgid_nr_ns(p, event->ns);
730}
731
732static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
733{
734 /*
735 * only top level events have the pid namespace they were created in
736 */
737 if (event->parent)
738 event = event->parent;
739
740 return task_pid_nr_ns(p, event->ns);
741}
742
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200743/*
744 * If we inherit events we want to return the parent event id
745 * to userspace.
746 */
747static u64 primary_event_id(struct perf_event *event)
748{
749 u64 id = event->id;
750
751 if (event->parent)
752 id = event->parent->id;
753
754 return id;
755}
756
757/*
758 * Get the perf_event_context for a task and lock it.
759 * This has to cope with with the fact that until it is locked,
760 * the context could get moved to another task.
761 */
762static struct perf_event_context *
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200763perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200764{
765 struct perf_event_context *ctx;
766
767 rcu_read_lock();
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200768retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200769 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200770 if (ctx) {
771 /*
772 * If this context is a clone of another, it might
773 * get swapped for another underneath us by
774 * perf_event_task_sched_out, though the
775 * rcu_read_lock() protects us from any context
776 * getting freed. Lock the context and check if it
777 * got swapped before we could get the lock, and retry
778 * if so. If we locked the right context, then it
779 * can't get swapped on us any more.
780 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100781 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200782 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100783 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200784 goto retry;
785 }
786
787 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100788 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200789 ctx = NULL;
790 }
791 }
792 rcu_read_unlock();
793 return ctx;
794}
795
796/*
797 * Get the context for a task and increment its pin_count so it
798 * can't get swapped to another task. This also increments its
799 * reference count so that the context can't get freed.
800 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200801static struct perf_event_context *
802perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200803{
804 struct perf_event_context *ctx;
805 unsigned long flags;
806
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200807 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200808 if (ctx) {
809 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100810 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200811 }
812 return ctx;
813}
814
815static void perf_unpin_context(struct perf_event_context *ctx)
816{
817 unsigned long flags;
818
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100819 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200820 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100821 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200822}
823
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100824/*
825 * Update the record of the current time in a context.
826 */
827static void update_context_time(struct perf_event_context *ctx)
828{
829 u64 now = perf_clock();
830
831 ctx->time += now - ctx->timestamp;
832 ctx->timestamp = now;
833}
834
Stephane Eranian41587552011-01-03 18:20:01 +0200835static u64 perf_event_time(struct perf_event *event)
836{
837 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200838
839 if (is_cgroup_event(event))
840 return perf_cgroup_event_time(event);
841
Stephane Eranian41587552011-01-03 18:20:01 +0200842 return ctx ? ctx->time : 0;
843}
844
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100845/*
846 * Update the total_time_enabled and total_time_running fields for a event.
Eric B Munsonb7526f02011-06-23 16:34:37 -0400847 * The caller of this function needs to hold the ctx->lock.
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100848 */
849static void update_event_times(struct perf_event *event)
850{
851 struct perf_event_context *ctx = event->ctx;
852 u64 run_end;
853
854 if (event->state < PERF_EVENT_STATE_INACTIVE ||
855 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
856 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200857 /*
858 * in cgroup mode, time_enabled represents
859 * the time the event was enabled AND active
860 * tasks were in the monitored cgroup. This is
861 * independent of the activity of the context as
862 * there may be a mix of cgroup and non-cgroup events.
863 *
864 * That is why we treat cgroup events differently
865 * here.
866 */
867 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +0900868 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200869 else if (ctx->is_active)
870 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +0100871 else
872 run_end = event->tstamp_stopped;
873
874 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100875
876 if (event->state == PERF_EVENT_STATE_INACTIVE)
877 run_end = event->tstamp_stopped;
878 else
Stephane Eranian41587552011-01-03 18:20:01 +0200879 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100880
881 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200882
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100883}
884
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200885/*
886 * Update total_time_enabled and total_time_running for all events in a group.
887 */
888static void update_group_times(struct perf_event *leader)
889{
890 struct perf_event *event;
891
892 update_event_times(leader);
893 list_for_each_entry(event, &leader->sibling_list, group_entry)
894 update_event_times(event);
895}
896
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100897static struct list_head *
898ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
899{
900 if (event->attr.pinned)
901 return &ctx->pinned_groups;
902 else
903 return &ctx->flexible_groups;
904}
905
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200906/*
907 * Add a event from the lists for its context.
908 * Must be called with ctx->mutex and ctx->lock held.
909 */
910static void
911list_add_event(struct perf_event *event, struct perf_event_context *ctx)
912{
Peter Zijlstra8a495422010-05-27 15:47:49 +0200913 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
914 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200915
916 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +0200917 * If we're a stand alone event or group leader, we go to the context
918 * list, group events are kept attached to the group so that
919 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200920 */
Peter Zijlstra8a495422010-05-27 15:47:49 +0200921 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100922 struct list_head *list;
923
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100924 if (is_software_event(event))
925 event->group_flags |= PERF_GROUP_SOFTWARE;
926
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100927 list = ctx_group_list(event, ctx);
928 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200929 }
930
Peter Zijlstra08309372011-03-03 11:31:20 +0100931 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200932 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200933
Stephane Eraniand010b332012-02-09 23:21:00 +0100934 if (has_branch_stack(event))
935 ctx->nr_branch_stack++;
936
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200937 list_add_rcu(&event->event_entry, &ctx->event_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200938 if (!ctx->nr_events)
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200939 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200940 ctx->nr_events++;
941 if (event->attr.inherit_stat)
942 ctx->nr_stat++;
943}
944
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200945/*
Jiri Olsa0231bb52013-02-01 11:23:45 +0100946 * Initialize event state based on the perf_event_attr::disabled.
947 */
948static inline void perf_event__state_init(struct perf_event *event)
949{
950 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
951 PERF_EVENT_STATE_INACTIVE;
952}
953
954/*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200955 * Called at perf_event creation and when events are attached/detached from a
956 * group.
957 */
958static void perf_event__read_size(struct perf_event *event)
959{
960 int entry = sizeof(u64); /* value */
961 int size = 0;
962 int nr = 1;
963
964 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
965 size += sizeof(u64);
966
967 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
968 size += sizeof(u64);
969
970 if (event->attr.read_format & PERF_FORMAT_ID)
971 entry += sizeof(u64);
972
973 if (event->attr.read_format & PERF_FORMAT_GROUP) {
974 nr += event->group_leader->nr_siblings;
975 size += sizeof(u64);
976 }
977
978 size += entry * nr;
979 event->read_size = size;
980}
981
982static void perf_event__header_size(struct perf_event *event)
983{
984 struct perf_sample_data *data;
985 u64 sample_type = event->attr.sample_type;
986 u16 size = 0;
987
988 perf_event__read_size(event);
989
990 if (sample_type & PERF_SAMPLE_IP)
991 size += sizeof(data->ip);
992
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200993 if (sample_type & PERF_SAMPLE_ADDR)
994 size += sizeof(data->addr);
995
996 if (sample_type & PERF_SAMPLE_PERIOD)
997 size += sizeof(data->period);
998
Andi Kleenc3feedf2013-01-24 16:10:28 +0100999 if (sample_type & PERF_SAMPLE_WEIGHT)
1000 size += sizeof(data->weight);
1001
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001002 if (sample_type & PERF_SAMPLE_READ)
1003 size += event->read_size;
1004
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001005 if (sample_type & PERF_SAMPLE_DATA_SRC)
1006 size += sizeof(data->data_src.val);
1007
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001008 event->header_size = size;
1009}
1010
1011static void perf_event__id_header_size(struct perf_event *event)
1012{
1013 struct perf_sample_data *data;
1014 u64 sample_type = event->attr.sample_type;
1015 u16 size = 0;
1016
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001017 if (sample_type & PERF_SAMPLE_TID)
1018 size += sizeof(data->tid_entry);
1019
1020 if (sample_type & PERF_SAMPLE_TIME)
1021 size += sizeof(data->time);
1022
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001023 if (sample_type & PERF_SAMPLE_ID)
1024 size += sizeof(data->id);
1025
1026 if (sample_type & PERF_SAMPLE_STREAM_ID)
1027 size += sizeof(data->stream_id);
1028
1029 if (sample_type & PERF_SAMPLE_CPU)
1030 size += sizeof(data->cpu_entry);
1031
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001032 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001033}
1034
Peter Zijlstra8a495422010-05-27 15:47:49 +02001035static void perf_group_attach(struct perf_event *event)
1036{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001037 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001038
Peter Zijlstra74c33372010-10-15 11:40:29 +02001039 /*
1040 * We can have double attach due to group movement in perf_event_open.
1041 */
1042 if (event->attach_state & PERF_ATTACH_GROUP)
1043 return;
1044
Peter Zijlstra8a495422010-05-27 15:47:49 +02001045 event->attach_state |= PERF_ATTACH_GROUP;
1046
1047 if (group_leader == event)
1048 return;
1049
1050 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1051 !is_software_event(event))
1052 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1053
1054 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1055 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001056
1057 perf_event__header_size(group_leader);
1058
1059 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1060 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001061}
1062
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001063/*
1064 * Remove a event from the lists for its context.
1065 * Must be called with ctx->mutex and ctx->lock held.
1066 */
1067static void
1068list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1069{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001070 struct perf_cpu_context *cpuctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001071 /*
1072 * We can have double detach due to exit/hot-unplug + close.
1073 */
1074 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001075 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001076
1077 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1078
Stephane Eranian68cacd22011-03-23 16:03:06 +01001079 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001080 ctx->nr_cgroups--;
Stephane Eranian68cacd22011-03-23 16:03:06 +01001081 cpuctx = __get_cpu_context(ctx);
1082 /*
1083 * if there are no more cgroup events
1084 * then cler cgrp to avoid stale pointer
1085 * in update_cgrp_time_from_cpuctx()
1086 */
1087 if (!ctx->nr_cgroups)
1088 cpuctx->cgrp = NULL;
1089 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001090
Stephane Eraniand010b332012-02-09 23:21:00 +01001091 if (has_branch_stack(event))
1092 ctx->nr_branch_stack--;
1093
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001094 ctx->nr_events--;
1095 if (event->attr.inherit_stat)
1096 ctx->nr_stat--;
1097
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001098 list_del_rcu(&event->event_entry);
1099
Peter Zijlstra8a495422010-05-27 15:47:49 +02001100 if (event->group_leader == event)
1101 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001102
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001103 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001104
1105 /*
1106 * If event was in error state, then keep it
1107 * that way, otherwise bogus counts will be
1108 * returned on read(). The only way to get out
1109 * of error state is by explicit re-enabling
1110 * of the event
1111 */
1112 if (event->state > PERF_EVENT_STATE_OFF)
1113 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001114}
1115
Peter Zijlstra8a495422010-05-27 15:47:49 +02001116static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001117{
1118 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001119 struct list_head *list = NULL;
1120
1121 /*
1122 * We can have double detach due to exit/hot-unplug + close.
1123 */
1124 if (!(event->attach_state & PERF_ATTACH_GROUP))
1125 return;
1126
1127 event->attach_state &= ~PERF_ATTACH_GROUP;
1128
1129 /*
1130 * If this is a sibling, remove it from its group.
1131 */
1132 if (event->group_leader != event) {
1133 list_del_init(&event->group_entry);
1134 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001135 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001136 }
1137
1138 if (!list_empty(&event->group_entry))
1139 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001140
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001141 /*
1142 * If this was a group event with sibling events then
1143 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001144 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001145 */
1146 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001147 if (list)
1148 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001149 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001150
1151 /* Inherit group flags from the previous leader */
1152 sibling->group_flags = event->group_flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001153 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001154
1155out:
1156 perf_event__header_size(event->group_leader);
1157
1158 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1159 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001160}
1161
Stephane Eranianfa66f072010-08-26 16:40:01 +02001162static inline int
1163event_filter_match(struct perf_event *event)
1164{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001165 return (event->cpu == -1 || event->cpu == smp_processor_id())
1166 && perf_cgroup_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001167}
1168
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001169static void
1170event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001171 struct perf_cpu_context *cpuctx,
1172 struct perf_event_context *ctx)
1173{
Stephane Eranian41587552011-01-03 18:20:01 +02001174 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001175 u64 delta;
1176 /*
1177 * An event which could not be activated because of
1178 * filter mismatch still needs to have its timings
1179 * maintained, otherwise bogus information is return
1180 * via read() for time_enabled, time_running:
1181 */
1182 if (event->state == PERF_EVENT_STATE_INACTIVE
1183 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001184 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001185 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001186 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001187 }
1188
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001189 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001190 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001191
1192 event->state = PERF_EVENT_STATE_INACTIVE;
1193 if (event->pending_disable) {
1194 event->pending_disable = 0;
1195 event->state = PERF_EVENT_STATE_OFF;
1196 }
Stephane Eranian41587552011-01-03 18:20:01 +02001197 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001198 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001199 event->oncpu = -1;
1200
1201 if (!is_software_event(event))
1202 cpuctx->active_oncpu--;
1203 ctx->nr_active--;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001204 if (event->attr.freq && event->attr.sample_freq)
1205 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001206 if (event->attr.exclusive || !cpuctx->active_oncpu)
1207 cpuctx->exclusive = 0;
1208}
1209
1210static void
1211group_sched_out(struct perf_event *group_event,
1212 struct perf_cpu_context *cpuctx,
1213 struct perf_event_context *ctx)
1214{
1215 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001216 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001217
1218 event_sched_out(group_event, cpuctx, ctx);
1219
1220 /*
1221 * Schedule out siblings (if any):
1222 */
1223 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1224 event_sched_out(event, cpuctx, ctx);
1225
Stephane Eranianfa66f072010-08-26 16:40:01 +02001226 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001227 cpuctx->exclusive = 0;
1228}
1229
1230/*
1231 * Cross CPU call to remove a performance event
1232 *
1233 * We disable the event on the hardware level first. After that we
1234 * remove it from the context list.
1235 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001236static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001237{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001238 struct perf_event *event = info;
1239 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001240 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001241
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001242 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001243 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001244 list_del_event(event, ctx);
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001245 if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1246 ctx->is_active = 0;
1247 cpuctx->task_ctx = NULL;
1248 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001249 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001250
1251 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001252}
1253
1254
1255/*
1256 * Remove the event from a task's (or a CPU's) list of events.
1257 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001258 * CPU events are removed with a smp call. For task events we only
1259 * call when the task is on a CPU.
1260 *
1261 * If event->ctx is a cloned context, callers must make sure that
1262 * every task struct that event->ctx->task could possibly point to
1263 * remains valid. This is OK when called from perf_release since
1264 * that only calls us on the top-level context, which can't be a clone.
1265 * When called from perf_event_exit_task, it's OK because the
1266 * context has been detached from its task.
1267 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001268static void perf_remove_from_context(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001269{
1270 struct perf_event_context *ctx = event->ctx;
1271 struct task_struct *task = ctx->task;
1272
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001273 lockdep_assert_held(&ctx->mutex);
1274
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001275 if (!task) {
1276 /*
1277 * Per cpu events are removed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001278 * the removal is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001279 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001280 cpu_function_call(event->cpu, __perf_remove_from_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001281 return;
1282 }
1283
1284retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001285 if (!task_function_call(task, __perf_remove_from_context, event))
1286 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001287
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001288 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001289 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001290 * If we failed to find a running task, but find the context active now
1291 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001292 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001293 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001294 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001295 goto retry;
1296 }
1297
1298 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001299 * Since the task isn't running, its safe to remove the event, us
1300 * holding the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001301 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001302 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001303 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001304}
1305
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001306/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001307 * Cross CPU call to disable a performance event
1308 */
K.Prasad500ad2d2012-08-02 13:46:35 +05301309int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001310{
1311 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001312 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001313 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001314
1315 /*
1316 * If this is a per-task event, need to check whether this
1317 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001318 *
1319 * Can trigger due to concurrent perf_event_context_sched_out()
1320 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001321 */
1322 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001323 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001324
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001325 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001326
1327 /*
1328 * If the event is on, turn it off.
1329 * If it is in error state, leave it in error state.
1330 */
1331 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1332 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001333 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001334 update_group_times(event);
1335 if (event == event->group_leader)
1336 group_sched_out(event, cpuctx, ctx);
1337 else
1338 event_sched_out(event, cpuctx, ctx);
1339 event->state = PERF_EVENT_STATE_OFF;
1340 }
1341
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001342 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001343
1344 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001345}
1346
1347/*
1348 * Disable a event.
1349 *
1350 * If event->ctx is a cloned context, callers must make sure that
1351 * every task struct that event->ctx->task could possibly point to
1352 * remains valid. This condition is satisifed when called through
1353 * perf_event_for_each_child or perf_event_for_each because they
1354 * hold the top-level event's child_mutex, so any descendant that
1355 * goes to exit will block in sync_child_event.
1356 * When called from perf_pending_event it's OK because event->ctx
1357 * is the current context on this CPU and preemption is disabled,
1358 * hence we can't get into perf_event_task_sched_out for this context.
1359 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001360void perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001361{
1362 struct perf_event_context *ctx = event->ctx;
1363 struct task_struct *task = ctx->task;
1364
1365 if (!task) {
1366 /*
1367 * Disable the event on the cpu that it's on
1368 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001369 cpu_function_call(event->cpu, __perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001370 return;
1371 }
1372
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001373retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001374 if (!task_function_call(task, __perf_event_disable, event))
1375 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001376
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001377 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001378 /*
1379 * If the event is still active, we need to retry the cross-call.
1380 */
1381 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001382 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001383 /*
1384 * Reload the task pointer, it might have been changed by
1385 * a concurrent perf_event_context_sched_out().
1386 */
1387 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001388 goto retry;
1389 }
1390
1391 /*
1392 * Since we have the lock this context can't be scheduled
1393 * in, so we can change the state safely.
1394 */
1395 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1396 update_group_times(event);
1397 event->state = PERF_EVENT_STATE_OFF;
1398 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001399 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001400}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001401EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001402
Stephane Eraniane5d13672011-02-14 11:20:01 +02001403static void perf_set_shadow_time(struct perf_event *event,
1404 struct perf_event_context *ctx,
1405 u64 tstamp)
1406{
1407 /*
1408 * use the correct time source for the time snapshot
1409 *
1410 * We could get by without this by leveraging the
1411 * fact that to get to this function, the caller
1412 * has most likely already called update_context_time()
1413 * and update_cgrp_time_xx() and thus both timestamp
1414 * are identical (or very close). Given that tstamp is,
1415 * already adjusted for cgroup, we could say that:
1416 * tstamp - ctx->timestamp
1417 * is equivalent to
1418 * tstamp - cgrp->timestamp.
1419 *
1420 * Then, in perf_output_read(), the calculation would
1421 * work with no changes because:
1422 * - event is guaranteed scheduled in
1423 * - no scheduled out in between
1424 * - thus the timestamp would be the same
1425 *
1426 * But this is a bit hairy.
1427 *
1428 * So instead, we have an explicit cgroup call to remain
1429 * within the time time source all along. We believe it
1430 * is cleaner and simpler to understand.
1431 */
1432 if (is_cgroup_event(event))
1433 perf_cgroup_set_shadow_time(event, tstamp);
1434 else
1435 event->shadow_ctx_time = tstamp - ctx->timestamp;
1436}
1437
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001438#define MAX_INTERRUPTS (~0ULL)
1439
1440static void perf_log_throttle(struct perf_event *event, int enable);
1441
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001442static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001443event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001444 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001445 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001446{
Stephane Eranian41587552011-01-03 18:20:01 +02001447 u64 tstamp = perf_event_time(event);
1448
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001449 if (event->state <= PERF_EVENT_STATE_OFF)
1450 return 0;
1451
1452 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001453 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001454
1455 /*
1456 * Unthrottle events, since we scheduled we might have missed several
1457 * ticks already, also for a heavily scheduling task there is little
1458 * guarantee it'll get a tick in a timely manner.
1459 */
1460 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1461 perf_log_throttle(event, 1);
1462 event->hw.interrupts = 0;
1463 }
1464
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001465 /*
1466 * The new state must be visible before we turn it on in the hardware:
1467 */
1468 smp_wmb();
1469
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001470 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001471 event->state = PERF_EVENT_STATE_INACTIVE;
1472 event->oncpu = -1;
1473 return -EAGAIN;
1474 }
1475
Stephane Eranian41587552011-01-03 18:20:01 +02001476 event->tstamp_running += tstamp - event->tstamp_stopped;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001477
Stephane Eraniane5d13672011-02-14 11:20:01 +02001478 perf_set_shadow_time(event, ctx, tstamp);
Stephane Eranianeed01522010-10-26 16:08:01 +02001479
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001480 if (!is_software_event(event))
1481 cpuctx->active_oncpu++;
1482 ctx->nr_active++;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001483 if (event->attr.freq && event->attr.sample_freq)
1484 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001485
1486 if (event->attr.exclusive)
1487 cpuctx->exclusive = 1;
1488
1489 return 0;
1490}
1491
1492static int
1493group_sched_in(struct perf_event *group_event,
1494 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001495 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001496{
Lin Ming6bde9b62010-04-23 13:56:00 +08001497 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001498 struct pmu *pmu = group_event->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001499 u64 now = ctx->time;
1500 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001501
1502 if (group_event->state == PERF_EVENT_STATE_OFF)
1503 return 0;
1504
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001505 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +08001506
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001507 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001508 pmu->cancel_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001509 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001510 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001511
1512 /*
1513 * Schedule in siblings as one group (if any):
1514 */
1515 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001516 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001517 partial_group = event;
1518 goto group_error;
1519 }
1520 }
1521
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001522 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001523 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001524
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001525group_error:
1526 /*
1527 * Groups can be scheduled in as one unit only, so undo any
1528 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001529 * The events up to the failed event are scheduled out normally,
1530 * tstamp_stopped will be updated.
1531 *
1532 * The failed events and the remaining siblings need to have
1533 * their timings updated as if they had gone thru event_sched_in()
1534 * and event_sched_out(). This is required to get consistent timings
1535 * across the group. This also takes care of the case where the group
1536 * could never be scheduled by ensuring tstamp_stopped is set to mark
1537 * the time the event was actually stopped, such that time delta
1538 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001539 */
1540 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1541 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001542 simulate = true;
1543
1544 if (simulate) {
1545 event->tstamp_running += now - event->tstamp_stopped;
1546 event->tstamp_stopped = now;
1547 } else {
1548 event_sched_out(event, cpuctx, ctx);
1549 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001550 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001551 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001552
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001553 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02001554
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001555 return -EAGAIN;
1556}
1557
1558/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001559 * Work out whether we can put this event group on the CPU now.
1560 */
1561static int group_can_go_on(struct perf_event *event,
1562 struct perf_cpu_context *cpuctx,
1563 int can_add_hw)
1564{
1565 /*
1566 * Groups consisting entirely of software events can always go on.
1567 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001568 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001569 return 1;
1570 /*
1571 * If an exclusive group is already on, no other hardware
1572 * events can go on.
1573 */
1574 if (cpuctx->exclusive)
1575 return 0;
1576 /*
1577 * If this group is exclusive and there are already
1578 * events on the CPU, it can't go on.
1579 */
1580 if (event->attr.exclusive && cpuctx->active_oncpu)
1581 return 0;
1582 /*
1583 * Otherwise, try to add it if all previous groups were able
1584 * to go on.
1585 */
1586 return can_add_hw;
1587}
1588
1589static void add_event_to_ctx(struct perf_event *event,
1590 struct perf_event_context *ctx)
1591{
Stephane Eranian41587552011-01-03 18:20:01 +02001592 u64 tstamp = perf_event_time(event);
1593
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001594 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001595 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02001596 event->tstamp_enabled = tstamp;
1597 event->tstamp_running = tstamp;
1598 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001599}
1600
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001601static void task_ctx_sched_out(struct perf_event_context *ctx);
1602static void
1603ctx_sched_in(struct perf_event_context *ctx,
1604 struct perf_cpu_context *cpuctx,
1605 enum event_type_t event_type,
1606 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001607
Peter Zijlstradce58552011-04-09 21:17:46 +02001608static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
1609 struct perf_event_context *ctx,
1610 struct task_struct *task)
1611{
1612 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
1613 if (ctx)
1614 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
1615 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
1616 if (ctx)
1617 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
1618}
1619
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001620/*
1621 * Cross CPU call to install and enable a performance event
1622 *
1623 * Must be called with ctx->mutex held
1624 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001625static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001626{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001627 struct perf_event *event = info;
1628 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001629 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001630 struct perf_event_context *task_ctx = cpuctx->task_ctx;
1631 struct task_struct *task = current;
1632
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001633 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001634 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001635
1636 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001637 * If there was an active task_ctx schedule it out.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001638 */
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001639 if (task_ctx)
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001640 task_ctx_sched_out(task_ctx);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001641
1642 /*
1643 * If the context we're installing events in is not the
1644 * active task_ctx, flip them.
1645 */
1646 if (ctx->task && task_ctx != ctx) {
1647 if (task_ctx)
1648 raw_spin_unlock(&task_ctx->lock);
1649 raw_spin_lock(&ctx->lock);
1650 task_ctx = ctx;
1651 }
1652
1653 if (task_ctx) {
1654 cpuctx->task_ctx = task_ctx;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001655 task = task_ctx->task;
1656 }
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001657
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001658 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001659
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001660 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001661 /*
1662 * update cgrp time only if current cgrp
1663 * matches event->cgrp. Must be done before
1664 * calling add_event_to_ctx()
1665 */
1666 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001667
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001668 add_event_to_ctx(event, ctx);
1669
1670 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001671 * Schedule everything back in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001672 */
Peter Zijlstradce58552011-04-09 21:17:46 +02001673 perf_event_sched_in(cpuctx, task_ctx, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001674
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001675 perf_pmu_enable(cpuctx->ctx.pmu);
1676 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001677
1678 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001679}
1680
1681/*
1682 * Attach a performance event to a context
1683 *
1684 * First we add the event to the list with the hardware enable bit
1685 * in event->hw_config cleared.
1686 *
1687 * If the event is attached to a task which is on a CPU we use a smp
1688 * call to enable it in the task context. The task might have been
1689 * scheduled away, but we check this in the smp call again.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001690 */
1691static void
1692perf_install_in_context(struct perf_event_context *ctx,
1693 struct perf_event *event,
1694 int cpu)
1695{
1696 struct task_struct *task = ctx->task;
1697
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001698 lockdep_assert_held(&ctx->mutex);
1699
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001700 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08001701 if (event->cpu != -1)
1702 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001703
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001704 if (!task) {
1705 /*
1706 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001707 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001708 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001709 cpu_function_call(cpu, __perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001710 return;
1711 }
1712
1713retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001714 if (!task_function_call(task, __perf_install_in_context, event))
1715 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001716
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001717 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001718 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001719 * If we failed to find a running task, but find the context active now
1720 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001721 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001722 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001723 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001724 goto retry;
1725 }
1726
1727 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001728 * Since the task isn't running, its safe to add the event, us holding
1729 * the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001730 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001731 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001732 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001733}
1734
1735/*
1736 * Put a event into inactive state and update time fields.
1737 * Enabling the leader of a group effectively enables all
1738 * the group members that aren't explicitly disabled, so we
1739 * have to update their ->tstamp_enabled also.
1740 * Note: this works for group members as well as group leaders
1741 * since the non-leader members' sibling_lists will be empty.
1742 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001743static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001744{
1745 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02001746 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001747
1748 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02001749 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001750 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02001751 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
1752 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001753 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001754}
1755
1756/*
1757 * Cross CPU call to enable a performance event
1758 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001759static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001760{
1761 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001762 struct perf_event_context *ctx = event->ctx;
1763 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001764 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001765 int err;
1766
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001767 if (WARN_ON_ONCE(!ctx->is_active))
1768 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001769
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001770 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001771 update_context_time(ctx);
1772
1773 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1774 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001775
1776 /*
1777 * set current task's cgroup time reference point
1778 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001779 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001780
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001781 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001782
Stephane Eraniane5d13672011-02-14 11:20:01 +02001783 if (!event_filter_match(event)) {
1784 if (is_cgroup_event(event))
1785 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001786 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001787 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001788
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001789 /*
1790 * If the event is in a group and isn't the group leader,
1791 * then don't put it on unless the group is on.
1792 */
1793 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
1794 goto unlock;
1795
1796 if (!group_can_go_on(event, cpuctx, 1)) {
1797 err = -EEXIST;
1798 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001799 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001800 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001801 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01001802 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001803 }
1804
1805 if (err) {
1806 /*
1807 * If this event can't go on and it's part of a
1808 * group, then the whole group has to come off.
1809 */
1810 if (leader != event)
1811 group_sched_out(leader, cpuctx, ctx);
1812 if (leader->attr.pinned) {
1813 update_group_times(leader);
1814 leader->state = PERF_EVENT_STATE_ERROR;
1815 }
1816 }
1817
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001818unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001819 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001820
1821 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001822}
1823
1824/*
1825 * Enable a event.
1826 *
1827 * If event->ctx is a cloned context, callers must make sure that
1828 * every task struct that event->ctx->task could possibly point to
1829 * remains valid. This condition is satisfied when called through
1830 * perf_event_for_each_child or perf_event_for_each as described
1831 * for perf_event_disable.
1832 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001833void perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001834{
1835 struct perf_event_context *ctx = event->ctx;
1836 struct task_struct *task = ctx->task;
1837
1838 if (!task) {
1839 /*
1840 * Enable the event on the cpu that it's on
1841 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001842 cpu_function_call(event->cpu, __perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001843 return;
1844 }
1845
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001846 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001847 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1848 goto out;
1849
1850 /*
1851 * If the event is in error state, clear that first.
1852 * That way, if we see the event in error state below, we
1853 * know that it has gone back into error state, as distinct
1854 * from the task having been scheduled away before the
1855 * cross-call arrived.
1856 */
1857 if (event->state == PERF_EVENT_STATE_ERROR)
1858 event->state = PERF_EVENT_STATE_OFF;
1859
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001860retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001861 if (!ctx->is_active) {
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001862 __perf_event_mark_enabled(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001863 goto out;
1864 }
1865
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001866 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001867
1868 if (!task_function_call(task, __perf_event_enable, event))
1869 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001870
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001871 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001872
1873 /*
1874 * If the context is active and the event is still off,
1875 * we need to retry the cross-call.
1876 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001877 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
1878 /*
1879 * task could have been flipped by a concurrent
1880 * perf_event_context_sched_out()
1881 */
1882 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001883 goto retry;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001884 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001885
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001886out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001887 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001888}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001889EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001890
Avi Kivity26ca5c12011-06-29 18:42:37 +03001891int perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001892{
1893 /*
1894 * not supported on inherited events
1895 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01001896 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001897 return -EINVAL;
1898
1899 atomic_add(refresh, &event->event_limit);
1900 perf_event_enable(event);
1901
1902 return 0;
1903}
Avi Kivity26ca5c12011-06-29 18:42:37 +03001904EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001905
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001906static void ctx_sched_out(struct perf_event_context *ctx,
1907 struct perf_cpu_context *cpuctx,
1908 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001909{
1910 struct perf_event *event;
Peter Zijlstradb24d332011-04-09 21:17:45 +02001911 int is_active = ctx->is_active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001912
Peter Zijlstradb24d332011-04-09 21:17:45 +02001913 ctx->is_active &= ~event_type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001914 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02001915 return;
1916
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001917 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001918 update_cgrp_time_from_cpuctx(cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001919 if (!ctx->nr_active)
Peter Zijlstrafacc4302011-04-09 21:17:42 +02001920 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001921
Peter Zijlstra075e0b02011-04-09 21:17:40 +02001922 perf_pmu_disable(ctx->pmu);
Peter Zijlstradb24d332011-04-09 21:17:45 +02001923 if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001924 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
1925 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001926 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001927
Peter Zijlstradb24d332011-04-09 21:17:45 +02001928 if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001929 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08001930 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001931 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001932 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001933}
1934
1935/*
1936 * Test whether two contexts are equivalent, i.e. whether they
1937 * have both been cloned from the same version of the same context
1938 * and they both have the same number of enabled events.
1939 * If the number of enabled events is the same, then the set
1940 * of enabled events should be the same, because these are both
1941 * inherited contexts, therefore we can't access individual events
1942 * in them directly with an fd; we can only enable/disable all
1943 * events via prctl, or enable/disable all events in a family
1944 * via ioctl, which will have the same effect on both contexts.
1945 */
1946static int context_equiv(struct perf_event_context *ctx1,
1947 struct perf_event_context *ctx2)
1948{
1949 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
1950 && ctx1->parent_gen == ctx2->parent_gen
1951 && !ctx1->pin_count && !ctx2->pin_count;
1952}
1953
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001954static void __perf_event_sync_stat(struct perf_event *event,
1955 struct perf_event *next_event)
1956{
1957 u64 value;
1958
1959 if (!event->attr.inherit_stat)
1960 return;
1961
1962 /*
1963 * Update the event value, we cannot use perf_event_read()
1964 * because we're in the middle of a context switch and have IRQs
1965 * disabled, which upsets smp_call_function_single(), however
1966 * we know the event must be on the current CPU, therefore we
1967 * don't need to use it.
1968 */
1969 switch (event->state) {
1970 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01001971 event->pmu->read(event);
1972 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001973
1974 case PERF_EVENT_STATE_INACTIVE:
1975 update_event_times(event);
1976 break;
1977
1978 default:
1979 break;
1980 }
1981
1982 /*
1983 * In order to keep per-task stats reliable we need to flip the event
1984 * values when we flip the contexts.
1985 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02001986 value = local64_read(&next_event->count);
1987 value = local64_xchg(&event->count, value);
1988 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001989
1990 swap(event->total_time_enabled, next_event->total_time_enabled);
1991 swap(event->total_time_running, next_event->total_time_running);
1992
1993 /*
1994 * Since we swizzled the values, update the user visible data too.
1995 */
1996 perf_event_update_userpage(event);
1997 perf_event_update_userpage(next_event);
1998}
1999
2000#define list_next_entry(pos, member) \
2001 list_entry(pos->member.next, typeof(*pos), member)
2002
2003static void perf_event_sync_stat(struct perf_event_context *ctx,
2004 struct perf_event_context *next_ctx)
2005{
2006 struct perf_event *event, *next_event;
2007
2008 if (!ctx->nr_stat)
2009 return;
2010
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002011 update_context_time(ctx);
2012
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002013 event = list_first_entry(&ctx->event_list,
2014 struct perf_event, event_entry);
2015
2016 next_event = list_first_entry(&next_ctx->event_list,
2017 struct perf_event, event_entry);
2018
2019 while (&event->event_entry != &ctx->event_list &&
2020 &next_event->event_entry != &next_ctx->event_list) {
2021
2022 __perf_event_sync_stat(event, next_event);
2023
2024 event = list_next_entry(event, event_entry);
2025 next_event = list_next_entry(next_event, event_entry);
2026 }
2027}
2028
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002029static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2030 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002031{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002032 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002033 struct perf_event_context *next_ctx;
2034 struct perf_event_context *parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002035 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002036 int do_switch = 1;
2037
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002038 if (likely(!ctx))
2039 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002040
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002041 cpuctx = __get_cpu_context(ctx);
2042 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002043 return;
2044
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002045 rcu_read_lock();
2046 parent = rcu_dereference(ctx->parent_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002047 next_ctx = next->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002048 if (parent && next_ctx &&
2049 rcu_dereference(next_ctx->parent_ctx) == parent) {
2050 /*
2051 * Looks like the two contexts are clones, so we might be
2052 * able to optimize the context switch. We lock both
2053 * contexts and check that they are clones under the
2054 * lock (including re-checking that neither has been
2055 * uncloned in the meantime). It doesn't matter which
2056 * order we take the locks because no other cpu could
2057 * be trying to lock both of these tasks.
2058 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002059 raw_spin_lock(&ctx->lock);
2060 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002061 if (context_equiv(ctx, next_ctx)) {
2062 /*
2063 * XXX do we need a memory barrier of sorts
2064 * wrt to rcu_dereference() of perf_event_ctxp
2065 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002066 task->perf_event_ctxp[ctxn] = next_ctx;
2067 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002068 ctx->task = next;
2069 next_ctx->task = task;
2070 do_switch = 0;
2071
2072 perf_event_sync_stat(ctx, next_ctx);
2073 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002074 raw_spin_unlock(&next_ctx->lock);
2075 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002076 }
2077 rcu_read_unlock();
2078
2079 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002080 raw_spin_lock(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002081 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002082 cpuctx->task_ctx = NULL;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002083 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002084 }
2085}
2086
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002087#define for_each_task_context_nr(ctxn) \
2088 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2089
2090/*
2091 * Called from scheduler to remove the events of the current task,
2092 * with interrupts disabled.
2093 *
2094 * We stop each event and update the event value in event->count.
2095 *
2096 * This does not protect us against NMI, but disable()
2097 * sets the disabled bit in the control field of event _before_
2098 * accessing the event control register. If a NMI hits, then it will
2099 * not restart the event.
2100 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002101void __perf_event_task_sched_out(struct task_struct *task,
2102 struct task_struct *next)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002103{
2104 int ctxn;
2105
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002106 for_each_task_context_nr(ctxn)
2107 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002108
2109 /*
2110 * if cgroup events exist on this CPU, then we need
2111 * to check if we have to switch out PMU state.
2112 * cgroup event are system-wide mode only
2113 */
2114 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002115 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002116}
2117
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002118static void task_ctx_sched_out(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002119{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002120 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002121
2122 if (!cpuctx->task_ctx)
2123 return;
2124
2125 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2126 return;
2127
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002128 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002129 cpuctx->task_ctx = NULL;
2130}
2131
2132/*
2133 * Called with IRQs disabled
2134 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002135static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2136 enum event_type_t event_type)
2137{
2138 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002139}
2140
2141static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002142ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002143 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002144{
2145 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002146
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002147 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2148 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002149 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002150 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002151 continue;
2152
Stephane Eraniane5d13672011-02-14 11:20:01 +02002153 /* may need to reset tstamp_enabled */
2154 if (is_cgroup_event(event))
2155 perf_cgroup_mark_enabled(event, ctx);
2156
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002157 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002158 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002159
2160 /*
2161 * If this pinned group hasn't been scheduled,
2162 * put it in error state.
2163 */
2164 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2165 update_group_times(event);
2166 event->state = PERF_EVENT_STATE_ERROR;
2167 }
2168 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002169}
2170
2171static void
2172ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002173 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002174{
2175 struct perf_event *event;
2176 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002177
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002178 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2179 /* Ignore events in OFF or ERROR state */
2180 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002181 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002182 /*
2183 * Listen to the 'cpu' scheduling filter constraint
2184 * of events:
2185 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002186 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002187 continue;
2188
Stephane Eraniane5d13672011-02-14 11:20:01 +02002189 /* may need to reset tstamp_enabled */
2190 if (is_cgroup_event(event))
2191 perf_cgroup_mark_enabled(event, ctx);
2192
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002193 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002194 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002195 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002196 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002197 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002198}
2199
2200static void
2201ctx_sched_in(struct perf_event_context *ctx,
2202 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002203 enum event_type_t event_type,
2204 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002205{
Stephane Eraniane5d13672011-02-14 11:20:01 +02002206 u64 now;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002207 int is_active = ctx->is_active;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002208
Peter Zijlstradb24d332011-04-09 21:17:45 +02002209 ctx->is_active |= event_type;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002210 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002211 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002212
Stephane Eraniane5d13672011-02-14 11:20:01 +02002213 now = perf_clock();
2214 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002215 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002216 /*
2217 * First go through the list and put on any pinned groups
2218 * in order to give them the best chance of going on.
2219 */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002220 if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002221 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002222
2223 /* Then walk through the lower prio flexible groups */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002224 if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002225 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002226}
2227
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002228static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002229 enum event_type_t event_type,
2230 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002231{
2232 struct perf_event_context *ctx = &cpuctx->ctx;
2233
Stephane Eraniane5d13672011-02-14 11:20:01 +02002234 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002235}
2236
Stephane Eraniane5d13672011-02-14 11:20:01 +02002237static void perf_event_context_sched_in(struct perf_event_context *ctx,
2238 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002239{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002240 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002241
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002242 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002243 if (cpuctx->task_ctx == ctx)
2244 return;
2245
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002246 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002247 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002248 /*
2249 * We want to keep the following priority order:
2250 * cpu pinned (that don't need to move), task pinned,
2251 * cpu flexible, task flexible.
2252 */
2253 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2254
Gleb Natapov1d5f0032011-10-23 19:10:33 +02002255 if (ctx->nr_events)
2256 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002257
Gleb Natapov86b47c22011-11-22 16:08:21 +02002258 perf_event_sched_in(cpuctx, cpuctx->task_ctx, task);
2259
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002260 perf_pmu_enable(ctx->pmu);
2261 perf_ctx_unlock(cpuctx, ctx);
2262
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002263 /*
2264 * Since these rotations are per-cpu, we need to ensure the
2265 * cpu-context we got scheduled on is actually rotating.
2266 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002267 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002268}
2269
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002270/*
Stephane Eraniand010b332012-02-09 23:21:00 +01002271 * When sampling the branck stack in system-wide, it may be necessary
2272 * to flush the stack on context switch. This happens when the branch
2273 * stack does not tag its entries with the pid of the current task.
2274 * Otherwise it becomes impossible to associate a branch entry with a
2275 * task. This ambiguity is more likely to appear when the branch stack
2276 * supports priv level filtering and the user sets it to monitor only
2277 * at the user level (which could be a useful measurement in system-wide
2278 * mode). In that case, the risk is high of having a branch stack with
2279 * branch from multiple tasks. Flushing may mean dropping the existing
2280 * entries or stashing them somewhere in the PMU specific code layer.
2281 *
2282 * This function provides the context switch callback to the lower code
2283 * layer. It is invoked ONLY when there is at least one system-wide context
2284 * with at least one active event using taken branch sampling.
2285 */
2286static void perf_branch_stack_sched_in(struct task_struct *prev,
2287 struct task_struct *task)
2288{
2289 struct perf_cpu_context *cpuctx;
2290 struct pmu *pmu;
2291 unsigned long flags;
2292
2293 /* no need to flush branch stack if not changing task */
2294 if (prev == task)
2295 return;
2296
2297 local_irq_save(flags);
2298
2299 rcu_read_lock();
2300
2301 list_for_each_entry_rcu(pmu, &pmus, entry) {
2302 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2303
2304 /*
2305 * check if the context has at least one
2306 * event using PERF_SAMPLE_BRANCH_STACK
2307 */
2308 if (cpuctx->ctx.nr_branch_stack > 0
2309 && pmu->flush_branch_stack) {
2310
2311 pmu = cpuctx->ctx.pmu;
2312
2313 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2314
2315 perf_pmu_disable(pmu);
2316
2317 pmu->flush_branch_stack();
2318
2319 perf_pmu_enable(pmu);
2320
2321 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2322 }
2323 }
2324
2325 rcu_read_unlock();
2326
2327 local_irq_restore(flags);
2328}
2329
2330/*
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002331 * Called from scheduler to add the events of the current task
2332 * with interrupts disabled.
2333 *
2334 * We restore the event value and then enable it.
2335 *
2336 * This does not protect us against NMI, but enable()
2337 * sets the enabled bit in the control field of event _before_
2338 * accessing the event control register. If a NMI hits, then it will
2339 * keep the event running.
2340 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002341void __perf_event_task_sched_in(struct task_struct *prev,
2342 struct task_struct *task)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002343{
2344 struct perf_event_context *ctx;
2345 int ctxn;
2346
2347 for_each_task_context_nr(ctxn) {
2348 ctx = task->perf_event_ctxp[ctxn];
2349 if (likely(!ctx))
2350 continue;
2351
Stephane Eraniane5d13672011-02-14 11:20:01 +02002352 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002353 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02002354 /*
2355 * if cgroup events exist on this CPU, then we need
2356 * to check if we have to switch in PMU state.
2357 * cgroup event are system-wide mode only
2358 */
2359 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002360 perf_cgroup_sched_in(prev, task);
Stephane Eraniand010b332012-02-09 23:21:00 +01002361
2362 /* check for system-wide branch_stack events */
2363 if (atomic_read(&__get_cpu_var(perf_branch_stack_events)))
2364 perf_branch_stack_sched_in(prev, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002365}
2366
Peter Zijlstraabd50712010-01-26 18:50:16 +01002367static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2368{
2369 u64 frequency = event->attr.sample_freq;
2370 u64 sec = NSEC_PER_SEC;
2371 u64 divisor, dividend;
2372
2373 int count_fls, nsec_fls, frequency_fls, sec_fls;
2374
2375 count_fls = fls64(count);
2376 nsec_fls = fls64(nsec);
2377 frequency_fls = fls64(frequency);
2378 sec_fls = 30;
2379
2380 /*
2381 * We got @count in @nsec, with a target of sample_freq HZ
2382 * the target period becomes:
2383 *
2384 * @count * 10^9
2385 * period = -------------------
2386 * @nsec * sample_freq
2387 *
2388 */
2389
2390 /*
2391 * Reduce accuracy by one bit such that @a and @b converge
2392 * to a similar magnitude.
2393 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002394#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002395do { \
2396 if (a##_fls > b##_fls) { \
2397 a >>= 1; \
2398 a##_fls--; \
2399 } else { \
2400 b >>= 1; \
2401 b##_fls--; \
2402 } \
2403} while (0)
2404
2405 /*
2406 * Reduce accuracy until either term fits in a u64, then proceed with
2407 * the other, so that finally we can do a u64/u64 division.
2408 */
2409 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2410 REDUCE_FLS(nsec, frequency);
2411 REDUCE_FLS(sec, count);
2412 }
2413
2414 if (count_fls + sec_fls > 64) {
2415 divisor = nsec * frequency;
2416
2417 while (count_fls + sec_fls > 64) {
2418 REDUCE_FLS(count, sec);
2419 divisor >>= 1;
2420 }
2421
2422 dividend = count * sec;
2423 } else {
2424 dividend = count * sec;
2425
2426 while (nsec_fls + frequency_fls > 64) {
2427 REDUCE_FLS(nsec, frequency);
2428 dividend >>= 1;
2429 }
2430
2431 divisor = nsec * frequency;
2432 }
2433
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002434 if (!divisor)
2435 return dividend;
2436
Peter Zijlstraabd50712010-01-26 18:50:16 +01002437 return div64_u64(dividend, divisor);
2438}
2439
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002440static DEFINE_PER_CPU(int, perf_throttled_count);
2441static DEFINE_PER_CPU(u64, perf_throttled_seq);
2442
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002443static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002444{
2445 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002446 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002447 s64 delta;
2448
Peter Zijlstraabd50712010-01-26 18:50:16 +01002449 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002450
2451 delta = (s64)(period - hwc->sample_period);
2452 delta = (delta + 7) / 8; /* low pass filter */
2453
2454 sample_period = hwc->sample_period + delta;
2455
2456 if (!sample_period)
2457 sample_period = 1;
2458
2459 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002460
Peter Zijlstrae7850592010-05-21 14:43:08 +02002461 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002462 if (disable)
2463 event->pmu->stop(event, PERF_EF_UPDATE);
2464
Peter Zijlstrae7850592010-05-21 14:43:08 +02002465 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002466
2467 if (disable)
2468 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002469 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002470}
2471
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002472/*
2473 * combine freq adjustment with unthrottling to avoid two passes over the
2474 * events. At the same time, make sure, having freq events does not change
2475 * the rate of unthrottling as that would introduce bias.
2476 */
2477static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
2478 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002479{
2480 struct perf_event *event;
2481 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002482 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002483 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002484
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002485 /*
2486 * only need to iterate over all events iff:
2487 * - context have events in frequency mode (needs freq adjust)
2488 * - there are events to unthrottle on this cpu
2489 */
2490 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002491 return;
2492
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002493 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002494 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002495
Paul Mackerras03541f82009-10-14 16:58:03 +11002496 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002497 if (event->state != PERF_EVENT_STATE_ACTIVE)
2498 continue;
2499
Stephane Eranian5632ab12011-01-03 18:20:01 +02002500 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002501 continue;
2502
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002503 hwc = &event->hw;
2504
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002505 if (needs_unthr && hwc->interrupts == MAX_INTERRUPTS) {
2506 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002507 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002508 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002509 }
2510
2511 if (!event->attr.freq || !event->attr.sample_freq)
2512 continue;
2513
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002514 /*
2515 * stop the event and update event->count
2516 */
2517 event->pmu->stop(event, PERF_EF_UPDATE);
2518
Peter Zijlstrae7850592010-05-21 14:43:08 +02002519 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002520 delta = now - hwc->freq_count_stamp;
2521 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002522
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002523 /*
2524 * restart the event
2525 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002526 * we have stopped the event so tell that
2527 * to perf_adjust_period() to avoid stopping it
2528 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002529 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01002530 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002531 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002532
2533 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002534 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002535
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002536 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002537 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002538}
2539
2540/*
2541 * Round-robin a context's events:
2542 */
2543static void rotate_ctx(struct perf_event_context *ctx)
2544{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01002545 /*
2546 * Rotate the first entry last of non-pinned groups. Rotation might be
2547 * disabled by the inheritance code.
2548 */
2549 if (!ctx->rotate_disable)
2550 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002551}
2552
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002553/*
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002554 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
2555 * because they're strictly cpu affine and rotate_start is called with IRQs
2556 * disabled, while rotate_context is called from IRQ context.
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002557 */
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002558static void perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002559{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002560 struct perf_event_context *ctx = NULL;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002561 int rotate = 0, remove = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002562
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002563 if (cpuctx->ctx.nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002564 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002565 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
2566 rotate = 1;
2567 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002568
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002569 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002570 if (ctx && ctx->nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002571 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002572 if (ctx->nr_events != ctx->nr_active)
2573 rotate = 1;
2574 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002575
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002576 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002577 goto done;
2578
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002579 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002580 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002581
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002582 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2583 if (ctx)
2584 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01002585
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002586 rotate_ctx(&cpuctx->ctx);
2587 if (ctx)
2588 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002589
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002590 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002591
2592 perf_pmu_enable(cpuctx->ctx.pmu);
2593 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002594done:
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002595 if (remove)
2596 list_del_init(&cpuctx->rotation_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002597}
2598
Frederic Weisbecker026249e2013-04-20 15:58:34 +02002599#ifdef CONFIG_NO_HZ_FULL
2600bool perf_event_can_stop_tick(void)
2601{
2602 if (list_empty(&__get_cpu_var(rotation_list)))
2603 return true;
2604 else
2605 return false;
2606}
2607#endif
2608
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002609void perf_event_task_tick(void)
2610{
2611 struct list_head *head = &__get_cpu_var(rotation_list);
2612 struct perf_cpu_context *cpuctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002613 struct perf_event_context *ctx;
2614 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002615
2616 WARN_ON(!irqs_disabled());
2617
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002618 __this_cpu_inc(perf_throttled_seq);
2619 throttled = __this_cpu_xchg(perf_throttled_count, 0);
2620
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002621 list_for_each_entry_safe(cpuctx, tmp, head, rotation_list) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002622 ctx = &cpuctx->ctx;
2623 perf_adjust_freq_unthr_context(ctx, throttled);
2624
2625 ctx = cpuctx->task_ctx;
2626 if (ctx)
2627 perf_adjust_freq_unthr_context(ctx, throttled);
2628
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002629 if (cpuctx->jiffies_interval == 1 ||
2630 !(jiffies % cpuctx->jiffies_interval))
2631 perf_rotate_context(cpuctx);
2632 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002633}
2634
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002635static int event_enable_on_exec(struct perf_event *event,
2636 struct perf_event_context *ctx)
2637{
2638 if (!event->attr.enable_on_exec)
2639 return 0;
2640
2641 event->attr.enable_on_exec = 0;
2642 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2643 return 0;
2644
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002645 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002646
2647 return 1;
2648}
2649
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002650/*
2651 * Enable all of a task's events that have been marked enable-on-exec.
2652 * This expects task == current.
2653 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002654static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002655{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002656 struct perf_event *event;
2657 unsigned long flags;
2658 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002659 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002660
2661 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002662 if (!ctx || !ctx->nr_events)
2663 goto out;
2664
Stephane Eraniane566b762011-04-06 02:54:54 +02002665 /*
2666 * We must ctxsw out cgroup events to avoid conflict
2667 * when invoking perf_task_event_sched_in() later on
2668 * in this function. Otherwise we end up trying to
2669 * ctxswin cgroup events which are already scheduled
2670 * in.
2671 */
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002672 perf_cgroup_sched_out(current, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002673
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002674 raw_spin_lock(&ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002675 task_ctx_sched_out(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002676
Peter Zijlstrab79387e2011-11-22 11:25:43 +01002677 list_for_each_entry(event, &ctx->event_list, event_entry) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002678 ret = event_enable_on_exec(event, ctx);
2679 if (ret)
2680 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002681 }
2682
2683 /*
2684 * Unclone this context if we enabled any event.
2685 */
2686 if (enabled)
2687 unclone_ctx(ctx);
2688
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002689 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002690
Stephane Eraniane566b762011-04-06 02:54:54 +02002691 /*
2692 * Also calls ctxswin for cgroup events, if any:
2693 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002694 perf_event_context_sched_in(ctx, ctx->task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002695out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002696 local_irq_restore(flags);
2697}
2698
2699/*
2700 * Cross CPU call to read the hardware event
2701 */
2702static void __perf_event_read(void *info)
2703{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002704 struct perf_event *event = info;
2705 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002706 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002707
2708 /*
2709 * If this is a task context, we need to check whether it is
2710 * the current task context of this cpu. If not it has been
2711 * scheduled out before the smp call arrived. In that case
2712 * event->count would have been updated to a recent sample
2713 * when the event was scheduled out.
2714 */
2715 if (ctx->task && cpuctx->task_ctx != ctx)
2716 return;
2717
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002718 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002719 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002720 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002721 update_cgrp_time_from_event(event);
2722 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002723 update_event_times(event);
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002724 if (event->state == PERF_EVENT_STATE_ACTIVE)
2725 event->pmu->read(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002726 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002727}
2728
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002729static inline u64 perf_event_count(struct perf_event *event)
2730{
Peter Zijlstrae7850592010-05-21 14:43:08 +02002731 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002732}
2733
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002734static u64 perf_event_read(struct perf_event *event)
2735{
2736 /*
2737 * If event is enabled and currently active on a CPU, update the
2738 * value in the event structure:
2739 */
2740 if (event->state == PERF_EVENT_STATE_ACTIVE) {
2741 smp_call_function_single(event->oncpu,
2742 __perf_event_read, event, 1);
2743 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01002744 struct perf_event_context *ctx = event->ctx;
2745 unsigned long flags;
2746
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002747 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002748 /*
2749 * may read while context is not active
2750 * (e.g., thread is blocked), in that case
2751 * we cannot update context time
2752 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002753 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002754 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002755 update_cgrp_time_from_event(event);
2756 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002757 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002758 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002759 }
2760
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002761 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002762}
2763
2764/*
2765 * Initialize the perf_event context in a task_struct:
2766 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02002767static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002768{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002769 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002770 mutex_init(&ctx->mutex);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002771 INIT_LIST_HEAD(&ctx->pinned_groups);
2772 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002773 INIT_LIST_HEAD(&ctx->event_list);
2774 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002775}
2776
Peter Zijlstraeb184472010-09-07 15:55:13 +02002777static struct perf_event_context *
2778alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002779{
2780 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002781
2782 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
2783 if (!ctx)
2784 return NULL;
2785
2786 __perf_event_init_context(ctx);
2787 if (task) {
2788 ctx->task = task;
2789 get_task_struct(task);
2790 }
2791 ctx->pmu = pmu;
2792
2793 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002794}
2795
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002796static struct task_struct *
2797find_lively_task_by_vpid(pid_t vpid)
2798{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002799 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002800 int err;
2801
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002802 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002803 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002804 task = current;
2805 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002806 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002807 if (task)
2808 get_task_struct(task);
2809 rcu_read_unlock();
2810
2811 if (!task)
2812 return ERR_PTR(-ESRCH);
2813
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002814 /* Reuse ptrace permission checks for now. */
2815 err = -EACCES;
2816 if (!ptrace_may_access(task, PTRACE_MODE_READ))
2817 goto errout;
2818
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002819 return task;
2820errout:
2821 put_task_struct(task);
2822 return ERR_PTR(err);
2823
2824}
2825
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002826/*
2827 * Returns a matching context with refcount and pincount.
2828 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002829static struct perf_event_context *
Matt Helsley38a81da2010-09-13 13:01:20 -07002830find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002831{
2832 struct perf_event_context *ctx;
2833 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002834 unsigned long flags;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002835 int ctxn, err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002836
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01002837 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002838 /* Must be root to operate on a CPU event: */
2839 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
2840 return ERR_PTR(-EACCES);
2841
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002842 /*
2843 * We could be clever and allow to attach a event to an
2844 * offline CPU and activate it when the CPU comes up, but
2845 * that's for later.
2846 */
2847 if (!cpu_online(cpu))
2848 return ERR_PTR(-ENODEV);
2849
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002850 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002851 ctx = &cpuctx->ctx;
2852 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002853 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002854
2855 return ctx;
2856 }
2857
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002858 err = -EINVAL;
2859 ctxn = pmu->task_ctx_nr;
2860 if (ctxn < 0)
2861 goto errout;
2862
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002863retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002864 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002865 if (ctx) {
2866 unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002867 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002868 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02002869 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02002870 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002871 err = -ENOMEM;
2872 if (!ctx)
2873 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002874
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002875 err = 0;
2876 mutex_lock(&task->perf_event_mutex);
2877 /*
2878 * If it has already passed perf_event_exit_task().
2879 * we must see PF_EXITING, it takes this mutex too.
2880 */
2881 if (task->flags & PF_EXITING)
2882 err = -ESRCH;
2883 else if (task->perf_event_ctxp[ctxn])
2884 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002885 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02002886 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002887 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002888 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002889 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002890 mutex_unlock(&task->perf_event_mutex);
2891
2892 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02002893 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002894
2895 if (err == -EAGAIN)
2896 goto retry;
2897 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002898 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002899 }
2900
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002901 return ctx;
2902
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002903errout:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002904 return ERR_PTR(err);
2905}
2906
Li Zefan6fb29152009-10-15 11:21:42 +08002907static void perf_event_free_filter(struct perf_event *event);
2908
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002909static void free_event_rcu(struct rcu_head *head)
2910{
2911 struct perf_event *event;
2912
2913 event = container_of(head, struct perf_event, rcu_head);
2914 if (event->ns)
2915 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08002916 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002917 kfree(event);
2918}
2919
Frederic Weisbecker76369132011-05-19 19:55:04 +02002920static void ring_buffer_put(struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002921
2922static void free_event(struct perf_event *event)
2923{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08002924 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002925
2926 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02002927 if (event->attach_state & PERF_ATTACH_TASK)
Ingo Molnarc5905af2012-02-24 08:31:31 +01002928 static_key_slow_dec_deferred(&perf_sched_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01002929 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002930 atomic_dec(&nr_mmap_events);
2931 if (event->attr.comm)
2932 atomic_dec(&nr_comm_events);
2933 if (event->attr.task)
2934 atomic_dec(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002935 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
2936 put_callchain_buffers();
Peter Zijlstra08309372011-03-03 11:31:20 +01002937 if (is_cgroup_event(event)) {
2938 atomic_dec(&per_cpu(perf_cgroup_events, event->cpu));
Ingo Molnarc5905af2012-02-24 08:31:31 +01002939 static_key_slow_dec_deferred(&perf_sched_events);
Peter Zijlstra08309372011-03-03 11:31:20 +01002940 }
Stephane Eraniand010b332012-02-09 23:21:00 +01002941
2942 if (has_branch_stack(event)) {
2943 static_key_slow_dec_deferred(&perf_sched_events);
2944 /* is system-wide event */
2945 if (!(event->attach_state & PERF_ATTACH_TASK))
2946 atomic_dec(&per_cpu(perf_branch_stack_events,
2947 event->cpu));
2948 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002949 }
2950
Frederic Weisbecker76369132011-05-19 19:55:04 +02002951 if (event->rb) {
2952 ring_buffer_put(event->rb);
2953 event->rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002954 }
2955
Stephane Eraniane5d13672011-02-14 11:20:01 +02002956 if (is_cgroup_event(event))
2957 perf_detach_cgroup(event);
2958
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002959 if (event->destroy)
2960 event->destroy(event);
2961
Peter Zijlstra0c67b402010-09-13 11:15:58 +02002962 if (event->ctx)
2963 put_ctx(event->ctx);
2964
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002965 call_rcu(&event->rcu_head, free_event_rcu);
2966}
2967
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002968int perf_event_release_kernel(struct perf_event *event)
2969{
2970 struct perf_event_context *ctx = event->ctx;
2971
2972 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa0507c82010-05-06 15:42:53 +02002973 /*
2974 * There are two ways this annotation is useful:
2975 *
2976 * 1) there is a lock recursion from perf_event_exit_task
2977 * see the comment there.
2978 *
2979 * 2) there is a lock-inversion with mmap_sem through
2980 * perf_event_read_group(), which takes faults while
2981 * holding ctx->mutex, however this is called after
2982 * the last filedesc died, so there is no possibility
2983 * to trigger the AB-BA case.
2984 */
2985 mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002986 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002987 perf_group_detach(event);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002988 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrae03a9a52011-04-09 21:17:47 +02002989 perf_remove_from_context(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002990 mutex_unlock(&ctx->mutex);
2991
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002992 free_event(event);
2993
2994 return 0;
2995}
2996EXPORT_SYMBOL_GPL(perf_event_release_kernel);
2997
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002998/*
2999 * Called when the last reference to the file is gone.
3000 */
Al Viroa6fa9412012-08-20 14:59:25 +01003001static void put_event(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003002{
Peter Zijlstra88821352010-11-09 19:01:43 +01003003 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003004
Al Viroa6fa9412012-08-20 14:59:25 +01003005 if (!atomic_long_dec_and_test(&event->refcount))
3006 return;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003007
Peter Zijlstra88821352010-11-09 19:01:43 +01003008 rcu_read_lock();
3009 owner = ACCESS_ONCE(event->owner);
3010 /*
3011 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
3012 * !owner it means the list deletion is complete and we can indeed
3013 * free this event, otherwise we need to serialize on
3014 * owner->perf_event_mutex.
3015 */
3016 smp_read_barrier_depends();
3017 if (owner) {
3018 /*
3019 * Since delayed_put_task_struct() also drops the last
3020 * task reference we can safely take a new reference
3021 * while holding the rcu_read_lock().
3022 */
3023 get_task_struct(owner);
3024 }
3025 rcu_read_unlock();
3026
3027 if (owner) {
3028 mutex_lock(&owner->perf_event_mutex);
3029 /*
3030 * We have to re-check the event->owner field, if it is cleared
3031 * we raced with perf_event_exit_task(), acquiring the mutex
3032 * ensured they're done, and we can proceed with freeing the
3033 * event.
3034 */
3035 if (event->owner)
3036 list_del_init(&event->owner_entry);
3037 mutex_unlock(&owner->perf_event_mutex);
3038 put_task_struct(owner);
3039 }
3040
Al Viroa6fa9412012-08-20 14:59:25 +01003041 perf_event_release_kernel(event);
3042}
3043
3044static int perf_release(struct inode *inode, struct file *file)
3045{
3046 put_event(file->private_data);
3047 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003048}
3049
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003050u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003051{
3052 struct perf_event *child;
3053 u64 total = 0;
3054
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003055 *enabled = 0;
3056 *running = 0;
3057
Peter Zijlstra6f105812009-11-20 22:19:56 +01003058 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003059 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003060 *enabled += event->total_time_enabled +
3061 atomic64_read(&event->child_total_time_enabled);
3062 *running += event->total_time_running +
3063 atomic64_read(&event->child_total_time_running);
3064
3065 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003066 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003067 *enabled += child->total_time_enabled;
3068 *running += child->total_time_running;
3069 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003070 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003071
3072 return total;
3073}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003074EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003075
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003076static int perf_event_read_group(struct perf_event *event,
3077 u64 read_format, char __user *buf)
3078{
3079 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003080 int n = 0, size = 0, ret = -EFAULT;
3081 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003082 u64 values[5];
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003083 u64 count, enabled, running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003084
Peter Zijlstra6f105812009-11-20 22:19:56 +01003085 mutex_lock(&ctx->mutex);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003086 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003087
3088 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003089 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3090 values[n++] = enabled;
3091 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3092 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003093 values[n++] = count;
3094 if (read_format & PERF_FORMAT_ID)
3095 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003096
3097 size = n * sizeof(u64);
3098
3099 if (copy_to_user(buf, values, size))
Peter Zijlstra6f105812009-11-20 22:19:56 +01003100 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003101
Peter Zijlstra6f105812009-11-20 22:19:56 +01003102 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003103
3104 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01003105 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003106
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003107 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003108 if (read_format & PERF_FORMAT_ID)
3109 values[n++] = primary_event_id(sub);
3110
3111 size = n * sizeof(u64);
3112
Stephane Eranian184d3da2009-11-23 21:40:49 -08003113 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstra6f105812009-11-20 22:19:56 +01003114 ret = -EFAULT;
3115 goto unlock;
3116 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01003117
3118 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003119 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003120unlock:
3121 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003122
Peter Zijlstraabf48682009-11-20 22:19:49 +01003123 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003124}
3125
3126static int perf_event_read_one(struct perf_event *event,
3127 u64 read_format, char __user *buf)
3128{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003129 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003130 u64 values[4];
3131 int n = 0;
3132
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003133 values[n++] = perf_event_read_value(event, &enabled, &running);
3134 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3135 values[n++] = enabled;
3136 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3137 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003138 if (read_format & PERF_FORMAT_ID)
3139 values[n++] = primary_event_id(event);
3140
3141 if (copy_to_user(buf, values, n * sizeof(u64)))
3142 return -EFAULT;
3143
3144 return n * sizeof(u64);
3145}
3146
3147/*
3148 * Read the performance event - simple non blocking version for now
3149 */
3150static ssize_t
3151perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
3152{
3153 u64 read_format = event->attr.read_format;
3154 int ret;
3155
3156 /*
3157 * Return end-of-file for a read on a event that is in
3158 * error state (i.e. because it was pinned but it couldn't be
3159 * scheduled on to the CPU at some point).
3160 */
3161 if (event->state == PERF_EVENT_STATE_ERROR)
3162 return 0;
3163
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003164 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003165 return -ENOSPC;
3166
3167 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003168 if (read_format & PERF_FORMAT_GROUP)
3169 ret = perf_event_read_group(event, read_format, buf);
3170 else
3171 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003172
3173 return ret;
3174}
3175
3176static ssize_t
3177perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3178{
3179 struct perf_event *event = file->private_data;
3180
3181 return perf_read_hw(event, buf, count);
3182}
3183
3184static unsigned int perf_poll(struct file *file, poll_table *wait)
3185{
3186 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003187 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003188 unsigned int events = POLL_HUP;
3189
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003190 /*
3191 * Race between perf_event_set_output() and perf_poll(): perf_poll()
3192 * grabs the rb reference but perf_event_set_output() overrides it.
3193 * Here is the timeline for two threads T1, T2:
3194 * t0: T1, rb = rcu_dereference(event->rb)
3195 * t1: T2, old_rb = event->rb
3196 * t2: T2, event->rb = new rb
3197 * t3: T2, ring_buffer_detach(old_rb)
3198 * t4: T1, ring_buffer_attach(rb1)
3199 * t5: T1, poll_wait(event->waitq)
3200 *
3201 * To avoid this problem, we grab mmap_mutex in perf_poll()
3202 * thereby ensuring that the assignment of the new ring buffer
3203 * and the detachment of the old buffer appear atomic to perf_poll()
3204 */
3205 mutex_lock(&event->mmap_mutex);
3206
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003207 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003208 rb = rcu_dereference(event->rb);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003209 if (rb) {
3210 ring_buffer_attach(event, rb);
Frederic Weisbecker76369132011-05-19 19:55:04 +02003211 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003212 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003213 rcu_read_unlock();
3214
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003215 mutex_unlock(&event->mmap_mutex);
3216
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003217 poll_wait(file, &event->waitq, wait);
3218
3219 return events;
3220}
3221
3222static void perf_event_reset(struct perf_event *event)
3223{
3224 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02003225 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003226 perf_event_update_userpage(event);
3227}
3228
3229/*
3230 * Holding the top-level event's child_mutex means that any
3231 * descendant process that has inherited this event will block
3232 * in sync_child_event if it goes to exit, thus satisfying the
3233 * task existence requirements of perf_event_enable/disable.
3234 */
3235static void perf_event_for_each_child(struct perf_event *event,
3236 void (*func)(struct perf_event *))
3237{
3238 struct perf_event *child;
3239
3240 WARN_ON_ONCE(event->ctx->parent_ctx);
3241 mutex_lock(&event->child_mutex);
3242 func(event);
3243 list_for_each_entry(child, &event->child_list, child_list)
3244 func(child);
3245 mutex_unlock(&event->child_mutex);
3246}
3247
3248static void perf_event_for_each(struct perf_event *event,
3249 void (*func)(struct perf_event *))
3250{
3251 struct perf_event_context *ctx = event->ctx;
3252 struct perf_event *sibling;
3253
3254 WARN_ON_ONCE(ctx->parent_ctx);
3255 mutex_lock(&ctx->mutex);
3256 event = event->group_leader;
3257
3258 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003259 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10003260 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003261 mutex_unlock(&ctx->mutex);
3262}
3263
3264static int perf_event_period(struct perf_event *event, u64 __user *arg)
3265{
3266 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003267 int ret = 0;
3268 u64 value;
3269
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01003270 if (!is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003271 return -EINVAL;
3272
John Blackwoodad0cf342010-09-28 18:03:11 -04003273 if (copy_from_user(&value, arg, sizeof(value)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003274 return -EFAULT;
3275
3276 if (!value)
3277 return -EINVAL;
3278
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003279 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003280 if (event->attr.freq) {
3281 if (value > sysctl_perf_event_sample_rate) {
3282 ret = -EINVAL;
3283 goto unlock;
3284 }
3285
3286 event->attr.sample_freq = value;
3287 } else {
3288 event->attr.sample_period = value;
3289 event->hw.sample_period = value;
3290 }
3291unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003292 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003293
3294 return ret;
3295}
3296
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003297static const struct file_operations perf_fops;
3298
Al Viro2903ff02012-08-28 12:52:22 -04003299static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003300{
Al Viro2903ff02012-08-28 12:52:22 -04003301 struct fd f = fdget(fd);
3302 if (!f.file)
3303 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003304
Al Viro2903ff02012-08-28 12:52:22 -04003305 if (f.file->f_op != &perf_fops) {
3306 fdput(f);
3307 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003308 }
Al Viro2903ff02012-08-28 12:52:22 -04003309 *p = f;
3310 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003311}
3312
3313static int perf_event_set_output(struct perf_event *event,
3314 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08003315static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003316
3317static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3318{
3319 struct perf_event *event = file->private_data;
3320 void (*func)(struct perf_event *);
3321 u32 flags = arg;
3322
3323 switch (cmd) {
3324 case PERF_EVENT_IOC_ENABLE:
3325 func = perf_event_enable;
3326 break;
3327 case PERF_EVENT_IOC_DISABLE:
3328 func = perf_event_disable;
3329 break;
3330 case PERF_EVENT_IOC_RESET:
3331 func = perf_event_reset;
3332 break;
3333
3334 case PERF_EVENT_IOC_REFRESH:
3335 return perf_event_refresh(event, arg);
3336
3337 case PERF_EVENT_IOC_PERIOD:
3338 return perf_event_period(event, (u64 __user *)arg);
3339
3340 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003341 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003342 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003343 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04003344 struct perf_event *output_event;
3345 struct fd output;
3346 ret = perf_fget_light(arg, &output);
3347 if (ret)
3348 return ret;
3349 output_event = output.file->private_data;
3350 ret = perf_event_set_output(event, output_event);
3351 fdput(output);
3352 } else {
3353 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003354 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003355 return ret;
3356 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003357
Li Zefan6fb29152009-10-15 11:21:42 +08003358 case PERF_EVENT_IOC_SET_FILTER:
3359 return perf_event_set_filter(event, (void __user *)arg);
3360
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003361 default:
3362 return -ENOTTY;
3363 }
3364
3365 if (flags & PERF_IOC_FLAG_GROUP)
3366 perf_event_for_each(event, func);
3367 else
3368 perf_event_for_each_child(event, func);
3369
3370 return 0;
3371}
3372
3373int perf_event_task_enable(void)
3374{
3375 struct perf_event *event;
3376
3377 mutex_lock(&current->perf_event_mutex);
3378 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3379 perf_event_for_each_child(event, perf_event_enable);
3380 mutex_unlock(&current->perf_event_mutex);
3381
3382 return 0;
3383}
3384
3385int perf_event_task_disable(void)
3386{
3387 struct perf_event *event;
3388
3389 mutex_lock(&current->perf_event_mutex);
3390 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3391 perf_event_for_each_child(event, perf_event_disable);
3392 mutex_unlock(&current->perf_event_mutex);
3393
3394 return 0;
3395}
3396
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003397static int perf_event_index(struct perf_event *event)
3398{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003399 if (event->hw.state & PERF_HES_STOPPED)
3400 return 0;
3401
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003402 if (event->state != PERF_EVENT_STATE_ACTIVE)
3403 return 0;
3404
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01003405 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003406}
3407
Eric B Munsonc4794292011-06-23 16:34:38 -04003408static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003409 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04003410 u64 *enabled,
3411 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04003412{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003413 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04003414
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003415 *now = perf_clock();
3416 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04003417 *enabled = ctx_time - event->tstamp_enabled;
3418 *running = ctx_time - event->tstamp_running;
3419}
3420
Peter Zijlstrac7206202012-03-22 17:26:36 +01003421void __weak arch_perf_update_userpage(struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003422{
3423}
3424
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003425/*
3426 * Callers need to ensure there can be no nesting of this function, otherwise
3427 * the seqlock logic goes bad. We can not serialize this because the arch
3428 * code calls this from NMI context.
3429 */
3430void perf_event_update_userpage(struct perf_event *event)
3431{
3432 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003433 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003434 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003435
3436 rcu_read_lock();
Eric B Munson0d641202011-06-24 12:26:26 -04003437 /*
3438 * compute total_time_enabled, total_time_running
3439 * based on snapshot values taken when the event
3440 * was last scheduled in.
3441 *
3442 * we cannot simply called update_context_time()
3443 * because of locking issue as we can be called in
3444 * NMI context
3445 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003446 calc_timer_values(event, &now, &enabled, &running);
Frederic Weisbecker76369132011-05-19 19:55:04 +02003447 rb = rcu_dereference(event->rb);
3448 if (!rb)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003449 goto unlock;
3450
Frederic Weisbecker76369132011-05-19 19:55:04 +02003451 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003452
3453 /*
3454 * Disable preemption so as to not let the corresponding user-space
3455 * spin too long if we get preempted.
3456 */
3457 preempt_disable();
3458 ++userpg->lock;
3459 barrier();
3460 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003461 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01003462 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02003463 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003464
Eric B Munson0d641202011-06-24 12:26:26 -04003465 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003466 atomic64_read(&event->child_total_time_enabled);
3467
Eric B Munson0d641202011-06-24 12:26:26 -04003468 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003469 atomic64_read(&event->child_total_time_running);
3470
Peter Zijlstrac7206202012-03-22 17:26:36 +01003471 arch_perf_update_userpage(userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003472
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003473 barrier();
3474 ++userpg->lock;
3475 preempt_enable();
3476unlock:
3477 rcu_read_unlock();
3478}
3479
Peter Zijlstra906010b2009-09-21 16:08:49 +02003480static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
3481{
3482 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003483 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003484 int ret = VM_FAULT_SIGBUS;
3485
3486 if (vmf->flags & FAULT_FLAG_MKWRITE) {
3487 if (vmf->pgoff == 0)
3488 ret = 0;
3489 return ret;
3490 }
3491
3492 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003493 rb = rcu_dereference(event->rb);
3494 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003495 goto unlock;
3496
3497 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
3498 goto unlock;
3499
Frederic Weisbecker76369132011-05-19 19:55:04 +02003500 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003501 if (!vmf->page)
3502 goto unlock;
3503
3504 get_page(vmf->page);
3505 vmf->page->mapping = vma->vm_file->f_mapping;
3506 vmf->page->index = vmf->pgoff;
3507
3508 ret = 0;
3509unlock:
3510 rcu_read_unlock();
3511
3512 return ret;
3513}
3514
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003515static void ring_buffer_attach(struct perf_event *event,
3516 struct ring_buffer *rb)
3517{
3518 unsigned long flags;
3519
3520 if (!list_empty(&event->rb_entry))
3521 return;
3522
3523 spin_lock_irqsave(&rb->event_lock, flags);
3524 if (!list_empty(&event->rb_entry))
3525 goto unlock;
3526
3527 list_add(&event->rb_entry, &rb->event_list);
3528unlock:
3529 spin_unlock_irqrestore(&rb->event_lock, flags);
3530}
3531
3532static void ring_buffer_detach(struct perf_event *event,
3533 struct ring_buffer *rb)
3534{
3535 unsigned long flags;
3536
3537 if (list_empty(&event->rb_entry))
3538 return;
3539
3540 spin_lock_irqsave(&rb->event_lock, flags);
3541 list_del_init(&event->rb_entry);
3542 wake_up_all(&event->waitq);
3543 spin_unlock_irqrestore(&rb->event_lock, flags);
3544}
3545
3546static void ring_buffer_wakeup(struct perf_event *event)
3547{
3548 struct ring_buffer *rb;
3549
3550 rcu_read_lock();
3551 rb = rcu_dereference(event->rb);
Will Deacon44b7f4b2011-12-13 20:40:45 +01003552 if (!rb)
3553 goto unlock;
3554
3555 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003556 wake_up_all(&event->waitq);
Will Deacon44b7f4b2011-12-13 20:40:45 +01003557
3558unlock:
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003559 rcu_read_unlock();
3560}
3561
Frederic Weisbecker76369132011-05-19 19:55:04 +02003562static void rb_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003563{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003564 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003565
Frederic Weisbecker76369132011-05-19 19:55:04 +02003566 rb = container_of(rcu_head, struct ring_buffer, rcu_head);
3567 rb_free(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003568}
3569
Frederic Weisbecker76369132011-05-19 19:55:04 +02003570static struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003571{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003572 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003573
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003574 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003575 rb = rcu_dereference(event->rb);
3576 if (rb) {
3577 if (!atomic_inc_not_zero(&rb->refcount))
3578 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003579 }
3580 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003581
Frederic Weisbecker76369132011-05-19 19:55:04 +02003582 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003583}
3584
Frederic Weisbecker76369132011-05-19 19:55:04 +02003585static void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003586{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003587 struct perf_event *event, *n;
3588 unsigned long flags;
3589
Frederic Weisbecker76369132011-05-19 19:55:04 +02003590 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003591 return;
3592
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003593 spin_lock_irqsave(&rb->event_lock, flags);
3594 list_for_each_entry_safe(event, n, &rb->event_list, rb_entry) {
3595 list_del_init(&event->rb_entry);
3596 wake_up_all(&event->waitq);
3597 }
3598 spin_unlock_irqrestore(&rb->event_lock, flags);
3599
Frederic Weisbecker76369132011-05-19 19:55:04 +02003600 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003601}
3602
3603static void perf_mmap_open(struct vm_area_struct *vma)
3604{
3605 struct perf_event *event = vma->vm_file->private_data;
3606
3607 atomic_inc(&event->mmap_count);
3608}
3609
3610static void perf_mmap_close(struct vm_area_struct *vma)
3611{
3612 struct perf_event *event = vma->vm_file->private_data;
3613
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003614 if (atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex)) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02003615 unsigned long size = perf_data_size(event->rb);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003616 struct user_struct *user = event->mmap_user;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003617 struct ring_buffer *rb = event->rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003618
Peter Zijlstra906010b2009-09-21 16:08:49 +02003619 atomic_long_sub((size >> PAGE_SHIFT) + 1, &user->locked_vm);
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07003620 vma->vm_mm->pinned_vm -= event->mmap_locked;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003621 rcu_assign_pointer(event->rb, NULL);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003622 ring_buffer_detach(event, rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003623 mutex_unlock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003624
Frederic Weisbecker76369132011-05-19 19:55:04 +02003625 ring_buffer_put(rb);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003626 free_uid(user);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003627 }
3628}
3629
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003630static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003631 .open = perf_mmap_open,
3632 .close = perf_mmap_close,
3633 .fault = perf_mmap_fault,
3634 .page_mkwrite = perf_mmap_fault,
3635};
3636
3637static int perf_mmap(struct file *file, struct vm_area_struct *vma)
3638{
3639 struct perf_event *event = file->private_data;
3640 unsigned long user_locked, user_lock_limit;
3641 struct user_struct *user = current_user();
3642 unsigned long locked, lock_limit;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003643 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003644 unsigned long vma_size;
3645 unsigned long nr_pages;
3646 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003647 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003648
Peter Zijlstrac7920612010-05-18 10:33:24 +02003649 /*
3650 * Don't allow mmap() of inherited per-task counters. This would
3651 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02003652 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02003653 */
3654 if (event->cpu == -1 && event->attr.inherit)
3655 return -EINVAL;
3656
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003657 if (!(vma->vm_flags & VM_SHARED))
3658 return -EINVAL;
3659
3660 vma_size = vma->vm_end - vma->vm_start;
3661 nr_pages = (vma_size / PAGE_SIZE) - 1;
3662
3663 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02003664 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003665 * can do bitmasks instead of modulo.
3666 */
3667 if (nr_pages != 0 && !is_power_of_2(nr_pages))
3668 return -EINVAL;
3669
3670 if (vma_size != PAGE_SIZE * (1 + nr_pages))
3671 return -EINVAL;
3672
3673 if (vma->vm_pgoff != 0)
3674 return -EINVAL;
3675
3676 WARN_ON_ONCE(event->ctx->parent_ctx);
3677 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02003678 if (event->rb) {
3679 if (event->rb->nr_pages == nr_pages)
3680 atomic_inc(&event->rb->refcount);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003681 else
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003682 ret = -EINVAL;
3683 goto unlock;
3684 }
3685
3686 user_extra = nr_pages + 1;
3687 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
3688
3689 /*
3690 * Increase the limit linearly with more CPUs:
3691 */
3692 user_lock_limit *= num_online_cpus();
3693
3694 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
3695
3696 extra = 0;
3697 if (user_locked > user_lock_limit)
3698 extra = user_locked - user_lock_limit;
3699
Jiri Slaby78d7d402010-03-05 13:42:54 -08003700 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003701 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07003702 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003703
3704 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
3705 !capable(CAP_IPC_LOCK)) {
3706 ret = -EPERM;
3707 goto unlock;
3708 }
3709
Frederic Weisbecker76369132011-05-19 19:55:04 +02003710 WARN_ON(event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003711
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003712 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02003713 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003714
Vince Weaver4ec83632011-06-01 15:15:36 -04003715 rb = rb_alloc(nr_pages,
3716 event->attr.watermark ? event->attr.wakeup_watermark : 0,
3717 event->cpu, flags);
3718
Frederic Weisbecker76369132011-05-19 19:55:04 +02003719 if (!rb) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003720 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003721 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003722 }
Frederic Weisbecker76369132011-05-19 19:55:04 +02003723 rcu_assign_pointer(event->rb, rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003724
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003725 atomic_long_add(user_extra, &user->locked_vm);
3726 event->mmap_locked = extra;
3727 event->mmap_user = get_current_user();
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07003728 vma->vm_mm->pinned_vm += event->mmap_locked;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003729
Peter Zijlstra9a0f05c2011-11-21 15:13:29 +01003730 perf_event_update_userpage(event);
3731
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003732unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003733 if (!ret)
3734 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003735 mutex_unlock(&event->mmap_mutex);
3736
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003737 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003738 vma->vm_ops = &perf_mmap_vmops;
3739
3740 return ret;
3741}
3742
3743static int perf_fasync(int fd, struct file *filp, int on)
3744{
Al Viro496ad9a2013-01-23 17:07:38 -05003745 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003746 struct perf_event *event = filp->private_data;
3747 int retval;
3748
3749 mutex_lock(&inode->i_mutex);
3750 retval = fasync_helper(fd, filp, on, &event->fasync);
3751 mutex_unlock(&inode->i_mutex);
3752
3753 if (retval < 0)
3754 return retval;
3755
3756 return 0;
3757}
3758
3759static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01003760 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003761 .release = perf_release,
3762 .read = perf_read,
3763 .poll = perf_poll,
3764 .unlocked_ioctl = perf_ioctl,
3765 .compat_ioctl = perf_ioctl,
3766 .mmap = perf_mmap,
3767 .fasync = perf_fasync,
3768};
3769
3770/*
3771 * Perf event wakeup
3772 *
3773 * If there's data, ensure we set the poll() state and publish everything
3774 * to user-space before waking everybody up.
3775 */
3776
3777void perf_event_wakeup(struct perf_event *event)
3778{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003779 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003780
3781 if (event->pending_kill) {
3782 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
3783 event->pending_kill = 0;
3784 }
3785}
3786
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003787static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003788{
3789 struct perf_event *event = container_of(entry,
3790 struct perf_event, pending);
3791
3792 if (event->pending_disable) {
3793 event->pending_disable = 0;
3794 __perf_event_disable(event);
3795 }
3796
3797 if (event->pending_wakeup) {
3798 event->pending_wakeup = 0;
3799 perf_event_wakeup(event);
3800 }
3801}
3802
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003803/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08003804 * We assume there is only KVM supporting the callbacks.
3805 * Later on, we might change it to a list if there is
3806 * another virtualization implementation supporting the callbacks.
3807 */
3808struct perf_guest_info_callbacks *perf_guest_cbs;
3809
3810int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3811{
3812 perf_guest_cbs = cbs;
3813 return 0;
3814}
3815EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
3816
3817int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3818{
3819 perf_guest_cbs = NULL;
3820 return 0;
3821}
3822EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
3823
Jiri Olsa40189942012-08-07 15:20:37 +02003824static void
3825perf_output_sample_regs(struct perf_output_handle *handle,
3826 struct pt_regs *regs, u64 mask)
3827{
3828 int bit;
3829
3830 for_each_set_bit(bit, (const unsigned long *) &mask,
3831 sizeof(mask) * BITS_PER_BYTE) {
3832 u64 val;
3833
3834 val = perf_reg_value(regs, bit);
3835 perf_output_put(handle, val);
3836 }
3837}
3838
3839static void perf_sample_regs_user(struct perf_regs_user *regs_user,
3840 struct pt_regs *regs)
3841{
3842 if (!user_mode(regs)) {
3843 if (current->mm)
3844 regs = task_pt_regs(current);
3845 else
3846 regs = NULL;
3847 }
3848
3849 if (regs) {
3850 regs_user->regs = regs;
3851 regs_user->abi = perf_reg_abi(current);
3852 }
3853}
3854
Jiri Olsac5ebced2012-08-07 15:20:40 +02003855/*
3856 * Get remaining task size from user stack pointer.
3857 *
3858 * It'd be better to take stack vma map and limit this more
3859 * precisly, but there's no way to get it safely under interrupt,
3860 * so using TASK_SIZE as limit.
3861 */
3862static u64 perf_ustack_task_size(struct pt_regs *regs)
3863{
3864 unsigned long addr = perf_user_stack_pointer(regs);
3865
3866 if (!addr || addr >= TASK_SIZE)
3867 return 0;
3868
3869 return TASK_SIZE - addr;
3870}
3871
3872static u16
3873perf_sample_ustack_size(u16 stack_size, u16 header_size,
3874 struct pt_regs *regs)
3875{
3876 u64 task_size;
3877
3878 /* No regs, no stack pointer, no dump. */
3879 if (!regs)
3880 return 0;
3881
3882 /*
3883 * Check if we fit in with the requested stack size into the:
3884 * - TASK_SIZE
3885 * If we don't, we limit the size to the TASK_SIZE.
3886 *
3887 * - remaining sample size
3888 * If we don't, we customize the stack size to
3889 * fit in to the remaining sample size.
3890 */
3891
3892 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
3893 stack_size = min(stack_size, (u16) task_size);
3894
3895 /* Current header size plus static size and dynamic size. */
3896 header_size += 2 * sizeof(u64);
3897
3898 /* Do we fit in with the current stack dump size? */
3899 if ((u16) (header_size + stack_size) < header_size) {
3900 /*
3901 * If we overflow the maximum size for the sample,
3902 * we customize the stack dump size to fit in.
3903 */
3904 stack_size = USHRT_MAX - header_size - sizeof(u64);
3905 stack_size = round_up(stack_size, sizeof(u64));
3906 }
3907
3908 return stack_size;
3909}
3910
3911static void
3912perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
3913 struct pt_regs *regs)
3914{
3915 /* Case of a kernel thread, nothing to dump */
3916 if (!regs) {
3917 u64 size = 0;
3918 perf_output_put(handle, size);
3919 } else {
3920 unsigned long sp;
3921 unsigned int rem;
3922 u64 dyn_size;
3923
3924 /*
3925 * We dump:
3926 * static size
3927 * - the size requested by user or the best one we can fit
3928 * in to the sample max size
3929 * data
3930 * - user stack dump data
3931 * dynamic size
3932 * - the actual dumped size
3933 */
3934
3935 /* Static size. */
3936 perf_output_put(handle, dump_size);
3937
3938 /* Data. */
3939 sp = perf_user_stack_pointer(regs);
3940 rem = __output_copy_user(handle, (void *) sp, dump_size);
3941 dyn_size = dump_size - rem;
3942
3943 perf_output_skip(handle, rem);
3944
3945 /* Dynamic size. */
3946 perf_output_put(handle, dyn_size);
3947 }
3948}
3949
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02003950static void __perf_event_header__init_id(struct perf_event_header *header,
3951 struct perf_sample_data *data,
3952 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02003953{
3954 u64 sample_type = event->attr.sample_type;
3955
3956 data->type = sample_type;
3957 header->size += event->id_header_size;
3958
3959 if (sample_type & PERF_SAMPLE_TID) {
3960 /* namespace issues */
3961 data->tid_entry.pid = perf_event_pid(event, current);
3962 data->tid_entry.tid = perf_event_tid(event, current);
3963 }
3964
3965 if (sample_type & PERF_SAMPLE_TIME)
3966 data->time = perf_clock();
3967
3968 if (sample_type & PERF_SAMPLE_ID)
3969 data->id = primary_event_id(event);
3970
3971 if (sample_type & PERF_SAMPLE_STREAM_ID)
3972 data->stream_id = event->id;
3973
3974 if (sample_type & PERF_SAMPLE_CPU) {
3975 data->cpu_entry.cpu = raw_smp_processor_id();
3976 data->cpu_entry.reserved = 0;
3977 }
3978}
3979
Frederic Weisbecker76369132011-05-19 19:55:04 +02003980void perf_event_header__init_id(struct perf_event_header *header,
3981 struct perf_sample_data *data,
3982 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02003983{
3984 if (event->attr.sample_id_all)
3985 __perf_event_header__init_id(header, data, event);
3986}
3987
3988static void __perf_event__output_id_sample(struct perf_output_handle *handle,
3989 struct perf_sample_data *data)
3990{
3991 u64 sample_type = data->type;
3992
3993 if (sample_type & PERF_SAMPLE_TID)
3994 perf_output_put(handle, data->tid_entry);
3995
3996 if (sample_type & PERF_SAMPLE_TIME)
3997 perf_output_put(handle, data->time);
3998
3999 if (sample_type & PERF_SAMPLE_ID)
4000 perf_output_put(handle, data->id);
4001
4002 if (sample_type & PERF_SAMPLE_STREAM_ID)
4003 perf_output_put(handle, data->stream_id);
4004
4005 if (sample_type & PERF_SAMPLE_CPU)
4006 perf_output_put(handle, data->cpu_entry);
4007}
4008
Frederic Weisbecker76369132011-05-19 19:55:04 +02004009void perf_event__output_id_sample(struct perf_event *event,
4010 struct perf_output_handle *handle,
4011 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004012{
4013 if (event->attr.sample_id_all)
4014 __perf_event__output_id_sample(handle, sample);
4015}
4016
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004017static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004018 struct perf_event *event,
4019 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004020{
4021 u64 read_format = event->attr.read_format;
4022 u64 values[4];
4023 int n = 0;
4024
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004025 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004026 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004027 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004028 atomic64_read(&event->child_total_time_enabled);
4029 }
4030 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004031 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004032 atomic64_read(&event->child_total_time_running);
4033 }
4034 if (read_format & PERF_FORMAT_ID)
4035 values[n++] = primary_event_id(event);
4036
Frederic Weisbecker76369132011-05-19 19:55:04 +02004037 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004038}
4039
4040/*
4041 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
4042 */
4043static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004044 struct perf_event *event,
4045 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004046{
4047 struct perf_event *leader = event->group_leader, *sub;
4048 u64 read_format = event->attr.read_format;
4049 u64 values[5];
4050 int n = 0;
4051
4052 values[n++] = 1 + leader->nr_siblings;
4053
4054 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02004055 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004056
4057 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02004058 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004059
4060 if (leader != event)
4061 leader->pmu->read(leader);
4062
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004063 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004064 if (read_format & PERF_FORMAT_ID)
4065 values[n++] = primary_event_id(leader);
4066
Frederic Weisbecker76369132011-05-19 19:55:04 +02004067 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004068
4069 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
4070 n = 0;
4071
4072 if (sub != event)
4073 sub->pmu->read(sub);
4074
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004075 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004076 if (read_format & PERF_FORMAT_ID)
4077 values[n++] = primary_event_id(sub);
4078
Frederic Weisbecker76369132011-05-19 19:55:04 +02004079 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004080 }
4081}
4082
Stephane Eranianeed01522010-10-26 16:08:01 +02004083#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
4084 PERF_FORMAT_TOTAL_TIME_RUNNING)
4085
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004086static void perf_output_read(struct perf_output_handle *handle,
4087 struct perf_event *event)
4088{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004089 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02004090 u64 read_format = event->attr.read_format;
4091
4092 /*
4093 * compute total_time_enabled, total_time_running
4094 * based on snapshot values taken when the event
4095 * was last scheduled in.
4096 *
4097 * we cannot simply called update_context_time()
4098 * because of locking issue as we are called in
4099 * NMI context
4100 */
Eric B Munsonc4794292011-06-23 16:34:38 -04004101 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004102 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02004103
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004104 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02004105 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004106 else
Stephane Eranianeed01522010-10-26 16:08:01 +02004107 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004108}
4109
4110void perf_output_sample(struct perf_output_handle *handle,
4111 struct perf_event_header *header,
4112 struct perf_sample_data *data,
4113 struct perf_event *event)
4114{
4115 u64 sample_type = data->type;
4116
4117 perf_output_put(handle, *header);
4118
4119 if (sample_type & PERF_SAMPLE_IP)
4120 perf_output_put(handle, data->ip);
4121
4122 if (sample_type & PERF_SAMPLE_TID)
4123 perf_output_put(handle, data->tid_entry);
4124
4125 if (sample_type & PERF_SAMPLE_TIME)
4126 perf_output_put(handle, data->time);
4127
4128 if (sample_type & PERF_SAMPLE_ADDR)
4129 perf_output_put(handle, data->addr);
4130
4131 if (sample_type & PERF_SAMPLE_ID)
4132 perf_output_put(handle, data->id);
4133
4134 if (sample_type & PERF_SAMPLE_STREAM_ID)
4135 perf_output_put(handle, data->stream_id);
4136
4137 if (sample_type & PERF_SAMPLE_CPU)
4138 perf_output_put(handle, data->cpu_entry);
4139
4140 if (sample_type & PERF_SAMPLE_PERIOD)
4141 perf_output_put(handle, data->period);
4142
4143 if (sample_type & PERF_SAMPLE_READ)
4144 perf_output_read(handle, event);
4145
4146 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4147 if (data->callchain) {
4148 int size = 1;
4149
4150 if (data->callchain)
4151 size += data->callchain->nr;
4152
4153 size *= sizeof(u64);
4154
Frederic Weisbecker76369132011-05-19 19:55:04 +02004155 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004156 } else {
4157 u64 nr = 0;
4158 perf_output_put(handle, nr);
4159 }
4160 }
4161
4162 if (sample_type & PERF_SAMPLE_RAW) {
4163 if (data->raw) {
4164 perf_output_put(handle, data->raw->size);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004165 __output_copy(handle, data->raw->data,
4166 data->raw->size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004167 } else {
4168 struct {
4169 u32 size;
4170 u32 data;
4171 } raw = {
4172 .size = sizeof(u32),
4173 .data = 0,
4174 };
4175 perf_output_put(handle, raw);
4176 }
4177 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004178
4179 if (!event->attr.watermark) {
4180 int wakeup_events = event->attr.wakeup_events;
4181
4182 if (wakeup_events) {
4183 struct ring_buffer *rb = handle->rb;
4184 int events = local_inc_return(&rb->events);
4185
4186 if (events >= wakeup_events) {
4187 local_sub(wakeup_events, &rb->events);
4188 local_inc(&rb->wakeup);
4189 }
4190 }
4191 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004192
4193 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4194 if (data->br_stack) {
4195 size_t size;
4196
4197 size = data->br_stack->nr
4198 * sizeof(struct perf_branch_entry);
4199
4200 perf_output_put(handle, data->br_stack->nr);
4201 perf_output_copy(handle, data->br_stack->entries, size);
4202 } else {
4203 /*
4204 * we always store at least the value of nr
4205 */
4206 u64 nr = 0;
4207 perf_output_put(handle, nr);
4208 }
4209 }
Jiri Olsa40189942012-08-07 15:20:37 +02004210
4211 if (sample_type & PERF_SAMPLE_REGS_USER) {
4212 u64 abi = data->regs_user.abi;
4213
4214 /*
4215 * If there are no regs to dump, notice it through
4216 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
4217 */
4218 perf_output_put(handle, abi);
4219
4220 if (abi) {
4221 u64 mask = event->attr.sample_regs_user;
4222 perf_output_sample_regs(handle,
4223 data->regs_user.regs,
4224 mask);
4225 }
4226 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004227
4228 if (sample_type & PERF_SAMPLE_STACK_USER)
4229 perf_output_sample_ustack(handle,
4230 data->stack_user_size,
4231 data->regs_user.regs);
Andi Kleenc3feedf2013-01-24 16:10:28 +01004232
4233 if (sample_type & PERF_SAMPLE_WEIGHT)
4234 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01004235
4236 if (sample_type & PERF_SAMPLE_DATA_SRC)
4237 perf_output_put(handle, data->data_src.val);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004238}
4239
4240void perf_prepare_sample(struct perf_event_header *header,
4241 struct perf_sample_data *data,
4242 struct perf_event *event,
4243 struct pt_regs *regs)
4244{
4245 u64 sample_type = event->attr.sample_type;
4246
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004247 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004248 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004249
4250 header->misc = 0;
4251 header->misc |= perf_misc_flags(regs);
4252
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004253 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004254
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004255 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004256 data->ip = perf_instruction_pointer(regs);
4257
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004258 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4259 int size = 1;
4260
Andrew Vagine6dab5f2012-07-11 18:14:58 +04004261 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004262
4263 if (data->callchain)
4264 size += data->callchain->nr;
4265
4266 header->size += size * sizeof(u64);
4267 }
4268
4269 if (sample_type & PERF_SAMPLE_RAW) {
4270 int size = sizeof(u32);
4271
4272 if (data->raw)
4273 size += data->raw->size;
4274 else
4275 size += sizeof(u32);
4276
4277 WARN_ON_ONCE(size & (sizeof(u64)-1));
4278 header->size += size;
4279 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004280
4281 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4282 int size = sizeof(u64); /* nr */
4283 if (data->br_stack) {
4284 size += data->br_stack->nr
4285 * sizeof(struct perf_branch_entry);
4286 }
4287 header->size += size;
4288 }
Jiri Olsa40189942012-08-07 15:20:37 +02004289
4290 if (sample_type & PERF_SAMPLE_REGS_USER) {
4291 /* regs dump ABI info */
4292 int size = sizeof(u64);
4293
4294 perf_sample_regs_user(&data->regs_user, regs);
4295
4296 if (data->regs_user.regs) {
4297 u64 mask = event->attr.sample_regs_user;
4298 size += hweight64(mask) * sizeof(u64);
4299 }
4300
4301 header->size += size;
4302 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004303
4304 if (sample_type & PERF_SAMPLE_STACK_USER) {
4305 /*
4306 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
4307 * processed as the last one or have additional check added
4308 * in case new sample type is added, because we could eat
4309 * up the rest of the sample size.
4310 */
4311 struct perf_regs_user *uregs = &data->regs_user;
4312 u16 stack_size = event->attr.sample_stack_user;
4313 u16 size = sizeof(u64);
4314
4315 if (!uregs->abi)
4316 perf_sample_regs_user(uregs, regs);
4317
4318 stack_size = perf_sample_ustack_size(stack_size, header->size,
4319 uregs->regs);
4320
4321 /*
4322 * If there is something to dump, add space for the dump
4323 * itself and for the field that tells the dynamic size,
4324 * which is how many have been actually dumped.
4325 */
4326 if (stack_size)
4327 size += sizeof(u64) + stack_size;
4328
4329 data->stack_user_size = stack_size;
4330 header->size += size;
4331 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004332}
4333
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004334static void perf_event_output(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004335 struct perf_sample_data *data,
4336 struct pt_regs *regs)
4337{
4338 struct perf_output_handle handle;
4339 struct perf_event_header header;
4340
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004341 /* protect the callchain buffers */
4342 rcu_read_lock();
4343
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004344 perf_prepare_sample(&header, data, event, regs);
4345
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004346 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004347 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004348
4349 perf_output_sample(&handle, &header, data, event);
4350
4351 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004352
4353exit:
4354 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004355}
4356
4357/*
4358 * read event_id
4359 */
4360
4361struct perf_read_event {
4362 struct perf_event_header header;
4363
4364 u32 pid;
4365 u32 tid;
4366};
4367
4368static void
4369perf_event_read_event(struct perf_event *event,
4370 struct task_struct *task)
4371{
4372 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004373 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004374 struct perf_read_event read_event = {
4375 .header = {
4376 .type = PERF_RECORD_READ,
4377 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004378 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004379 },
4380 .pid = perf_event_pid(event, task),
4381 .tid = perf_event_tid(event, task),
4382 };
4383 int ret;
4384
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004385 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004386 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004387 if (ret)
4388 return;
4389
4390 perf_output_put(&handle, read_event);
4391 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004392 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004393
4394 perf_output_end(&handle);
4395}
4396
Jiri Olsa52d857a2013-05-06 18:27:18 +02004397typedef int (perf_event_aux_match_cb)(struct perf_event *event, void *data);
4398typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
4399
4400static void
4401perf_event_aux_ctx(struct perf_event_context *ctx,
4402 perf_event_aux_match_cb match,
4403 perf_event_aux_output_cb output,
4404 void *data)
4405{
4406 struct perf_event *event;
4407
4408 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4409 if (event->state < PERF_EVENT_STATE_INACTIVE)
4410 continue;
4411 if (!event_filter_match(event))
4412 continue;
4413 if (match(event, data))
4414 output(event, data);
4415 }
4416}
4417
4418static void
4419perf_event_aux(perf_event_aux_match_cb match,
4420 perf_event_aux_output_cb output,
4421 void *data,
4422 struct perf_event_context *task_ctx)
4423{
4424 struct perf_cpu_context *cpuctx;
4425 struct perf_event_context *ctx;
4426 struct pmu *pmu;
4427 int ctxn;
4428
4429 rcu_read_lock();
4430 list_for_each_entry_rcu(pmu, &pmus, entry) {
4431 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
4432 if (cpuctx->unique_pmu != pmu)
4433 goto next;
4434 perf_event_aux_ctx(&cpuctx->ctx, match, output, data);
4435 if (task_ctx)
4436 goto next;
4437 ctxn = pmu->task_ctx_nr;
4438 if (ctxn < 0)
4439 goto next;
4440 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4441 if (ctx)
4442 perf_event_aux_ctx(ctx, match, output, data);
4443next:
4444 put_cpu_ptr(pmu->pmu_cpu_context);
4445 }
4446
4447 if (task_ctx) {
4448 preempt_disable();
4449 perf_event_aux_ctx(task_ctx, match, output, data);
4450 preempt_enable();
4451 }
4452 rcu_read_unlock();
4453}
4454
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004455/*
4456 * task tracking -- fork/exit
4457 *
Eric B Munson3af9e852010-05-18 15:30:49 +01004458 * enabled by: attr.comm | attr.mmap | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004459 */
4460
4461struct perf_task_event {
4462 struct task_struct *task;
4463 struct perf_event_context *task_ctx;
4464
4465 struct {
4466 struct perf_event_header header;
4467
4468 u32 pid;
4469 u32 ppid;
4470 u32 tid;
4471 u32 ptid;
4472 u64 time;
4473 } event_id;
4474};
4475
4476static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004477 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004478{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004479 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004480 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004481 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004482 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004483 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01004484
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004485 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004486
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004487 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004488 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02004489 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004490 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004491
4492 task_event->event_id.pid = perf_event_pid(event, task);
4493 task_event->event_id.ppid = perf_event_pid(event, current);
4494
4495 task_event->event_id.tid = perf_event_tid(event, task);
4496 task_event->event_id.ptid = perf_event_tid(event, current);
4497
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004498 perf_output_put(&handle, task_event->event_id);
4499
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004500 perf_event__output_id_sample(event, &handle, &sample);
4501
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004502 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004503out:
4504 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004505}
4506
Jiri Olsa52d857a2013-05-06 18:27:18 +02004507static int perf_event_task_match(struct perf_event *event,
4508 void *data __maybe_unused)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004509{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004510 return event->attr.comm || event->attr.mmap ||
4511 event->attr.mmap_data || event->attr.task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004512}
4513
4514static void perf_event_task(struct task_struct *task,
4515 struct perf_event_context *task_ctx,
4516 int new)
4517{
4518 struct perf_task_event task_event;
4519
4520 if (!atomic_read(&nr_comm_events) &&
4521 !atomic_read(&nr_mmap_events) &&
4522 !atomic_read(&nr_task_events))
4523 return;
4524
4525 task_event = (struct perf_task_event){
4526 .task = task,
4527 .task_ctx = task_ctx,
4528 .event_id = {
4529 .header = {
4530 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
4531 .misc = 0,
4532 .size = sizeof(task_event.event_id),
4533 },
4534 /* .pid */
4535 /* .ppid */
4536 /* .tid */
4537 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004538 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004539 },
4540 };
4541
Jiri Olsa52d857a2013-05-06 18:27:18 +02004542 perf_event_aux(perf_event_task_match,
4543 perf_event_task_output,
4544 &task_event,
4545 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004546}
4547
4548void perf_event_fork(struct task_struct *task)
4549{
4550 perf_event_task(task, NULL, 1);
4551}
4552
4553/*
4554 * comm tracking
4555 */
4556
4557struct perf_comm_event {
4558 struct task_struct *task;
4559 char *comm;
4560 int comm_size;
4561
4562 struct {
4563 struct perf_event_header header;
4564
4565 u32 pid;
4566 u32 tid;
4567 } event_id;
4568};
4569
4570static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004571 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004572{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004573 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004574 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004575 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004576 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004577 int ret;
4578
4579 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
4580 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004581 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004582
4583 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004584 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004585
4586 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
4587 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
4588
4589 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004590 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004591 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004592
4593 perf_event__output_id_sample(event, &handle, &sample);
4594
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004595 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004596out:
4597 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004598}
4599
Jiri Olsa52d857a2013-05-06 18:27:18 +02004600static int perf_event_comm_match(struct perf_event *event,
4601 void *data __maybe_unused)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004602{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004603 return event->attr.comm;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004604}
4605
4606static void perf_event_comm_event(struct perf_comm_event *comm_event)
4607{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004608 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004609 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004610
4611 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01004612 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004613 size = ALIGN(strlen(comm)+1, sizeof(u64));
4614
4615 comm_event->comm = comm;
4616 comm_event->comm_size = size;
4617
4618 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004619
Jiri Olsa52d857a2013-05-06 18:27:18 +02004620 perf_event_aux(perf_event_comm_match,
4621 perf_event_comm_output,
4622 comm_event,
4623 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004624}
4625
4626void perf_event_comm(struct task_struct *task)
4627{
4628 struct perf_comm_event comm_event;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004629 struct perf_event_context *ctx;
4630 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004631
Paul E. McKenneyc79aa0d92013-04-19 12:01:24 -07004632 rcu_read_lock();
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004633 for_each_task_context_nr(ctxn) {
4634 ctx = task->perf_event_ctxp[ctxn];
4635 if (!ctx)
4636 continue;
4637
4638 perf_event_enable_on_exec(ctx);
4639 }
Paul E. McKenneyc79aa0d92013-04-19 12:01:24 -07004640 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004641
4642 if (!atomic_read(&nr_comm_events))
4643 return;
4644
4645 comm_event = (struct perf_comm_event){
4646 .task = task,
4647 /* .comm */
4648 /* .comm_size */
4649 .event_id = {
4650 .header = {
4651 .type = PERF_RECORD_COMM,
4652 .misc = 0,
4653 /* .size */
4654 },
4655 /* .pid */
4656 /* .tid */
4657 },
4658 };
4659
4660 perf_event_comm_event(&comm_event);
4661}
4662
4663/*
4664 * mmap tracking
4665 */
4666
4667struct perf_mmap_event {
4668 struct vm_area_struct *vma;
4669
4670 const char *file_name;
4671 int file_size;
4672
4673 struct {
4674 struct perf_event_header header;
4675
4676 u32 pid;
4677 u32 tid;
4678 u64 start;
4679 u64 len;
4680 u64 pgoff;
4681 } event_id;
4682};
4683
4684static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004685 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004686{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004687 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004688 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004689 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004690 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004691 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004692
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004693 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
4694 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004695 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004696 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004697 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004698
4699 mmap_event->event_id.pid = perf_event_pid(event, current);
4700 mmap_event->event_id.tid = perf_event_tid(event, current);
4701
4702 perf_output_put(&handle, mmap_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004703 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004704 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004705
4706 perf_event__output_id_sample(event, &handle, &sample);
4707
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004708 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004709out:
4710 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004711}
4712
4713static int perf_event_mmap_match(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004714 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004715{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004716 struct perf_mmap_event *mmap_event = data;
4717 struct vm_area_struct *vma = mmap_event->vma;
4718 int executable = vma->vm_flags & VM_EXEC;
Peter Zijlstra22e19082010-01-18 09:12:32 +01004719
Jiri Olsa52d857a2013-05-06 18:27:18 +02004720 return (!executable && event->attr.mmap_data) ||
4721 (executable && event->attr.mmap);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004722}
4723
4724static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
4725{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004726 struct vm_area_struct *vma = mmap_event->vma;
4727 struct file *file = vma->vm_file;
4728 unsigned int size;
4729 char tmp[16];
4730 char *buf = NULL;
4731 const char *name;
4732
4733 memset(tmp, 0, sizeof(tmp));
4734
4735 if (file) {
4736 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02004737 * d_path works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004738 * need to add enough zero bytes after the string to handle
4739 * the 64bit alignment we do later.
4740 */
4741 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
4742 if (!buf) {
4743 name = strncpy(tmp, "//enomem", sizeof(tmp));
4744 goto got_name;
4745 }
4746 name = d_path(&file->f_path, buf, PATH_MAX);
4747 if (IS_ERR(name)) {
4748 name = strncpy(tmp, "//toolong", sizeof(tmp));
4749 goto got_name;
4750 }
4751 } else {
4752 if (arch_vma_name(mmap_event->vma)) {
4753 name = strncpy(tmp, arch_vma_name(mmap_event->vma),
Chen Gangc97847d2013-04-08 11:48:27 +08004754 sizeof(tmp) - 1);
4755 tmp[sizeof(tmp) - 1] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004756 goto got_name;
4757 }
4758
4759 if (!vma->vm_mm) {
4760 name = strncpy(tmp, "[vdso]", sizeof(tmp));
4761 goto got_name;
Eric B Munson3af9e852010-05-18 15:30:49 +01004762 } else if (vma->vm_start <= vma->vm_mm->start_brk &&
4763 vma->vm_end >= vma->vm_mm->brk) {
4764 name = strncpy(tmp, "[heap]", sizeof(tmp));
4765 goto got_name;
4766 } else if (vma->vm_start <= vma->vm_mm->start_stack &&
4767 vma->vm_end >= vma->vm_mm->start_stack) {
4768 name = strncpy(tmp, "[stack]", sizeof(tmp));
4769 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004770 }
4771
4772 name = strncpy(tmp, "//anon", sizeof(tmp));
4773 goto got_name;
4774 }
4775
4776got_name:
4777 size = ALIGN(strlen(name)+1, sizeof(u64));
4778
4779 mmap_event->file_name = name;
4780 mmap_event->file_size = size;
4781
Stephane Eranian2fe85422013-01-24 16:10:39 +01004782 if (!(vma->vm_flags & VM_EXEC))
4783 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
4784
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004785 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
4786
Jiri Olsa52d857a2013-05-06 18:27:18 +02004787 perf_event_aux(perf_event_mmap_match,
4788 perf_event_mmap_output,
4789 mmap_event,
4790 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004791
4792 kfree(buf);
4793}
4794
Eric B Munson3af9e852010-05-18 15:30:49 +01004795void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004796{
4797 struct perf_mmap_event mmap_event;
4798
4799 if (!atomic_read(&nr_mmap_events))
4800 return;
4801
4802 mmap_event = (struct perf_mmap_event){
4803 .vma = vma,
4804 /* .file_name */
4805 /* .file_size */
4806 .event_id = {
4807 .header = {
4808 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004809 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004810 /* .size */
4811 },
4812 /* .pid */
4813 /* .tid */
4814 .start = vma->vm_start,
4815 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01004816 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004817 },
4818 };
4819
4820 perf_event_mmap_event(&mmap_event);
4821}
4822
4823/*
4824 * IRQ throttle logging
4825 */
4826
4827static void perf_log_throttle(struct perf_event *event, int enable)
4828{
4829 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004830 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004831 int ret;
4832
4833 struct {
4834 struct perf_event_header header;
4835 u64 time;
4836 u64 id;
4837 u64 stream_id;
4838 } throttle_event = {
4839 .header = {
4840 .type = PERF_RECORD_THROTTLE,
4841 .misc = 0,
4842 .size = sizeof(throttle_event),
4843 },
4844 .time = perf_clock(),
4845 .id = primary_event_id(event),
4846 .stream_id = event->id,
4847 };
4848
4849 if (enable)
4850 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
4851
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004852 perf_event_header__init_id(&throttle_event.header, &sample, event);
4853
4854 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004855 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004856 if (ret)
4857 return;
4858
4859 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004860 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004861 perf_output_end(&handle);
4862}
4863
4864/*
4865 * Generic event overflow handling, sampling.
4866 */
4867
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004868static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004869 int throttle, struct perf_sample_data *data,
4870 struct pt_regs *regs)
4871{
4872 int events = atomic_read(&event->event_limit);
4873 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004874 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004875 int ret = 0;
4876
Peter Zijlstra96398822010-11-24 18:55:29 +01004877 /*
4878 * Non-sampling counters might still use the PMI to fold short
4879 * hardware counters, ignore those.
4880 */
4881 if (unlikely(!is_sampling_event(event)))
4882 return 0;
4883
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004884 seq = __this_cpu_read(perf_throttled_seq);
4885 if (seq != hwc->interrupts_seq) {
4886 hwc->interrupts_seq = seq;
4887 hwc->interrupts = 1;
4888 } else {
4889 hwc->interrupts++;
4890 if (unlikely(throttle
4891 && hwc->interrupts >= max_samples_per_tick)) {
4892 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01004893 hwc->interrupts = MAX_INTERRUPTS;
4894 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004895 ret = 1;
4896 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004897 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004898
4899 if (event->attr.freq) {
4900 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01004901 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004902
Peter Zijlstraabd50712010-01-26 18:50:16 +01004903 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004904
Peter Zijlstraabd50712010-01-26 18:50:16 +01004905 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004906 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004907 }
4908
4909 /*
4910 * XXX event_limit might not quite work as expected on inherited
4911 * events
4912 */
4913
4914 event->pending_kill = POLL_IN;
4915 if (events && atomic_dec_and_test(&event->event_limit)) {
4916 ret = 1;
4917 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004918 event->pending_disable = 1;
4919 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004920 }
4921
Peter Zijlstra453f19e2009-11-20 22:19:43 +01004922 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004923 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01004924 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004925 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01004926
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02004927 if (event->fasync && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004928 event->pending_wakeup = 1;
4929 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02004930 }
4931
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004932 return ret;
4933}
4934
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004935int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004936 struct perf_sample_data *data,
4937 struct pt_regs *regs)
4938{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004939 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004940}
4941
4942/*
4943 * Generic software event infrastructure
4944 */
4945
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004946struct swevent_htable {
4947 struct swevent_hlist *swevent_hlist;
4948 struct mutex hlist_mutex;
4949 int hlist_refcount;
4950
4951 /* Recursion avoidance in each contexts */
4952 int recursion[PERF_NR_CONTEXTS];
4953};
4954
4955static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
4956
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004957/*
4958 * We directly increment event->count and keep a second value in
4959 * event->hw.period_left to count intervals. This period event
4960 * is kept in the range [-sample_period, 0] so that we can use the
4961 * sign as trigger.
4962 */
4963
Jiri Olsaab573842013-05-01 17:25:44 +02004964u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004965{
4966 struct hw_perf_event *hwc = &event->hw;
4967 u64 period = hwc->last_period;
4968 u64 nr, offset;
4969 s64 old, val;
4970
4971 hwc->last_period = hwc->sample_period;
4972
4973again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02004974 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004975 if (val < 0)
4976 return 0;
4977
4978 nr = div64_u64(period + val, period);
4979 offset = nr * period;
4980 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02004981 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004982 goto again;
4983
4984 return nr;
4985}
4986
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004987static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004988 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004989 struct pt_regs *regs)
4990{
4991 struct hw_perf_event *hwc = &event->hw;
4992 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004993
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004994 if (!overflow)
4995 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004996
4997 if (hwc->interrupts == MAX_INTERRUPTS)
4998 return;
4999
5000 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005001 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005002 data, regs)) {
5003 /*
5004 * We inhibit the overflow from happening when
5005 * hwc->interrupts == MAX_INTERRUPTS.
5006 */
5007 break;
5008 }
5009 throttle = 1;
5010 }
5011}
5012
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005013static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005014 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005015 struct pt_regs *regs)
5016{
5017 struct hw_perf_event *hwc = &event->hw;
5018
Peter Zijlstrae7850592010-05-21 14:43:08 +02005019 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005020
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005021 if (!regs)
5022 return;
5023
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005024 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005025 return;
5026
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03005027 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
5028 data->period = nr;
5029 return perf_swevent_overflow(event, 1, data, regs);
5030 } else
5031 data->period = event->hw.last_period;
5032
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005033 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005034 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005035
Peter Zijlstrae7850592010-05-21 14:43:08 +02005036 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005037 return;
5038
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005039 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005040}
5041
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005042static int perf_exclude_event(struct perf_event *event,
5043 struct pt_regs *regs)
5044{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005045 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01005046 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005047
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005048 if (regs) {
5049 if (event->attr.exclude_user && user_mode(regs))
5050 return 1;
5051
5052 if (event->attr.exclude_kernel && !user_mode(regs))
5053 return 1;
5054 }
5055
5056 return 0;
5057}
5058
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005059static int perf_swevent_match(struct perf_event *event,
5060 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08005061 u32 event_id,
5062 struct perf_sample_data *data,
5063 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005064{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005065 if (event->attr.type != type)
5066 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005067
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005068 if (event->attr.config != event_id)
5069 return 0;
5070
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005071 if (perf_exclude_event(event, regs))
5072 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005073
5074 return 1;
5075}
5076
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005077static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005078{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005079 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005080
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005081 return hash_64(val, SWEVENT_HLIST_BITS);
5082}
5083
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005084static inline struct hlist_head *
5085__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005086{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005087 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005088
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005089 return &hlist->heads[hash];
5090}
5091
5092/* For the read side: events when they trigger */
5093static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005094find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005095{
5096 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005097
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005098 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005099 if (!hlist)
5100 return NULL;
5101
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005102 return __find_swevent_head(hlist, type, event_id);
5103}
5104
5105/* For the event head insertion and removal in the hlist */
5106static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005107find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005108{
5109 struct swevent_hlist *hlist;
5110 u32 event_id = event->attr.config;
5111 u64 type = event->attr.type;
5112
5113 /*
5114 * Event scheduling is always serialized against hlist allocation
5115 * and release. Which makes the protected version suitable here.
5116 * The context lock guarantees that.
5117 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005118 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005119 lockdep_is_held(&event->ctx->lock));
5120 if (!hlist)
5121 return NULL;
5122
5123 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005124}
5125
5126static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005127 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005128 struct perf_sample_data *data,
5129 struct pt_regs *regs)
5130{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005131 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005132 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005133 struct hlist_head *head;
5134
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005135 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005136 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005137 if (!head)
5138 goto end;
5139
Sasha Levinb67bfe02013-02-27 17:06:00 -08005140 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08005141 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005142 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005143 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005144end:
5145 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005146}
5147
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005148int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005149{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005150 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005151
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005152 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005153}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01005154EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005155
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01005156inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005157{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005158 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005159
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005160 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005161}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005162
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005163void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005164{
Ingo Molnara4234bf2009-11-23 10:57:59 +01005165 struct perf_sample_data data;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005166 int rctx;
5167
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005168 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005169 rctx = perf_swevent_get_recursion_context();
5170 if (rctx < 0)
5171 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005172
Robert Richterfd0d0002012-04-02 20:19:08 +02005173 perf_sample_data_init(&data, addr, 0);
Ingo Molnara4234bf2009-11-23 10:57:59 +01005174
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005175 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005176
5177 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005178 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005179}
5180
5181static void perf_swevent_read(struct perf_event *event)
5182{
5183}
5184
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005185static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005186{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005187 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005188 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005189 struct hlist_head *head;
5190
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005191 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005192 hwc->last_period = hwc->sample_period;
5193 perf_swevent_set_period(event);
5194 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005195
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005196 hwc->state = !(flags & PERF_EF_START);
5197
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005198 head = find_swevent_head(swhash, event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005199 if (WARN_ON_ONCE(!head))
5200 return -EINVAL;
5201
5202 hlist_add_head_rcu(&event->hlist_entry, head);
5203
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005204 return 0;
5205}
5206
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005207static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005208{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005209 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005210}
5211
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005212static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005213{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005214 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005215}
5216
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005217static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005218{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005219 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005220}
5221
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005222/* Deref the hlist from the update side */
5223static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005224swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005225{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005226 return rcu_dereference_protected(swhash->swevent_hlist,
5227 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005228}
5229
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005230static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005231{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005232 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005233
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005234 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005235 return;
5236
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005237 rcu_assign_pointer(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08005238 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005239}
5240
5241static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
5242{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005243 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005244
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005245 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005246
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005247 if (!--swhash->hlist_refcount)
5248 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005249
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005250 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005251}
5252
5253static void swevent_hlist_put(struct perf_event *event)
5254{
5255 int cpu;
5256
5257 if (event->cpu != -1) {
5258 swevent_hlist_put_cpu(event, event->cpu);
5259 return;
5260 }
5261
5262 for_each_possible_cpu(cpu)
5263 swevent_hlist_put_cpu(event, cpu);
5264}
5265
5266static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
5267{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005268 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005269 int err = 0;
5270
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005271 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005272
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005273 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005274 struct swevent_hlist *hlist;
5275
5276 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
5277 if (!hlist) {
5278 err = -ENOMEM;
5279 goto exit;
5280 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005281 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005282 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005283 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005284exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005285 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005286
5287 return err;
5288}
5289
5290static int swevent_hlist_get(struct perf_event *event)
5291{
5292 int err;
5293 int cpu, failed_cpu;
5294
5295 if (event->cpu != -1)
5296 return swevent_hlist_get_cpu(event, event->cpu);
5297
5298 get_online_cpus();
5299 for_each_possible_cpu(cpu) {
5300 err = swevent_hlist_get_cpu(event, cpu);
5301 if (err) {
5302 failed_cpu = cpu;
5303 goto fail;
5304 }
5305 }
5306 put_online_cpus();
5307
5308 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005309fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005310 for_each_possible_cpu(cpu) {
5311 if (cpu == failed_cpu)
5312 break;
5313 swevent_hlist_put_cpu(event, cpu);
5314 }
5315
5316 put_online_cpus();
5317 return err;
5318}
5319
Ingo Molnarc5905af2012-02-24 08:31:31 +01005320struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005321
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005322static void sw_perf_event_destroy(struct perf_event *event)
5323{
5324 u64 event_id = event->attr.config;
5325
5326 WARN_ON(event->parent);
5327
Ingo Molnarc5905af2012-02-24 08:31:31 +01005328 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005329 swevent_hlist_put(event);
5330}
5331
5332static int perf_swevent_init(struct perf_event *event)
5333{
Tommi Rantala8176cce2013-04-13 22:49:14 +03005334 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005335
5336 if (event->attr.type != PERF_TYPE_SOFTWARE)
5337 return -ENOENT;
5338
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005339 /*
5340 * no branch sampling for software events
5341 */
5342 if (has_branch_stack(event))
5343 return -EOPNOTSUPP;
5344
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005345 switch (event_id) {
5346 case PERF_COUNT_SW_CPU_CLOCK:
5347 case PERF_COUNT_SW_TASK_CLOCK:
5348 return -ENOENT;
5349
5350 default:
5351 break;
5352 }
5353
Dan Carpenterce677832010-10-24 21:50:42 +02005354 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005355 return -ENOENT;
5356
5357 if (!event->parent) {
5358 int err;
5359
5360 err = swevent_hlist_get(event);
5361 if (err)
5362 return err;
5363
Ingo Molnarc5905af2012-02-24 08:31:31 +01005364 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005365 event->destroy = sw_perf_event_destroy;
5366 }
5367
5368 return 0;
5369}
5370
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005371static int perf_swevent_event_idx(struct perf_event *event)
5372{
5373 return 0;
5374}
5375
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005376static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005377 .task_ctx_nr = perf_sw_context,
5378
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005379 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005380 .add = perf_swevent_add,
5381 .del = perf_swevent_del,
5382 .start = perf_swevent_start,
5383 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005384 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005385
5386 .event_idx = perf_swevent_event_idx,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005387};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005388
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005389#ifdef CONFIG_EVENT_TRACING
5390
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005391static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005392 struct perf_sample_data *data)
5393{
5394 void *record = data->raw->data;
5395
5396 if (likely(!event->filter) || filter_match_preds(event->filter, record))
5397 return 1;
5398 return 0;
5399}
5400
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005401static int perf_tp_event_match(struct perf_event *event,
5402 struct perf_sample_data *data,
5403 struct pt_regs *regs)
5404{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01005405 if (event->hw.state & PERF_HES_STOPPED)
5406 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02005407 /*
5408 * All tracepoints are from kernel-space.
5409 */
5410 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005411 return 0;
5412
5413 if (!perf_tp_filter_match(event, data))
5414 return 0;
5415
5416 return 1;
5417}
5418
5419void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005420 struct pt_regs *regs, struct hlist_head *head, int rctx,
5421 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005422{
5423 struct perf_sample_data data;
5424 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005425
5426 struct perf_raw_record raw = {
5427 .size = entry_size,
5428 .data = record,
5429 };
5430
Robert Richterfd0d0002012-04-02 20:19:08 +02005431 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005432 data.raw = &raw;
5433
Sasha Levinb67bfe02013-02-27 17:06:00 -08005434 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005435 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005436 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005437 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005438
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005439 /*
5440 * If we got specified a target task, also iterate its context and
5441 * deliver this event there too.
5442 */
5443 if (task && task != current) {
5444 struct perf_event_context *ctx;
5445 struct trace_entry *entry = record;
5446
5447 rcu_read_lock();
5448 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
5449 if (!ctx)
5450 goto unlock;
5451
5452 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5453 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5454 continue;
5455 if (event->attr.config != entry->type)
5456 continue;
5457 if (perf_tp_event_match(event, &data, regs))
5458 perf_swevent_event(event, count, &data, regs);
5459 }
5460unlock:
5461 rcu_read_unlock();
5462 }
5463
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005464 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005465}
5466EXPORT_SYMBOL_GPL(perf_tp_event);
5467
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005468static void tp_perf_event_destroy(struct perf_event *event)
5469{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005470 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005471}
5472
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005473static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005474{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005475 int err;
5476
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005477 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5478 return -ENOENT;
5479
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005480 /*
5481 * no branch sampling for tracepoint events
5482 */
5483 if (has_branch_stack(event))
5484 return -EOPNOTSUPP;
5485
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005486 err = perf_trace_init(event);
5487 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005488 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005489
5490 event->destroy = tp_perf_event_destroy;
5491
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005492 return 0;
5493}
5494
5495static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005496 .task_ctx_nr = perf_sw_context,
5497
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005498 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005499 .add = perf_trace_add,
5500 .del = perf_trace_del,
5501 .start = perf_swevent_start,
5502 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005503 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005504
5505 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005506};
5507
5508static inline void perf_tp_register(void)
5509{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005510 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005511}
Li Zefan6fb29152009-10-15 11:21:42 +08005512
5513static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5514{
5515 char *filter_str;
5516 int ret;
5517
5518 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5519 return -EINVAL;
5520
5521 filter_str = strndup_user(arg, PAGE_SIZE);
5522 if (IS_ERR(filter_str))
5523 return PTR_ERR(filter_str);
5524
5525 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
5526
5527 kfree(filter_str);
5528 return ret;
5529}
5530
5531static void perf_event_free_filter(struct perf_event *event)
5532{
5533 ftrace_profile_free_filter(event);
5534}
5535
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005536#else
Li Zefan6fb29152009-10-15 11:21:42 +08005537
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005538static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005539{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005540}
Li Zefan6fb29152009-10-15 11:21:42 +08005541
5542static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5543{
5544 return -ENOENT;
5545}
5546
5547static void perf_event_free_filter(struct perf_event *event)
5548{
5549}
5550
Li Zefan07b139c2009-12-21 14:27:35 +08005551#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005552
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005553#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005554void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005555{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005556 struct perf_sample_data sample;
5557 struct pt_regs *regs = data;
5558
Robert Richterfd0d0002012-04-02 20:19:08 +02005559 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005560
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005561 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005562 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005563}
5564#endif
5565
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005566/*
5567 * hrtimer based swevent callback
5568 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005569
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005570static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005571{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005572 enum hrtimer_restart ret = HRTIMER_RESTART;
5573 struct perf_sample_data data;
5574 struct pt_regs *regs;
5575 struct perf_event *event;
5576 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005577
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005578 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005579
5580 if (event->state != PERF_EVENT_STATE_ACTIVE)
5581 return HRTIMER_NORESTART;
5582
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005583 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005584
Robert Richterfd0d0002012-04-02 20:19:08 +02005585 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005586 regs = get_irq_regs();
5587
5588 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08005589 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02005590 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005591 ret = HRTIMER_NORESTART;
5592 }
5593
5594 period = max_t(u64, 10000, event->hw.sample_period);
5595 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
5596
5597 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005598}
5599
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005600static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005601{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005602 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005603 s64 period;
5604
5605 if (!is_sampling_event(event))
5606 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005607
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005608 period = local64_read(&hwc->period_left);
5609 if (period) {
5610 if (period < 0)
5611 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02005612
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005613 local64_set(&hwc->period_left, 0);
5614 } else {
5615 period = max_t(u64, 10000, hwc->sample_period);
5616 }
5617 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005618 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02005619 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005620}
5621
5622static void perf_swevent_cancel_hrtimer(struct perf_event *event)
5623{
5624 struct hw_perf_event *hwc = &event->hw;
5625
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005626 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005627 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02005628 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005629
5630 hrtimer_cancel(&hwc->hrtimer);
5631 }
5632}
5633
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005634static void perf_swevent_init_hrtimer(struct perf_event *event)
5635{
5636 struct hw_perf_event *hwc = &event->hw;
5637
5638 if (!is_sampling_event(event))
5639 return;
5640
5641 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
5642 hwc->hrtimer.function = perf_swevent_hrtimer;
5643
5644 /*
5645 * Since hrtimers have a fixed rate, we can do a static freq->period
5646 * mapping and avoid the whole period adjust feedback stuff.
5647 */
5648 if (event->attr.freq) {
5649 long freq = event->attr.sample_freq;
5650
5651 event->attr.sample_period = NSEC_PER_SEC / freq;
5652 hwc->sample_period = event->attr.sample_period;
5653 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09005654 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005655 event->attr.freq = 0;
5656 }
5657}
5658
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005659/*
5660 * Software event: cpu wall time clock
5661 */
5662
5663static void cpu_clock_event_update(struct perf_event *event)
5664{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005665 s64 prev;
5666 u64 now;
5667
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005668 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005669 prev = local64_xchg(&event->hw.prev_count, now);
5670 local64_add(now - prev, &event->count);
5671}
5672
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005673static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005674{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005675 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005676 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005677}
5678
5679static void cpu_clock_event_stop(struct perf_event *event, int flags)
5680{
5681 perf_swevent_cancel_hrtimer(event);
5682 cpu_clock_event_update(event);
5683}
5684
5685static int cpu_clock_event_add(struct perf_event *event, int flags)
5686{
5687 if (flags & PERF_EF_START)
5688 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005689
5690 return 0;
5691}
5692
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005693static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005694{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005695 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005696}
5697
5698static void cpu_clock_event_read(struct perf_event *event)
5699{
5700 cpu_clock_event_update(event);
5701}
5702
5703static int cpu_clock_event_init(struct perf_event *event)
5704{
5705 if (event->attr.type != PERF_TYPE_SOFTWARE)
5706 return -ENOENT;
5707
5708 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
5709 return -ENOENT;
5710
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005711 /*
5712 * no branch sampling for software events
5713 */
5714 if (has_branch_stack(event))
5715 return -EOPNOTSUPP;
5716
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005717 perf_swevent_init_hrtimer(event);
5718
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005719 return 0;
5720}
5721
5722static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005723 .task_ctx_nr = perf_sw_context,
5724
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005725 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005726 .add = cpu_clock_event_add,
5727 .del = cpu_clock_event_del,
5728 .start = cpu_clock_event_start,
5729 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005730 .read = cpu_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005731
5732 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005733};
5734
5735/*
5736 * Software event: task time clock
5737 */
5738
5739static void task_clock_event_update(struct perf_event *event, u64 now)
5740{
5741 u64 prev;
5742 s64 delta;
5743
5744 prev = local64_xchg(&event->hw.prev_count, now);
5745 delta = now - prev;
5746 local64_add(delta, &event->count);
5747}
5748
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005749static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005750{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005751 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005752 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005753}
5754
5755static void task_clock_event_stop(struct perf_event *event, int flags)
5756{
5757 perf_swevent_cancel_hrtimer(event);
5758 task_clock_event_update(event, event->ctx->time);
5759}
5760
5761static int task_clock_event_add(struct perf_event *event, int flags)
5762{
5763 if (flags & PERF_EF_START)
5764 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005765
5766 return 0;
5767}
5768
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005769static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005770{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005771 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005772}
5773
5774static void task_clock_event_read(struct perf_event *event)
5775{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01005776 u64 now = perf_clock();
5777 u64 delta = now - event->ctx->timestamp;
5778 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005779
5780 task_clock_event_update(event, time);
5781}
5782
5783static int task_clock_event_init(struct perf_event *event)
5784{
5785 if (event->attr.type != PERF_TYPE_SOFTWARE)
5786 return -ENOENT;
5787
5788 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
5789 return -ENOENT;
5790
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005791 /*
5792 * no branch sampling for software events
5793 */
5794 if (has_branch_stack(event))
5795 return -EOPNOTSUPP;
5796
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005797 perf_swevent_init_hrtimer(event);
5798
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005799 return 0;
5800}
5801
5802static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005803 .task_ctx_nr = perf_sw_context,
5804
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005805 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005806 .add = task_clock_event_add,
5807 .del = task_clock_event_del,
5808 .start = task_clock_event_start,
5809 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005810 .read = task_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005811
5812 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005813};
5814
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005815static void perf_pmu_nop_void(struct pmu *pmu)
5816{
5817}
5818
5819static int perf_pmu_nop_int(struct pmu *pmu)
5820{
5821 return 0;
5822}
5823
5824static void perf_pmu_start_txn(struct pmu *pmu)
5825{
5826 perf_pmu_disable(pmu);
5827}
5828
5829static int perf_pmu_commit_txn(struct pmu *pmu)
5830{
5831 perf_pmu_enable(pmu);
5832 return 0;
5833}
5834
5835static void perf_pmu_cancel_txn(struct pmu *pmu)
5836{
5837 perf_pmu_enable(pmu);
5838}
5839
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005840static int perf_event_idx_default(struct perf_event *event)
5841{
5842 return event->hw.idx + 1;
5843}
5844
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005845/*
5846 * Ensures all contexts with the same task_ctx_nr have the same
5847 * pmu_cpu_context too.
5848 */
5849static void *find_pmu_context(int ctxn)
5850{
5851 struct pmu *pmu;
5852
5853 if (ctxn < 0)
5854 return NULL;
5855
5856 list_for_each_entry(pmu, &pmus, entry) {
5857 if (pmu->task_ctx_nr == ctxn)
5858 return pmu->pmu_cpu_context;
5859 }
5860
5861 return NULL;
5862}
5863
Peter Zijlstra51676952010-12-07 14:18:20 +01005864static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005865{
Peter Zijlstra51676952010-12-07 14:18:20 +01005866 int cpu;
5867
5868 for_each_possible_cpu(cpu) {
5869 struct perf_cpu_context *cpuctx;
5870
5871 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
5872
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02005873 if (cpuctx->unique_pmu == old_pmu)
5874 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01005875 }
5876}
5877
5878static void free_pmu_context(struct pmu *pmu)
5879{
5880 struct pmu *i;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005881
5882 mutex_lock(&pmus_lock);
5883 /*
5884 * Like a real lame refcount.
5885 */
Peter Zijlstra51676952010-12-07 14:18:20 +01005886 list_for_each_entry(i, &pmus, entry) {
5887 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
5888 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005889 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01005890 }
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005891 }
5892
Peter Zijlstra51676952010-12-07 14:18:20 +01005893 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005894out:
5895 mutex_unlock(&pmus_lock);
5896}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005897static struct idr pmu_idr;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005898
Peter Zijlstraabe43402010-11-17 23:17:37 +01005899static ssize_t
5900type_show(struct device *dev, struct device_attribute *attr, char *page)
5901{
5902 struct pmu *pmu = dev_get_drvdata(dev);
5903
5904 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
5905}
5906
5907static struct device_attribute pmu_dev_attrs[] = {
5908 __ATTR_RO(type),
5909 __ATTR_NULL,
5910};
5911
5912static int pmu_bus_running;
5913static struct bus_type pmu_bus = {
5914 .name = "event_source",
5915 .dev_attrs = pmu_dev_attrs,
5916};
5917
5918static void pmu_dev_release(struct device *dev)
5919{
5920 kfree(dev);
5921}
5922
5923static int pmu_dev_alloc(struct pmu *pmu)
5924{
5925 int ret = -ENOMEM;
5926
5927 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
5928 if (!pmu->dev)
5929 goto out;
5930
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01005931 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01005932 device_initialize(pmu->dev);
5933 ret = dev_set_name(pmu->dev, "%s", pmu->name);
5934 if (ret)
5935 goto free_dev;
5936
5937 dev_set_drvdata(pmu->dev, pmu);
5938 pmu->dev->bus = &pmu_bus;
5939 pmu->dev->release = pmu_dev_release;
5940 ret = device_add(pmu->dev);
5941 if (ret)
5942 goto free_dev;
5943
5944out:
5945 return ret;
5946
5947free_dev:
5948 put_device(pmu->dev);
5949 goto out;
5950}
5951
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01005952static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02005953static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01005954
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005955int perf_pmu_register(struct pmu *pmu, char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005956{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005957 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005958
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005959 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005960 ret = -ENOMEM;
5961 pmu->pmu_disable_count = alloc_percpu(int);
5962 if (!pmu->pmu_disable_count)
5963 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005964
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005965 pmu->type = -1;
5966 if (!name)
5967 goto skip_type;
5968 pmu->name = name;
5969
5970 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08005971 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
5972 if (type < 0) {
5973 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005974 goto free_pdc;
5975 }
5976 }
5977 pmu->type = type;
5978
Peter Zijlstraabe43402010-11-17 23:17:37 +01005979 if (pmu_bus_running) {
5980 ret = pmu_dev_alloc(pmu);
5981 if (ret)
5982 goto free_idr;
5983 }
5984
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005985skip_type:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005986 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
5987 if (pmu->pmu_cpu_context)
5988 goto got_cpu_context;
5989
Wei Yongjunc4814202013-04-12 11:05:54 +08005990 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005991 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
5992 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01005993 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005994
5995 for_each_possible_cpu(cpu) {
5996 struct perf_cpu_context *cpuctx;
5997
5998 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02005999 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006000 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006001 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006002 cpuctx->ctx.type = cpu_context;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006003 cpuctx->ctx.pmu = pmu;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006004 cpuctx->jiffies_interval = 1;
6005 INIT_LIST_HEAD(&cpuctx->rotation_list);
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006006 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006007 }
6008
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006009got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006010 if (!pmu->start_txn) {
6011 if (pmu->pmu_enable) {
6012 /*
6013 * If we have pmu_enable/pmu_disable calls, install
6014 * transaction stubs that use that to try and batch
6015 * hardware accesses.
6016 */
6017 pmu->start_txn = perf_pmu_start_txn;
6018 pmu->commit_txn = perf_pmu_commit_txn;
6019 pmu->cancel_txn = perf_pmu_cancel_txn;
6020 } else {
6021 pmu->start_txn = perf_pmu_nop_void;
6022 pmu->commit_txn = perf_pmu_nop_int;
6023 pmu->cancel_txn = perf_pmu_nop_void;
6024 }
6025 }
6026
6027 if (!pmu->pmu_enable) {
6028 pmu->pmu_enable = perf_pmu_nop_void;
6029 pmu->pmu_disable = perf_pmu_nop_void;
6030 }
6031
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006032 if (!pmu->event_idx)
6033 pmu->event_idx = perf_event_idx_default;
6034
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006035 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006036 ret = 0;
6037unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006038 mutex_unlock(&pmus_lock);
6039
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006040 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006041
Peter Zijlstraabe43402010-11-17 23:17:37 +01006042free_dev:
6043 device_del(pmu->dev);
6044 put_device(pmu->dev);
6045
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006046free_idr:
6047 if (pmu->type >= PERF_TYPE_MAX)
6048 idr_remove(&pmu_idr, pmu->type);
6049
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006050free_pdc:
6051 free_percpu(pmu->pmu_disable_count);
6052 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006053}
6054
6055void perf_pmu_unregister(struct pmu *pmu)
6056{
6057 mutex_lock(&pmus_lock);
6058 list_del_rcu(&pmu->entry);
6059 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006060
6061 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02006062 * We dereference the pmu list under both SRCU and regular RCU, so
6063 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006064 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006065 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02006066 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006067
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006068 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006069 if (pmu->type >= PERF_TYPE_MAX)
6070 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006071 device_del(pmu->dev);
6072 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01006073 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006074}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006075
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006076struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006077{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006078 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006079 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08006080 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006081
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006082 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006083
6084 rcu_read_lock();
6085 pmu = idr_find(&pmu_idr, event->attr.type);
6086 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08006087 if (pmu) {
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006088 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006089 ret = pmu->event_init(event);
6090 if (ret)
6091 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006092 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08006093 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006094
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006095 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006096 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006097 ret = pmu->event_init(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006098 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006099 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006100
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006101 if (ret != -ENOENT) {
6102 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006103 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006104 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006105 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006106 pmu = ERR_PTR(-ENOENT);
6107unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006108 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006109
6110 return pmu;
6111}
6112
6113/*
6114 * Allocate and initialize a event structure
6115 */
6116static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006117perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006118 struct task_struct *task,
6119 struct perf_event *group_leader,
6120 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03006121 perf_overflow_handler_t overflow_handler,
6122 void *context)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006123{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006124 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006125 struct perf_event *event;
6126 struct hw_perf_event *hwc;
6127 long err;
6128
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006129 if ((unsigned)cpu >= nr_cpu_ids) {
6130 if (!task || cpu != -1)
6131 return ERR_PTR(-EINVAL);
6132 }
6133
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006134 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006135 if (!event)
6136 return ERR_PTR(-ENOMEM);
6137
6138 /*
6139 * Single events are their own group leaders, with an
6140 * empty sibling list:
6141 */
6142 if (!group_leader)
6143 group_leader = event;
6144
6145 mutex_init(&event->child_mutex);
6146 INIT_LIST_HEAD(&event->child_list);
6147
6148 INIT_LIST_HEAD(&event->group_entry);
6149 INIT_LIST_HEAD(&event->event_entry);
6150 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006151 INIT_LIST_HEAD(&event->rb_entry);
6152
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006153 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006154 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006155
6156 mutex_init(&event->mmap_mutex);
6157
Al Viroa6fa9412012-08-20 14:59:25 +01006158 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006159 event->cpu = cpu;
6160 event->attr = *attr;
6161 event->group_leader = group_leader;
6162 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006163 event->oncpu = -1;
6164
6165 event->parent = parent_event;
6166
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08006167 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006168 event->id = atomic64_inc_return(&perf_event_id);
6169
6170 event->state = PERF_EVENT_STATE_INACTIVE;
6171
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006172 if (task) {
6173 event->attach_state = PERF_ATTACH_TASK;
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006174
6175 if (attr->type == PERF_TYPE_TRACEPOINT)
6176 event->hw.tp_target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006177#ifdef CONFIG_HAVE_HW_BREAKPOINT
6178 /*
6179 * hw_breakpoint is a bit difficult here..
6180 */
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006181 else if (attr->type == PERF_TYPE_BREAKPOINT)
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006182 event->hw.bp_target = task;
6183#endif
6184 }
6185
Avi Kivity4dc0da82011-06-29 18:42:35 +03006186 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006187 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006188 context = parent_event->overflow_handler_context;
6189 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006190
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006191 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006192 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02006193
Jiri Olsa0231bb52013-02-01 11:23:45 +01006194 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006195
6196 pmu = NULL;
6197
6198 hwc = &event->hw;
6199 hwc->sample_period = attr->sample_period;
6200 if (attr->freq && attr->sample_freq)
6201 hwc->sample_period = 1;
6202 hwc->last_period = hwc->sample_period;
6203
Peter Zijlstrae7850592010-05-21 14:43:08 +02006204 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006205
6206 /*
6207 * we currently do not support PERF_FORMAT_GROUP on inherited events
6208 */
6209 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
6210 goto done;
6211
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006212 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006213
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006214done:
6215 err = 0;
6216 if (!pmu)
6217 err = -EINVAL;
6218 else if (IS_ERR(pmu))
6219 err = PTR_ERR(pmu);
6220
6221 if (err) {
6222 if (event->ns)
6223 put_pid_ns(event->ns);
6224 kfree(event);
6225 return ERR_PTR(err);
6226 }
6227
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006228 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02006229 if (event->attach_state & PERF_ATTACH_TASK)
Ingo Molnarc5905af2012-02-24 08:31:31 +01006230 static_key_slow_inc(&perf_sched_events.key);
Eric B Munson3af9e852010-05-18 15:30:49 +01006231 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006232 atomic_inc(&nr_mmap_events);
6233 if (event->attr.comm)
6234 atomic_inc(&nr_comm_events);
6235 if (event->attr.task)
6236 atomic_inc(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006237 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
6238 err = get_callchain_buffers();
6239 if (err) {
6240 free_event(event);
6241 return ERR_PTR(err);
6242 }
6243 }
Stephane Eraniand010b332012-02-09 23:21:00 +01006244 if (has_branch_stack(event)) {
6245 static_key_slow_inc(&perf_sched_events.key);
6246 if (!(event->attach_state & PERF_ATTACH_TASK))
6247 atomic_inc(&per_cpu(perf_branch_stack_events,
6248 event->cpu));
6249 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006250 }
6251
6252 return event;
6253}
6254
6255static int perf_copy_attr(struct perf_event_attr __user *uattr,
6256 struct perf_event_attr *attr)
6257{
6258 u32 size;
6259 int ret;
6260
6261 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
6262 return -EFAULT;
6263
6264 /*
6265 * zero the full structure, so that a short copy will be nice.
6266 */
6267 memset(attr, 0, sizeof(*attr));
6268
6269 ret = get_user(size, &uattr->size);
6270 if (ret)
6271 return ret;
6272
6273 if (size > PAGE_SIZE) /* silly large */
6274 goto err_size;
6275
6276 if (!size) /* abi compat */
6277 size = PERF_ATTR_SIZE_VER0;
6278
6279 if (size < PERF_ATTR_SIZE_VER0)
6280 goto err_size;
6281
6282 /*
6283 * If we're handed a bigger struct than we know of,
6284 * ensure all the unknown bits are 0 - i.e. new
6285 * user-space does not rely on any kernel feature
6286 * extensions we dont know about yet.
6287 */
6288 if (size > sizeof(*attr)) {
6289 unsigned char __user *addr;
6290 unsigned char __user *end;
6291 unsigned char val;
6292
6293 addr = (void __user *)uattr + sizeof(*attr);
6294 end = (void __user *)uattr + size;
6295
6296 for (; addr < end; addr++) {
6297 ret = get_user(val, addr);
6298 if (ret)
6299 return ret;
6300 if (val)
6301 goto err_size;
6302 }
6303 size = sizeof(*attr);
6304 }
6305
6306 ret = copy_from_user(attr, uattr, size);
6307 if (ret)
6308 return -EFAULT;
6309
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05306310 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006311 return -EINVAL;
6312
6313 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
6314 return -EINVAL;
6315
6316 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
6317 return -EINVAL;
6318
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006319 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
6320 u64 mask = attr->branch_sample_type;
6321
6322 /* only using defined bits */
6323 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
6324 return -EINVAL;
6325
6326 /* at least one branch bit must be set */
6327 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
6328 return -EINVAL;
6329
6330 /* kernel level capture: check permissions */
6331 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
6332 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6333 return -EACCES;
6334
6335 /* propagate priv level, when not set for branch */
6336 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
6337
6338 /* exclude_kernel checked on syscall entry */
6339 if (!attr->exclude_kernel)
6340 mask |= PERF_SAMPLE_BRANCH_KERNEL;
6341
6342 if (!attr->exclude_user)
6343 mask |= PERF_SAMPLE_BRANCH_USER;
6344
6345 if (!attr->exclude_hv)
6346 mask |= PERF_SAMPLE_BRANCH_HV;
6347 /*
6348 * adjust user setting (for HW filter setup)
6349 */
6350 attr->branch_sample_type = mask;
6351 }
6352 }
Jiri Olsa40189942012-08-07 15:20:37 +02006353
Jiri Olsac5ebced2012-08-07 15:20:40 +02006354 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02006355 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006356 if (ret)
6357 return ret;
6358 }
6359
6360 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
6361 if (!arch_perf_have_user_stack_dump())
6362 return -ENOSYS;
6363
6364 /*
6365 * We have __u32 type for the size, but so far
6366 * we can only use __u16 as maximum due to the
6367 * __u16 sample size limit.
6368 */
6369 if (attr->sample_stack_user >= USHRT_MAX)
6370 ret = -EINVAL;
6371 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
6372 ret = -EINVAL;
6373 }
Jiri Olsa40189942012-08-07 15:20:37 +02006374
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006375out:
6376 return ret;
6377
6378err_size:
6379 put_user(sizeof(*attr), &uattr->size);
6380 ret = -E2BIG;
6381 goto out;
6382}
6383
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006384static int
6385perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006386{
Frederic Weisbecker76369132011-05-19 19:55:04 +02006387 struct ring_buffer *rb = NULL, *old_rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006388 int ret = -EINVAL;
6389
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006390 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006391 goto set;
6392
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006393 /* don't allow circular references */
6394 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006395 goto out;
6396
Peter Zijlstra0f139302010-05-20 14:35:15 +02006397 /*
6398 * Don't allow cross-cpu buffers
6399 */
6400 if (output_event->cpu != event->cpu)
6401 goto out;
6402
6403 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02006404 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02006405 */
6406 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
6407 goto out;
6408
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006409set:
6410 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006411 /* Can't redirect output if we've got an active mmap() */
6412 if (atomic_read(&event->mmap_count))
6413 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006414
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006415 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02006416 /* get the rb we want to redirect to */
6417 rb = ring_buffer_get(output_event);
6418 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006419 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006420 }
6421
Frederic Weisbecker76369132011-05-19 19:55:04 +02006422 old_rb = event->rb;
6423 rcu_assign_pointer(event->rb, rb);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006424 if (old_rb)
6425 ring_buffer_detach(event, old_rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006426 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006427unlock:
6428 mutex_unlock(&event->mmap_mutex);
6429
Frederic Weisbecker76369132011-05-19 19:55:04 +02006430 if (old_rb)
6431 ring_buffer_put(old_rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006432out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006433 return ret;
6434}
6435
6436/**
6437 * sys_perf_event_open - open a performance event, associate it to a task/cpu
6438 *
6439 * @attr_uptr: event_id type attributes for monitoring/sampling
6440 * @pid: target pid
6441 * @cpu: target cpu
6442 * @group_fd: group leader event fd
6443 */
6444SYSCALL_DEFINE5(perf_event_open,
6445 struct perf_event_attr __user *, attr_uptr,
6446 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
6447{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006448 struct perf_event *group_leader = NULL, *output_event = NULL;
6449 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006450 struct perf_event_attr attr;
6451 struct perf_event_context *ctx;
6452 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04006453 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07006454 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006455 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04006456 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006457 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006458 int err;
6459
6460 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02006461 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006462 return -EINVAL;
6463
6464 err = perf_copy_attr(attr_uptr, &attr);
6465 if (err)
6466 return err;
6467
6468 if (!attr.exclude_kernel) {
6469 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6470 return -EACCES;
6471 }
6472
6473 if (attr.freq) {
6474 if (attr.sample_freq > sysctl_perf_event_sample_rate)
6475 return -EINVAL;
6476 }
6477
Stephane Eraniane5d13672011-02-14 11:20:01 +02006478 /*
6479 * In cgroup mode, the pid argument is used to pass the fd
6480 * opened to the cgroup directory in cgroupfs. The cpu argument
6481 * designates the cpu on which to monitor threads from that
6482 * cgroup.
6483 */
6484 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
6485 return -EINVAL;
6486
Al Viroab72a702012-08-21 09:40:46 -04006487 event_fd = get_unused_fd();
Al Viroea635c62010-05-26 17:40:29 -04006488 if (event_fd < 0)
6489 return event_fd;
6490
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006491 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04006492 err = perf_fget_light(group_fd, &group);
6493 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006494 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04006495 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006496 if (flags & PERF_FLAG_FD_OUTPUT)
6497 output_event = group_leader;
6498 if (flags & PERF_FLAG_FD_NO_GROUP)
6499 group_leader = NULL;
6500 }
6501
Stephane Eraniane5d13672011-02-14 11:20:01 +02006502 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006503 task = find_lively_task_by_vpid(pid);
6504 if (IS_ERR(task)) {
6505 err = PTR_ERR(task);
6506 goto err_group_fd;
6507 }
6508 }
6509
Yan, Zhengfbfc6232012-06-15 14:31:31 +08006510 get_online_cpus();
6511
Avi Kivity4dc0da82011-06-29 18:42:35 +03006512 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
6513 NULL, NULL);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006514 if (IS_ERR(event)) {
6515 err = PTR_ERR(event);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006516 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006517 }
6518
Stephane Eraniane5d13672011-02-14 11:20:01 +02006519 if (flags & PERF_FLAG_PID_CGROUP) {
6520 err = perf_cgroup_connect(pid, event, &attr, group_leader);
6521 if (err)
6522 goto err_alloc;
Peter Zijlstra08309372011-03-03 11:31:20 +01006523 /*
6524 * one more event:
6525 * - that has cgroup constraint on event->cpu
6526 * - that may need work on context switch
6527 */
6528 atomic_inc(&per_cpu(perf_cgroup_events, event->cpu));
Ingo Molnarc5905af2012-02-24 08:31:31 +01006529 static_key_slow_inc(&perf_sched_events.key);
Stephane Eraniane5d13672011-02-14 11:20:01 +02006530 }
6531
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006532 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006533 * Special case software events and allow them to be part of
6534 * any hardware group.
6535 */
6536 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006537
6538 if (group_leader &&
6539 (is_software_event(event) != is_software_event(group_leader))) {
6540 if (is_software_event(event)) {
6541 /*
6542 * If event and group_leader are not both a software
6543 * event, and event is, then group leader is not.
6544 *
6545 * Allow the addition of software events to !software
6546 * groups, this is safe because software events never
6547 * fail to schedule.
6548 */
6549 pmu = group_leader->pmu;
6550 } else if (is_software_event(group_leader) &&
6551 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
6552 /*
6553 * In case the group is a pure software group, and we
6554 * try to add a hardware event, move the whole group to
6555 * the hardware context.
6556 */
6557 move_group = 1;
6558 }
6559 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006560
6561 /*
6562 * Get the target context (task or percpu):
6563 */
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08006564 ctx = find_get_context(pmu, task, event->cpu);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006565 if (IS_ERR(ctx)) {
6566 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006567 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006568 }
6569
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02006570 if (task) {
6571 put_task_struct(task);
6572 task = NULL;
6573 }
6574
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006575 /*
6576 * Look up the group leader (we will attach this event to it):
6577 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006578 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006579 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006580
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006581 /*
6582 * Do not allow a recursive hierarchy (this new sibling
6583 * becoming part of another group-sibling):
6584 */
6585 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006586 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006587 /*
6588 * Do not allow to attach to a group in a different
6589 * task or CPU context:
6590 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006591 if (move_group) {
6592 if (group_leader->ctx->type != ctx->type)
6593 goto err_context;
6594 } else {
6595 if (group_leader->ctx != ctx)
6596 goto err_context;
6597 }
6598
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006599 /*
6600 * Only a group leader can be exclusive or pinned
6601 */
6602 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006603 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006604 }
6605
6606 if (output_event) {
6607 err = perf_event_set_output(event, output_event);
6608 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006609 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006610 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006611
Al Viroea635c62010-05-26 17:40:29 -04006612 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
6613 if (IS_ERR(event_file)) {
6614 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006615 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04006616 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006617
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006618 if (move_group) {
6619 struct perf_event_context *gctx = group_leader->ctx;
6620
6621 mutex_lock(&gctx->mutex);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006622 perf_remove_from_context(group_leader);
Jiri Olsa0231bb52013-02-01 11:23:45 +01006623
6624 /*
6625 * Removing from the context ends up with disabled
6626 * event. What we want here is event in the initial
6627 * startup state, ready to be add into new context.
6628 */
6629 perf_event__state_init(group_leader);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006630 list_for_each_entry(sibling, &group_leader->sibling_list,
6631 group_entry) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006632 perf_remove_from_context(sibling);
Jiri Olsa0231bb52013-02-01 11:23:45 +01006633 perf_event__state_init(sibling);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006634 put_ctx(gctx);
6635 }
6636 mutex_unlock(&gctx->mutex);
6637 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006638 }
6639
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006640 WARN_ON_ONCE(ctx->parent_ctx);
6641 mutex_lock(&ctx->mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006642
6643 if (move_group) {
Yan, Zheng0cda4c02012-06-15 14:31:33 +08006644 synchronize_rcu();
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08006645 perf_install_in_context(ctx, group_leader, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006646 get_ctx(ctx);
6647 list_for_each_entry(sibling, &group_leader->sibling_list,
6648 group_entry) {
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08006649 perf_install_in_context(ctx, sibling, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006650 get_ctx(ctx);
6651 }
6652 }
6653
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08006654 perf_install_in_context(ctx, event, event->cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006655 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006656 perf_unpin_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006657 mutex_unlock(&ctx->mutex);
6658
Yan, Zhengfbfc6232012-06-15 14:31:31 +08006659 put_online_cpus();
6660
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006661 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01006662
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006663 mutex_lock(&current->perf_event_mutex);
6664 list_add_tail(&event->owner_entry, &current->perf_event_list);
6665 mutex_unlock(&current->perf_event_mutex);
6666
Peter Zijlstra8a495422010-05-27 15:47:49 +02006667 /*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006668 * Precalculate sample_data sizes
6669 */
6670 perf_event__header_size(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006671 perf_event__id_header_size(event);
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006672
6673 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02006674 * Drop the reference on the group_event after placing the
6675 * new event on the sibling_list. This ensures destruction
6676 * of the group leader will find the pointer to itself in
6677 * perf_group_detach().
6678 */
Al Viro2903ff02012-08-28 12:52:22 -04006679 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04006680 fd_install(event_fd, event_file);
6681 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006682
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006683err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006684 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04006685 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006686err_alloc:
6687 free_event(event);
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02006688err_task:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08006689 put_online_cpus();
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02006690 if (task)
6691 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006692err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04006693 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04006694err_fd:
6695 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006696 return err;
6697}
6698
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006699/**
6700 * perf_event_create_kernel_counter
6701 *
6702 * @attr: attributes of the counter to create
6703 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07006704 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006705 */
6706struct perf_event *
6707perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07006708 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03006709 perf_overflow_handler_t overflow_handler,
6710 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006711{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006712 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006713 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006714 int err;
6715
6716 /*
6717 * Get the target context (task or percpu):
6718 */
6719
Avi Kivity4dc0da82011-06-29 18:42:35 +03006720 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
6721 overflow_handler, context);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006722 if (IS_ERR(event)) {
6723 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006724 goto err;
6725 }
6726
Matt Helsley38a81da2010-09-13 13:01:20 -07006727 ctx = find_get_context(event->pmu, task, cpu);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006728 if (IS_ERR(ctx)) {
6729 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006730 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006731 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006732
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006733 WARN_ON_ONCE(ctx->parent_ctx);
6734 mutex_lock(&ctx->mutex);
6735 perf_install_in_context(ctx, event, cpu);
6736 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006737 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006738 mutex_unlock(&ctx->mutex);
6739
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006740 return event;
6741
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006742err_free:
6743 free_event(event);
6744err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006745 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006746}
6747EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
6748
Yan, Zheng0cda4c02012-06-15 14:31:33 +08006749void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
6750{
6751 struct perf_event_context *src_ctx;
6752 struct perf_event_context *dst_ctx;
6753 struct perf_event *event, *tmp;
6754 LIST_HEAD(events);
6755
6756 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
6757 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
6758
6759 mutex_lock(&src_ctx->mutex);
6760 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
6761 event_entry) {
6762 perf_remove_from_context(event);
6763 put_ctx(src_ctx);
6764 list_add(&event->event_entry, &events);
6765 }
6766 mutex_unlock(&src_ctx->mutex);
6767
6768 synchronize_rcu();
6769
6770 mutex_lock(&dst_ctx->mutex);
6771 list_for_each_entry_safe(event, tmp, &events, event_entry) {
6772 list_del(&event->event_entry);
6773 if (event->state >= PERF_EVENT_STATE_OFF)
6774 event->state = PERF_EVENT_STATE_INACTIVE;
6775 perf_install_in_context(dst_ctx, event, dst_cpu);
6776 get_ctx(dst_ctx);
6777 }
6778 mutex_unlock(&dst_ctx->mutex);
6779}
6780EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
6781
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006782static void sync_child_event(struct perf_event *child_event,
6783 struct task_struct *child)
6784{
6785 struct perf_event *parent_event = child_event->parent;
6786 u64 child_val;
6787
6788 if (child_event->attr.inherit_stat)
6789 perf_event_read_event(child_event, child);
6790
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006791 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006792
6793 /*
6794 * Add back the child's count to the parent's count:
6795 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02006796 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006797 atomic64_add(child_event->total_time_enabled,
6798 &parent_event->child_total_time_enabled);
6799 atomic64_add(child_event->total_time_running,
6800 &parent_event->child_total_time_running);
6801
6802 /*
6803 * Remove this event from the parent's list
6804 */
6805 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
6806 mutex_lock(&parent_event->child_mutex);
6807 list_del_init(&child_event->child_list);
6808 mutex_unlock(&parent_event->child_mutex);
6809
6810 /*
6811 * Release the parent event, if this was the last
6812 * reference to it.
6813 */
Al Viroa6fa9412012-08-20 14:59:25 +01006814 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006815}
6816
6817static void
6818__perf_event_exit_task(struct perf_event *child_event,
6819 struct perf_event_context *child_ctx,
6820 struct task_struct *child)
6821{
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006822 if (child_event->parent) {
6823 raw_spin_lock_irq(&child_ctx->lock);
6824 perf_group_detach(child_event);
6825 raw_spin_unlock_irq(&child_ctx->lock);
6826 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006827
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006828 perf_remove_from_context(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006829
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006830 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006831 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006832 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006833 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006834 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006835 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006836 sync_child_event(child_event, child);
6837 free_event(child_event);
6838 }
6839}
6840
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006841static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006842{
6843 struct perf_event *child_event, *tmp;
6844 struct perf_event_context *child_ctx;
6845 unsigned long flags;
6846
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006847 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006848 perf_event_task(child, NULL, 0);
6849 return;
6850 }
6851
6852 local_irq_save(flags);
6853 /*
6854 * We can't reschedule here because interrupts are disabled,
6855 * and either child is current or it is a task that can't be
6856 * scheduled, so we are now safe from rescheduling changing
6857 * our context.
6858 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01006859 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006860
6861 /*
6862 * Take the context lock here so that if find_get_context is
6863 * reading child->perf_event_ctxp, we wait until it has
6864 * incremented the context's refcount before we do put_ctx below.
6865 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01006866 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02006867 task_ctx_sched_out(child_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006868 child->perf_event_ctxp[ctxn] = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006869 /*
6870 * If this context is a clone; unclone it so it can't get
6871 * swapped to another process while we're removing all
6872 * the events from it.
6873 */
6874 unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01006875 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01006876 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006877
6878 /*
6879 * Report the task dead after unscheduling the events so that we
6880 * won't get any samples after PERF_RECORD_EXIT. We can however still
6881 * get a few PERF_RECORD_READ events.
6882 */
6883 perf_event_task(child, child_ctx, 0);
6884
6885 /*
6886 * We can recurse on the same lock type through:
6887 *
6888 * __perf_event_exit_task()
6889 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01006890 * put_event()
6891 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006892 *
6893 * But since its the parent context it won't be the same instance.
6894 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02006895 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006896
6897again:
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006898 list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
6899 group_entry)
6900 __perf_event_exit_task(child_event, child_ctx, child);
6901
6902 list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006903 group_entry)
6904 __perf_event_exit_task(child_event, child_ctx, child);
6905
6906 /*
6907 * If the last event was a group event, it will have appended all
6908 * its siblings to the list, but we obtained 'tmp' before that which
6909 * will still point to the list head terminating the iteration.
6910 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006911 if (!list_empty(&child_ctx->pinned_groups) ||
6912 !list_empty(&child_ctx->flexible_groups))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006913 goto again;
6914
6915 mutex_unlock(&child_ctx->mutex);
6916
6917 put_ctx(child_ctx);
6918}
6919
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006920/*
6921 * When a child task exits, feed back event values to parent events.
6922 */
6923void perf_event_exit_task(struct task_struct *child)
6924{
Peter Zijlstra88821352010-11-09 19:01:43 +01006925 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006926 int ctxn;
6927
Peter Zijlstra88821352010-11-09 19:01:43 +01006928 mutex_lock(&child->perf_event_mutex);
6929 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
6930 owner_entry) {
6931 list_del_init(&event->owner_entry);
6932
6933 /*
6934 * Ensure the list deletion is visible before we clear
6935 * the owner, closes a race against perf_release() where
6936 * we need to serialize on the owner->perf_event_mutex.
6937 */
6938 smp_wmb();
6939 event->owner = NULL;
6940 }
6941 mutex_unlock(&child->perf_event_mutex);
6942
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006943 for_each_task_context_nr(ctxn)
6944 perf_event_exit_task_context(child, ctxn);
6945}
6946
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006947static void perf_free_event(struct perf_event *event,
6948 struct perf_event_context *ctx)
6949{
6950 struct perf_event *parent = event->parent;
6951
6952 if (WARN_ON_ONCE(!parent))
6953 return;
6954
6955 mutex_lock(&parent->child_mutex);
6956 list_del_init(&event->child_list);
6957 mutex_unlock(&parent->child_mutex);
6958
Al Viroa6fa9412012-08-20 14:59:25 +01006959 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006960
Peter Zijlstra8a495422010-05-27 15:47:49 +02006961 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006962 list_del_event(event, ctx);
6963 free_event(event);
6964}
6965
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006966/*
6967 * free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006968 * perf_event_init_task below, used by fork() in case of fail.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006969 */
6970void perf_event_free_task(struct task_struct *task)
6971{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006972 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006973 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006974 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006975
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006976 for_each_task_context_nr(ctxn) {
6977 ctx = task->perf_event_ctxp[ctxn];
6978 if (!ctx)
6979 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006980
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006981 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006982again:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006983 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
6984 group_entry)
6985 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006986
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006987 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
6988 group_entry)
6989 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006990
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006991 if (!list_empty(&ctx->pinned_groups) ||
6992 !list_empty(&ctx->flexible_groups))
6993 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006994
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006995 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006996
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006997 put_ctx(ctx);
6998 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006999}
7000
Peter Zijlstra4e231c72010-09-09 21:01:59 +02007001void perf_event_delayed_put(struct task_struct *task)
7002{
7003 int ctxn;
7004
7005 for_each_task_context_nr(ctxn)
7006 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
7007}
7008
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007009/*
7010 * inherit a event from parent task to child task:
7011 */
7012static struct perf_event *
7013inherit_event(struct perf_event *parent_event,
7014 struct task_struct *parent,
7015 struct perf_event_context *parent_ctx,
7016 struct task_struct *child,
7017 struct perf_event *group_leader,
7018 struct perf_event_context *child_ctx)
7019{
7020 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02007021 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007022
7023 /*
7024 * Instead of creating recursive hierarchies of events,
7025 * we link inherited events back to the original parent,
7026 * which has a filp for sure, which we use as the reference
7027 * count:
7028 */
7029 if (parent_event->parent)
7030 parent_event = parent_event->parent;
7031
7032 child_event = perf_event_alloc(&parent_event->attr,
7033 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007034 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007035 group_leader, parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007036 NULL, NULL);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007037 if (IS_ERR(child_event))
7038 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01007039
7040 if (!atomic_long_inc_not_zero(&parent_event->refcount)) {
7041 free_event(child_event);
7042 return NULL;
7043 }
7044
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007045 get_ctx(child_ctx);
7046
7047 /*
7048 * Make the child state follow the state of the parent event,
7049 * not its attr.disabled bit. We hold the parent's mutex,
7050 * so we won't race with perf_event_{en, dis}able_family.
7051 */
7052 if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
7053 child_event->state = PERF_EVENT_STATE_INACTIVE;
7054 else
7055 child_event->state = PERF_EVENT_STATE_OFF;
7056
7057 if (parent_event->attr.freq) {
7058 u64 sample_period = parent_event->hw.sample_period;
7059 struct hw_perf_event *hwc = &child_event->hw;
7060
7061 hwc->sample_period = sample_period;
7062 hwc->last_period = sample_period;
7063
7064 local64_set(&hwc->period_left, sample_period);
7065 }
7066
7067 child_event->ctx = child_ctx;
7068 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007069 child_event->overflow_handler_context
7070 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007071
7072 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02007073 * Precalculate sample_data sizes
7074 */
7075 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007076 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02007077
7078 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007079 * Link it up in the child's context:
7080 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02007081 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007082 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02007083 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007084
7085 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007086 * Link this into the parent event's child list
7087 */
7088 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7089 mutex_lock(&parent_event->child_mutex);
7090 list_add_tail(&child_event->child_list, &parent_event->child_list);
7091 mutex_unlock(&parent_event->child_mutex);
7092
7093 return child_event;
7094}
7095
7096static int inherit_group(struct perf_event *parent_event,
7097 struct task_struct *parent,
7098 struct perf_event_context *parent_ctx,
7099 struct task_struct *child,
7100 struct perf_event_context *child_ctx)
7101{
7102 struct perf_event *leader;
7103 struct perf_event *sub;
7104 struct perf_event *child_ctr;
7105
7106 leader = inherit_event(parent_event, parent, parent_ctx,
7107 child, NULL, child_ctx);
7108 if (IS_ERR(leader))
7109 return PTR_ERR(leader);
7110 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
7111 child_ctr = inherit_event(sub, parent, parent_ctx,
7112 child, leader, child_ctx);
7113 if (IS_ERR(child_ctr))
7114 return PTR_ERR(child_ctr);
7115 }
7116 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007117}
7118
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007119static int
7120inherit_task_group(struct perf_event *event, struct task_struct *parent,
7121 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007122 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007123 int *inherited_all)
7124{
7125 int ret;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007126 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007127
7128 if (!event->attr.inherit) {
7129 *inherited_all = 0;
7130 return 0;
7131 }
7132
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007133 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007134 if (!child_ctx) {
7135 /*
7136 * This is executed from the parent task context, so
7137 * inherit events that have been marked for cloning.
7138 * First allocate and initialize a context for the
7139 * child.
7140 */
7141
Peter Zijlstraeb184472010-09-07 15:55:13 +02007142 child_ctx = alloc_perf_context(event->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007143 if (!child_ctx)
7144 return -ENOMEM;
7145
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007146 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007147 }
7148
7149 ret = inherit_group(event, parent, parent_ctx,
7150 child, child_ctx);
7151
7152 if (ret)
7153 *inherited_all = 0;
7154
7155 return ret;
7156}
7157
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007158/*
7159 * Initialize the perf_event context in task_struct
7160 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007161int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007162{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007163 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007164 struct perf_event_context *cloned_ctx;
7165 struct perf_event *event;
7166 struct task_struct *parent = current;
7167 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007168 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007169 int ret = 0;
7170
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007171 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007172 return 0;
7173
7174 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007175 * If the parent's context is a clone, pin it so it won't get
7176 * swapped under us.
7177 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007178 parent_ctx = perf_pin_task_context(parent, ctxn);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007179
7180 /*
7181 * No need to check if parent_ctx != NULL here; since we saw
7182 * it non-NULL earlier, the only reason for it to become NULL
7183 * is if we exit, and since we're currently in the middle of
7184 * a fork we can't be exiting at the same time.
7185 */
7186
7187 /*
7188 * Lock the parent list. No need to lock the child - not PID
7189 * hashed yet and not running, so nobody can access it.
7190 */
7191 mutex_lock(&parent_ctx->mutex);
7192
7193 /*
7194 * We dont have to disable NMIs - we are only looking at
7195 * the list, not manipulating it:
7196 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007197 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007198 ret = inherit_task_group(event, parent, parent_ctx,
7199 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007200 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007201 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007202 }
7203
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007204 /*
7205 * We can't hold ctx->lock when iterating the ->flexible_group list due
7206 * to allocations, but we need to prevent rotation because
7207 * rotate_ctx() will change the list from interrupt context.
7208 */
7209 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7210 parent_ctx->rotate_disable = 1;
7211 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
7212
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007213 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007214 ret = inherit_task_group(event, parent, parent_ctx,
7215 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007216 if (ret)
7217 break;
7218 }
7219
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007220 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7221 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007222
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007223 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007224
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01007225 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007226 /*
7227 * Mark the child context as a clone of the parent
7228 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007229 *
7230 * Note that if the parent is a clone, the holding of
7231 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007232 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007233 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007234 if (cloned_ctx) {
7235 child_ctx->parent_ctx = cloned_ctx;
7236 child_ctx->parent_gen = parent_ctx->parent_gen;
7237 } else {
7238 child_ctx->parent_ctx = parent_ctx;
7239 child_ctx->parent_gen = parent_ctx->generation;
7240 }
7241 get_ctx(child_ctx->parent_ctx);
7242 }
7243
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007244 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007245 mutex_unlock(&parent_ctx->mutex);
7246
7247 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007248 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007249
7250 return ret;
7251}
7252
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007253/*
7254 * Initialize the perf_event context in task_struct
7255 */
7256int perf_event_init_task(struct task_struct *child)
7257{
7258 int ctxn, ret;
7259
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01007260 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
7261 mutex_init(&child->perf_event_mutex);
7262 INIT_LIST_HEAD(&child->perf_event_list);
7263
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007264 for_each_task_context_nr(ctxn) {
7265 ret = perf_event_init_context(child, ctxn);
7266 if (ret)
7267 return ret;
7268 }
7269
7270 return 0;
7271}
7272
Paul Mackerras220b1402010-03-10 20:45:52 +11007273static void __init perf_event_init_all_cpus(void)
7274{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007275 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11007276 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11007277
7278 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007279 swhash = &per_cpu(swevent_htable, cpu);
7280 mutex_init(&swhash->hlist_mutex);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007281 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11007282 }
7283}
7284
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007285static void __cpuinit perf_event_init_cpu(int cpu)
7286{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007287 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007288
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007289 mutex_lock(&swhash->hlist_mutex);
Linus Torvalds4536e4d2011-11-03 07:44:04 -07007290 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007291 struct swevent_hlist *hlist;
7292
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007293 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
7294 WARN_ON(!hlist);
7295 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007296 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007297 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007298}
7299
Peter Zijlstrac2774432010-12-08 15:29:02 +01007300#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007301static void perf_pmu_rotate_stop(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007302{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007303 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
7304
7305 WARN_ON(!irqs_disabled());
7306
7307 list_del_init(&cpuctx->rotation_list);
7308}
7309
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007310static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007311{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007312 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007313 struct perf_event *event, *tmp;
7314
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007315 perf_pmu_rotate_stop(ctx->pmu);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02007316
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007317 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007318 __perf_remove_from_context(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007319 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007320 __perf_remove_from_context(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007321}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007322
7323static void perf_event_exit_cpu_context(int cpu)
7324{
7325 struct perf_event_context *ctx;
7326 struct pmu *pmu;
7327 int idx;
7328
7329 idx = srcu_read_lock(&pmus_srcu);
7330 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02007331 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007332
7333 mutex_lock(&ctx->mutex);
7334 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
7335 mutex_unlock(&ctx->mutex);
7336 }
7337 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007338}
7339
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007340static void perf_event_exit_cpu(int cpu)
7341{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007342 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007343
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007344 mutex_lock(&swhash->hlist_mutex);
7345 swevent_hlist_release(swhash);
7346 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007347
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007348 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007349}
7350#else
7351static inline void perf_event_exit_cpu(int cpu) { }
7352#endif
7353
Peter Zijlstrac2774432010-12-08 15:29:02 +01007354static int
7355perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
7356{
7357 int cpu;
7358
7359 for_each_online_cpu(cpu)
7360 perf_event_exit_cpu(cpu);
7361
7362 return NOTIFY_OK;
7363}
7364
7365/*
7366 * Run the perf reboot notifier at the very last possible moment so that
7367 * the generic watchdog code runs as long as possible.
7368 */
7369static struct notifier_block perf_reboot_notifier = {
7370 .notifier_call = perf_reboot,
7371 .priority = INT_MIN,
7372};
7373
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007374static int __cpuinit
7375perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
7376{
7377 unsigned int cpu = (long)hcpu;
7378
Linus Torvalds4536e4d2011-11-03 07:44:04 -07007379 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007380
7381 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02007382 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007383 perf_event_init_cpu(cpu);
7384 break;
7385
Peter Zijlstra5e116372010-06-11 13:35:08 +02007386 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007387 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007388 perf_event_exit_cpu(cpu);
7389 break;
7390
7391 default:
7392 break;
7393 }
7394
7395 return NOTIFY_OK;
7396}
7397
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007398void __init perf_event_init(void)
7399{
Jason Wessel3c502e72010-11-04 17:33:01 -05007400 int ret;
7401
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007402 idr_init(&pmu_idr);
7403
Paul Mackerras220b1402010-03-10 20:45:52 +11007404 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007405 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007406 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
7407 perf_pmu_register(&perf_cpu_clock, NULL, -1);
7408 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007409 perf_tp_register();
7410 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01007411 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05007412
7413 ret = init_hw_breakpoint();
7414 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02007415
7416 /* do not patch jump label more than once per second */
7417 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01007418
7419 /*
7420 * Build time assertion that we keep the data_head at the intended
7421 * location. IOW, validation we got the __reserved[] size right.
7422 */
7423 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
7424 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007425}
Peter Zijlstraabe43402010-11-17 23:17:37 +01007426
7427static int __init perf_event_sysfs_init(void)
7428{
7429 struct pmu *pmu;
7430 int ret;
7431
7432 mutex_lock(&pmus_lock);
7433
7434 ret = bus_register(&pmu_bus);
7435 if (ret)
7436 goto unlock;
7437
7438 list_for_each_entry(pmu, &pmus, entry) {
7439 if (!pmu->name || pmu->type < 0)
7440 continue;
7441
7442 ret = pmu_dev_alloc(pmu);
7443 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
7444 }
7445 pmu_bus_running = 1;
7446 ret = 0;
7447
7448unlock:
7449 mutex_unlock(&pmus_lock);
7450
7451 return ret;
7452}
7453device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007454
7455#ifdef CONFIG_CGROUP_PERF
Tejun Heo92fb9742012-11-19 08:13:38 -08007456static struct cgroup_subsys_state *perf_cgroup_css_alloc(struct cgroup *cont)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007457{
7458 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02007459
Li Zefan1b15d052011-03-03 14:26:06 +08007460 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007461 if (!jc)
7462 return ERR_PTR(-ENOMEM);
7463
Stephane Eraniane5d13672011-02-14 11:20:01 +02007464 jc->info = alloc_percpu(struct perf_cgroup_info);
7465 if (!jc->info) {
7466 kfree(jc);
7467 return ERR_PTR(-ENOMEM);
7468 }
7469
Stephane Eraniane5d13672011-02-14 11:20:01 +02007470 return &jc->css;
7471}
7472
Tejun Heo92fb9742012-11-19 08:13:38 -08007473static void perf_cgroup_css_free(struct cgroup *cont)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007474{
7475 struct perf_cgroup *jc;
7476 jc = container_of(cgroup_subsys_state(cont, perf_subsys_id),
7477 struct perf_cgroup, css);
7478 free_percpu(jc->info);
7479 kfree(jc);
7480}
7481
7482static int __perf_cgroup_move(void *info)
7483{
7484 struct task_struct *task = info;
7485 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
7486 return 0;
7487}
7488
Li Zefan761b3ef2012-01-31 13:47:36 +08007489static void perf_cgroup_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007490{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007491 struct task_struct *task;
7492
7493 cgroup_taskset_for_each(task, cgrp, tset)
7494 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007495}
7496
Li Zefan761b3ef2012-01-31 13:47:36 +08007497static void perf_cgroup_exit(struct cgroup *cgrp, struct cgroup *old_cgrp,
7498 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007499{
7500 /*
7501 * cgroup_exit() is called in the copy_process() failure path.
7502 * Ignore this case since the task hasn't ran yet, this avoids
7503 * trying to poke a half freed task state from generic code.
7504 */
7505 if (!(task->flags & PF_EXITING))
7506 return;
7507
Tejun Heobb9d97b2011-12-12 18:12:21 -08007508 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007509}
7510
7511struct cgroup_subsys perf_subsys = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +02007512 .name = "perf_event",
7513 .subsys_id = perf_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08007514 .css_alloc = perf_cgroup_css_alloc,
7515 .css_free = perf_cgroup_css_free,
Ingo Molnare7e7ee22011-05-04 08:42:29 +02007516 .exit = perf_cgroup_exit,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007517 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +02007518};
7519#endif /* CONFIG_CGROUP_PERF */