blob: b90d660fc875f34aa4b1120a5766510adfa957c8 [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>
5 * Copyright (C) 2008-2009 Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2008-2009 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
7 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
8 *
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>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020021#include <linux/sysfs.h>
22#include <linux/dcache.h>
23#include <linux/percpu.h>
24#include <linux/ptrace.h>
Peter Zijlstrac2774432010-12-08 15:29:02 +010025#include <linux/reboot.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020026#include <linux/vmstat.h>
Peter Zijlstraabe43402010-11-17 23:17:37 +010027#include <linux/device.h>
Peter Zijlstra906010b2009-09-21 16:08:49 +020028#include <linux/vmalloc.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020029#include <linux/hardirq.h>
30#include <linux/rculist.h>
31#include <linux/uaccess.h>
32#include <linux/syscalls.h>
33#include <linux/anon_inodes.h>
34#include <linux/kernel_stat.h>
35#include <linux/perf_event.h>
Li Zefan6fb29152009-10-15 11:21:42 +080036#include <linux/ftrace_event.h>
Jason Wessel3c502e72010-11-04 17:33:01 -050037#include <linux/hw_breakpoint.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020038
39#include <asm/irq_regs.h>
40
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010041struct remote_function_call {
42 struct task_struct *p;
43 int (*func)(void *info);
44 void *info;
45 int ret;
46};
47
48static void remote_function(void *data)
49{
50 struct remote_function_call *tfc = data;
51 struct task_struct *p = tfc->p;
52
53 if (p) {
54 tfc->ret = -EAGAIN;
55 if (task_cpu(p) != smp_processor_id() || !task_curr(p))
56 return;
57 }
58
59 tfc->ret = tfc->func(tfc->info);
60}
61
62/**
63 * task_function_call - call a function on the cpu on which a task runs
64 * @p: the task to evaluate
65 * @func: the function to be called
66 * @info: the function call argument
67 *
68 * Calls the function @func when the task is currently running. This might
69 * be on the current CPU, which just calls the function directly
70 *
71 * returns: @func return value, or
72 * -ESRCH - when the process isn't running
73 * -EAGAIN - when the process moved away
74 */
75static int
76task_function_call(struct task_struct *p, int (*func) (void *info), void *info)
77{
78 struct remote_function_call data = {
79 .p = p,
80 .func = func,
81 .info = info,
82 .ret = -ESRCH, /* No such (running) process */
83 };
84
85 if (task_curr(p))
86 smp_call_function_single(task_cpu(p), remote_function, &data, 1);
87
88 return data.ret;
89}
90
91/**
92 * cpu_function_call - call a function on the cpu
93 * @func: the function to be called
94 * @info: the function call argument
95 *
96 * Calls the function @func on the remote cpu.
97 *
98 * returns: @func return value or -ENXIO when the cpu is offline
99 */
100static int cpu_function_call(int cpu, int (*func) (void *info), void *info)
101{
102 struct remote_function_call data = {
103 .p = NULL,
104 .func = func,
105 .info = info,
106 .ret = -ENXIO, /* No such CPU */
107 };
108
109 smp_call_function_single(cpu, remote_function, &data, 1);
110
111 return data.ret;
112}
113
Stephane Eraniane5d13672011-02-14 11:20:01 +0200114#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
115 PERF_FLAG_FD_OUTPUT |\
116 PERF_FLAG_PID_CGROUP)
117
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200118enum event_type_t {
119 EVENT_FLEXIBLE = 0x1,
120 EVENT_PINNED = 0x2,
121 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
122};
123
Stephane Eraniane5d13672011-02-14 11:20:01 +0200124/*
125 * perf_sched_events : >0 events exist
126 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
127 */
128atomic_t perf_sched_events __read_mostly;
129static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
130
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200131static atomic_t nr_mmap_events __read_mostly;
132static atomic_t nr_comm_events __read_mostly;
133static atomic_t nr_task_events __read_mostly;
134
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200135static LIST_HEAD(pmus);
136static DEFINE_MUTEX(pmus_lock);
137static struct srcu_struct pmus_srcu;
138
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200139/*
140 * perf event paranoia level:
141 * -1 - not paranoid at all
142 * 0 - disallow raw tracepoint access for unpriv
143 * 1 - disallow cpu events for unpriv
144 * 2 - disallow kernel profiling for unpriv
145 */
146int sysctl_perf_event_paranoid __read_mostly = 1;
147
Frederic Weisbecker20443382011-03-31 03:33:29 +0200148/* Minimum for 512 kiB + 1 user control page */
149int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200150
151/*
152 * max perf event sample rate
153 */
Peter Zijlstra163ec432011-02-16 11:22:34 +0100154#define DEFAULT_MAX_SAMPLE_RATE 100000
155int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
156static int max_samples_per_tick __read_mostly =
157 DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
158
159int perf_proc_update_handler(struct ctl_table *table, int write,
160 void __user *buffer, size_t *lenp,
161 loff_t *ppos)
162{
163 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
164
165 if (ret || !write)
166 return ret;
167
168 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
169
170 return 0;
171}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200172
173static atomic64_t perf_event_id;
174
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200175static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
176 enum event_type_t event_type);
177
178static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200179 enum event_type_t event_type,
180 struct task_struct *task);
181
182static void update_context_time(struct perf_event_context *ctx);
183static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200184
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200185void __weak perf_event_print_debug(void) { }
186
Matt Fleming84c79912010-10-03 21:41:13 +0100187extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200188{
Matt Fleming84c79912010-10-03 21:41:13 +0100189 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200190}
191
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200192static inline u64 perf_clock(void)
193{
194 return local_clock();
195}
196
Stephane Eraniane5d13672011-02-14 11:20:01 +0200197static inline struct perf_cpu_context *
198__get_cpu_context(struct perf_event_context *ctx)
199{
200 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
201}
202
203#ifdef CONFIG_CGROUP_PERF
204
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200205/*
206 * Must ensure cgroup is pinned (css_get) before calling
207 * this function. In other words, we cannot call this function
208 * if there is no cgroup event for the current CPU context.
209 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200210static inline struct perf_cgroup *
211perf_cgroup_from_task(struct task_struct *task)
212{
213 return container_of(task_subsys_state(task, perf_subsys_id),
214 struct perf_cgroup, css);
215}
216
217static inline bool
218perf_cgroup_match(struct perf_event *event)
219{
220 struct perf_event_context *ctx = event->ctx;
221 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
222
223 return !event->cgrp || event->cgrp == cpuctx->cgrp;
224}
225
226static inline void perf_get_cgroup(struct perf_event *event)
227{
228 css_get(&event->cgrp->css);
229}
230
231static inline void perf_put_cgroup(struct perf_event *event)
232{
233 css_put(&event->cgrp->css);
234}
235
236static inline void perf_detach_cgroup(struct perf_event *event)
237{
238 perf_put_cgroup(event);
239 event->cgrp = NULL;
240}
241
242static inline int is_cgroup_event(struct perf_event *event)
243{
244 return event->cgrp != NULL;
245}
246
247static inline u64 perf_cgroup_event_time(struct perf_event *event)
248{
249 struct perf_cgroup_info *t;
250
251 t = per_cpu_ptr(event->cgrp->info, event->cpu);
252 return t->time;
253}
254
255static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
256{
257 struct perf_cgroup_info *info;
258 u64 now;
259
260 now = perf_clock();
261
262 info = this_cpu_ptr(cgrp->info);
263
264 info->time += now - info->timestamp;
265 info->timestamp = now;
266}
267
268static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
269{
270 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
271 if (cgrp_out)
272 __update_cgrp_time(cgrp_out);
273}
274
275static inline void update_cgrp_time_from_event(struct perf_event *event)
276{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200277 struct perf_cgroup *cgrp;
278
Stephane Eraniane5d13672011-02-14 11:20:01 +0200279 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200280 * ensure we access cgroup data only when needed and
281 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200282 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200283 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200284 return;
285
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200286 cgrp = perf_cgroup_from_task(current);
287 /*
288 * Do not update time when cgroup is not active
289 */
290 if (cgrp == event->cgrp)
291 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200292}
293
294static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200295perf_cgroup_set_timestamp(struct task_struct *task,
296 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200297{
298 struct perf_cgroup *cgrp;
299 struct perf_cgroup_info *info;
300
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200301 /*
302 * ctx->lock held by caller
303 * ensure we do not access cgroup data
304 * unless we have the cgroup pinned (css_get)
305 */
306 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200307 return;
308
309 cgrp = perf_cgroup_from_task(task);
310 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200311 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200312}
313
314#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
315#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
316
317/*
318 * reschedule events based on the cgroup constraint of task.
319 *
320 * mode SWOUT : schedule out everything
321 * mode SWIN : schedule in based on cgroup for next
322 */
323void perf_cgroup_switch(struct task_struct *task, int mode)
324{
325 struct perf_cpu_context *cpuctx;
326 struct pmu *pmu;
327 unsigned long flags;
328
329 /*
330 * disable interrupts to avoid geting nr_cgroup
331 * changes via __perf_event_disable(). Also
332 * avoids preemption.
333 */
334 local_irq_save(flags);
335
336 /*
337 * we reschedule only in the presence of cgroup
338 * constrained events.
339 */
340 rcu_read_lock();
341
342 list_for_each_entry_rcu(pmu, &pmus, entry) {
343
344 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
345
346 perf_pmu_disable(cpuctx->ctx.pmu);
347
348 /*
349 * perf_cgroup_events says at least one
350 * context on this CPU has cgroup events.
351 *
352 * ctx->nr_cgroups reports the number of cgroup
353 * events for a context.
354 */
355 if (cpuctx->ctx.nr_cgroups > 0) {
356
357 if (mode & PERF_CGROUP_SWOUT) {
358 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
359 /*
360 * must not be done before ctxswout due
361 * to event_filter_match() in event_sched_out()
362 */
363 cpuctx->cgrp = NULL;
364 }
365
366 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200367 WARN_ON_ONCE(cpuctx->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200368 /* set cgrp before ctxsw in to
369 * allow event_filter_match() to not
370 * have to pass task around
371 */
372 cpuctx->cgrp = perf_cgroup_from_task(task);
373 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
374 }
375 }
376
377 perf_pmu_enable(cpuctx->ctx.pmu);
378 }
379
380 rcu_read_unlock();
381
382 local_irq_restore(flags);
383}
384
385static inline void perf_cgroup_sched_out(struct task_struct *task)
386{
387 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
388}
389
390static inline void perf_cgroup_sched_in(struct task_struct *task)
391{
392 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
393}
394
395static inline int perf_cgroup_connect(int fd, struct perf_event *event,
396 struct perf_event_attr *attr,
397 struct perf_event *group_leader)
398{
399 struct perf_cgroup *cgrp;
400 struct cgroup_subsys_state *css;
401 struct file *file;
402 int ret = 0, fput_needed;
403
404 file = fget_light(fd, &fput_needed);
405 if (!file)
406 return -EBADF;
407
408 css = cgroup_css_from_dir(file, perf_subsys_id);
Li Zefan3db272c2011-03-03 14:25:37 +0800409 if (IS_ERR(css)) {
410 ret = PTR_ERR(css);
411 goto out;
412 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200413
414 cgrp = container_of(css, struct perf_cgroup, css);
415 event->cgrp = cgrp;
416
Li Zefanf75e18c2011-03-03 14:25:50 +0800417 /* must be done before we fput() the file */
418 perf_get_cgroup(event);
419
Stephane Eraniane5d13672011-02-14 11:20:01 +0200420 /*
421 * all events in a group must monitor
422 * the same cgroup because a task belongs
423 * to only one perf cgroup at a time
424 */
425 if (group_leader && group_leader->cgrp != cgrp) {
426 perf_detach_cgroup(event);
427 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200428 }
Li Zefan3db272c2011-03-03 14:25:37 +0800429out:
Stephane Eraniane5d13672011-02-14 11:20:01 +0200430 fput_light(file, fput_needed);
431 return ret;
432}
433
434static inline void
435perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
436{
437 struct perf_cgroup_info *t;
438 t = per_cpu_ptr(event->cgrp->info, event->cpu);
439 event->shadow_ctx_time = now - t->timestamp;
440}
441
442static inline void
443perf_cgroup_defer_enabled(struct perf_event *event)
444{
445 /*
446 * when the current task's perf cgroup does not match
447 * the event's, we need to remember to call the
448 * perf_mark_enable() function the first time a task with
449 * a matching perf cgroup is scheduled in.
450 */
451 if (is_cgroup_event(event) && !perf_cgroup_match(event))
452 event->cgrp_defer_enabled = 1;
453}
454
455static inline void
456perf_cgroup_mark_enabled(struct perf_event *event,
457 struct perf_event_context *ctx)
458{
459 struct perf_event *sub;
460 u64 tstamp = perf_event_time(event);
461
462 if (!event->cgrp_defer_enabled)
463 return;
464
465 event->cgrp_defer_enabled = 0;
466
467 event->tstamp_enabled = tstamp - event->total_time_enabled;
468 list_for_each_entry(sub, &event->sibling_list, group_entry) {
469 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
470 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
471 sub->cgrp_defer_enabled = 0;
472 }
473 }
474}
475#else /* !CONFIG_CGROUP_PERF */
476
477static inline bool
478perf_cgroup_match(struct perf_event *event)
479{
480 return true;
481}
482
483static inline void perf_detach_cgroup(struct perf_event *event)
484{}
485
486static inline int is_cgroup_event(struct perf_event *event)
487{
488 return 0;
489}
490
491static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
492{
493 return 0;
494}
495
496static inline void update_cgrp_time_from_event(struct perf_event *event)
497{
498}
499
500static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
501{
502}
503
504static inline void perf_cgroup_sched_out(struct task_struct *task)
505{
506}
507
508static inline void perf_cgroup_sched_in(struct task_struct *task)
509{
510}
511
512static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
513 struct perf_event_attr *attr,
514 struct perf_event *group_leader)
515{
516 return -EINVAL;
517}
518
519static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200520perf_cgroup_set_timestamp(struct task_struct *task,
521 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200522{
523}
524
525void
526perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
527{
528}
529
530static inline void
531perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
532{
533}
534
535static inline u64 perf_cgroup_event_time(struct perf_event *event)
536{
537 return 0;
538}
539
540static inline void
541perf_cgroup_defer_enabled(struct perf_event *event)
542{
543}
544
545static inline void
546perf_cgroup_mark_enabled(struct perf_event *event,
547 struct perf_event_context *ctx)
548{
549}
550#endif
551
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200552void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200553{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200554 int *count = this_cpu_ptr(pmu->pmu_disable_count);
555 if (!(*count)++)
556 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200557}
558
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200559void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200560{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200561 int *count = this_cpu_ptr(pmu->pmu_disable_count);
562 if (!--(*count))
563 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200564}
565
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200566static DEFINE_PER_CPU(struct list_head, rotation_list);
567
568/*
569 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
570 * because they're strictly cpu affine and rotate_start is called with IRQs
571 * disabled, while rotate_context is called from IRQ context.
572 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200573static void perf_pmu_rotate_start(struct pmu *pmu)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200574{
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200575 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200576 struct list_head *head = &__get_cpu_var(rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200577
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200578 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200579
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200580 if (list_empty(&cpuctx->rotation_list))
581 list_add(&cpuctx->rotation_list, head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200582}
583
584static void get_ctx(struct perf_event_context *ctx)
585{
586 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
587}
588
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200589static void put_ctx(struct perf_event_context *ctx)
590{
591 if (atomic_dec_and_test(&ctx->refcount)) {
592 if (ctx->parent_ctx)
593 put_ctx(ctx->parent_ctx);
594 if (ctx->task)
595 put_task_struct(ctx->task);
Lai Jiangshancb796ff2011-03-18 12:07:41 +0800596 kfree_rcu(ctx, rcu_head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200597 }
598}
599
600static void unclone_ctx(struct perf_event_context *ctx)
601{
602 if (ctx->parent_ctx) {
603 put_ctx(ctx->parent_ctx);
604 ctx->parent_ctx = NULL;
605 }
606}
607
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200608static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
609{
610 /*
611 * only top level events have the pid namespace they were created in
612 */
613 if (event->parent)
614 event = event->parent;
615
616 return task_tgid_nr_ns(p, event->ns);
617}
618
619static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
620{
621 /*
622 * only top level events have the pid namespace they were created in
623 */
624 if (event->parent)
625 event = event->parent;
626
627 return task_pid_nr_ns(p, event->ns);
628}
629
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200630/*
631 * If we inherit events we want to return the parent event id
632 * to userspace.
633 */
634static u64 primary_event_id(struct perf_event *event)
635{
636 u64 id = event->id;
637
638 if (event->parent)
639 id = event->parent->id;
640
641 return id;
642}
643
644/*
645 * Get the perf_event_context for a task and lock it.
646 * This has to cope with with the fact that until it is locked,
647 * the context could get moved to another task.
648 */
649static struct perf_event_context *
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200650perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200651{
652 struct perf_event_context *ctx;
653
654 rcu_read_lock();
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200655retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200656 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200657 if (ctx) {
658 /*
659 * If this context is a clone of another, it might
660 * get swapped for another underneath us by
661 * perf_event_task_sched_out, though the
662 * rcu_read_lock() protects us from any context
663 * getting freed. Lock the context and check if it
664 * got swapped before we could get the lock, and retry
665 * if so. If we locked the right context, then it
666 * can't get swapped on us any more.
667 */
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100668 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200669 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100670 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200671 goto retry;
672 }
673
674 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100675 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200676 ctx = NULL;
677 }
678 }
679 rcu_read_unlock();
680 return ctx;
681}
682
683/*
684 * Get the context for a task and increment its pin_count so it
685 * can't get swapped to another task. This also increments its
686 * reference count so that the context can't get freed.
687 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200688static struct perf_event_context *
689perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200690{
691 struct perf_event_context *ctx;
692 unsigned long flags;
693
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200694 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200695 if (ctx) {
696 ++ctx->pin_count;
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100697 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200698 }
699 return ctx;
700}
701
702static void perf_unpin_context(struct perf_event_context *ctx)
703{
704 unsigned long flags;
705
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100706 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200707 --ctx->pin_count;
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100708 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200709}
710
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100711/*
712 * Update the record of the current time in a context.
713 */
714static void update_context_time(struct perf_event_context *ctx)
715{
716 u64 now = perf_clock();
717
718 ctx->time += now - ctx->timestamp;
719 ctx->timestamp = now;
720}
721
Stephane Eranian41587552011-01-03 18:20:01 +0200722static u64 perf_event_time(struct perf_event *event)
723{
724 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200725
726 if (is_cgroup_event(event))
727 return perf_cgroup_event_time(event);
728
Stephane Eranian41587552011-01-03 18:20:01 +0200729 return ctx ? ctx->time : 0;
730}
731
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100732/*
733 * Update the total_time_enabled and total_time_running fields for a event.
734 */
735static void update_event_times(struct perf_event *event)
736{
737 struct perf_event_context *ctx = event->ctx;
738 u64 run_end;
739
740 if (event->state < PERF_EVENT_STATE_INACTIVE ||
741 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
742 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200743 /*
744 * in cgroup mode, time_enabled represents
745 * the time the event was enabled AND active
746 * tasks were in the monitored cgroup. This is
747 * independent of the activity of the context as
748 * there may be a mix of cgroup and non-cgroup events.
749 *
750 * That is why we treat cgroup events differently
751 * here.
752 */
753 if (is_cgroup_event(event))
Stephane Eranian41587552011-01-03 18:20:01 +0200754 run_end = perf_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200755 else if (ctx->is_active)
756 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +0100757 else
758 run_end = event->tstamp_stopped;
759
760 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100761
762 if (event->state == PERF_EVENT_STATE_INACTIVE)
763 run_end = event->tstamp_stopped;
764 else
Stephane Eranian41587552011-01-03 18:20:01 +0200765 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100766
767 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200768
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100769}
770
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200771/*
772 * Update total_time_enabled and total_time_running for all events in a group.
773 */
774static void update_group_times(struct perf_event *leader)
775{
776 struct perf_event *event;
777
778 update_event_times(leader);
779 list_for_each_entry(event, &leader->sibling_list, group_entry)
780 update_event_times(event);
781}
782
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100783static struct list_head *
784ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
785{
786 if (event->attr.pinned)
787 return &ctx->pinned_groups;
788 else
789 return &ctx->flexible_groups;
790}
791
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200792/*
793 * Add a event from the lists for its context.
794 * Must be called with ctx->mutex and ctx->lock held.
795 */
796static void
797list_add_event(struct perf_event *event, struct perf_event_context *ctx)
798{
Peter Zijlstra8a495422010-05-27 15:47:49 +0200799 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
800 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200801
802 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +0200803 * If we're a stand alone event or group leader, we go to the context
804 * list, group events are kept attached to the group so that
805 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200806 */
Peter Zijlstra8a495422010-05-27 15:47:49 +0200807 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100808 struct list_head *list;
809
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100810 if (is_software_event(event))
811 event->group_flags |= PERF_GROUP_SOFTWARE;
812
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100813 list = ctx_group_list(event, ctx);
814 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200815 }
816
Peter Zijlstra08309372011-03-03 11:31:20 +0100817 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200818 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200819
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200820 list_add_rcu(&event->event_entry, &ctx->event_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200821 if (!ctx->nr_events)
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200822 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200823 ctx->nr_events++;
824 if (event->attr.inherit_stat)
825 ctx->nr_stat++;
826}
827
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200828/*
829 * Called at perf_event creation and when events are attached/detached from a
830 * group.
831 */
832static void perf_event__read_size(struct perf_event *event)
833{
834 int entry = sizeof(u64); /* value */
835 int size = 0;
836 int nr = 1;
837
838 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
839 size += sizeof(u64);
840
841 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
842 size += sizeof(u64);
843
844 if (event->attr.read_format & PERF_FORMAT_ID)
845 entry += sizeof(u64);
846
847 if (event->attr.read_format & PERF_FORMAT_GROUP) {
848 nr += event->group_leader->nr_siblings;
849 size += sizeof(u64);
850 }
851
852 size += entry * nr;
853 event->read_size = size;
854}
855
856static void perf_event__header_size(struct perf_event *event)
857{
858 struct perf_sample_data *data;
859 u64 sample_type = event->attr.sample_type;
860 u16 size = 0;
861
862 perf_event__read_size(event);
863
864 if (sample_type & PERF_SAMPLE_IP)
865 size += sizeof(data->ip);
866
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200867 if (sample_type & PERF_SAMPLE_ADDR)
868 size += sizeof(data->addr);
869
870 if (sample_type & PERF_SAMPLE_PERIOD)
871 size += sizeof(data->period);
872
873 if (sample_type & PERF_SAMPLE_READ)
874 size += event->read_size;
875
876 event->header_size = size;
877}
878
879static void perf_event__id_header_size(struct perf_event *event)
880{
881 struct perf_sample_data *data;
882 u64 sample_type = event->attr.sample_type;
883 u16 size = 0;
884
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200885 if (sample_type & PERF_SAMPLE_TID)
886 size += sizeof(data->tid_entry);
887
888 if (sample_type & PERF_SAMPLE_TIME)
889 size += sizeof(data->time);
890
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200891 if (sample_type & PERF_SAMPLE_ID)
892 size += sizeof(data->id);
893
894 if (sample_type & PERF_SAMPLE_STREAM_ID)
895 size += sizeof(data->stream_id);
896
897 if (sample_type & PERF_SAMPLE_CPU)
898 size += sizeof(data->cpu_entry);
899
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200900 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200901}
902
Peter Zijlstra8a495422010-05-27 15:47:49 +0200903static void perf_group_attach(struct perf_event *event)
904{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200905 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200906
Peter Zijlstra74c33372010-10-15 11:40:29 +0200907 /*
908 * We can have double attach due to group movement in perf_event_open.
909 */
910 if (event->attach_state & PERF_ATTACH_GROUP)
911 return;
912
Peter Zijlstra8a495422010-05-27 15:47:49 +0200913 event->attach_state |= PERF_ATTACH_GROUP;
914
915 if (group_leader == event)
916 return;
917
918 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
919 !is_software_event(event))
920 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
921
922 list_add_tail(&event->group_entry, &group_leader->sibling_list);
923 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200924
925 perf_event__header_size(group_leader);
926
927 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
928 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +0200929}
930
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200931/*
932 * Remove a event from the lists for its context.
933 * Must be called with ctx->mutex and ctx->lock held.
934 */
935static void
936list_del_event(struct perf_event *event, struct perf_event_context *ctx)
937{
Stephane Eranian68cacd22011-03-23 16:03:06 +0100938 struct perf_cpu_context *cpuctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200939 /*
940 * We can have double detach due to exit/hot-unplug + close.
941 */
942 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200943 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200944
945 event->attach_state &= ~PERF_ATTACH_CONTEXT;
946
Stephane Eranian68cacd22011-03-23 16:03:06 +0100947 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200948 ctx->nr_cgroups--;
Stephane Eranian68cacd22011-03-23 16:03:06 +0100949 cpuctx = __get_cpu_context(ctx);
950 /*
951 * if there are no more cgroup events
952 * then cler cgrp to avoid stale pointer
953 * in update_cgrp_time_from_cpuctx()
954 */
955 if (!ctx->nr_cgroups)
956 cpuctx->cgrp = NULL;
957 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200958
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200959 ctx->nr_events--;
960 if (event->attr.inherit_stat)
961 ctx->nr_stat--;
962
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200963 list_del_rcu(&event->event_entry);
964
Peter Zijlstra8a495422010-05-27 15:47:49 +0200965 if (event->group_leader == event)
966 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200967
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200968 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -0800969
970 /*
971 * If event was in error state, then keep it
972 * that way, otherwise bogus counts will be
973 * returned on read(). The only way to get out
974 * of error state is by explicit re-enabling
975 * of the event
976 */
977 if (event->state > PERF_EVENT_STATE_OFF)
978 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra050735b2010-05-11 11:51:53 +0200979}
980
Peter Zijlstra8a495422010-05-27 15:47:49 +0200981static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +0200982{
983 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200984 struct list_head *list = NULL;
985
986 /*
987 * We can have double detach due to exit/hot-unplug + close.
988 */
989 if (!(event->attach_state & PERF_ATTACH_GROUP))
990 return;
991
992 event->attach_state &= ~PERF_ATTACH_GROUP;
993
994 /*
995 * If this is a sibling, remove it from its group.
996 */
997 if (event->group_leader != event) {
998 list_del_init(&event->group_entry);
999 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001000 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001001 }
1002
1003 if (!list_empty(&event->group_entry))
1004 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001005
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001006 /*
1007 * If this was a group event with sibling events then
1008 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001009 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001010 */
1011 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001012 if (list)
1013 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001014 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001015
1016 /* Inherit group flags from the previous leader */
1017 sibling->group_flags = event->group_flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001018 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001019
1020out:
1021 perf_event__header_size(event->group_leader);
1022
1023 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1024 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001025}
1026
Stephane Eranianfa66f072010-08-26 16:40:01 +02001027static inline int
1028event_filter_match(struct perf_event *event)
1029{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001030 return (event->cpu == -1 || event->cpu == smp_processor_id())
1031 && perf_cgroup_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001032}
1033
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001034static void
1035event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001036 struct perf_cpu_context *cpuctx,
1037 struct perf_event_context *ctx)
1038{
Stephane Eranian41587552011-01-03 18:20:01 +02001039 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001040 u64 delta;
1041 /*
1042 * An event which could not be activated because of
1043 * filter mismatch still needs to have its timings
1044 * maintained, otherwise bogus information is return
1045 * via read() for time_enabled, time_running:
1046 */
1047 if (event->state == PERF_EVENT_STATE_INACTIVE
1048 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001049 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001050 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001051 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001052 }
1053
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001054 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001055 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001056
1057 event->state = PERF_EVENT_STATE_INACTIVE;
1058 if (event->pending_disable) {
1059 event->pending_disable = 0;
1060 event->state = PERF_EVENT_STATE_OFF;
1061 }
Stephane Eranian41587552011-01-03 18:20:01 +02001062 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001063 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001064 event->oncpu = -1;
1065
1066 if (!is_software_event(event))
1067 cpuctx->active_oncpu--;
1068 ctx->nr_active--;
1069 if (event->attr.exclusive || !cpuctx->active_oncpu)
1070 cpuctx->exclusive = 0;
1071}
1072
1073static void
1074group_sched_out(struct perf_event *group_event,
1075 struct perf_cpu_context *cpuctx,
1076 struct perf_event_context *ctx)
1077{
1078 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001079 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001080
1081 event_sched_out(group_event, cpuctx, ctx);
1082
1083 /*
1084 * Schedule out siblings (if any):
1085 */
1086 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1087 event_sched_out(event, cpuctx, ctx);
1088
Stephane Eranianfa66f072010-08-26 16:40:01 +02001089 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001090 cpuctx->exclusive = 0;
1091}
1092
1093/*
1094 * Cross CPU call to remove a performance event
1095 *
1096 * We disable the event on the hardware level first. After that we
1097 * remove it from the context list.
1098 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001099static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001100{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001101 struct perf_event *event = info;
1102 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001103 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001104
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001105 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001106 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001107 list_del_event(event, ctx);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001108 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001109
1110 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001111}
1112
1113
1114/*
1115 * Remove the event from a task's (or a CPU's) list of events.
1116 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001117 * CPU events are removed with a smp call. For task events we only
1118 * call when the task is on a CPU.
1119 *
1120 * If event->ctx is a cloned context, callers must make sure that
1121 * every task struct that event->ctx->task could possibly point to
1122 * remains valid. This is OK when called from perf_release since
1123 * that only calls us on the top-level context, which can't be a clone.
1124 * When called from perf_event_exit_task, it's OK because the
1125 * context has been detached from its task.
1126 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001127static void perf_remove_from_context(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001128{
1129 struct perf_event_context *ctx = event->ctx;
1130 struct task_struct *task = ctx->task;
1131
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001132 lockdep_assert_held(&ctx->mutex);
1133
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001134 if (!task) {
1135 /*
1136 * Per cpu events are removed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001137 * the removal is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001138 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001139 cpu_function_call(event->cpu, __perf_remove_from_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001140 return;
1141 }
1142
1143retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001144 if (!task_function_call(task, __perf_remove_from_context, event))
1145 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001146
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001147 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001148 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001149 * If we failed to find a running task, but find the context active now
1150 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001151 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001152 if (ctx->is_active) {
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001153 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001154 goto retry;
1155 }
1156
1157 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001158 * Since the task isn't running, its safe to remove the event, us
1159 * holding the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001160 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001161 list_del_event(event, ctx);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001162 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001163}
1164
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001165/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001166 * Cross CPU call to disable a performance event
1167 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001168static int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001169{
1170 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001171 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001172 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001173
1174 /*
1175 * If this is a per-task event, need to check whether this
1176 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001177 *
1178 * Can trigger due to concurrent perf_event_context_sched_out()
1179 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001180 */
1181 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001182 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001183
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001184 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001185
1186 /*
1187 * If the event is on, turn it off.
1188 * If it is in error state, leave it in error state.
1189 */
1190 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1191 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001192 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001193 update_group_times(event);
1194 if (event == event->group_leader)
1195 group_sched_out(event, cpuctx, ctx);
1196 else
1197 event_sched_out(event, cpuctx, ctx);
1198 event->state = PERF_EVENT_STATE_OFF;
1199 }
1200
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001201 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001202
1203 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001204}
1205
1206/*
1207 * Disable a event.
1208 *
1209 * If event->ctx is a cloned context, callers must make sure that
1210 * every task struct that event->ctx->task could possibly point to
1211 * remains valid. This condition is satisifed when called through
1212 * perf_event_for_each_child or perf_event_for_each because they
1213 * hold the top-level event's child_mutex, so any descendant that
1214 * goes to exit will block in sync_child_event.
1215 * When called from perf_pending_event it's OK because event->ctx
1216 * is the current context on this CPU and preemption is disabled,
1217 * hence we can't get into perf_event_task_sched_out for this context.
1218 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001219void perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001220{
1221 struct perf_event_context *ctx = event->ctx;
1222 struct task_struct *task = ctx->task;
1223
1224 if (!task) {
1225 /*
1226 * Disable the event on the cpu that it's on
1227 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001228 cpu_function_call(event->cpu, __perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001229 return;
1230 }
1231
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001232retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001233 if (!task_function_call(task, __perf_event_disable, event))
1234 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001235
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001236 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001237 /*
1238 * If the event is still active, we need to retry the cross-call.
1239 */
1240 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001241 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001242 /*
1243 * Reload the task pointer, it might have been changed by
1244 * a concurrent perf_event_context_sched_out().
1245 */
1246 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001247 goto retry;
1248 }
1249
1250 /*
1251 * Since we have the lock this context can't be scheduled
1252 * in, so we can change the state safely.
1253 */
1254 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1255 update_group_times(event);
1256 event->state = PERF_EVENT_STATE_OFF;
1257 }
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001258 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001259}
1260
Stephane Eraniane5d13672011-02-14 11:20:01 +02001261static void perf_set_shadow_time(struct perf_event *event,
1262 struct perf_event_context *ctx,
1263 u64 tstamp)
1264{
1265 /*
1266 * use the correct time source for the time snapshot
1267 *
1268 * We could get by without this by leveraging the
1269 * fact that to get to this function, the caller
1270 * has most likely already called update_context_time()
1271 * and update_cgrp_time_xx() and thus both timestamp
1272 * are identical (or very close). Given that tstamp is,
1273 * already adjusted for cgroup, we could say that:
1274 * tstamp - ctx->timestamp
1275 * is equivalent to
1276 * tstamp - cgrp->timestamp.
1277 *
1278 * Then, in perf_output_read(), the calculation would
1279 * work with no changes because:
1280 * - event is guaranteed scheduled in
1281 * - no scheduled out in between
1282 * - thus the timestamp would be the same
1283 *
1284 * But this is a bit hairy.
1285 *
1286 * So instead, we have an explicit cgroup call to remain
1287 * within the time time source all along. We believe it
1288 * is cleaner and simpler to understand.
1289 */
1290 if (is_cgroup_event(event))
1291 perf_cgroup_set_shadow_time(event, tstamp);
1292 else
1293 event->shadow_ctx_time = tstamp - ctx->timestamp;
1294}
1295
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001296#define MAX_INTERRUPTS (~0ULL)
1297
1298static void perf_log_throttle(struct perf_event *event, int enable);
1299
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001300static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001301event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001302 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001303 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001304{
Stephane Eranian41587552011-01-03 18:20:01 +02001305 u64 tstamp = perf_event_time(event);
1306
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001307 if (event->state <= PERF_EVENT_STATE_OFF)
1308 return 0;
1309
1310 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001311 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001312
1313 /*
1314 * Unthrottle events, since we scheduled we might have missed several
1315 * ticks already, also for a heavily scheduling task there is little
1316 * guarantee it'll get a tick in a timely manner.
1317 */
1318 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1319 perf_log_throttle(event, 1);
1320 event->hw.interrupts = 0;
1321 }
1322
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001323 /*
1324 * The new state must be visible before we turn it on in the hardware:
1325 */
1326 smp_wmb();
1327
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001328 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001329 event->state = PERF_EVENT_STATE_INACTIVE;
1330 event->oncpu = -1;
1331 return -EAGAIN;
1332 }
1333
Stephane Eranian41587552011-01-03 18:20:01 +02001334 event->tstamp_running += tstamp - event->tstamp_stopped;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001335
Stephane Eraniane5d13672011-02-14 11:20:01 +02001336 perf_set_shadow_time(event, ctx, tstamp);
Stephane Eranianeed01522010-10-26 16:08:01 +02001337
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001338 if (!is_software_event(event))
1339 cpuctx->active_oncpu++;
1340 ctx->nr_active++;
1341
1342 if (event->attr.exclusive)
1343 cpuctx->exclusive = 1;
1344
1345 return 0;
1346}
1347
1348static int
1349group_sched_in(struct perf_event *group_event,
1350 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001351 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001352{
Lin Ming6bde9b62010-04-23 13:56:00 +08001353 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001354 struct pmu *pmu = group_event->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001355 u64 now = ctx->time;
1356 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001357
1358 if (group_event->state == PERF_EVENT_STATE_OFF)
1359 return 0;
1360
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001361 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +08001362
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001363 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001364 pmu->cancel_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001365 return -EAGAIN;
Stephane Eranian90151c32010-05-25 16:23:10 +02001366 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001367
1368 /*
1369 * Schedule in siblings as one group (if any):
1370 */
1371 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001372 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001373 partial_group = event;
1374 goto group_error;
1375 }
1376 }
1377
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001378 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001379 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001380
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001381group_error:
1382 /*
1383 * Groups can be scheduled in as one unit only, so undo any
1384 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001385 * The events up to the failed event are scheduled out normally,
1386 * tstamp_stopped will be updated.
1387 *
1388 * The failed events and the remaining siblings need to have
1389 * their timings updated as if they had gone thru event_sched_in()
1390 * and event_sched_out(). This is required to get consistent timings
1391 * across the group. This also takes care of the case where the group
1392 * could never be scheduled by ensuring tstamp_stopped is set to mark
1393 * the time the event was actually stopped, such that time delta
1394 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001395 */
1396 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1397 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001398 simulate = true;
1399
1400 if (simulate) {
1401 event->tstamp_running += now - event->tstamp_stopped;
1402 event->tstamp_stopped = now;
1403 } else {
1404 event_sched_out(event, cpuctx, ctx);
1405 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001406 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001407 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001408
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001409 pmu->cancel_txn(pmu);
Stephane Eranian90151c32010-05-25 16:23:10 +02001410
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001411 return -EAGAIN;
1412}
1413
1414/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001415 * Work out whether we can put this event group on the CPU now.
1416 */
1417static int group_can_go_on(struct perf_event *event,
1418 struct perf_cpu_context *cpuctx,
1419 int can_add_hw)
1420{
1421 /*
1422 * Groups consisting entirely of software events can always go on.
1423 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001424 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001425 return 1;
1426 /*
1427 * If an exclusive group is already on, no other hardware
1428 * events can go on.
1429 */
1430 if (cpuctx->exclusive)
1431 return 0;
1432 /*
1433 * If this group is exclusive and there are already
1434 * events on the CPU, it can't go on.
1435 */
1436 if (event->attr.exclusive && cpuctx->active_oncpu)
1437 return 0;
1438 /*
1439 * Otherwise, try to add it if all previous groups were able
1440 * to go on.
1441 */
1442 return can_add_hw;
1443}
1444
1445static void add_event_to_ctx(struct perf_event *event,
1446 struct perf_event_context *ctx)
1447{
Stephane Eranian41587552011-01-03 18:20:01 +02001448 u64 tstamp = perf_event_time(event);
1449
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001450 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001451 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02001452 event->tstamp_enabled = tstamp;
1453 event->tstamp_running = tstamp;
1454 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001455}
1456
Stephane Eraniane5d13672011-02-14 11:20:01 +02001457static void perf_event_context_sched_in(struct perf_event_context *ctx,
1458 struct task_struct *tsk);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001459
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001460/*
1461 * Cross CPU call to install and enable a performance event
1462 *
1463 * Must be called with ctx->mutex held
1464 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001465static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001466{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001467 struct perf_event *event = info;
1468 struct perf_event_context *ctx = event->ctx;
1469 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001470 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001471 int err;
1472
1473 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001474 * In case we're installing a new context to an already running task,
1475 * could also happen before perf_event_task_sched_in() on architectures
1476 * which do context switches with IRQs enabled.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001477 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001478 if (ctx->task && !cpuctx->task_ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001479 perf_event_context_sched_in(ctx, ctx->task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001480
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001481 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001482 ctx->is_active = 1;
1483 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001484 /*
1485 * update cgrp time only if current cgrp
1486 * matches event->cgrp. Must be done before
1487 * calling add_event_to_ctx()
1488 */
1489 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001490
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001491 add_event_to_ctx(event, ctx);
1492
Stephane Eranian5632ab12011-01-03 18:20:01 +02001493 if (!event_filter_match(event))
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001494 goto unlock;
1495
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001496 /*
1497 * Don't put the event on if it is disabled or if
1498 * it is in a group and the group isn't on.
1499 */
1500 if (event->state != PERF_EVENT_STATE_INACTIVE ||
1501 (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE))
1502 goto unlock;
1503
1504 /*
1505 * An exclusive event can't go on if there are already active
1506 * hardware events, and no hardware event can go on if there
1507 * is already an exclusive event on.
1508 */
1509 if (!group_can_go_on(event, cpuctx, 1))
1510 err = -EEXIST;
1511 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01001512 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001513
1514 if (err) {
1515 /*
1516 * This event couldn't go on. If it is in a group
1517 * then we have to pull the whole group off.
1518 * If the event group is pinned then put it in error state.
1519 */
1520 if (leader != event)
1521 group_sched_out(leader, cpuctx, ctx);
1522 if (leader->attr.pinned) {
1523 update_group_times(leader);
1524 leader->state = PERF_EVENT_STATE_ERROR;
1525 }
1526 }
1527
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001528unlock:
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001529 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001530
1531 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001532}
1533
1534/*
1535 * Attach a performance event to a context
1536 *
1537 * First we add the event to the list with the hardware enable bit
1538 * in event->hw_config cleared.
1539 *
1540 * If the event is attached to a task which is on a CPU we use a smp
1541 * call to enable it in the task context. The task might have been
1542 * scheduled away, but we check this in the smp call again.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001543 */
1544static void
1545perf_install_in_context(struct perf_event_context *ctx,
1546 struct perf_event *event,
1547 int cpu)
1548{
1549 struct task_struct *task = ctx->task;
1550
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001551 lockdep_assert_held(&ctx->mutex);
1552
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001553 event->ctx = ctx;
1554
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001555 if (!task) {
1556 /*
1557 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001558 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001559 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001560 cpu_function_call(cpu, __perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001561 return;
1562 }
1563
1564retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001565 if (!task_function_call(task, __perf_install_in_context, event))
1566 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001567
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001568 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001569 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001570 * If we failed to find a running task, but find the context active now
1571 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001572 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001573 if (ctx->is_active) {
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001574 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001575 goto retry;
1576 }
1577
1578 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001579 * Since the task isn't running, its safe to add the event, us holding
1580 * the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001581 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001582 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001583 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001584}
1585
1586/*
1587 * Put a event into inactive state and update time fields.
1588 * Enabling the leader of a group effectively enables all
1589 * the group members that aren't explicitly disabled, so we
1590 * have to update their ->tstamp_enabled also.
1591 * Note: this works for group members as well as group leaders
1592 * since the non-leader members' sibling_lists will be empty.
1593 */
1594static void __perf_event_mark_enabled(struct perf_event *event,
1595 struct perf_event_context *ctx)
1596{
1597 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02001598 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001599
1600 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02001601 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001602 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02001603 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
1604 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001605 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001606}
1607
1608/*
1609 * Cross CPU call to enable a performance event
1610 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001611static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001612{
1613 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001614 struct perf_event_context *ctx = event->ctx;
1615 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001616 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001617 int err;
1618
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001619 if (WARN_ON_ONCE(!ctx->is_active))
1620 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001621
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001622 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001623 update_context_time(ctx);
1624
1625 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1626 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001627
1628 /*
1629 * set current task's cgroup time reference point
1630 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001631 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001632
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001633 __perf_event_mark_enabled(event, ctx);
1634
Stephane Eraniane5d13672011-02-14 11:20:01 +02001635 if (!event_filter_match(event)) {
1636 if (is_cgroup_event(event))
1637 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001638 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001639 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001640
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001641 /*
1642 * If the event is in a group and isn't the group leader,
1643 * then don't put it on unless the group is on.
1644 */
1645 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
1646 goto unlock;
1647
1648 if (!group_can_go_on(event, cpuctx, 1)) {
1649 err = -EEXIST;
1650 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001651 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001652 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001653 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01001654 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001655 }
1656
1657 if (err) {
1658 /*
1659 * If this event can't go on and it's part of a
1660 * group, then the whole group has to come off.
1661 */
1662 if (leader != event)
1663 group_sched_out(leader, cpuctx, ctx);
1664 if (leader->attr.pinned) {
1665 update_group_times(leader);
1666 leader->state = PERF_EVENT_STATE_ERROR;
1667 }
1668 }
1669
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001670unlock:
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001671 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001672
1673 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001674}
1675
1676/*
1677 * Enable a event.
1678 *
1679 * If event->ctx is a cloned context, callers must make sure that
1680 * every task struct that event->ctx->task could possibly point to
1681 * remains valid. This condition is satisfied when called through
1682 * perf_event_for_each_child or perf_event_for_each as described
1683 * for perf_event_disable.
1684 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001685void perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001686{
1687 struct perf_event_context *ctx = event->ctx;
1688 struct task_struct *task = ctx->task;
1689
1690 if (!task) {
1691 /*
1692 * Enable the event on the cpu that it's on
1693 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001694 cpu_function_call(event->cpu, __perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001695 return;
1696 }
1697
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001698 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001699 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1700 goto out;
1701
1702 /*
1703 * If the event is in error state, clear that first.
1704 * That way, if we see the event in error state below, we
1705 * know that it has gone back into error state, as distinct
1706 * from the task having been scheduled away before the
1707 * cross-call arrived.
1708 */
1709 if (event->state == PERF_EVENT_STATE_ERROR)
1710 event->state = PERF_EVENT_STATE_OFF;
1711
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001712retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001713 if (!ctx->is_active) {
1714 __perf_event_mark_enabled(event, ctx);
1715 goto out;
1716 }
1717
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001718 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001719
1720 if (!task_function_call(task, __perf_event_enable, event))
1721 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001722
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001723 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001724
1725 /*
1726 * If the context is active and the event is still off,
1727 * we need to retry the cross-call.
1728 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001729 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
1730 /*
1731 * task could have been flipped by a concurrent
1732 * perf_event_context_sched_out()
1733 */
1734 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001735 goto retry;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001736 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001737
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001738out:
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001739 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001740}
1741
1742static int perf_event_refresh(struct perf_event *event, int refresh)
1743{
1744 /*
1745 * not supported on inherited events
1746 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01001747 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001748 return -EINVAL;
1749
1750 atomic_add(refresh, &event->event_limit);
1751 perf_event_enable(event);
1752
1753 return 0;
1754}
1755
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001756static void ctx_sched_out(struct perf_event_context *ctx,
1757 struct perf_cpu_context *cpuctx,
1758 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001759{
1760 struct perf_event *event;
1761
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001762 raw_spin_lock(&ctx->lock);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001763 perf_pmu_disable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001764 ctx->is_active = 0;
1765 if (likely(!ctx->nr_events))
1766 goto out;
1767 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001768 update_cgrp_time_from_cpuctx(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001769
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001770 if (!ctx->nr_active)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001771 goto out;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001772
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001773 if (event_type & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001774 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
1775 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001776 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001777
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001778 if (event_type & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001779 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08001780 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001781 }
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001782out:
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001783 perf_pmu_enable(ctx->pmu);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001784 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001785}
1786
1787/*
1788 * Test whether two contexts are equivalent, i.e. whether they
1789 * have both been cloned from the same version of the same context
1790 * and they both have the same number of enabled events.
1791 * If the number of enabled events is the same, then the set
1792 * of enabled events should be the same, because these are both
1793 * inherited contexts, therefore we can't access individual events
1794 * in them directly with an fd; we can only enable/disable all
1795 * events via prctl, or enable/disable all events in a family
1796 * via ioctl, which will have the same effect on both contexts.
1797 */
1798static int context_equiv(struct perf_event_context *ctx1,
1799 struct perf_event_context *ctx2)
1800{
1801 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
1802 && ctx1->parent_gen == ctx2->parent_gen
1803 && !ctx1->pin_count && !ctx2->pin_count;
1804}
1805
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001806static void __perf_event_sync_stat(struct perf_event *event,
1807 struct perf_event *next_event)
1808{
1809 u64 value;
1810
1811 if (!event->attr.inherit_stat)
1812 return;
1813
1814 /*
1815 * Update the event value, we cannot use perf_event_read()
1816 * because we're in the middle of a context switch and have IRQs
1817 * disabled, which upsets smp_call_function_single(), however
1818 * we know the event must be on the current CPU, therefore we
1819 * don't need to use it.
1820 */
1821 switch (event->state) {
1822 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01001823 event->pmu->read(event);
1824 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001825
1826 case PERF_EVENT_STATE_INACTIVE:
1827 update_event_times(event);
1828 break;
1829
1830 default:
1831 break;
1832 }
1833
1834 /*
1835 * In order to keep per-task stats reliable we need to flip the event
1836 * values when we flip the contexts.
1837 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02001838 value = local64_read(&next_event->count);
1839 value = local64_xchg(&event->count, value);
1840 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001841
1842 swap(event->total_time_enabled, next_event->total_time_enabled);
1843 swap(event->total_time_running, next_event->total_time_running);
1844
1845 /*
1846 * Since we swizzled the values, update the user visible data too.
1847 */
1848 perf_event_update_userpage(event);
1849 perf_event_update_userpage(next_event);
1850}
1851
1852#define list_next_entry(pos, member) \
1853 list_entry(pos->member.next, typeof(*pos), member)
1854
1855static void perf_event_sync_stat(struct perf_event_context *ctx,
1856 struct perf_event_context *next_ctx)
1857{
1858 struct perf_event *event, *next_event;
1859
1860 if (!ctx->nr_stat)
1861 return;
1862
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01001863 update_context_time(ctx);
1864
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001865 event = list_first_entry(&ctx->event_list,
1866 struct perf_event, event_entry);
1867
1868 next_event = list_first_entry(&next_ctx->event_list,
1869 struct perf_event, event_entry);
1870
1871 while (&event->event_entry != &ctx->event_list &&
1872 &next_event->event_entry != &next_ctx->event_list) {
1873
1874 __perf_event_sync_stat(event, next_event);
1875
1876 event = list_next_entry(event, event_entry);
1877 next_event = list_next_entry(next_event, event_entry);
1878 }
1879}
1880
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001881static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
1882 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001883{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001884 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001885 struct perf_event_context *next_ctx;
1886 struct perf_event_context *parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001887 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001888 int do_switch = 1;
1889
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001890 if (likely(!ctx))
1891 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001892
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001893 cpuctx = __get_cpu_context(ctx);
1894 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001895 return;
1896
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001897 rcu_read_lock();
1898 parent = rcu_dereference(ctx->parent_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001899 next_ctx = next->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001900 if (parent && next_ctx &&
1901 rcu_dereference(next_ctx->parent_ctx) == parent) {
1902 /*
1903 * Looks like the two contexts are clones, so we might be
1904 * able to optimize the context switch. We lock both
1905 * contexts and check that they are clones under the
1906 * lock (including re-checking that neither has been
1907 * uncloned in the meantime). It doesn't matter which
1908 * order we take the locks because no other cpu could
1909 * be trying to lock both of these tasks.
1910 */
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001911 raw_spin_lock(&ctx->lock);
1912 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001913 if (context_equiv(ctx, next_ctx)) {
1914 /*
1915 * XXX do we need a memory barrier of sorts
1916 * wrt to rcu_dereference() of perf_event_ctxp
1917 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001918 task->perf_event_ctxp[ctxn] = next_ctx;
1919 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001920 ctx->task = next;
1921 next_ctx->task = task;
1922 do_switch = 0;
1923
1924 perf_event_sync_stat(ctx, next_ctx);
1925 }
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001926 raw_spin_unlock(&next_ctx->lock);
1927 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001928 }
1929 rcu_read_unlock();
1930
1931 if (do_switch) {
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001932 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001933 cpuctx->task_ctx = NULL;
1934 }
1935}
1936
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001937#define for_each_task_context_nr(ctxn) \
1938 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
1939
1940/*
1941 * Called from scheduler to remove the events of the current task,
1942 * with interrupts disabled.
1943 *
1944 * We stop each event and update the event value in event->count.
1945 *
1946 * This does not protect us against NMI, but disable()
1947 * sets the disabled bit in the control field of event _before_
1948 * accessing the event control register. If a NMI hits, then it will
1949 * not restart the event.
1950 */
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02001951void __perf_event_task_sched_out(struct task_struct *task,
1952 struct task_struct *next)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001953{
1954 int ctxn;
1955
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001956 for_each_task_context_nr(ctxn)
1957 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001958
1959 /*
1960 * if cgroup events exist on this CPU, then we need
1961 * to check if we have to switch out PMU state.
1962 * cgroup event are system-wide mode only
1963 */
1964 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
1965 perf_cgroup_sched_out(task);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001966}
1967
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001968static void task_ctx_sched_out(struct perf_event_context *ctx,
1969 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001970{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001971 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001972
1973 if (!cpuctx->task_ctx)
1974 return;
1975
1976 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
1977 return;
1978
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001979 ctx_sched_out(ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001980 cpuctx->task_ctx = NULL;
1981}
1982
1983/*
1984 * Called with IRQs disabled
1985 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001986static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
1987 enum event_type_t event_type)
1988{
1989 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001990}
1991
1992static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001993ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001994 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001995{
1996 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001997
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001998 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
1999 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002000 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002001 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002002 continue;
2003
Stephane Eraniane5d13672011-02-14 11:20:01 +02002004 /* may need to reset tstamp_enabled */
2005 if (is_cgroup_event(event))
2006 perf_cgroup_mark_enabled(event, ctx);
2007
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002008 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002009 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002010
2011 /*
2012 * If this pinned group hasn't been scheduled,
2013 * put it in error state.
2014 */
2015 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2016 update_group_times(event);
2017 event->state = PERF_EVENT_STATE_ERROR;
2018 }
2019 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002020}
2021
2022static void
2023ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002024 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002025{
2026 struct perf_event *event;
2027 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002028
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002029 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2030 /* Ignore events in OFF or ERROR state */
2031 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002032 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002033 /*
2034 * Listen to the 'cpu' scheduling filter constraint
2035 * of events:
2036 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002037 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002038 continue;
2039
Stephane Eraniane5d13672011-02-14 11:20:01 +02002040 /* may need to reset tstamp_enabled */
2041 if (is_cgroup_event(event))
2042 perf_cgroup_mark_enabled(event, ctx);
2043
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002044 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002045 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002046 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002047 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002048 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002049}
2050
2051static void
2052ctx_sched_in(struct perf_event_context *ctx,
2053 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002054 enum event_type_t event_type,
2055 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002056{
Stephane Eraniane5d13672011-02-14 11:20:01 +02002057 u64 now;
2058
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002059 raw_spin_lock(&ctx->lock);
2060 ctx->is_active = 1;
2061 if (likely(!ctx->nr_events))
2062 goto out;
2063
Stephane Eraniane5d13672011-02-14 11:20:01 +02002064 now = perf_clock();
2065 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002066 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002067 /*
2068 * First go through the list and put on any pinned groups
2069 * in order to give them the best chance of going on.
2070 */
2071 if (event_type & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002072 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002073
2074 /* Then walk through the lower prio flexible groups */
2075 if (event_type & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002076 ctx_flexible_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002077
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002078out:
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002079 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002080}
2081
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002082static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002083 enum event_type_t event_type,
2084 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002085{
2086 struct perf_event_context *ctx = &cpuctx->ctx;
2087
Stephane Eraniane5d13672011-02-14 11:20:01 +02002088 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002089}
2090
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002091static void task_ctx_sched_in(struct perf_event_context *ctx,
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002092 enum event_type_t event_type)
2093{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002094 struct perf_cpu_context *cpuctx;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002095
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002096 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002097 if (cpuctx->task_ctx == ctx)
2098 return;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002099
Stephane Eraniane5d13672011-02-14 11:20:01 +02002100 ctx_sched_in(ctx, cpuctx, event_type, NULL);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002101 cpuctx->task_ctx = ctx;
2102}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002103
Stephane Eraniane5d13672011-02-14 11:20:01 +02002104static void perf_event_context_sched_in(struct perf_event_context *ctx,
2105 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002106{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002107 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002108
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002109 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002110 if (cpuctx->task_ctx == ctx)
2111 return;
2112
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002113 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002114 /*
2115 * We want to keep the following priority order:
2116 * cpu pinned (that don't need to move), task pinned,
2117 * cpu flexible, task flexible.
2118 */
2119 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2120
Stephane Eraniane5d13672011-02-14 11:20:01 +02002121 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2122 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2123 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002124
2125 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002126
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002127 /*
2128 * Since these rotations are per-cpu, we need to ensure the
2129 * cpu-context we got scheduled on is actually rotating.
2130 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002131 perf_pmu_rotate_start(ctx->pmu);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002132 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002133}
2134
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002135/*
2136 * Called from scheduler to add the events of the current task
2137 * with interrupts disabled.
2138 *
2139 * We restore the event value and then enable it.
2140 *
2141 * This does not protect us against NMI, but enable()
2142 * sets the enabled bit in the control field of event _before_
2143 * accessing the event control register. If a NMI hits, then it will
2144 * keep the event running.
2145 */
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02002146void __perf_event_task_sched_in(struct task_struct *task)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002147{
2148 struct perf_event_context *ctx;
2149 int ctxn;
2150
2151 for_each_task_context_nr(ctxn) {
2152 ctx = task->perf_event_ctxp[ctxn];
2153 if (likely(!ctx))
2154 continue;
2155
Stephane Eraniane5d13672011-02-14 11:20:01 +02002156 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002157 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02002158 /*
2159 * if cgroup events exist on this CPU, then we need
2160 * to check if we have to switch in PMU state.
2161 * cgroup event are system-wide mode only
2162 */
2163 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
2164 perf_cgroup_sched_in(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002165}
2166
Peter Zijlstraabd50712010-01-26 18:50:16 +01002167static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2168{
2169 u64 frequency = event->attr.sample_freq;
2170 u64 sec = NSEC_PER_SEC;
2171 u64 divisor, dividend;
2172
2173 int count_fls, nsec_fls, frequency_fls, sec_fls;
2174
2175 count_fls = fls64(count);
2176 nsec_fls = fls64(nsec);
2177 frequency_fls = fls64(frequency);
2178 sec_fls = 30;
2179
2180 /*
2181 * We got @count in @nsec, with a target of sample_freq HZ
2182 * the target period becomes:
2183 *
2184 * @count * 10^9
2185 * period = -------------------
2186 * @nsec * sample_freq
2187 *
2188 */
2189
2190 /*
2191 * Reduce accuracy by one bit such that @a and @b converge
2192 * to a similar magnitude.
2193 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002194#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002195do { \
2196 if (a##_fls > b##_fls) { \
2197 a >>= 1; \
2198 a##_fls--; \
2199 } else { \
2200 b >>= 1; \
2201 b##_fls--; \
2202 } \
2203} while (0)
2204
2205 /*
2206 * Reduce accuracy until either term fits in a u64, then proceed with
2207 * the other, so that finally we can do a u64/u64 division.
2208 */
2209 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2210 REDUCE_FLS(nsec, frequency);
2211 REDUCE_FLS(sec, count);
2212 }
2213
2214 if (count_fls + sec_fls > 64) {
2215 divisor = nsec * frequency;
2216
2217 while (count_fls + sec_fls > 64) {
2218 REDUCE_FLS(count, sec);
2219 divisor >>= 1;
2220 }
2221
2222 dividend = count * sec;
2223 } else {
2224 dividend = count * sec;
2225
2226 while (nsec_fls + frequency_fls > 64) {
2227 REDUCE_FLS(nsec, frequency);
2228 dividend >>= 1;
2229 }
2230
2231 divisor = nsec * frequency;
2232 }
2233
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002234 if (!divisor)
2235 return dividend;
2236
Peter Zijlstraabd50712010-01-26 18:50:16 +01002237 return div64_u64(dividend, divisor);
2238}
2239
2240static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002241{
2242 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002243 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002244 s64 delta;
2245
Peter Zijlstraabd50712010-01-26 18:50:16 +01002246 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002247
2248 delta = (s64)(period - hwc->sample_period);
2249 delta = (delta + 7) / 8; /* low pass filter */
2250
2251 sample_period = hwc->sample_period + delta;
2252
2253 if (!sample_period)
2254 sample_period = 1;
2255
2256 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002257
Peter Zijlstrae7850592010-05-21 14:43:08 +02002258 if (local64_read(&hwc->period_left) > 8*sample_period) {
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002259 event->pmu->stop(event, PERF_EF_UPDATE);
Peter Zijlstrae7850592010-05-21 14:43:08 +02002260 local64_set(&hwc->period_left, 0);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002261 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002262 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002263}
2264
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002265static void perf_ctx_adjust_freq(struct perf_event_context *ctx, u64 period)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002266{
2267 struct perf_event *event;
2268 struct hw_perf_event *hwc;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002269 u64 interrupts, now;
2270 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002271
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002272 raw_spin_lock(&ctx->lock);
Paul Mackerras03541f82009-10-14 16:58:03 +11002273 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002274 if (event->state != PERF_EVENT_STATE_ACTIVE)
2275 continue;
2276
Stephane Eranian5632ab12011-01-03 18:20:01 +02002277 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002278 continue;
2279
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002280 hwc = &event->hw;
2281
2282 interrupts = hwc->interrupts;
2283 hwc->interrupts = 0;
2284
2285 /*
2286 * unthrottle events on the tick
2287 */
2288 if (interrupts == MAX_INTERRUPTS) {
2289 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002290 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002291 }
2292
2293 if (!event->attr.freq || !event->attr.sample_freq)
2294 continue;
2295
Peter Zijlstraabd50712010-01-26 18:50:16 +01002296 event->pmu->read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02002297 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002298 delta = now - hwc->freq_count_stamp;
2299 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002300
Peter Zijlstraabd50712010-01-26 18:50:16 +01002301 if (delta > 0)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002302 perf_adjust_period(event, period, delta);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002303 }
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002304 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002305}
2306
2307/*
2308 * Round-robin a context's events:
2309 */
2310static void rotate_ctx(struct perf_event_context *ctx)
2311{
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002312 raw_spin_lock(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002313
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01002314 /*
2315 * Rotate the first entry last of non-pinned groups. Rotation might be
2316 * disabled by the inheritance code.
2317 */
2318 if (!ctx->rotate_disable)
2319 list_rotate_left(&ctx->flexible_groups);
Frederic Weisbeckere2864172010-01-09 21:05:28 +01002320
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002321 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002322}
2323
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002324/*
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002325 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
2326 * because they're strictly cpu affine and rotate_start is called with IRQs
2327 * disabled, while rotate_context is called from IRQ context.
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002328 */
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002329static void perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002330{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002331 u64 interval = (u64)cpuctx->jiffies_interval * TICK_NSEC;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002332 struct perf_event_context *ctx = NULL;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002333 int rotate = 0, remove = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002334
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002335 if (cpuctx->ctx.nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002336 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002337 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
2338 rotate = 1;
2339 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002340
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002341 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002342 if (ctx && ctx->nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002343 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002344 if (ctx->nr_events != ctx->nr_active)
2345 rotate = 1;
2346 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002347
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002348 perf_pmu_disable(cpuctx->ctx.pmu);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002349 perf_ctx_adjust_freq(&cpuctx->ctx, interval);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002350 if (ctx)
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002351 perf_ctx_adjust_freq(ctx, interval);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002352
Peter Zijlstrad4944a02010-03-08 13:51:20 +01002353 if (!rotate)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002354 goto done;
Peter Zijlstrad4944a02010-03-08 13:51:20 +01002355
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01002356 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002357 if (ctx)
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01002358 task_ctx_sched_out(ctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002359
2360 rotate_ctx(&cpuctx->ctx);
2361 if (ctx)
2362 rotate_ctx(ctx);
2363
Stephane Eraniane5d13672011-02-14 11:20:01 +02002364 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, current);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002365 if (ctx)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002366 task_ctx_sched_in(ctx, EVENT_FLEXIBLE);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002367
2368done:
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002369 if (remove)
2370 list_del_init(&cpuctx->rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002371
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002372 perf_pmu_enable(cpuctx->ctx.pmu);
2373}
2374
2375void perf_event_task_tick(void)
2376{
2377 struct list_head *head = &__get_cpu_var(rotation_list);
2378 struct perf_cpu_context *cpuctx, *tmp;
2379
2380 WARN_ON(!irqs_disabled());
2381
2382 list_for_each_entry_safe(cpuctx, tmp, head, rotation_list) {
2383 if (cpuctx->jiffies_interval == 1 ||
2384 !(jiffies % cpuctx->jiffies_interval))
2385 perf_rotate_context(cpuctx);
2386 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002387}
2388
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002389static int event_enable_on_exec(struct perf_event *event,
2390 struct perf_event_context *ctx)
2391{
2392 if (!event->attr.enable_on_exec)
2393 return 0;
2394
2395 event->attr.enable_on_exec = 0;
2396 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2397 return 0;
2398
2399 __perf_event_mark_enabled(event, ctx);
2400
2401 return 1;
2402}
2403
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002404/*
2405 * Enable all of a task's events that have been marked enable-on-exec.
2406 * This expects task == current.
2407 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002408static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002409{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002410 struct perf_event *event;
2411 unsigned long flags;
2412 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002413 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002414
2415 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002416 if (!ctx || !ctx->nr_events)
2417 goto out;
2418
Stephane Eraniane566b762011-04-06 02:54:54 +02002419 /*
2420 * We must ctxsw out cgroup events to avoid conflict
2421 * when invoking perf_task_event_sched_in() later on
2422 * in this function. Otherwise we end up trying to
2423 * ctxswin cgroup events which are already scheduled
2424 * in.
2425 */
2426 perf_cgroup_sched_out(current);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002427 task_ctx_sched_out(ctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002428
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002429 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002430
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002431 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2432 ret = event_enable_on_exec(event, ctx);
2433 if (ret)
2434 enabled = 1;
2435 }
2436
2437 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2438 ret = event_enable_on_exec(event, ctx);
2439 if (ret)
2440 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002441 }
2442
2443 /*
2444 * Unclone this context if we enabled any event.
2445 */
2446 if (enabled)
2447 unclone_ctx(ctx);
2448
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002449 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002450
Stephane Eraniane566b762011-04-06 02:54:54 +02002451 /*
2452 * Also calls ctxswin for cgroup events, if any:
2453 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002454 perf_event_context_sched_in(ctx, ctx->task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002455out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002456 local_irq_restore(flags);
2457}
2458
2459/*
2460 * Cross CPU call to read the hardware event
2461 */
2462static void __perf_event_read(void *info)
2463{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002464 struct perf_event *event = info;
2465 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002466 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002467
2468 /*
2469 * If this is a task context, we need to check whether it is
2470 * the current task context of this cpu. If not it has been
2471 * scheduled out before the smp call arrived. In that case
2472 * event->count would have been updated to a recent sample
2473 * when the event was scheduled out.
2474 */
2475 if (ctx->task && cpuctx->task_ctx != ctx)
2476 return;
2477
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002478 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002479 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002480 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002481 update_cgrp_time_from_event(event);
2482 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002483 update_event_times(event);
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002484 if (event->state == PERF_EVENT_STATE_ACTIVE)
2485 event->pmu->read(event);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002486 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002487}
2488
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002489static inline u64 perf_event_count(struct perf_event *event)
2490{
Peter Zijlstrae7850592010-05-21 14:43:08 +02002491 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002492}
2493
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002494static u64 perf_event_read(struct perf_event *event)
2495{
2496 /*
2497 * If event is enabled and currently active on a CPU, update the
2498 * value in the event structure:
2499 */
2500 if (event->state == PERF_EVENT_STATE_ACTIVE) {
2501 smp_call_function_single(event->oncpu,
2502 __perf_event_read, event, 1);
2503 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01002504 struct perf_event_context *ctx = event->ctx;
2505 unsigned long flags;
2506
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002507 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002508 /*
2509 * may read while context is not active
2510 * (e.g., thread is blocked), in that case
2511 * we cannot update context time
2512 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002513 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002514 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002515 update_cgrp_time_from_event(event);
2516 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002517 update_event_times(event);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002518 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002519 }
2520
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002521 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002522}
2523
2524/*
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002525 * Callchain support
2526 */
2527
2528struct callchain_cpus_entries {
2529 struct rcu_head rcu_head;
2530 struct perf_callchain_entry *cpu_entries[0];
2531};
2532
Frederic Weisbecker7ae07ea2010-08-14 20:45:13 +02002533static DEFINE_PER_CPU(int, callchain_recursion[PERF_NR_CONTEXTS]);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002534static atomic_t nr_callchain_events;
2535static DEFINE_MUTEX(callchain_mutex);
2536struct callchain_cpus_entries *callchain_cpus_entries;
2537
2538
2539__weak void perf_callchain_kernel(struct perf_callchain_entry *entry,
2540 struct pt_regs *regs)
2541{
2542}
2543
2544__weak void perf_callchain_user(struct perf_callchain_entry *entry,
2545 struct pt_regs *regs)
2546{
2547}
2548
2549static void release_callchain_buffers_rcu(struct rcu_head *head)
2550{
2551 struct callchain_cpus_entries *entries;
2552 int cpu;
2553
2554 entries = container_of(head, struct callchain_cpus_entries, rcu_head);
2555
2556 for_each_possible_cpu(cpu)
2557 kfree(entries->cpu_entries[cpu]);
2558
2559 kfree(entries);
2560}
2561
2562static void release_callchain_buffers(void)
2563{
2564 struct callchain_cpus_entries *entries;
2565
2566 entries = callchain_cpus_entries;
2567 rcu_assign_pointer(callchain_cpus_entries, NULL);
2568 call_rcu(&entries->rcu_head, release_callchain_buffers_rcu);
2569}
2570
2571static int alloc_callchain_buffers(void)
2572{
2573 int cpu;
2574 int size;
2575 struct callchain_cpus_entries *entries;
2576
2577 /*
2578 * We can't use the percpu allocation API for data that can be
2579 * accessed from NMI. Use a temporary manual per cpu allocation
2580 * until that gets sorted out.
2581 */
Eric Dumazet88d4f0d2011-01-25 19:40:51 +01002582 size = offsetof(struct callchain_cpus_entries, cpu_entries[nr_cpu_ids]);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002583
2584 entries = kzalloc(size, GFP_KERNEL);
2585 if (!entries)
2586 return -ENOMEM;
2587
Frederic Weisbecker7ae07ea2010-08-14 20:45:13 +02002588 size = sizeof(struct perf_callchain_entry) * PERF_NR_CONTEXTS;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002589
2590 for_each_possible_cpu(cpu) {
2591 entries->cpu_entries[cpu] = kmalloc_node(size, GFP_KERNEL,
2592 cpu_to_node(cpu));
2593 if (!entries->cpu_entries[cpu])
2594 goto fail;
2595 }
2596
2597 rcu_assign_pointer(callchain_cpus_entries, entries);
2598
2599 return 0;
2600
2601fail:
2602 for_each_possible_cpu(cpu)
2603 kfree(entries->cpu_entries[cpu]);
2604 kfree(entries);
2605
2606 return -ENOMEM;
2607}
2608
2609static int get_callchain_buffers(void)
2610{
2611 int err = 0;
2612 int count;
2613
2614 mutex_lock(&callchain_mutex);
2615
2616 count = atomic_inc_return(&nr_callchain_events);
2617 if (WARN_ON_ONCE(count < 1)) {
2618 err = -EINVAL;
2619 goto exit;
2620 }
2621
2622 if (count > 1) {
2623 /* If the allocation failed, give up */
2624 if (!callchain_cpus_entries)
2625 err = -ENOMEM;
2626 goto exit;
2627 }
2628
2629 err = alloc_callchain_buffers();
2630 if (err)
2631 release_callchain_buffers();
2632exit:
2633 mutex_unlock(&callchain_mutex);
2634
2635 return err;
2636}
2637
2638static void put_callchain_buffers(void)
2639{
2640 if (atomic_dec_and_mutex_lock(&nr_callchain_events, &callchain_mutex)) {
2641 release_callchain_buffers();
2642 mutex_unlock(&callchain_mutex);
2643 }
2644}
2645
2646static int get_recursion_context(int *recursion)
2647{
2648 int rctx;
2649
2650 if (in_nmi())
2651 rctx = 3;
2652 else if (in_irq())
2653 rctx = 2;
2654 else if (in_softirq())
2655 rctx = 1;
2656 else
2657 rctx = 0;
2658
2659 if (recursion[rctx])
2660 return -1;
2661
2662 recursion[rctx]++;
2663 barrier();
2664
2665 return rctx;
2666}
2667
2668static inline void put_recursion_context(int *recursion, int rctx)
2669{
2670 barrier();
2671 recursion[rctx]--;
2672}
2673
2674static struct perf_callchain_entry *get_callchain_entry(int *rctx)
2675{
2676 int cpu;
2677 struct callchain_cpus_entries *entries;
2678
2679 *rctx = get_recursion_context(__get_cpu_var(callchain_recursion));
2680 if (*rctx == -1)
2681 return NULL;
2682
2683 entries = rcu_dereference(callchain_cpus_entries);
2684 if (!entries)
2685 return NULL;
2686
2687 cpu = smp_processor_id();
2688
2689 return &entries->cpu_entries[cpu][*rctx];
2690}
2691
2692static void
2693put_callchain_entry(int rctx)
2694{
2695 put_recursion_context(__get_cpu_var(callchain_recursion), rctx);
2696}
2697
2698static struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
2699{
2700 int rctx;
2701 struct perf_callchain_entry *entry;
2702
2703
2704 entry = get_callchain_entry(&rctx);
2705 if (rctx == -1)
2706 return NULL;
2707
2708 if (!entry)
2709 goto exit_put;
2710
2711 entry->nr = 0;
2712
2713 if (!user_mode(regs)) {
2714 perf_callchain_store(entry, PERF_CONTEXT_KERNEL);
2715 perf_callchain_kernel(entry, regs);
2716 if (current->mm)
2717 regs = task_pt_regs(current);
2718 else
2719 regs = NULL;
2720 }
2721
2722 if (regs) {
2723 perf_callchain_store(entry, PERF_CONTEXT_USER);
2724 perf_callchain_user(entry, regs);
2725 }
2726
2727exit_put:
2728 put_callchain_entry(rctx);
2729
2730 return entry;
2731}
2732
2733/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002734 * Initialize the perf_event context in a task_struct:
2735 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02002736static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002737{
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002738 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002739 mutex_init(&ctx->mutex);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002740 INIT_LIST_HEAD(&ctx->pinned_groups);
2741 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002742 INIT_LIST_HEAD(&ctx->event_list);
2743 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002744}
2745
Peter Zijlstraeb184472010-09-07 15:55:13 +02002746static struct perf_event_context *
2747alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002748{
2749 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002750
2751 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
2752 if (!ctx)
2753 return NULL;
2754
2755 __perf_event_init_context(ctx);
2756 if (task) {
2757 ctx->task = task;
2758 get_task_struct(task);
2759 }
2760 ctx->pmu = pmu;
2761
2762 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002763}
2764
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002765static struct task_struct *
2766find_lively_task_by_vpid(pid_t vpid)
2767{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002768 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002769 int err;
2770
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002771 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002772 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002773 task = current;
2774 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002775 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002776 if (task)
2777 get_task_struct(task);
2778 rcu_read_unlock();
2779
2780 if (!task)
2781 return ERR_PTR(-ESRCH);
2782
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002783 /* Reuse ptrace permission checks for now. */
2784 err = -EACCES;
2785 if (!ptrace_may_access(task, PTRACE_MODE_READ))
2786 goto errout;
2787
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002788 return task;
2789errout:
2790 put_task_struct(task);
2791 return ERR_PTR(err);
2792
2793}
2794
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002795/*
2796 * Returns a matching context with refcount and pincount.
2797 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002798static struct perf_event_context *
Matt Helsley38a81da2010-09-13 13:01:20 -07002799find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002800{
2801 struct perf_event_context *ctx;
2802 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002803 unsigned long flags;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002804 int ctxn, err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002805
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01002806 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002807 /* Must be root to operate on a CPU event: */
2808 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
2809 return ERR_PTR(-EACCES);
2810
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002811 /*
2812 * We could be clever and allow to attach a event to an
2813 * offline CPU and activate it when the CPU comes up, but
2814 * that's for later.
2815 */
2816 if (!cpu_online(cpu))
2817 return ERR_PTR(-ENODEV);
2818
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002819 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002820 ctx = &cpuctx->ctx;
2821 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002822 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002823
2824 return ctx;
2825 }
2826
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002827 err = -EINVAL;
2828 ctxn = pmu->task_ctx_nr;
2829 if (ctxn < 0)
2830 goto errout;
2831
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002832retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002833 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002834 if (ctx) {
2835 unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002836 ++ctx->pin_count;
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002837 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002838 }
2839
2840 if (!ctx) {
Peter Zijlstraeb184472010-09-07 15:55:13 +02002841 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002842 err = -ENOMEM;
2843 if (!ctx)
2844 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002845
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002846 get_ctx(ctx);
Peter Zijlstraeb184472010-09-07 15:55:13 +02002847
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002848 err = 0;
2849 mutex_lock(&task->perf_event_mutex);
2850 /*
2851 * If it has already passed perf_event_exit_task().
2852 * we must see PF_EXITING, it takes this mutex too.
2853 */
2854 if (task->flags & PF_EXITING)
2855 err = -ESRCH;
2856 else if (task->perf_event_ctxp[ctxn])
2857 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002858 else {
2859 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002860 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002861 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002862 mutex_unlock(&task->perf_event_mutex);
2863
2864 if (unlikely(err)) {
Peter Zijlstraeb184472010-09-07 15:55:13 +02002865 put_task_struct(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002866 kfree(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002867
2868 if (err == -EAGAIN)
2869 goto retry;
2870 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002871 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002872 }
2873
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002874 return ctx;
2875
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002876errout:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002877 return ERR_PTR(err);
2878}
2879
Li Zefan6fb29152009-10-15 11:21:42 +08002880static void perf_event_free_filter(struct perf_event *event);
2881
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002882static void free_event_rcu(struct rcu_head *head)
2883{
2884 struct perf_event *event;
2885
2886 event = container_of(head, struct perf_event, rcu_head);
2887 if (event->ns)
2888 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08002889 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002890 kfree(event);
2891}
2892
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002893static void perf_buffer_put(struct perf_buffer *buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002894
2895static void free_event(struct perf_event *event)
2896{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08002897 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002898
2899 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02002900 if (event->attach_state & PERF_ATTACH_TASK)
Stephane Eraniane5d13672011-02-14 11:20:01 +02002901 jump_label_dec(&perf_sched_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01002902 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002903 atomic_dec(&nr_mmap_events);
2904 if (event->attr.comm)
2905 atomic_dec(&nr_comm_events);
2906 if (event->attr.task)
2907 atomic_dec(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002908 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
2909 put_callchain_buffers();
Peter Zijlstra08309372011-03-03 11:31:20 +01002910 if (is_cgroup_event(event)) {
2911 atomic_dec(&per_cpu(perf_cgroup_events, event->cpu));
2912 jump_label_dec(&perf_sched_events);
2913 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002914 }
2915
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002916 if (event->buffer) {
2917 perf_buffer_put(event->buffer);
2918 event->buffer = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002919 }
2920
Stephane Eraniane5d13672011-02-14 11:20:01 +02002921 if (is_cgroup_event(event))
2922 perf_detach_cgroup(event);
2923
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002924 if (event->destroy)
2925 event->destroy(event);
2926
Peter Zijlstra0c67b402010-09-13 11:15:58 +02002927 if (event->ctx)
2928 put_ctx(event->ctx);
2929
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002930 call_rcu(&event->rcu_head, free_event_rcu);
2931}
2932
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002933int perf_event_release_kernel(struct perf_event *event)
2934{
2935 struct perf_event_context *ctx = event->ctx;
2936
Peter Zijlstra050735b2010-05-11 11:51:53 +02002937 /*
2938 * Remove from the PMU, can't get re-enabled since we got
2939 * here because the last ref went.
2940 */
2941 perf_event_disable(event);
2942
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002943 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa0507c82010-05-06 15:42:53 +02002944 /*
2945 * There are two ways this annotation is useful:
2946 *
2947 * 1) there is a lock recursion from perf_event_exit_task
2948 * see the comment there.
2949 *
2950 * 2) there is a lock-inversion with mmap_sem through
2951 * perf_event_read_group(), which takes faults while
2952 * holding ctx->mutex, however this is called after
2953 * the last filedesc died, so there is no possibility
2954 * to trigger the AB-BA case.
2955 */
2956 mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002957 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002958 perf_group_detach(event);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002959 list_del_event(event, ctx);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002960 raw_spin_unlock_irq(&ctx->lock);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002961 mutex_unlock(&ctx->mutex);
2962
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002963 free_event(event);
2964
2965 return 0;
2966}
2967EXPORT_SYMBOL_GPL(perf_event_release_kernel);
2968
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002969/*
2970 * Called when the last reference to the file is gone.
2971 */
2972static int perf_release(struct inode *inode, struct file *file)
2973{
2974 struct perf_event *event = file->private_data;
Peter Zijlstra88821352010-11-09 19:01:43 +01002975 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002976
2977 file->private_data = NULL;
2978
Peter Zijlstra88821352010-11-09 19:01:43 +01002979 rcu_read_lock();
2980 owner = ACCESS_ONCE(event->owner);
2981 /*
2982 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
2983 * !owner it means the list deletion is complete and we can indeed
2984 * free this event, otherwise we need to serialize on
2985 * owner->perf_event_mutex.
2986 */
2987 smp_read_barrier_depends();
2988 if (owner) {
2989 /*
2990 * Since delayed_put_task_struct() also drops the last
2991 * task reference we can safely take a new reference
2992 * while holding the rcu_read_lock().
2993 */
2994 get_task_struct(owner);
2995 }
2996 rcu_read_unlock();
2997
2998 if (owner) {
2999 mutex_lock(&owner->perf_event_mutex);
3000 /*
3001 * We have to re-check the event->owner field, if it is cleared
3002 * we raced with perf_event_exit_task(), acquiring the mutex
3003 * ensured they're done, and we can proceed with freeing the
3004 * event.
3005 */
3006 if (event->owner)
3007 list_del_init(&event->owner_entry);
3008 mutex_unlock(&owner->perf_event_mutex);
3009 put_task_struct(owner);
3010 }
3011
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003012 return perf_event_release_kernel(event);
3013}
3014
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003015u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003016{
3017 struct perf_event *child;
3018 u64 total = 0;
3019
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003020 *enabled = 0;
3021 *running = 0;
3022
Peter Zijlstra6f105812009-11-20 22:19:56 +01003023 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003024 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003025 *enabled += event->total_time_enabled +
3026 atomic64_read(&event->child_total_time_enabled);
3027 *running += event->total_time_running +
3028 atomic64_read(&event->child_total_time_running);
3029
3030 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003031 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003032 *enabled += child->total_time_enabled;
3033 *running += child->total_time_running;
3034 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003035 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003036
3037 return total;
3038}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003039EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003040
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003041static int perf_event_read_group(struct perf_event *event,
3042 u64 read_format, char __user *buf)
3043{
3044 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003045 int n = 0, size = 0, ret = -EFAULT;
3046 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003047 u64 values[5];
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003048 u64 count, enabled, running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003049
Peter Zijlstra6f105812009-11-20 22:19:56 +01003050 mutex_lock(&ctx->mutex);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003051 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003052
3053 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003054 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3055 values[n++] = enabled;
3056 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3057 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003058 values[n++] = count;
3059 if (read_format & PERF_FORMAT_ID)
3060 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003061
3062 size = n * sizeof(u64);
3063
3064 if (copy_to_user(buf, values, size))
Peter Zijlstra6f105812009-11-20 22:19:56 +01003065 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003066
Peter Zijlstra6f105812009-11-20 22:19:56 +01003067 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003068
3069 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01003070 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003071
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003072 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003073 if (read_format & PERF_FORMAT_ID)
3074 values[n++] = primary_event_id(sub);
3075
3076 size = n * sizeof(u64);
3077
Stephane Eranian184d3da2009-11-23 21:40:49 -08003078 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstra6f105812009-11-20 22:19:56 +01003079 ret = -EFAULT;
3080 goto unlock;
3081 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01003082
3083 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003084 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003085unlock:
3086 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003087
Peter Zijlstraabf48682009-11-20 22:19:49 +01003088 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003089}
3090
3091static int perf_event_read_one(struct perf_event *event,
3092 u64 read_format, char __user *buf)
3093{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003094 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003095 u64 values[4];
3096 int n = 0;
3097
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003098 values[n++] = perf_event_read_value(event, &enabled, &running);
3099 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3100 values[n++] = enabled;
3101 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3102 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003103 if (read_format & PERF_FORMAT_ID)
3104 values[n++] = primary_event_id(event);
3105
3106 if (copy_to_user(buf, values, n * sizeof(u64)))
3107 return -EFAULT;
3108
3109 return n * sizeof(u64);
3110}
3111
3112/*
3113 * Read the performance event - simple non blocking version for now
3114 */
3115static ssize_t
3116perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
3117{
3118 u64 read_format = event->attr.read_format;
3119 int ret;
3120
3121 /*
3122 * Return end-of-file for a read on a event that is in
3123 * error state (i.e. because it was pinned but it couldn't be
3124 * scheduled on to the CPU at some point).
3125 */
3126 if (event->state == PERF_EVENT_STATE_ERROR)
3127 return 0;
3128
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003129 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003130 return -ENOSPC;
3131
3132 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003133 if (read_format & PERF_FORMAT_GROUP)
3134 ret = perf_event_read_group(event, read_format, buf);
3135 else
3136 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003137
3138 return ret;
3139}
3140
3141static ssize_t
3142perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3143{
3144 struct perf_event *event = file->private_data;
3145
3146 return perf_read_hw(event, buf, count);
3147}
3148
3149static unsigned int perf_poll(struct file *file, poll_table *wait)
3150{
3151 struct perf_event *event = file->private_data;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003152 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003153 unsigned int events = POLL_HUP;
3154
3155 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003156 buffer = rcu_dereference(event->buffer);
3157 if (buffer)
3158 events = atomic_xchg(&buffer->poll, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003159 rcu_read_unlock();
3160
3161 poll_wait(file, &event->waitq, wait);
3162
3163 return events;
3164}
3165
3166static void perf_event_reset(struct perf_event *event)
3167{
3168 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02003169 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003170 perf_event_update_userpage(event);
3171}
3172
3173/*
3174 * Holding the top-level event's child_mutex means that any
3175 * descendant process that has inherited this event will block
3176 * in sync_child_event if it goes to exit, thus satisfying the
3177 * task existence requirements of perf_event_enable/disable.
3178 */
3179static void perf_event_for_each_child(struct perf_event *event,
3180 void (*func)(struct perf_event *))
3181{
3182 struct perf_event *child;
3183
3184 WARN_ON_ONCE(event->ctx->parent_ctx);
3185 mutex_lock(&event->child_mutex);
3186 func(event);
3187 list_for_each_entry(child, &event->child_list, child_list)
3188 func(child);
3189 mutex_unlock(&event->child_mutex);
3190}
3191
3192static void perf_event_for_each(struct perf_event *event,
3193 void (*func)(struct perf_event *))
3194{
3195 struct perf_event_context *ctx = event->ctx;
3196 struct perf_event *sibling;
3197
3198 WARN_ON_ONCE(ctx->parent_ctx);
3199 mutex_lock(&ctx->mutex);
3200 event = event->group_leader;
3201
3202 perf_event_for_each_child(event, func);
3203 func(event);
3204 list_for_each_entry(sibling, &event->sibling_list, group_entry)
3205 perf_event_for_each_child(event, func);
3206 mutex_unlock(&ctx->mutex);
3207}
3208
3209static int perf_event_period(struct perf_event *event, u64 __user *arg)
3210{
3211 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003212 int ret = 0;
3213 u64 value;
3214
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01003215 if (!is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003216 return -EINVAL;
3217
John Blackwoodad0cf342010-09-28 18:03:11 -04003218 if (copy_from_user(&value, arg, sizeof(value)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003219 return -EFAULT;
3220
3221 if (!value)
3222 return -EINVAL;
3223
Thomas Gleixnere625cce2009-11-17 18:02:06 +01003224 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003225 if (event->attr.freq) {
3226 if (value > sysctl_perf_event_sample_rate) {
3227 ret = -EINVAL;
3228 goto unlock;
3229 }
3230
3231 event->attr.sample_freq = value;
3232 } else {
3233 event->attr.sample_period = value;
3234 event->hw.sample_period = value;
3235 }
3236unlock:
Thomas Gleixnere625cce2009-11-17 18:02:06 +01003237 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003238
3239 return ret;
3240}
3241
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003242static const struct file_operations perf_fops;
3243
3244static struct perf_event *perf_fget_light(int fd, int *fput_needed)
3245{
3246 struct file *file;
3247
3248 file = fget_light(fd, fput_needed);
3249 if (!file)
3250 return ERR_PTR(-EBADF);
3251
3252 if (file->f_op != &perf_fops) {
3253 fput_light(file, *fput_needed);
3254 *fput_needed = 0;
3255 return ERR_PTR(-EBADF);
3256 }
3257
3258 return file->private_data;
3259}
3260
3261static int perf_event_set_output(struct perf_event *event,
3262 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08003263static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003264
3265static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3266{
3267 struct perf_event *event = file->private_data;
3268 void (*func)(struct perf_event *);
3269 u32 flags = arg;
3270
3271 switch (cmd) {
3272 case PERF_EVENT_IOC_ENABLE:
3273 func = perf_event_enable;
3274 break;
3275 case PERF_EVENT_IOC_DISABLE:
3276 func = perf_event_disable;
3277 break;
3278 case PERF_EVENT_IOC_RESET:
3279 func = perf_event_reset;
3280 break;
3281
3282 case PERF_EVENT_IOC_REFRESH:
3283 return perf_event_refresh(event, arg);
3284
3285 case PERF_EVENT_IOC_PERIOD:
3286 return perf_event_period(event, (u64 __user *)arg);
3287
3288 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003289 {
3290 struct perf_event *output_event = NULL;
3291 int fput_needed = 0;
3292 int ret;
3293
3294 if (arg != -1) {
3295 output_event = perf_fget_light(arg, &fput_needed);
3296 if (IS_ERR(output_event))
3297 return PTR_ERR(output_event);
3298 }
3299
3300 ret = perf_event_set_output(event, output_event);
3301 if (output_event)
3302 fput_light(output_event->filp, fput_needed);
3303
3304 return ret;
3305 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003306
Li Zefan6fb29152009-10-15 11:21:42 +08003307 case PERF_EVENT_IOC_SET_FILTER:
3308 return perf_event_set_filter(event, (void __user *)arg);
3309
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003310 default:
3311 return -ENOTTY;
3312 }
3313
3314 if (flags & PERF_IOC_FLAG_GROUP)
3315 perf_event_for_each(event, func);
3316 else
3317 perf_event_for_each_child(event, func);
3318
3319 return 0;
3320}
3321
3322int perf_event_task_enable(void)
3323{
3324 struct perf_event *event;
3325
3326 mutex_lock(&current->perf_event_mutex);
3327 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3328 perf_event_for_each_child(event, perf_event_enable);
3329 mutex_unlock(&current->perf_event_mutex);
3330
3331 return 0;
3332}
3333
3334int perf_event_task_disable(void)
3335{
3336 struct perf_event *event;
3337
3338 mutex_lock(&current->perf_event_mutex);
3339 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3340 perf_event_for_each_child(event, perf_event_disable);
3341 mutex_unlock(&current->perf_event_mutex);
3342
3343 return 0;
3344}
3345
3346#ifndef PERF_EVENT_INDEX_OFFSET
3347# define PERF_EVENT_INDEX_OFFSET 0
3348#endif
3349
3350static int perf_event_index(struct perf_event *event)
3351{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003352 if (event->hw.state & PERF_HES_STOPPED)
3353 return 0;
3354
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003355 if (event->state != PERF_EVENT_STATE_ACTIVE)
3356 return 0;
3357
3358 return event->hw.idx + 1 - PERF_EVENT_INDEX_OFFSET;
3359}
3360
3361/*
3362 * Callers need to ensure there can be no nesting of this function, otherwise
3363 * the seqlock logic goes bad. We can not serialize this because the arch
3364 * code calls this from NMI context.
3365 */
3366void perf_event_update_userpage(struct perf_event *event)
3367{
3368 struct perf_event_mmap_page *userpg;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003369 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003370
3371 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003372 buffer = rcu_dereference(event->buffer);
3373 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003374 goto unlock;
3375
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003376 userpg = buffer->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003377
3378 /*
3379 * Disable preemption so as to not let the corresponding user-space
3380 * spin too long if we get preempted.
3381 */
3382 preempt_disable();
3383 ++userpg->lock;
3384 barrier();
3385 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003386 userpg->offset = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003387 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstrae7850592010-05-21 14:43:08 +02003388 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003389
3390 userpg->time_enabled = event->total_time_enabled +
3391 atomic64_read(&event->child_total_time_enabled);
3392
3393 userpg->time_running = event->total_time_running +
3394 atomic64_read(&event->child_total_time_running);
3395
3396 barrier();
3397 ++userpg->lock;
3398 preempt_enable();
3399unlock:
3400 rcu_read_unlock();
3401}
3402
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003403static unsigned long perf_data_size(struct perf_buffer *buffer);
3404
3405static void
3406perf_buffer_init(struct perf_buffer *buffer, long watermark, int flags)
3407{
3408 long max_size = perf_data_size(buffer);
3409
3410 if (watermark)
3411 buffer->watermark = min(max_size, watermark);
3412
3413 if (!buffer->watermark)
3414 buffer->watermark = max_size / 2;
3415
3416 if (flags & PERF_BUFFER_WRITABLE)
3417 buffer->writable = 1;
3418
3419 atomic_set(&buffer->refcount, 1);
3420}
3421
Peter Zijlstra906010b2009-09-21 16:08:49 +02003422#ifndef CONFIG_PERF_USE_VMALLOC
3423
3424/*
3425 * Back perf_mmap() with regular GFP_KERNEL-0 pages.
3426 */
3427
3428static struct page *
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003429perf_mmap_to_page(struct perf_buffer *buffer, unsigned long pgoff)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003430{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003431 if (pgoff > buffer->nr_pages)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003432 return NULL;
3433
3434 if (pgoff == 0)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003435 return virt_to_page(buffer->user_page);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003436
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003437 return virt_to_page(buffer->data_pages[pgoff - 1]);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003438}
3439
Peter Zijlstraa19d35c2010-05-17 18:48:00 +02003440static void *perf_mmap_alloc_page(int cpu)
3441{
3442 struct page *page;
3443 int node;
3444
3445 node = (cpu == -1) ? cpu : cpu_to_node(cpu);
3446 page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
3447 if (!page)
3448 return NULL;
3449
3450 return page_address(page);
3451}
3452
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003453static struct perf_buffer *
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003454perf_buffer_alloc(int nr_pages, long watermark, int cpu, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003455{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003456 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003457 unsigned long size;
3458 int i;
3459
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003460 size = sizeof(struct perf_buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003461 size += nr_pages * sizeof(void *);
3462
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003463 buffer = kzalloc(size, GFP_KERNEL);
3464 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003465 goto fail;
3466
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003467 buffer->user_page = perf_mmap_alloc_page(cpu);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003468 if (!buffer->user_page)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003469 goto fail_user_page;
3470
3471 for (i = 0; i < nr_pages; i++) {
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003472 buffer->data_pages[i] = perf_mmap_alloc_page(cpu);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003473 if (!buffer->data_pages[i])
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003474 goto fail_data_pages;
3475 }
3476
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003477 buffer->nr_pages = nr_pages;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003478
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003479 perf_buffer_init(buffer, watermark, flags);
3480
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003481 return buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003482
3483fail_data_pages:
3484 for (i--; i >= 0; i--)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003485 free_page((unsigned long)buffer->data_pages[i]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003486
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003487 free_page((unsigned long)buffer->user_page);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003488
3489fail_user_page:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003490 kfree(buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003491
3492fail:
Peter Zijlstra906010b2009-09-21 16:08:49 +02003493 return NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003494}
3495
3496static void perf_mmap_free_page(unsigned long addr)
3497{
3498 struct page *page = virt_to_page((void *)addr);
3499
3500 page->mapping = NULL;
3501 __free_page(page);
3502}
3503
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003504static void perf_buffer_free(struct perf_buffer *buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003505{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003506 int i;
3507
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003508 perf_mmap_free_page((unsigned long)buffer->user_page);
3509 for (i = 0; i < buffer->nr_pages; i++)
3510 perf_mmap_free_page((unsigned long)buffer->data_pages[i]);
3511 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003512}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003513
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003514static inline int page_order(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003515{
3516 return 0;
3517}
3518
Peter Zijlstra906010b2009-09-21 16:08:49 +02003519#else
3520
3521/*
3522 * Back perf_mmap() with vmalloc memory.
3523 *
3524 * Required for architectures that have d-cache aliasing issues.
3525 */
3526
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003527static inline int page_order(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003528{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003529 return buffer->page_order;
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003530}
3531
Peter Zijlstra906010b2009-09-21 16:08:49 +02003532static struct page *
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003533perf_mmap_to_page(struct perf_buffer *buffer, unsigned long pgoff)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003534{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003535 if (pgoff > (1UL << page_order(buffer)))
Peter Zijlstra906010b2009-09-21 16:08:49 +02003536 return NULL;
3537
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003538 return vmalloc_to_page((void *)buffer->user_page + pgoff * PAGE_SIZE);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003539}
3540
3541static void perf_mmap_unmark_page(void *addr)
3542{
3543 struct page *page = vmalloc_to_page(addr);
3544
3545 page->mapping = NULL;
3546}
3547
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003548static void perf_buffer_free_work(struct work_struct *work)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003549{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003550 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003551 void *base;
3552 int i, nr;
3553
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003554 buffer = container_of(work, struct perf_buffer, work);
3555 nr = 1 << page_order(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003556
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003557 base = buffer->user_page;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003558 for (i = 0; i < nr + 1; i++)
3559 perf_mmap_unmark_page(base + (i * PAGE_SIZE));
3560
3561 vfree(base);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003562 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003563}
3564
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003565static void perf_buffer_free(struct perf_buffer *buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003566{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003567 schedule_work(&buffer->work);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003568}
3569
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003570static struct perf_buffer *
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003571perf_buffer_alloc(int nr_pages, long watermark, int cpu, int flags)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003572{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003573 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003574 unsigned long size;
3575 void *all_buf;
3576
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003577 size = sizeof(struct perf_buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003578 size += sizeof(void *);
3579
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003580 buffer = kzalloc(size, GFP_KERNEL);
3581 if (!buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003582 goto fail;
3583
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003584 INIT_WORK(&buffer->work, perf_buffer_free_work);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003585
3586 all_buf = vmalloc_user((nr_pages + 1) * PAGE_SIZE);
3587 if (!all_buf)
3588 goto fail_all_buf;
3589
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003590 buffer->user_page = all_buf;
3591 buffer->data_pages[0] = all_buf + PAGE_SIZE;
3592 buffer->page_order = ilog2(nr_pages);
3593 buffer->nr_pages = 1;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003594
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003595 perf_buffer_init(buffer, watermark, flags);
3596
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003597 return buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003598
3599fail_all_buf:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003600 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003601
3602fail:
3603 return NULL;
3604}
3605
3606#endif
3607
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003608static unsigned long perf_data_size(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003609{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003610 return buffer->nr_pages << (PAGE_SHIFT + page_order(buffer));
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003611}
3612
Peter Zijlstra906010b2009-09-21 16:08:49 +02003613static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
3614{
3615 struct perf_event *event = vma->vm_file->private_data;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003616 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003617 int ret = VM_FAULT_SIGBUS;
3618
3619 if (vmf->flags & FAULT_FLAG_MKWRITE) {
3620 if (vmf->pgoff == 0)
3621 ret = 0;
3622 return ret;
3623 }
3624
3625 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003626 buffer = rcu_dereference(event->buffer);
3627 if (!buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003628 goto unlock;
3629
3630 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
3631 goto unlock;
3632
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003633 vmf->page = perf_mmap_to_page(buffer, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003634 if (!vmf->page)
3635 goto unlock;
3636
3637 get_page(vmf->page);
3638 vmf->page->mapping = vma->vm_file->f_mapping;
3639 vmf->page->index = vmf->pgoff;
3640
3641 ret = 0;
3642unlock:
3643 rcu_read_unlock();
3644
3645 return ret;
3646}
3647
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003648static void perf_buffer_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003649{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003650 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003651
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003652 buffer = container_of(rcu_head, struct perf_buffer, rcu_head);
3653 perf_buffer_free(buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003654}
3655
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003656static struct perf_buffer *perf_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003657{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003658 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003659
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003660 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003661 buffer = rcu_dereference(event->buffer);
3662 if (buffer) {
3663 if (!atomic_inc_not_zero(&buffer->refcount))
3664 buffer = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003665 }
3666 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003667
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003668 return buffer;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003669}
3670
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003671static void perf_buffer_put(struct perf_buffer *buffer)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003672{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003673 if (!atomic_dec_and_test(&buffer->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003674 return;
3675
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003676 call_rcu(&buffer->rcu_head, perf_buffer_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003677}
3678
3679static void perf_mmap_open(struct vm_area_struct *vma)
3680{
3681 struct perf_event *event = vma->vm_file->private_data;
3682
3683 atomic_inc(&event->mmap_count);
3684}
3685
3686static void perf_mmap_close(struct vm_area_struct *vma)
3687{
3688 struct perf_event *event = vma->vm_file->private_data;
3689
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003690 if (atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex)) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003691 unsigned long size = perf_data_size(event->buffer);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003692 struct user_struct *user = event->mmap_user;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003693 struct perf_buffer *buffer = event->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003694
Peter Zijlstra906010b2009-09-21 16:08:49 +02003695 atomic_long_sub((size >> PAGE_SHIFT) + 1, &user->locked_vm);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003696 vma->vm_mm->locked_vm -= event->mmap_locked;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003697 rcu_assign_pointer(event->buffer, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003698 mutex_unlock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003699
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003700 perf_buffer_put(buffer);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003701 free_uid(user);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003702 }
3703}
3704
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003705static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003706 .open = perf_mmap_open,
3707 .close = perf_mmap_close,
3708 .fault = perf_mmap_fault,
3709 .page_mkwrite = perf_mmap_fault,
3710};
3711
3712static int perf_mmap(struct file *file, struct vm_area_struct *vma)
3713{
3714 struct perf_event *event = file->private_data;
3715 unsigned long user_locked, user_lock_limit;
3716 struct user_struct *user = current_user();
3717 unsigned long locked, lock_limit;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003718 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003719 unsigned long vma_size;
3720 unsigned long nr_pages;
3721 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003722 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003723
Peter Zijlstrac7920612010-05-18 10:33:24 +02003724 /*
3725 * Don't allow mmap() of inherited per-task counters. This would
3726 * create a performance issue due to all children writing to the
3727 * same buffer.
3728 */
3729 if (event->cpu == -1 && event->attr.inherit)
3730 return -EINVAL;
3731
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003732 if (!(vma->vm_flags & VM_SHARED))
3733 return -EINVAL;
3734
3735 vma_size = vma->vm_end - vma->vm_start;
3736 nr_pages = (vma_size / PAGE_SIZE) - 1;
3737
3738 /*
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003739 * If we have buffer pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003740 * can do bitmasks instead of modulo.
3741 */
3742 if (nr_pages != 0 && !is_power_of_2(nr_pages))
3743 return -EINVAL;
3744
3745 if (vma_size != PAGE_SIZE * (1 + nr_pages))
3746 return -EINVAL;
3747
3748 if (vma->vm_pgoff != 0)
3749 return -EINVAL;
3750
3751 WARN_ON_ONCE(event->ctx->parent_ctx);
3752 mutex_lock(&event->mmap_mutex);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003753 if (event->buffer) {
3754 if (event->buffer->nr_pages == nr_pages)
3755 atomic_inc(&event->buffer->refcount);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003756 else
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003757 ret = -EINVAL;
3758 goto unlock;
3759 }
3760
3761 user_extra = nr_pages + 1;
3762 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
3763
3764 /*
3765 * Increase the limit linearly with more CPUs:
3766 */
3767 user_lock_limit *= num_online_cpus();
3768
3769 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
3770
3771 extra = 0;
3772 if (user_locked > user_lock_limit)
3773 extra = user_locked - user_lock_limit;
3774
Jiri Slaby78d7d402010-03-05 13:42:54 -08003775 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003776 lock_limit >>= PAGE_SHIFT;
3777 locked = vma->vm_mm->locked_vm + extra;
3778
3779 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
3780 !capable(CAP_IPC_LOCK)) {
3781 ret = -EPERM;
3782 goto unlock;
3783 }
3784
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003785 WARN_ON(event->buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003786
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003787 if (vma->vm_flags & VM_WRITE)
3788 flags |= PERF_BUFFER_WRITABLE;
3789
3790 buffer = perf_buffer_alloc(nr_pages, event->attr.wakeup_watermark,
3791 event->cpu, flags);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003792 if (!buffer) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003793 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003794 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003795 }
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003796 rcu_assign_pointer(event->buffer, buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003797
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003798 atomic_long_add(user_extra, &user->locked_vm);
3799 event->mmap_locked = extra;
3800 event->mmap_user = get_current_user();
3801 vma->vm_mm->locked_vm += event->mmap_locked;
3802
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003803unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003804 if (!ret)
3805 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003806 mutex_unlock(&event->mmap_mutex);
3807
3808 vma->vm_flags |= VM_RESERVED;
3809 vma->vm_ops = &perf_mmap_vmops;
3810
3811 return ret;
3812}
3813
3814static int perf_fasync(int fd, struct file *filp, int on)
3815{
3816 struct inode *inode = filp->f_path.dentry->d_inode;
3817 struct perf_event *event = filp->private_data;
3818 int retval;
3819
3820 mutex_lock(&inode->i_mutex);
3821 retval = fasync_helper(fd, filp, on, &event->fasync);
3822 mutex_unlock(&inode->i_mutex);
3823
3824 if (retval < 0)
3825 return retval;
3826
3827 return 0;
3828}
3829
3830static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01003831 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003832 .release = perf_release,
3833 .read = perf_read,
3834 .poll = perf_poll,
3835 .unlocked_ioctl = perf_ioctl,
3836 .compat_ioctl = perf_ioctl,
3837 .mmap = perf_mmap,
3838 .fasync = perf_fasync,
3839};
3840
3841/*
3842 * Perf event wakeup
3843 *
3844 * If there's data, ensure we set the poll() state and publish everything
3845 * to user-space before waking everybody up.
3846 */
3847
3848void perf_event_wakeup(struct perf_event *event)
3849{
3850 wake_up_all(&event->waitq);
3851
3852 if (event->pending_kill) {
3853 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
3854 event->pending_kill = 0;
3855 }
3856}
3857
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003858static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003859{
3860 struct perf_event *event = container_of(entry,
3861 struct perf_event, pending);
3862
3863 if (event->pending_disable) {
3864 event->pending_disable = 0;
3865 __perf_event_disable(event);
3866 }
3867
3868 if (event->pending_wakeup) {
3869 event->pending_wakeup = 0;
3870 perf_event_wakeup(event);
3871 }
3872}
3873
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003874/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08003875 * We assume there is only KVM supporting the callbacks.
3876 * Later on, we might change it to a list if there is
3877 * another virtualization implementation supporting the callbacks.
3878 */
3879struct perf_guest_info_callbacks *perf_guest_cbs;
3880
3881int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3882{
3883 perf_guest_cbs = cbs;
3884 return 0;
3885}
3886EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
3887
3888int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3889{
3890 perf_guest_cbs = NULL;
3891 return 0;
3892}
3893EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
3894
3895/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003896 * Output
3897 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003898static bool perf_output_space(struct perf_buffer *buffer, unsigned long tail,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003899 unsigned long offset, unsigned long head)
3900{
3901 unsigned long mask;
3902
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003903 if (!buffer->writable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003904 return true;
3905
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003906 mask = perf_data_size(buffer) - 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003907
3908 offset = (offset - tail) & mask;
3909 head = (head - tail) & mask;
3910
3911 if ((int)(head - offset) < 0)
3912 return false;
3913
3914 return true;
3915}
3916
3917static void perf_output_wakeup(struct perf_output_handle *handle)
3918{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003919 atomic_set(&handle->buffer->poll, POLL_IN);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003920
3921 if (handle->nmi) {
3922 handle->event->pending_wakeup = 1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003923 irq_work_queue(&handle->event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003924 } else
3925 perf_event_wakeup(handle->event);
3926}
3927
3928/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003929 * We need to ensure a later event_id doesn't publish a head when a former
Peter Zijlstraef607772010-05-18 10:50:41 +02003930 * event isn't done writing. However since we need to deal with NMIs we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003931 * cannot fully serialize things.
3932 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003933 * We only publish the head (and generate a wakeup) when the outer-most
Peter Zijlstraef607772010-05-18 10:50:41 +02003934 * event completes.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003935 */
Peter Zijlstraef607772010-05-18 10:50:41 +02003936static void perf_output_get_handle(struct perf_output_handle *handle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003937{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003938 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003939
Peter Zijlstraef607772010-05-18 10:50:41 +02003940 preempt_disable();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003941 local_inc(&buffer->nest);
3942 handle->wakeup = local_read(&buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003943}
3944
Peter Zijlstraef607772010-05-18 10:50:41 +02003945static void perf_output_put_handle(struct perf_output_handle *handle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003946{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003947 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003948 unsigned long head;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003949
3950again:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003951 head = local_read(&buffer->head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003952
3953 /*
Peter Zijlstraef607772010-05-18 10:50:41 +02003954 * IRQ/NMI can happen here, which means we can miss a head update.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003955 */
3956
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003957 if (!local_dec_and_test(&buffer->nest))
Frederic Weisbeckeracd35a42010-05-20 21:28:34 +02003958 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003959
3960 /*
Peter Zijlstraef607772010-05-18 10:50:41 +02003961 * Publish the known good head. Rely on the full barrier implied
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003962 * by atomic_dec_and_test() order the buffer->head read and this
Peter Zijlstraef607772010-05-18 10:50:41 +02003963 * write.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003964 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003965 buffer->user_page->data_head = head;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003966
Peter Zijlstraef607772010-05-18 10:50:41 +02003967 /*
3968 * Now check if we missed an update, rely on the (compiler)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003969 * barrier in atomic_dec_and_test() to re-read buffer->head.
Peter Zijlstraef607772010-05-18 10:50:41 +02003970 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003971 if (unlikely(head != local_read(&buffer->head))) {
3972 local_inc(&buffer->nest);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003973 goto again;
3974 }
3975
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003976 if (handle->wakeup != local_read(&buffer->wakeup))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003977 perf_output_wakeup(handle);
Peter Zijlstraef607772010-05-18 10:50:41 +02003978
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003979out:
Peter Zijlstraef607772010-05-18 10:50:41 +02003980 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003981}
3982
Peter Zijlstraa94ffaa2010-05-20 19:50:07 +02003983__always_inline void perf_output_copy(struct perf_output_handle *handle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003984 const void *buf, unsigned int len)
3985{
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003986 do {
Peter Zijlstraa94ffaa2010-05-20 19:50:07 +02003987 unsigned long size = min_t(unsigned long, handle->size, len);
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003988
3989 memcpy(handle->addr, buf, size);
3990
3991 len -= size;
3992 handle->addr += size;
Frederic Weisbecker74048f82010-05-27 21:34:58 +02003993 buf += size;
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003994 handle->size -= size;
3995 if (!handle->size) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003996 struct perf_buffer *buffer = handle->buffer;
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003997
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003998 handle->page++;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003999 handle->page &= buffer->nr_pages - 1;
4000 handle->addr = buffer->data_pages[handle->page];
4001 handle->size = PAGE_SIZE << page_order(buffer);
Peter Zijlstra5d967a82010-05-20 16:46:39 +02004002 }
4003 } while (len);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004004}
4005
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004006static void __perf_event_header__init_id(struct perf_event_header *header,
4007 struct perf_sample_data *data,
4008 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004009{
4010 u64 sample_type = event->attr.sample_type;
4011
4012 data->type = sample_type;
4013 header->size += event->id_header_size;
4014
4015 if (sample_type & PERF_SAMPLE_TID) {
4016 /* namespace issues */
4017 data->tid_entry.pid = perf_event_pid(event, current);
4018 data->tid_entry.tid = perf_event_tid(event, current);
4019 }
4020
4021 if (sample_type & PERF_SAMPLE_TIME)
4022 data->time = perf_clock();
4023
4024 if (sample_type & PERF_SAMPLE_ID)
4025 data->id = primary_event_id(event);
4026
4027 if (sample_type & PERF_SAMPLE_STREAM_ID)
4028 data->stream_id = event->id;
4029
4030 if (sample_type & PERF_SAMPLE_CPU) {
4031 data->cpu_entry.cpu = raw_smp_processor_id();
4032 data->cpu_entry.reserved = 0;
4033 }
4034}
4035
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004036static void perf_event_header__init_id(struct perf_event_header *header,
4037 struct perf_sample_data *data,
4038 struct perf_event *event)
4039{
4040 if (event->attr.sample_id_all)
4041 __perf_event_header__init_id(header, data, event);
4042}
4043
4044static void __perf_event__output_id_sample(struct perf_output_handle *handle,
4045 struct perf_sample_data *data)
4046{
4047 u64 sample_type = data->type;
4048
4049 if (sample_type & PERF_SAMPLE_TID)
4050 perf_output_put(handle, data->tid_entry);
4051
4052 if (sample_type & PERF_SAMPLE_TIME)
4053 perf_output_put(handle, data->time);
4054
4055 if (sample_type & PERF_SAMPLE_ID)
4056 perf_output_put(handle, data->id);
4057
4058 if (sample_type & PERF_SAMPLE_STREAM_ID)
4059 perf_output_put(handle, data->stream_id);
4060
4061 if (sample_type & PERF_SAMPLE_CPU)
4062 perf_output_put(handle, data->cpu_entry);
4063}
4064
4065static void perf_event__output_id_sample(struct perf_event *event,
4066 struct perf_output_handle *handle,
4067 struct perf_sample_data *sample)
4068{
4069 if (event->attr.sample_id_all)
4070 __perf_event__output_id_sample(handle, sample);
4071}
4072
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004073int perf_output_begin(struct perf_output_handle *handle,
4074 struct perf_event *event, unsigned int size,
4075 int nmi, int sample)
4076{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004077 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004078 unsigned long tail, offset, head;
4079 int have_lost;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004080 struct perf_sample_data sample_data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004081 struct {
4082 struct perf_event_header header;
4083 u64 id;
4084 u64 lost;
4085 } lost_event;
4086
4087 rcu_read_lock();
4088 /*
4089 * For inherited events we send all the output towards the parent.
4090 */
4091 if (event->parent)
4092 event = event->parent;
4093
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004094 buffer = rcu_dereference(event->buffer);
4095 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004096 goto out;
4097
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004098 handle->buffer = buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004099 handle->event = event;
4100 handle->nmi = nmi;
4101 handle->sample = sample;
4102
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004103 if (!buffer->nr_pages)
Stephane Eranian00d1d0b2010-05-17 12:46:01 +02004104 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004105
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004106 have_lost = local_read(&buffer->lost);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004107 if (have_lost) {
4108 lost_event.header.size = sizeof(lost_event);
4109 perf_event_header__init_id(&lost_event.header, &sample_data,
4110 event);
4111 size += lost_event.header.size;
4112 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004113
Peter Zijlstraef607772010-05-18 10:50:41 +02004114 perf_output_get_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004115
4116 do {
4117 /*
4118 * Userspace could choose to issue a mb() before updating the
4119 * tail pointer. So that all reads will be completed before the
4120 * write is issued.
4121 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004122 tail = ACCESS_ONCE(buffer->user_page->data_tail);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004123 smp_rmb();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004124 offset = head = local_read(&buffer->head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004125 head += size;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004126 if (unlikely(!perf_output_space(buffer, tail, offset, head)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004127 goto fail;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004128 } while (local_cmpxchg(&buffer->head, offset, head) != offset);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004129
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004130 if (head - local_read(&buffer->wakeup) > buffer->watermark)
4131 local_add(buffer->watermark, &buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004132
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004133 handle->page = offset >> (PAGE_SHIFT + page_order(buffer));
4134 handle->page &= buffer->nr_pages - 1;
4135 handle->size = offset & ((PAGE_SIZE << page_order(buffer)) - 1);
4136 handle->addr = buffer->data_pages[handle->page];
Peter Zijlstra5d967a82010-05-20 16:46:39 +02004137 handle->addr += handle->size;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004138 handle->size = (PAGE_SIZE << page_order(buffer)) - handle->size;
Peter Zijlstra5d967a82010-05-20 16:46:39 +02004139
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004140 if (have_lost) {
4141 lost_event.header.type = PERF_RECORD_LOST;
4142 lost_event.header.misc = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004143 lost_event.id = event->id;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004144 lost_event.lost = local_xchg(&buffer->lost, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004145
4146 perf_output_put(handle, lost_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004147 perf_event__output_id_sample(event, handle, &sample_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004148 }
4149
4150 return 0;
4151
4152fail:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004153 local_inc(&buffer->lost);
Peter Zijlstraef607772010-05-18 10:50:41 +02004154 perf_output_put_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004155out:
4156 rcu_read_unlock();
4157
4158 return -ENOSPC;
4159}
4160
4161void perf_output_end(struct perf_output_handle *handle)
4162{
4163 struct perf_event *event = handle->event;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004164 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004165
4166 int wakeup_events = event->attr.wakeup_events;
4167
4168 if (handle->sample && wakeup_events) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004169 int events = local_inc_return(&buffer->events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004170 if (events >= wakeup_events) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004171 local_sub(wakeup_events, &buffer->events);
4172 local_inc(&buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004173 }
4174 }
4175
Peter Zijlstraef607772010-05-18 10:50:41 +02004176 perf_output_put_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004177 rcu_read_unlock();
4178}
4179
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004180static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004181 struct perf_event *event,
4182 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004183{
4184 u64 read_format = event->attr.read_format;
4185 u64 values[4];
4186 int n = 0;
4187
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004188 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004189 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004190 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004191 atomic64_read(&event->child_total_time_enabled);
4192 }
4193 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004194 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004195 atomic64_read(&event->child_total_time_running);
4196 }
4197 if (read_format & PERF_FORMAT_ID)
4198 values[n++] = primary_event_id(event);
4199
4200 perf_output_copy(handle, values, n * sizeof(u64));
4201}
4202
4203/*
4204 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
4205 */
4206static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004207 struct perf_event *event,
4208 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004209{
4210 struct perf_event *leader = event->group_leader, *sub;
4211 u64 read_format = event->attr.read_format;
4212 u64 values[5];
4213 int n = 0;
4214
4215 values[n++] = 1 + leader->nr_siblings;
4216
4217 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02004218 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004219
4220 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02004221 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004222
4223 if (leader != event)
4224 leader->pmu->read(leader);
4225
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004226 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004227 if (read_format & PERF_FORMAT_ID)
4228 values[n++] = primary_event_id(leader);
4229
4230 perf_output_copy(handle, values, n * sizeof(u64));
4231
4232 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
4233 n = 0;
4234
4235 if (sub != event)
4236 sub->pmu->read(sub);
4237
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004238 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004239 if (read_format & PERF_FORMAT_ID)
4240 values[n++] = primary_event_id(sub);
4241
4242 perf_output_copy(handle, values, n * sizeof(u64));
4243 }
4244}
4245
Stephane Eranianeed01522010-10-26 16:08:01 +02004246#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
4247 PERF_FORMAT_TOTAL_TIME_RUNNING)
4248
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004249static void perf_output_read(struct perf_output_handle *handle,
4250 struct perf_event *event)
4251{
Stephane Eranianeed01522010-10-26 16:08:01 +02004252 u64 enabled = 0, running = 0, now, ctx_time;
4253 u64 read_format = event->attr.read_format;
4254
4255 /*
4256 * compute total_time_enabled, total_time_running
4257 * based on snapshot values taken when the event
4258 * was last scheduled in.
4259 *
4260 * we cannot simply called update_context_time()
4261 * because of locking issue as we are called in
4262 * NMI context
4263 */
4264 if (read_format & PERF_FORMAT_TOTAL_TIMES) {
4265 now = perf_clock();
4266 ctx_time = event->shadow_ctx_time + now;
4267 enabled = ctx_time - event->tstamp_enabled;
4268 running = ctx_time - event->tstamp_running;
4269 }
4270
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004271 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02004272 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004273 else
Stephane Eranianeed01522010-10-26 16:08:01 +02004274 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004275}
4276
4277void perf_output_sample(struct perf_output_handle *handle,
4278 struct perf_event_header *header,
4279 struct perf_sample_data *data,
4280 struct perf_event *event)
4281{
4282 u64 sample_type = data->type;
4283
4284 perf_output_put(handle, *header);
4285
4286 if (sample_type & PERF_SAMPLE_IP)
4287 perf_output_put(handle, data->ip);
4288
4289 if (sample_type & PERF_SAMPLE_TID)
4290 perf_output_put(handle, data->tid_entry);
4291
4292 if (sample_type & PERF_SAMPLE_TIME)
4293 perf_output_put(handle, data->time);
4294
4295 if (sample_type & PERF_SAMPLE_ADDR)
4296 perf_output_put(handle, data->addr);
4297
4298 if (sample_type & PERF_SAMPLE_ID)
4299 perf_output_put(handle, data->id);
4300
4301 if (sample_type & PERF_SAMPLE_STREAM_ID)
4302 perf_output_put(handle, data->stream_id);
4303
4304 if (sample_type & PERF_SAMPLE_CPU)
4305 perf_output_put(handle, data->cpu_entry);
4306
4307 if (sample_type & PERF_SAMPLE_PERIOD)
4308 perf_output_put(handle, data->period);
4309
4310 if (sample_type & PERF_SAMPLE_READ)
4311 perf_output_read(handle, event);
4312
4313 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4314 if (data->callchain) {
4315 int size = 1;
4316
4317 if (data->callchain)
4318 size += data->callchain->nr;
4319
4320 size *= sizeof(u64);
4321
4322 perf_output_copy(handle, data->callchain, size);
4323 } else {
4324 u64 nr = 0;
4325 perf_output_put(handle, nr);
4326 }
4327 }
4328
4329 if (sample_type & PERF_SAMPLE_RAW) {
4330 if (data->raw) {
4331 perf_output_put(handle, data->raw->size);
4332 perf_output_copy(handle, data->raw->data,
4333 data->raw->size);
4334 } else {
4335 struct {
4336 u32 size;
4337 u32 data;
4338 } raw = {
4339 .size = sizeof(u32),
4340 .data = 0,
4341 };
4342 perf_output_put(handle, raw);
4343 }
4344 }
4345}
4346
4347void perf_prepare_sample(struct perf_event_header *header,
4348 struct perf_sample_data *data,
4349 struct perf_event *event,
4350 struct pt_regs *regs)
4351{
4352 u64 sample_type = event->attr.sample_type;
4353
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004354 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004355 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004356
4357 header->misc = 0;
4358 header->misc |= perf_misc_flags(regs);
4359
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004360 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004361
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004362 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004363 data->ip = perf_instruction_pointer(regs);
4364
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004365 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4366 int size = 1;
4367
4368 data->callchain = perf_callchain(regs);
4369
4370 if (data->callchain)
4371 size += data->callchain->nr;
4372
4373 header->size += size * sizeof(u64);
4374 }
4375
4376 if (sample_type & PERF_SAMPLE_RAW) {
4377 int size = sizeof(u32);
4378
4379 if (data->raw)
4380 size += data->raw->size;
4381 else
4382 size += sizeof(u32);
4383
4384 WARN_ON_ONCE(size & (sizeof(u64)-1));
4385 header->size += size;
4386 }
4387}
4388
4389static void perf_event_output(struct perf_event *event, int nmi,
4390 struct perf_sample_data *data,
4391 struct pt_regs *regs)
4392{
4393 struct perf_output_handle handle;
4394 struct perf_event_header header;
4395
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004396 /* protect the callchain buffers */
4397 rcu_read_lock();
4398
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004399 perf_prepare_sample(&header, data, event, regs);
4400
4401 if (perf_output_begin(&handle, event, header.size, nmi, 1))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004402 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004403
4404 perf_output_sample(&handle, &header, data, event);
4405
4406 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004407
4408exit:
4409 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004410}
4411
4412/*
4413 * read event_id
4414 */
4415
4416struct perf_read_event {
4417 struct perf_event_header header;
4418
4419 u32 pid;
4420 u32 tid;
4421};
4422
4423static void
4424perf_event_read_event(struct perf_event *event,
4425 struct task_struct *task)
4426{
4427 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004428 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004429 struct perf_read_event read_event = {
4430 .header = {
4431 .type = PERF_RECORD_READ,
4432 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004433 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004434 },
4435 .pid = perf_event_pid(event, task),
4436 .tid = perf_event_tid(event, task),
4437 };
4438 int ret;
4439
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004440 perf_event_header__init_id(&read_event.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004441 ret = perf_output_begin(&handle, event, read_event.header.size, 0, 0);
4442 if (ret)
4443 return;
4444
4445 perf_output_put(&handle, read_event);
4446 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004447 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004448
4449 perf_output_end(&handle);
4450}
4451
4452/*
4453 * task tracking -- fork/exit
4454 *
Eric B Munson3af9e852010-05-18 15:30:49 +01004455 * enabled by: attr.comm | attr.mmap | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004456 */
4457
4458struct perf_task_event {
4459 struct task_struct *task;
4460 struct perf_event_context *task_ctx;
4461
4462 struct {
4463 struct perf_event_header header;
4464
4465 u32 pid;
4466 u32 ppid;
4467 u32 tid;
4468 u32 ptid;
4469 u64 time;
4470 } event_id;
4471};
4472
4473static void perf_event_task_output(struct perf_event *event,
4474 struct perf_task_event *task_event)
4475{
4476 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004477 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004478 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004479 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01004480
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004481 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004482
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004483 ret = perf_output_begin(&handle, event,
4484 task_event->event_id.header.size, 0, 0);
Peter Zijlstraef607772010-05-18 10:50:41 +02004485 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004486 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004487
4488 task_event->event_id.pid = perf_event_pid(event, task);
4489 task_event->event_id.ppid = perf_event_pid(event, current);
4490
4491 task_event->event_id.tid = perf_event_tid(event, task);
4492 task_event->event_id.ptid = perf_event_tid(event, current);
4493
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004494 perf_output_put(&handle, task_event->event_id);
4495
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004496 perf_event__output_id_sample(event, &handle, &sample);
4497
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004498 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004499out:
4500 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004501}
4502
4503static int perf_event_task_match(struct perf_event *event)
4504{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004505 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01004506 return 0;
4507
Stephane Eranian5632ab12011-01-03 18:20:01 +02004508 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004509 return 0;
4510
Eric B Munson3af9e852010-05-18 15:30:49 +01004511 if (event->attr.comm || event->attr.mmap ||
4512 event->attr.mmap_data || event->attr.task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004513 return 1;
4514
4515 return 0;
4516}
4517
4518static void perf_event_task_ctx(struct perf_event_context *ctx,
4519 struct perf_task_event *task_event)
4520{
4521 struct perf_event *event;
4522
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004523 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4524 if (perf_event_task_match(event))
4525 perf_event_task_output(event, task_event);
4526 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004527}
4528
4529static void perf_event_task_event(struct perf_task_event *task_event)
4530{
4531 struct perf_cpu_context *cpuctx;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004532 struct perf_event_context *ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004533 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004534 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004535
Peter Zijlstrad6ff86c2009-11-20 22:19:46 +01004536 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004537 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02004538 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra51676952010-12-07 14:18:20 +01004539 if (cpuctx->active_pmu != pmu)
4540 goto next;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004541 perf_event_task_ctx(&cpuctx->ctx, task_event);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004542
4543 ctx = task_event->task_ctx;
4544 if (!ctx) {
4545 ctxn = pmu->task_ctx_nr;
4546 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02004547 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004548 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4549 }
4550 if (ctx)
4551 perf_event_task_ctx(ctx, task_event);
Peter Zijlstra41945f62010-09-16 19:17:24 +02004552next:
4553 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004554 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004555 rcu_read_unlock();
4556}
4557
4558static void perf_event_task(struct task_struct *task,
4559 struct perf_event_context *task_ctx,
4560 int new)
4561{
4562 struct perf_task_event task_event;
4563
4564 if (!atomic_read(&nr_comm_events) &&
4565 !atomic_read(&nr_mmap_events) &&
4566 !atomic_read(&nr_task_events))
4567 return;
4568
4569 task_event = (struct perf_task_event){
4570 .task = task,
4571 .task_ctx = task_ctx,
4572 .event_id = {
4573 .header = {
4574 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
4575 .misc = 0,
4576 .size = sizeof(task_event.event_id),
4577 },
4578 /* .pid */
4579 /* .ppid */
4580 /* .tid */
4581 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004582 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004583 },
4584 };
4585
4586 perf_event_task_event(&task_event);
4587}
4588
4589void perf_event_fork(struct task_struct *task)
4590{
4591 perf_event_task(task, NULL, 1);
4592}
4593
4594/*
4595 * comm tracking
4596 */
4597
4598struct perf_comm_event {
4599 struct task_struct *task;
4600 char *comm;
4601 int comm_size;
4602
4603 struct {
4604 struct perf_event_header header;
4605
4606 u32 pid;
4607 u32 tid;
4608 } event_id;
4609};
4610
4611static void perf_event_comm_output(struct perf_event *event,
4612 struct perf_comm_event *comm_event)
4613{
4614 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004615 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004616 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004617 int ret;
4618
4619 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
4620 ret = perf_output_begin(&handle, event,
4621 comm_event->event_id.header.size, 0, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004622
4623 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004624 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004625
4626 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
4627 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
4628
4629 perf_output_put(&handle, comm_event->event_id);
4630 perf_output_copy(&handle, comm_event->comm,
4631 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004632
4633 perf_event__output_id_sample(event, &handle, &sample);
4634
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004635 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004636out:
4637 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004638}
4639
4640static int perf_event_comm_match(struct perf_event *event)
4641{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004642 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01004643 return 0;
4644
Stephane Eranian5632ab12011-01-03 18:20:01 +02004645 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004646 return 0;
4647
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004648 if (event->attr.comm)
4649 return 1;
4650
4651 return 0;
4652}
4653
4654static void perf_event_comm_ctx(struct perf_event_context *ctx,
4655 struct perf_comm_event *comm_event)
4656{
4657 struct perf_event *event;
4658
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004659 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4660 if (perf_event_comm_match(event))
4661 perf_event_comm_output(event, comm_event);
4662 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004663}
4664
4665static void perf_event_comm_event(struct perf_comm_event *comm_event)
4666{
4667 struct perf_cpu_context *cpuctx;
4668 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004669 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004670 unsigned int size;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004671 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004672 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004673
4674 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01004675 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004676 size = ALIGN(strlen(comm)+1, sizeof(u64));
4677
4678 comm_event->comm = comm;
4679 comm_event->comm_size = size;
4680
4681 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstraf6595f32009-11-20 22:19:47 +01004682 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004683 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02004684 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra51676952010-12-07 14:18:20 +01004685 if (cpuctx->active_pmu != pmu)
4686 goto next;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004687 perf_event_comm_ctx(&cpuctx->ctx, comm_event);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004688
4689 ctxn = pmu->task_ctx_nr;
4690 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02004691 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004692
4693 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4694 if (ctx)
4695 perf_event_comm_ctx(ctx, comm_event);
Peter Zijlstra41945f62010-09-16 19:17:24 +02004696next:
4697 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004698 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004699 rcu_read_unlock();
4700}
4701
4702void perf_event_comm(struct task_struct *task)
4703{
4704 struct perf_comm_event comm_event;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004705 struct perf_event_context *ctx;
4706 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004707
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004708 for_each_task_context_nr(ctxn) {
4709 ctx = task->perf_event_ctxp[ctxn];
4710 if (!ctx)
4711 continue;
4712
4713 perf_event_enable_on_exec(ctx);
4714 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004715
4716 if (!atomic_read(&nr_comm_events))
4717 return;
4718
4719 comm_event = (struct perf_comm_event){
4720 .task = task,
4721 /* .comm */
4722 /* .comm_size */
4723 .event_id = {
4724 .header = {
4725 .type = PERF_RECORD_COMM,
4726 .misc = 0,
4727 /* .size */
4728 },
4729 /* .pid */
4730 /* .tid */
4731 },
4732 };
4733
4734 perf_event_comm_event(&comm_event);
4735}
4736
4737/*
4738 * mmap tracking
4739 */
4740
4741struct perf_mmap_event {
4742 struct vm_area_struct *vma;
4743
4744 const char *file_name;
4745 int file_size;
4746
4747 struct {
4748 struct perf_event_header header;
4749
4750 u32 pid;
4751 u32 tid;
4752 u64 start;
4753 u64 len;
4754 u64 pgoff;
4755 } event_id;
4756};
4757
4758static void perf_event_mmap_output(struct perf_event *event,
4759 struct perf_mmap_event *mmap_event)
4760{
4761 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004762 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004763 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004764 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004765
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004766 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
4767 ret = perf_output_begin(&handle, event,
4768 mmap_event->event_id.header.size, 0, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004769 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004770 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004771
4772 mmap_event->event_id.pid = perf_event_pid(event, current);
4773 mmap_event->event_id.tid = perf_event_tid(event, current);
4774
4775 perf_output_put(&handle, mmap_event->event_id);
4776 perf_output_copy(&handle, mmap_event->file_name,
4777 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004778
4779 perf_event__output_id_sample(event, &handle, &sample);
4780
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004781 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004782out:
4783 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004784}
4785
4786static int perf_event_mmap_match(struct perf_event *event,
Eric B Munson3af9e852010-05-18 15:30:49 +01004787 struct perf_mmap_event *mmap_event,
4788 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004789{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004790 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01004791 return 0;
4792
Stephane Eranian5632ab12011-01-03 18:20:01 +02004793 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004794 return 0;
4795
Eric B Munson3af9e852010-05-18 15:30:49 +01004796 if ((!executable && event->attr.mmap_data) ||
4797 (executable && event->attr.mmap))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004798 return 1;
4799
4800 return 0;
4801}
4802
4803static void perf_event_mmap_ctx(struct perf_event_context *ctx,
Eric B Munson3af9e852010-05-18 15:30:49 +01004804 struct perf_mmap_event *mmap_event,
4805 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004806{
4807 struct perf_event *event;
4808
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004809 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Eric B Munson3af9e852010-05-18 15:30:49 +01004810 if (perf_event_mmap_match(event, mmap_event, executable))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004811 perf_event_mmap_output(event, mmap_event);
4812 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004813}
4814
4815static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
4816{
4817 struct perf_cpu_context *cpuctx;
4818 struct perf_event_context *ctx;
4819 struct vm_area_struct *vma = mmap_event->vma;
4820 struct file *file = vma->vm_file;
4821 unsigned int size;
4822 char tmp[16];
4823 char *buf = NULL;
4824 const char *name;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004825 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004826 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004827
4828 memset(tmp, 0, sizeof(tmp));
4829
4830 if (file) {
4831 /*
4832 * d_path works from the end of the buffer backwards, so we
4833 * need to add enough zero bytes after the string to handle
4834 * the 64bit alignment we do later.
4835 */
4836 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
4837 if (!buf) {
4838 name = strncpy(tmp, "//enomem", sizeof(tmp));
4839 goto got_name;
4840 }
4841 name = d_path(&file->f_path, buf, PATH_MAX);
4842 if (IS_ERR(name)) {
4843 name = strncpy(tmp, "//toolong", sizeof(tmp));
4844 goto got_name;
4845 }
4846 } else {
4847 if (arch_vma_name(mmap_event->vma)) {
4848 name = strncpy(tmp, arch_vma_name(mmap_event->vma),
4849 sizeof(tmp));
4850 goto got_name;
4851 }
4852
4853 if (!vma->vm_mm) {
4854 name = strncpy(tmp, "[vdso]", sizeof(tmp));
4855 goto got_name;
Eric B Munson3af9e852010-05-18 15:30:49 +01004856 } else if (vma->vm_start <= vma->vm_mm->start_brk &&
4857 vma->vm_end >= vma->vm_mm->brk) {
4858 name = strncpy(tmp, "[heap]", sizeof(tmp));
4859 goto got_name;
4860 } else if (vma->vm_start <= vma->vm_mm->start_stack &&
4861 vma->vm_end >= vma->vm_mm->start_stack) {
4862 name = strncpy(tmp, "[stack]", sizeof(tmp));
4863 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004864 }
4865
4866 name = strncpy(tmp, "//anon", sizeof(tmp));
4867 goto got_name;
4868 }
4869
4870got_name:
4871 size = ALIGN(strlen(name)+1, sizeof(u64));
4872
4873 mmap_event->file_name = name;
4874 mmap_event->file_size = size;
4875
4876 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
4877
Peter Zijlstraf6d9dd22009-11-20 22:19:48 +01004878 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004879 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02004880 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra51676952010-12-07 14:18:20 +01004881 if (cpuctx->active_pmu != pmu)
4882 goto next;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004883 perf_event_mmap_ctx(&cpuctx->ctx, mmap_event,
4884 vma->vm_flags & VM_EXEC);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004885
4886 ctxn = pmu->task_ctx_nr;
4887 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02004888 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004889
4890 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4891 if (ctx) {
4892 perf_event_mmap_ctx(ctx, mmap_event,
4893 vma->vm_flags & VM_EXEC);
4894 }
Peter Zijlstra41945f62010-09-16 19:17:24 +02004895next:
4896 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004897 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004898 rcu_read_unlock();
4899
4900 kfree(buf);
4901}
4902
Eric B Munson3af9e852010-05-18 15:30:49 +01004903void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004904{
4905 struct perf_mmap_event mmap_event;
4906
4907 if (!atomic_read(&nr_mmap_events))
4908 return;
4909
4910 mmap_event = (struct perf_mmap_event){
4911 .vma = vma,
4912 /* .file_name */
4913 /* .file_size */
4914 .event_id = {
4915 .header = {
4916 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004917 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004918 /* .size */
4919 },
4920 /* .pid */
4921 /* .tid */
4922 .start = vma->vm_start,
4923 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01004924 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004925 },
4926 };
4927
4928 perf_event_mmap_event(&mmap_event);
4929}
4930
4931/*
4932 * IRQ throttle logging
4933 */
4934
4935static void perf_log_throttle(struct perf_event *event, int enable)
4936{
4937 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004938 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004939 int ret;
4940
4941 struct {
4942 struct perf_event_header header;
4943 u64 time;
4944 u64 id;
4945 u64 stream_id;
4946 } throttle_event = {
4947 .header = {
4948 .type = PERF_RECORD_THROTTLE,
4949 .misc = 0,
4950 .size = sizeof(throttle_event),
4951 },
4952 .time = perf_clock(),
4953 .id = primary_event_id(event),
4954 .stream_id = event->id,
4955 };
4956
4957 if (enable)
4958 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
4959
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004960 perf_event_header__init_id(&throttle_event.header, &sample, event);
4961
4962 ret = perf_output_begin(&handle, event,
4963 throttle_event.header.size, 1, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004964 if (ret)
4965 return;
4966
4967 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004968 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004969 perf_output_end(&handle);
4970}
4971
4972/*
4973 * Generic event overflow handling, sampling.
4974 */
4975
4976static int __perf_event_overflow(struct perf_event *event, int nmi,
4977 int throttle, struct perf_sample_data *data,
4978 struct pt_regs *regs)
4979{
4980 int events = atomic_read(&event->event_limit);
4981 struct hw_perf_event *hwc = &event->hw;
4982 int ret = 0;
4983
Peter Zijlstra96398822010-11-24 18:55:29 +01004984 /*
4985 * Non-sampling counters might still use the PMI to fold short
4986 * hardware counters, ignore those.
4987 */
4988 if (unlikely(!is_sampling_event(event)))
4989 return 0;
4990
Peter Zijlstra163ec432011-02-16 11:22:34 +01004991 if (unlikely(hwc->interrupts >= max_samples_per_tick)) {
4992 if (throttle) {
4993 hwc->interrupts = MAX_INTERRUPTS;
4994 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004995 ret = 1;
4996 }
Peter Zijlstra163ec432011-02-16 11:22:34 +01004997 } else
4998 hwc->interrupts++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004999
5000 if (event->attr.freq) {
5001 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01005002 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005003
Peter Zijlstraabd50712010-01-26 18:50:16 +01005004 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005005
Peter Zijlstraabd50712010-01-26 18:50:16 +01005006 if (delta > 0 && delta < 2*TICK_NSEC)
5007 perf_adjust_period(event, delta, hwc->last_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005008 }
5009
5010 /*
5011 * XXX event_limit might not quite work as expected on inherited
5012 * events
5013 */
5014
5015 event->pending_kill = POLL_IN;
5016 if (events && atomic_dec_and_test(&event->event_limit)) {
5017 ret = 1;
5018 event->pending_kill = POLL_HUP;
5019 if (nmi) {
5020 event->pending_disable = 1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005021 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005022 } else
5023 perf_event_disable(event);
5024 }
5025
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005026 if (event->overflow_handler)
5027 event->overflow_handler(event, nmi, data, regs);
5028 else
5029 perf_event_output(event, nmi, data, regs);
5030
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005031 return ret;
5032}
5033
5034int perf_event_overflow(struct perf_event *event, int nmi,
5035 struct perf_sample_data *data,
5036 struct pt_regs *regs)
5037{
5038 return __perf_event_overflow(event, nmi, 1, data, regs);
5039}
5040
5041/*
5042 * Generic software event infrastructure
5043 */
5044
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005045struct swevent_htable {
5046 struct swevent_hlist *swevent_hlist;
5047 struct mutex hlist_mutex;
5048 int hlist_refcount;
5049
5050 /* Recursion avoidance in each contexts */
5051 int recursion[PERF_NR_CONTEXTS];
5052};
5053
5054static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
5055
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005056/*
5057 * We directly increment event->count and keep a second value in
5058 * event->hw.period_left to count intervals. This period event
5059 * is kept in the range [-sample_period, 0] so that we can use the
5060 * sign as trigger.
5061 */
5062
5063static u64 perf_swevent_set_period(struct perf_event *event)
5064{
5065 struct hw_perf_event *hwc = &event->hw;
5066 u64 period = hwc->last_period;
5067 u64 nr, offset;
5068 s64 old, val;
5069
5070 hwc->last_period = hwc->sample_period;
5071
5072again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02005073 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005074 if (val < 0)
5075 return 0;
5076
5077 nr = div64_u64(period + val, period);
5078 offset = nr * period;
5079 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02005080 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005081 goto again;
5082
5083 return nr;
5084}
5085
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005086static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005087 int nmi, struct perf_sample_data *data,
5088 struct pt_regs *regs)
5089{
5090 struct hw_perf_event *hwc = &event->hw;
5091 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005092
5093 data->period = event->hw.last_period;
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005094 if (!overflow)
5095 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005096
5097 if (hwc->interrupts == MAX_INTERRUPTS)
5098 return;
5099
5100 for (; overflow; overflow--) {
5101 if (__perf_event_overflow(event, nmi, throttle,
5102 data, regs)) {
5103 /*
5104 * We inhibit the overflow from happening when
5105 * hwc->interrupts == MAX_INTERRUPTS.
5106 */
5107 break;
5108 }
5109 throttle = 1;
5110 }
5111}
5112
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005113static void perf_swevent_event(struct perf_event *event, u64 nr,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005114 int nmi, struct perf_sample_data *data,
5115 struct pt_regs *regs)
5116{
5117 struct hw_perf_event *hwc = &event->hw;
5118
Peter Zijlstrae7850592010-05-21 14:43:08 +02005119 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005120
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005121 if (!regs)
5122 return;
5123
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005124 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005125 return;
5126
5127 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
5128 return perf_swevent_overflow(event, 1, nmi, data, regs);
5129
Peter Zijlstrae7850592010-05-21 14:43:08 +02005130 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005131 return;
5132
5133 perf_swevent_overflow(event, 0, nmi, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005134}
5135
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005136static int perf_exclude_event(struct perf_event *event,
5137 struct pt_regs *regs)
5138{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005139 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01005140 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005141
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005142 if (regs) {
5143 if (event->attr.exclude_user && user_mode(regs))
5144 return 1;
5145
5146 if (event->attr.exclude_kernel && !user_mode(regs))
5147 return 1;
5148 }
5149
5150 return 0;
5151}
5152
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005153static int perf_swevent_match(struct perf_event *event,
5154 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08005155 u32 event_id,
5156 struct perf_sample_data *data,
5157 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005158{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005159 if (event->attr.type != type)
5160 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005161
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005162 if (event->attr.config != event_id)
5163 return 0;
5164
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005165 if (perf_exclude_event(event, regs))
5166 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005167
5168 return 1;
5169}
5170
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005171static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005172{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005173 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005174
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005175 return hash_64(val, SWEVENT_HLIST_BITS);
5176}
5177
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005178static inline struct hlist_head *
5179__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005180{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005181 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005182
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005183 return &hlist->heads[hash];
5184}
5185
5186/* For the read side: events when they trigger */
5187static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005188find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005189{
5190 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005191
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005192 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005193 if (!hlist)
5194 return NULL;
5195
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005196 return __find_swevent_head(hlist, type, event_id);
5197}
5198
5199/* For the event head insertion and removal in the hlist */
5200static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005201find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005202{
5203 struct swevent_hlist *hlist;
5204 u32 event_id = event->attr.config;
5205 u64 type = event->attr.type;
5206
5207 /*
5208 * Event scheduling is always serialized against hlist allocation
5209 * and release. Which makes the protected version suitable here.
5210 * The context lock guarantees that.
5211 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005212 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005213 lockdep_is_held(&event->ctx->lock));
5214 if (!hlist)
5215 return NULL;
5216
5217 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005218}
5219
5220static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
5221 u64 nr, int nmi,
5222 struct perf_sample_data *data,
5223 struct pt_regs *regs)
5224{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005225 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005226 struct perf_event *event;
5227 struct hlist_node *node;
5228 struct hlist_head *head;
5229
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005230 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005231 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005232 if (!head)
5233 goto end;
5234
5235 hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08005236 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005237 perf_swevent_event(event, nr, nmi, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005238 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005239end:
5240 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005241}
5242
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005243int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005244{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005245 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005246
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005247 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005248}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01005249EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005250
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01005251inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005252{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005253 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005254
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005255 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005256}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005257
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005258void __perf_sw_event(u32 event_id, u64 nr, int nmi,
5259 struct pt_regs *regs, u64 addr)
5260{
Ingo Molnara4234bf2009-11-23 10:57:59 +01005261 struct perf_sample_data data;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005262 int rctx;
5263
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005264 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005265 rctx = perf_swevent_get_recursion_context();
5266 if (rctx < 0)
5267 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005268
Peter Zijlstradc1d6282010-03-03 15:55:04 +01005269 perf_sample_data_init(&data, addr);
Ingo Molnara4234bf2009-11-23 10:57:59 +01005270
5271 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, nmi, &data, regs);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005272
5273 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005274 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005275}
5276
5277static void perf_swevent_read(struct perf_event *event)
5278{
5279}
5280
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005281static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005282{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005283 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005284 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005285 struct hlist_head *head;
5286
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005287 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005288 hwc->last_period = hwc->sample_period;
5289 perf_swevent_set_period(event);
5290 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005291
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005292 hwc->state = !(flags & PERF_EF_START);
5293
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005294 head = find_swevent_head(swhash, event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005295 if (WARN_ON_ONCE(!head))
5296 return -EINVAL;
5297
5298 hlist_add_head_rcu(&event->hlist_entry, head);
5299
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005300 return 0;
5301}
5302
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005303static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005304{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005305 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005306}
5307
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005308static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005309{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005310 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005311}
5312
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005313static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005314{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005315 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005316}
5317
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005318/* Deref the hlist from the update side */
5319static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005320swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005321{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005322 return rcu_dereference_protected(swhash->swevent_hlist,
5323 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005324}
5325
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005326static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005327{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005328 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005329
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005330 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005331 return;
5332
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005333 rcu_assign_pointer(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08005334 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005335}
5336
5337static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
5338{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005339 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005340
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005341 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005342
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005343 if (!--swhash->hlist_refcount)
5344 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005345
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005346 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005347}
5348
5349static void swevent_hlist_put(struct perf_event *event)
5350{
5351 int cpu;
5352
5353 if (event->cpu != -1) {
5354 swevent_hlist_put_cpu(event, event->cpu);
5355 return;
5356 }
5357
5358 for_each_possible_cpu(cpu)
5359 swevent_hlist_put_cpu(event, cpu);
5360}
5361
5362static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
5363{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005364 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005365 int err = 0;
5366
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005367 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005368
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005369 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005370 struct swevent_hlist *hlist;
5371
5372 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
5373 if (!hlist) {
5374 err = -ENOMEM;
5375 goto exit;
5376 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005377 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005378 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005379 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005380exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005381 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005382
5383 return err;
5384}
5385
5386static int swevent_hlist_get(struct perf_event *event)
5387{
5388 int err;
5389 int cpu, failed_cpu;
5390
5391 if (event->cpu != -1)
5392 return swevent_hlist_get_cpu(event, event->cpu);
5393
5394 get_online_cpus();
5395 for_each_possible_cpu(cpu) {
5396 err = swevent_hlist_get_cpu(event, cpu);
5397 if (err) {
5398 failed_cpu = cpu;
5399 goto fail;
5400 }
5401 }
5402 put_online_cpus();
5403
5404 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005405fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005406 for_each_possible_cpu(cpu) {
5407 if (cpu == failed_cpu)
5408 break;
5409 swevent_hlist_put_cpu(event, cpu);
5410 }
5411
5412 put_online_cpus();
5413 return err;
5414}
5415
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005416atomic_t perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005417
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005418static void sw_perf_event_destroy(struct perf_event *event)
5419{
5420 u64 event_id = event->attr.config;
5421
5422 WARN_ON(event->parent);
5423
Peter Zijlstra7e54a5a2010-10-14 22:32:45 +02005424 jump_label_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005425 swevent_hlist_put(event);
5426}
5427
5428static int perf_swevent_init(struct perf_event *event)
5429{
5430 int event_id = event->attr.config;
5431
5432 if (event->attr.type != PERF_TYPE_SOFTWARE)
5433 return -ENOENT;
5434
5435 switch (event_id) {
5436 case PERF_COUNT_SW_CPU_CLOCK:
5437 case PERF_COUNT_SW_TASK_CLOCK:
5438 return -ENOENT;
5439
5440 default:
5441 break;
5442 }
5443
Dan Carpenterce677832010-10-24 21:50:42 +02005444 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005445 return -ENOENT;
5446
5447 if (!event->parent) {
5448 int err;
5449
5450 err = swevent_hlist_get(event);
5451 if (err)
5452 return err;
5453
Peter Zijlstra7e54a5a2010-10-14 22:32:45 +02005454 jump_label_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005455 event->destroy = sw_perf_event_destroy;
5456 }
5457
5458 return 0;
5459}
5460
5461static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005462 .task_ctx_nr = perf_sw_context,
5463
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005464 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005465 .add = perf_swevent_add,
5466 .del = perf_swevent_del,
5467 .start = perf_swevent_start,
5468 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005469 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005470};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005471
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005472#ifdef CONFIG_EVENT_TRACING
5473
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005474static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005475 struct perf_sample_data *data)
5476{
5477 void *record = data->raw->data;
5478
5479 if (likely(!event->filter) || filter_match_preds(event->filter, record))
5480 return 1;
5481 return 0;
5482}
5483
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005484static int perf_tp_event_match(struct perf_event *event,
5485 struct perf_sample_data *data,
5486 struct pt_regs *regs)
5487{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01005488 if (event->hw.state & PERF_HES_STOPPED)
5489 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02005490 /*
5491 * All tracepoints are from kernel-space.
5492 */
5493 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005494 return 0;
5495
5496 if (!perf_tp_filter_match(event, data))
5497 return 0;
5498
5499 return 1;
5500}
5501
5502void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005503 struct pt_regs *regs, struct hlist_head *head, int rctx)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005504{
5505 struct perf_sample_data data;
5506 struct perf_event *event;
5507 struct hlist_node *node;
5508
5509 struct perf_raw_record raw = {
5510 .size = entry_size,
5511 .data = record,
5512 };
5513
5514 perf_sample_data_init(&data, addr);
5515 data.raw = &raw;
5516
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005517 hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
5518 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005519 perf_swevent_event(event, count, 1, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005520 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005521
5522 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005523}
5524EXPORT_SYMBOL_GPL(perf_tp_event);
5525
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005526static void tp_perf_event_destroy(struct perf_event *event)
5527{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005528 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005529}
5530
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005531static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005532{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005533 int err;
5534
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005535 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5536 return -ENOENT;
5537
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005538 err = perf_trace_init(event);
5539 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005540 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005541
5542 event->destroy = tp_perf_event_destroy;
5543
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005544 return 0;
5545}
5546
5547static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005548 .task_ctx_nr = perf_sw_context,
5549
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005550 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005551 .add = perf_trace_add,
5552 .del = perf_trace_del,
5553 .start = perf_swevent_start,
5554 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005555 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005556};
5557
5558static inline void perf_tp_register(void)
5559{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005560 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005561}
Li Zefan6fb29152009-10-15 11:21:42 +08005562
5563static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5564{
5565 char *filter_str;
5566 int ret;
5567
5568 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5569 return -EINVAL;
5570
5571 filter_str = strndup_user(arg, PAGE_SIZE);
5572 if (IS_ERR(filter_str))
5573 return PTR_ERR(filter_str);
5574
5575 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
5576
5577 kfree(filter_str);
5578 return ret;
5579}
5580
5581static void perf_event_free_filter(struct perf_event *event)
5582{
5583 ftrace_profile_free_filter(event);
5584}
5585
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005586#else
Li Zefan6fb29152009-10-15 11:21:42 +08005587
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005588static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005589{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005590}
Li Zefan6fb29152009-10-15 11:21:42 +08005591
5592static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5593{
5594 return -ENOENT;
5595}
5596
5597static void perf_event_free_filter(struct perf_event *event)
5598{
5599}
5600
Li Zefan07b139c2009-12-21 14:27:35 +08005601#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005602
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005603#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005604void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005605{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005606 struct perf_sample_data sample;
5607 struct pt_regs *regs = data;
5608
Peter Zijlstradc1d6282010-03-03 15:55:04 +01005609 perf_sample_data_init(&sample, bp->attr.bp_addr);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005610
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005611 if (!bp->hw.state && !perf_exclude_event(bp, regs))
5612 perf_swevent_event(bp, 1, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005613}
5614#endif
5615
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005616/*
5617 * hrtimer based swevent callback
5618 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005619
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005620static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005621{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005622 enum hrtimer_restart ret = HRTIMER_RESTART;
5623 struct perf_sample_data data;
5624 struct pt_regs *regs;
5625 struct perf_event *event;
5626 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005627
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005628 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005629
5630 if (event->state != PERF_EVENT_STATE_ACTIVE)
5631 return HRTIMER_NORESTART;
5632
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005633 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005634
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005635 perf_sample_data_init(&data, 0);
5636 data.period = event->hw.last_period;
5637 regs = get_irq_regs();
5638
5639 if (regs && !perf_exclude_event(event, regs)) {
5640 if (!(event->attr.exclude_idle && current->pid == 0))
5641 if (perf_event_overflow(event, 0, &data, regs))
5642 ret = HRTIMER_NORESTART;
5643 }
5644
5645 period = max_t(u64, 10000, event->hw.sample_period);
5646 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
5647
5648 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005649}
5650
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005651static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005652{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005653 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005654 s64 period;
5655
5656 if (!is_sampling_event(event))
5657 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005658
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005659 period = local64_read(&hwc->period_left);
5660 if (period) {
5661 if (period < 0)
5662 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02005663
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005664 local64_set(&hwc->period_left, 0);
5665 } else {
5666 period = max_t(u64, 10000, hwc->sample_period);
5667 }
5668 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005669 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02005670 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005671}
5672
5673static void perf_swevent_cancel_hrtimer(struct perf_event *event)
5674{
5675 struct hw_perf_event *hwc = &event->hw;
5676
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005677 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005678 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02005679 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005680
5681 hrtimer_cancel(&hwc->hrtimer);
5682 }
5683}
5684
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005685static void perf_swevent_init_hrtimer(struct perf_event *event)
5686{
5687 struct hw_perf_event *hwc = &event->hw;
5688
5689 if (!is_sampling_event(event))
5690 return;
5691
5692 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
5693 hwc->hrtimer.function = perf_swevent_hrtimer;
5694
5695 /*
5696 * Since hrtimers have a fixed rate, we can do a static freq->period
5697 * mapping and avoid the whole period adjust feedback stuff.
5698 */
5699 if (event->attr.freq) {
5700 long freq = event->attr.sample_freq;
5701
5702 event->attr.sample_period = NSEC_PER_SEC / freq;
5703 hwc->sample_period = event->attr.sample_period;
5704 local64_set(&hwc->period_left, hwc->sample_period);
5705 event->attr.freq = 0;
5706 }
5707}
5708
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005709/*
5710 * Software event: cpu wall time clock
5711 */
5712
5713static void cpu_clock_event_update(struct perf_event *event)
5714{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005715 s64 prev;
5716 u64 now;
5717
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005718 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005719 prev = local64_xchg(&event->hw.prev_count, now);
5720 local64_add(now - prev, &event->count);
5721}
5722
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005723static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005724{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005725 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005726 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005727}
5728
5729static void cpu_clock_event_stop(struct perf_event *event, int flags)
5730{
5731 perf_swevent_cancel_hrtimer(event);
5732 cpu_clock_event_update(event);
5733}
5734
5735static int cpu_clock_event_add(struct perf_event *event, int flags)
5736{
5737 if (flags & PERF_EF_START)
5738 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005739
5740 return 0;
5741}
5742
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005743static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005744{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005745 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005746}
5747
5748static void cpu_clock_event_read(struct perf_event *event)
5749{
5750 cpu_clock_event_update(event);
5751}
5752
5753static int cpu_clock_event_init(struct perf_event *event)
5754{
5755 if (event->attr.type != PERF_TYPE_SOFTWARE)
5756 return -ENOENT;
5757
5758 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
5759 return -ENOENT;
5760
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005761 perf_swevent_init_hrtimer(event);
5762
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005763 return 0;
5764}
5765
5766static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005767 .task_ctx_nr = perf_sw_context,
5768
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005769 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005770 .add = cpu_clock_event_add,
5771 .del = cpu_clock_event_del,
5772 .start = cpu_clock_event_start,
5773 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005774 .read = cpu_clock_event_read,
5775};
5776
5777/*
5778 * Software event: task time clock
5779 */
5780
5781static void task_clock_event_update(struct perf_event *event, u64 now)
5782{
5783 u64 prev;
5784 s64 delta;
5785
5786 prev = local64_xchg(&event->hw.prev_count, now);
5787 delta = now - prev;
5788 local64_add(delta, &event->count);
5789}
5790
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005791static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005792{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005793 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005794 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005795}
5796
5797static void task_clock_event_stop(struct perf_event *event, int flags)
5798{
5799 perf_swevent_cancel_hrtimer(event);
5800 task_clock_event_update(event, event->ctx->time);
5801}
5802
5803static int task_clock_event_add(struct perf_event *event, int flags)
5804{
5805 if (flags & PERF_EF_START)
5806 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005807
5808 return 0;
5809}
5810
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005811static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005812{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005813 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005814}
5815
5816static void task_clock_event_read(struct perf_event *event)
5817{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01005818 u64 now = perf_clock();
5819 u64 delta = now - event->ctx->timestamp;
5820 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005821
5822 task_clock_event_update(event, time);
5823}
5824
5825static int task_clock_event_init(struct perf_event *event)
5826{
5827 if (event->attr.type != PERF_TYPE_SOFTWARE)
5828 return -ENOENT;
5829
5830 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
5831 return -ENOENT;
5832
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005833 perf_swevent_init_hrtimer(event);
5834
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005835 return 0;
5836}
5837
5838static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005839 .task_ctx_nr = perf_sw_context,
5840
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005841 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005842 .add = task_clock_event_add,
5843 .del = task_clock_event_del,
5844 .start = task_clock_event_start,
5845 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005846 .read = task_clock_event_read,
5847};
5848
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005849static void perf_pmu_nop_void(struct pmu *pmu)
5850{
5851}
5852
5853static int perf_pmu_nop_int(struct pmu *pmu)
5854{
5855 return 0;
5856}
5857
5858static void perf_pmu_start_txn(struct pmu *pmu)
5859{
5860 perf_pmu_disable(pmu);
5861}
5862
5863static int perf_pmu_commit_txn(struct pmu *pmu)
5864{
5865 perf_pmu_enable(pmu);
5866 return 0;
5867}
5868
5869static void perf_pmu_cancel_txn(struct pmu *pmu)
5870{
5871 perf_pmu_enable(pmu);
5872}
5873
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005874/*
5875 * Ensures all contexts with the same task_ctx_nr have the same
5876 * pmu_cpu_context too.
5877 */
5878static void *find_pmu_context(int ctxn)
5879{
5880 struct pmu *pmu;
5881
5882 if (ctxn < 0)
5883 return NULL;
5884
5885 list_for_each_entry(pmu, &pmus, entry) {
5886 if (pmu->task_ctx_nr == ctxn)
5887 return pmu->pmu_cpu_context;
5888 }
5889
5890 return NULL;
5891}
5892
Peter Zijlstra51676952010-12-07 14:18:20 +01005893static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005894{
Peter Zijlstra51676952010-12-07 14:18:20 +01005895 int cpu;
5896
5897 for_each_possible_cpu(cpu) {
5898 struct perf_cpu_context *cpuctx;
5899
5900 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
5901
5902 if (cpuctx->active_pmu == old_pmu)
5903 cpuctx->active_pmu = pmu;
5904 }
5905}
5906
5907static void free_pmu_context(struct pmu *pmu)
5908{
5909 struct pmu *i;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005910
5911 mutex_lock(&pmus_lock);
5912 /*
5913 * Like a real lame refcount.
5914 */
Peter Zijlstra51676952010-12-07 14:18:20 +01005915 list_for_each_entry(i, &pmus, entry) {
5916 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
5917 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005918 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01005919 }
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005920 }
5921
Peter Zijlstra51676952010-12-07 14:18:20 +01005922 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005923out:
5924 mutex_unlock(&pmus_lock);
5925}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005926static struct idr pmu_idr;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005927
Peter Zijlstraabe43402010-11-17 23:17:37 +01005928static ssize_t
5929type_show(struct device *dev, struct device_attribute *attr, char *page)
5930{
5931 struct pmu *pmu = dev_get_drvdata(dev);
5932
5933 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
5934}
5935
5936static struct device_attribute pmu_dev_attrs[] = {
5937 __ATTR_RO(type),
5938 __ATTR_NULL,
5939};
5940
5941static int pmu_bus_running;
5942static struct bus_type pmu_bus = {
5943 .name = "event_source",
5944 .dev_attrs = pmu_dev_attrs,
5945};
5946
5947static void pmu_dev_release(struct device *dev)
5948{
5949 kfree(dev);
5950}
5951
5952static int pmu_dev_alloc(struct pmu *pmu)
5953{
5954 int ret = -ENOMEM;
5955
5956 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
5957 if (!pmu->dev)
5958 goto out;
5959
5960 device_initialize(pmu->dev);
5961 ret = dev_set_name(pmu->dev, "%s", pmu->name);
5962 if (ret)
5963 goto free_dev;
5964
5965 dev_set_drvdata(pmu->dev, pmu);
5966 pmu->dev->bus = &pmu_bus;
5967 pmu->dev->release = pmu_dev_release;
5968 ret = device_add(pmu->dev);
5969 if (ret)
5970 goto free_dev;
5971
5972out:
5973 return ret;
5974
5975free_dev:
5976 put_device(pmu->dev);
5977 goto out;
5978}
5979
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01005980static struct lock_class_key cpuctx_mutex;
5981
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005982int perf_pmu_register(struct pmu *pmu, char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005983{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005984 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005985
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005986 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005987 ret = -ENOMEM;
5988 pmu->pmu_disable_count = alloc_percpu(int);
5989 if (!pmu->pmu_disable_count)
5990 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005991
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005992 pmu->type = -1;
5993 if (!name)
5994 goto skip_type;
5995 pmu->name = name;
5996
5997 if (type < 0) {
5998 int err = idr_pre_get(&pmu_idr, GFP_KERNEL);
5999 if (!err)
6000 goto free_pdc;
6001
6002 err = idr_get_new_above(&pmu_idr, pmu, PERF_TYPE_MAX, &type);
6003 if (err) {
6004 ret = err;
6005 goto free_pdc;
6006 }
6007 }
6008 pmu->type = type;
6009
Peter Zijlstraabe43402010-11-17 23:17:37 +01006010 if (pmu_bus_running) {
6011 ret = pmu_dev_alloc(pmu);
6012 if (ret)
6013 goto free_idr;
6014 }
6015
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006016skip_type:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006017 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
6018 if (pmu->pmu_cpu_context)
6019 goto got_cpu_context;
6020
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006021 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
6022 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01006023 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006024
6025 for_each_possible_cpu(cpu) {
6026 struct perf_cpu_context *cpuctx;
6027
6028 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02006029 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006030 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006031 cpuctx->ctx.type = cpu_context;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006032 cpuctx->ctx.pmu = pmu;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006033 cpuctx->jiffies_interval = 1;
6034 INIT_LIST_HEAD(&cpuctx->rotation_list);
Peter Zijlstra51676952010-12-07 14:18:20 +01006035 cpuctx->active_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006036 }
6037
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006038got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006039 if (!pmu->start_txn) {
6040 if (pmu->pmu_enable) {
6041 /*
6042 * If we have pmu_enable/pmu_disable calls, install
6043 * transaction stubs that use that to try and batch
6044 * hardware accesses.
6045 */
6046 pmu->start_txn = perf_pmu_start_txn;
6047 pmu->commit_txn = perf_pmu_commit_txn;
6048 pmu->cancel_txn = perf_pmu_cancel_txn;
6049 } else {
6050 pmu->start_txn = perf_pmu_nop_void;
6051 pmu->commit_txn = perf_pmu_nop_int;
6052 pmu->cancel_txn = perf_pmu_nop_void;
6053 }
6054 }
6055
6056 if (!pmu->pmu_enable) {
6057 pmu->pmu_enable = perf_pmu_nop_void;
6058 pmu->pmu_disable = perf_pmu_nop_void;
6059 }
6060
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006061 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006062 ret = 0;
6063unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006064 mutex_unlock(&pmus_lock);
6065
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006066 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006067
Peter Zijlstraabe43402010-11-17 23:17:37 +01006068free_dev:
6069 device_del(pmu->dev);
6070 put_device(pmu->dev);
6071
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006072free_idr:
6073 if (pmu->type >= PERF_TYPE_MAX)
6074 idr_remove(&pmu_idr, pmu->type);
6075
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006076free_pdc:
6077 free_percpu(pmu->pmu_disable_count);
6078 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006079}
6080
6081void perf_pmu_unregister(struct pmu *pmu)
6082{
6083 mutex_lock(&pmus_lock);
6084 list_del_rcu(&pmu->entry);
6085 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006086
6087 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02006088 * We dereference the pmu list under both SRCU and regular RCU, so
6089 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006090 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006091 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02006092 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006093
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006094 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006095 if (pmu->type >= PERF_TYPE_MAX)
6096 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006097 device_del(pmu->dev);
6098 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01006099 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006100}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006101
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006102struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006103{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006104 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006105 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08006106 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006107
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006108 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006109
6110 rcu_read_lock();
6111 pmu = idr_find(&pmu_idr, event->attr.type);
6112 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08006113 if (pmu) {
6114 ret = pmu->event_init(event);
6115 if (ret)
6116 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006117 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08006118 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006119
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006120 list_for_each_entry_rcu(pmu, &pmus, entry) {
Lin Ming940c5b22011-02-27 21:13:31 +08006121 ret = pmu->event_init(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006122 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006123 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006124
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006125 if (ret != -ENOENT) {
6126 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006127 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006128 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006129 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006130 pmu = ERR_PTR(-ENOENT);
6131unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006132 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006133
6134 return pmu;
6135}
6136
6137/*
6138 * Allocate and initialize a event structure
6139 */
6140static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006141perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006142 struct task_struct *task,
6143 struct perf_event *group_leader,
6144 struct perf_event *parent_event,
6145 perf_overflow_handler_t overflow_handler)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006146{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006147 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006148 struct perf_event *event;
6149 struct hw_perf_event *hwc;
6150 long err;
6151
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006152 if ((unsigned)cpu >= nr_cpu_ids) {
6153 if (!task || cpu != -1)
6154 return ERR_PTR(-EINVAL);
6155 }
6156
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006157 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006158 if (!event)
6159 return ERR_PTR(-ENOMEM);
6160
6161 /*
6162 * Single events are their own group leaders, with an
6163 * empty sibling list:
6164 */
6165 if (!group_leader)
6166 group_leader = event;
6167
6168 mutex_init(&event->child_mutex);
6169 INIT_LIST_HEAD(&event->child_list);
6170
6171 INIT_LIST_HEAD(&event->group_entry);
6172 INIT_LIST_HEAD(&event->event_entry);
6173 INIT_LIST_HEAD(&event->sibling_list);
6174 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006175 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006176
6177 mutex_init(&event->mmap_mutex);
6178
6179 event->cpu = cpu;
6180 event->attr = *attr;
6181 event->group_leader = group_leader;
6182 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006183 event->oncpu = -1;
6184
6185 event->parent = parent_event;
6186
6187 event->ns = get_pid_ns(current->nsproxy->pid_ns);
6188 event->id = atomic64_inc_return(&perf_event_id);
6189
6190 event->state = PERF_EVENT_STATE_INACTIVE;
6191
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006192 if (task) {
6193 event->attach_state = PERF_ATTACH_TASK;
6194#ifdef CONFIG_HAVE_HW_BREAKPOINT
6195 /*
6196 * hw_breakpoint is a bit difficult here..
6197 */
6198 if (attr->type == PERF_TYPE_BREAKPOINT)
6199 event->hw.bp_target = task;
6200#endif
6201 }
6202
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006203 if (!overflow_handler && parent_event)
6204 overflow_handler = parent_event->overflow_handler;
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006205
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006206 event->overflow_handler = overflow_handler;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02006207
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006208 if (attr->disabled)
6209 event->state = PERF_EVENT_STATE_OFF;
6210
6211 pmu = NULL;
6212
6213 hwc = &event->hw;
6214 hwc->sample_period = attr->sample_period;
6215 if (attr->freq && attr->sample_freq)
6216 hwc->sample_period = 1;
6217 hwc->last_period = hwc->sample_period;
6218
Peter Zijlstrae7850592010-05-21 14:43:08 +02006219 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006220
6221 /*
6222 * we currently do not support PERF_FORMAT_GROUP on inherited events
6223 */
6224 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
6225 goto done;
6226
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006227 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006228
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006229done:
6230 err = 0;
6231 if (!pmu)
6232 err = -EINVAL;
6233 else if (IS_ERR(pmu))
6234 err = PTR_ERR(pmu);
6235
6236 if (err) {
6237 if (event->ns)
6238 put_pid_ns(event->ns);
6239 kfree(event);
6240 return ERR_PTR(err);
6241 }
6242
6243 event->pmu = pmu;
6244
6245 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02006246 if (event->attach_state & PERF_ATTACH_TASK)
Stephane Eraniane5d13672011-02-14 11:20:01 +02006247 jump_label_inc(&perf_sched_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01006248 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006249 atomic_inc(&nr_mmap_events);
6250 if (event->attr.comm)
6251 atomic_inc(&nr_comm_events);
6252 if (event->attr.task)
6253 atomic_inc(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006254 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
6255 err = get_callchain_buffers();
6256 if (err) {
6257 free_event(event);
6258 return ERR_PTR(err);
6259 }
6260 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006261 }
6262
6263 return event;
6264}
6265
6266static int perf_copy_attr(struct perf_event_attr __user *uattr,
6267 struct perf_event_attr *attr)
6268{
6269 u32 size;
6270 int ret;
6271
6272 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
6273 return -EFAULT;
6274
6275 /*
6276 * zero the full structure, so that a short copy will be nice.
6277 */
6278 memset(attr, 0, sizeof(*attr));
6279
6280 ret = get_user(size, &uattr->size);
6281 if (ret)
6282 return ret;
6283
6284 if (size > PAGE_SIZE) /* silly large */
6285 goto err_size;
6286
6287 if (!size) /* abi compat */
6288 size = PERF_ATTR_SIZE_VER0;
6289
6290 if (size < PERF_ATTR_SIZE_VER0)
6291 goto err_size;
6292
6293 /*
6294 * If we're handed a bigger struct than we know of,
6295 * ensure all the unknown bits are 0 - i.e. new
6296 * user-space does not rely on any kernel feature
6297 * extensions we dont know about yet.
6298 */
6299 if (size > sizeof(*attr)) {
6300 unsigned char __user *addr;
6301 unsigned char __user *end;
6302 unsigned char val;
6303
6304 addr = (void __user *)uattr + sizeof(*attr);
6305 end = (void __user *)uattr + size;
6306
6307 for (; addr < end; addr++) {
6308 ret = get_user(val, addr);
6309 if (ret)
6310 return ret;
6311 if (val)
6312 goto err_size;
6313 }
6314 size = sizeof(*attr);
6315 }
6316
6317 ret = copy_from_user(attr, uattr, size);
6318 if (ret)
6319 return -EFAULT;
6320
6321 /*
6322 * If the type exists, the corresponding creation will verify
6323 * the attr->config.
6324 */
6325 if (attr->type >= PERF_TYPE_MAX)
6326 return -EINVAL;
6327
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05306328 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006329 return -EINVAL;
6330
6331 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
6332 return -EINVAL;
6333
6334 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
6335 return -EINVAL;
6336
6337out:
6338 return ret;
6339
6340err_size:
6341 put_user(sizeof(*attr), &uattr->size);
6342 ret = -E2BIG;
6343 goto out;
6344}
6345
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006346static int
6347perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006348{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02006349 struct perf_buffer *buffer = NULL, *old_buffer = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006350 int ret = -EINVAL;
6351
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006352 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006353 goto set;
6354
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006355 /* don't allow circular references */
6356 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006357 goto out;
6358
Peter Zijlstra0f139302010-05-20 14:35:15 +02006359 /*
6360 * Don't allow cross-cpu buffers
6361 */
6362 if (output_event->cpu != event->cpu)
6363 goto out;
6364
6365 /*
6366 * If its not a per-cpu buffer, it must be the same task.
6367 */
6368 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
6369 goto out;
6370
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006371set:
6372 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006373 /* Can't redirect output if we've got an active mmap() */
6374 if (atomic_read(&event->mmap_count))
6375 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006376
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006377 if (output_event) {
6378 /* get the buffer we want to redirect to */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02006379 buffer = perf_buffer_get(output_event);
6380 if (!buffer)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006381 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006382 }
6383
Peter Zijlstraca5135e2010-05-28 19:33:23 +02006384 old_buffer = event->buffer;
6385 rcu_assign_pointer(event->buffer, buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006386 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006387unlock:
6388 mutex_unlock(&event->mmap_mutex);
6389
Peter Zijlstraca5135e2010-05-28 19:33:23 +02006390 if (old_buffer)
6391 perf_buffer_put(old_buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006392out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006393 return ret;
6394}
6395
6396/**
6397 * sys_perf_event_open - open a performance event, associate it to a task/cpu
6398 *
6399 * @attr_uptr: event_id type attributes for monitoring/sampling
6400 * @pid: target pid
6401 * @cpu: target cpu
6402 * @group_fd: group leader event fd
6403 */
6404SYSCALL_DEFINE5(perf_event_open,
6405 struct perf_event_attr __user *, attr_uptr,
6406 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
6407{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006408 struct perf_event *group_leader = NULL, *output_event = NULL;
6409 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006410 struct perf_event_attr attr;
6411 struct perf_event_context *ctx;
6412 struct file *event_file = NULL;
6413 struct file *group_file = NULL;
Matt Helsley38a81da2010-09-13 13:01:20 -07006414 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006415 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04006416 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006417 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006418 int fput_needed = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006419 int err;
6420
6421 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02006422 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006423 return -EINVAL;
6424
6425 err = perf_copy_attr(attr_uptr, &attr);
6426 if (err)
6427 return err;
6428
6429 if (!attr.exclude_kernel) {
6430 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6431 return -EACCES;
6432 }
6433
6434 if (attr.freq) {
6435 if (attr.sample_freq > sysctl_perf_event_sample_rate)
6436 return -EINVAL;
6437 }
6438
Stephane Eraniane5d13672011-02-14 11:20:01 +02006439 /*
6440 * In cgroup mode, the pid argument is used to pass the fd
6441 * opened to the cgroup directory in cgroupfs. The cpu argument
6442 * designates the cpu on which to monitor threads from that
6443 * cgroup.
6444 */
6445 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
6446 return -EINVAL;
6447
Al Viroea635c62010-05-26 17:40:29 -04006448 event_fd = get_unused_fd_flags(O_RDWR);
6449 if (event_fd < 0)
6450 return event_fd;
6451
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006452 if (group_fd != -1) {
6453 group_leader = perf_fget_light(group_fd, &fput_needed);
6454 if (IS_ERR(group_leader)) {
6455 err = PTR_ERR(group_leader);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006456 goto err_fd;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006457 }
6458 group_file = group_leader->filp;
6459 if (flags & PERF_FLAG_FD_OUTPUT)
6460 output_event = group_leader;
6461 if (flags & PERF_FLAG_FD_NO_GROUP)
6462 group_leader = NULL;
6463 }
6464
Stephane Eraniane5d13672011-02-14 11:20:01 +02006465 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006466 task = find_lively_task_by_vpid(pid);
6467 if (IS_ERR(task)) {
6468 err = PTR_ERR(task);
6469 goto err_group_fd;
6470 }
6471 }
6472
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006473 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL, NULL);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006474 if (IS_ERR(event)) {
6475 err = PTR_ERR(event);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006476 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006477 }
6478
Stephane Eraniane5d13672011-02-14 11:20:01 +02006479 if (flags & PERF_FLAG_PID_CGROUP) {
6480 err = perf_cgroup_connect(pid, event, &attr, group_leader);
6481 if (err)
6482 goto err_alloc;
Peter Zijlstra08309372011-03-03 11:31:20 +01006483 /*
6484 * one more event:
6485 * - that has cgroup constraint on event->cpu
6486 * - that may need work on context switch
6487 */
6488 atomic_inc(&per_cpu(perf_cgroup_events, event->cpu));
6489 jump_label_inc(&perf_sched_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +02006490 }
6491
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006492 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006493 * Special case software events and allow them to be part of
6494 * any hardware group.
6495 */
6496 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006497
6498 if (group_leader &&
6499 (is_software_event(event) != is_software_event(group_leader))) {
6500 if (is_software_event(event)) {
6501 /*
6502 * If event and group_leader are not both a software
6503 * event, and event is, then group leader is not.
6504 *
6505 * Allow the addition of software events to !software
6506 * groups, this is safe because software events never
6507 * fail to schedule.
6508 */
6509 pmu = group_leader->pmu;
6510 } else if (is_software_event(group_leader) &&
6511 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
6512 /*
6513 * In case the group is a pure software group, and we
6514 * try to add a hardware event, move the whole group to
6515 * the hardware context.
6516 */
6517 move_group = 1;
6518 }
6519 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006520
6521 /*
6522 * Get the target context (task or percpu):
6523 */
Matt Helsley38a81da2010-09-13 13:01:20 -07006524 ctx = find_get_context(pmu, task, cpu);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006525 if (IS_ERR(ctx)) {
6526 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006527 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006528 }
6529
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02006530 if (task) {
6531 put_task_struct(task);
6532 task = NULL;
6533 }
6534
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006535 /*
6536 * Look up the group leader (we will attach this event to it):
6537 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006538 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006539 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006540
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006541 /*
6542 * Do not allow a recursive hierarchy (this new sibling
6543 * becoming part of another group-sibling):
6544 */
6545 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006546 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006547 /*
6548 * Do not allow to attach to a group in a different
6549 * task or CPU context:
6550 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006551 if (move_group) {
6552 if (group_leader->ctx->type != ctx->type)
6553 goto err_context;
6554 } else {
6555 if (group_leader->ctx != ctx)
6556 goto err_context;
6557 }
6558
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006559 /*
6560 * Only a group leader can be exclusive or pinned
6561 */
6562 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006563 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006564 }
6565
6566 if (output_event) {
6567 err = perf_event_set_output(event, output_event);
6568 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006569 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006570 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006571
Al Viroea635c62010-05-26 17:40:29 -04006572 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
6573 if (IS_ERR(event_file)) {
6574 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006575 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04006576 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006577
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006578 if (move_group) {
6579 struct perf_event_context *gctx = group_leader->ctx;
6580
6581 mutex_lock(&gctx->mutex);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006582 perf_remove_from_context(group_leader);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006583 list_for_each_entry(sibling, &group_leader->sibling_list,
6584 group_entry) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006585 perf_remove_from_context(sibling);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006586 put_ctx(gctx);
6587 }
6588 mutex_unlock(&gctx->mutex);
6589 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006590 }
6591
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006592 event->filp = event_file;
6593 WARN_ON_ONCE(ctx->parent_ctx);
6594 mutex_lock(&ctx->mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006595
6596 if (move_group) {
6597 perf_install_in_context(ctx, group_leader, cpu);
6598 get_ctx(ctx);
6599 list_for_each_entry(sibling, &group_leader->sibling_list,
6600 group_entry) {
6601 perf_install_in_context(ctx, sibling, cpu);
6602 get_ctx(ctx);
6603 }
6604 }
6605
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006606 perf_install_in_context(ctx, event, cpu);
6607 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006608 perf_unpin_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006609 mutex_unlock(&ctx->mutex);
6610
6611 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01006612
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006613 mutex_lock(&current->perf_event_mutex);
6614 list_add_tail(&event->owner_entry, &current->perf_event_list);
6615 mutex_unlock(&current->perf_event_mutex);
6616
Peter Zijlstra8a495422010-05-27 15:47:49 +02006617 /*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006618 * Precalculate sample_data sizes
6619 */
6620 perf_event__header_size(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006621 perf_event__id_header_size(event);
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006622
6623 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02006624 * Drop the reference on the group_event after placing the
6625 * new event on the sibling_list. This ensures destruction
6626 * of the group leader will find the pointer to itself in
6627 * perf_group_detach().
6628 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006629 fput_light(group_file, fput_needed);
Al Viroea635c62010-05-26 17:40:29 -04006630 fd_install(event_fd, event_file);
6631 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006632
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006633err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006634 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04006635 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006636err_alloc:
6637 free_event(event);
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02006638err_task:
6639 if (task)
6640 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006641err_group_fd:
6642 fput_light(group_file, fput_needed);
Al Viroea635c62010-05-26 17:40:29 -04006643err_fd:
6644 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006645 return err;
6646}
6647
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006648/**
6649 * perf_event_create_kernel_counter
6650 *
6651 * @attr: attributes of the counter to create
6652 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07006653 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006654 */
6655struct perf_event *
6656perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07006657 struct task_struct *task,
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006658 perf_overflow_handler_t overflow_handler)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006659{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006660 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006661 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006662 int err;
6663
6664 /*
6665 * Get the target context (task or percpu):
6666 */
6667
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006668 event = perf_event_alloc(attr, cpu, task, NULL, NULL, overflow_handler);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006669 if (IS_ERR(event)) {
6670 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006671 goto err;
6672 }
6673
Matt Helsley38a81da2010-09-13 13:01:20 -07006674 ctx = find_get_context(event->pmu, task, cpu);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006675 if (IS_ERR(ctx)) {
6676 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006677 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006678 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006679
6680 event->filp = NULL;
6681 WARN_ON_ONCE(ctx->parent_ctx);
6682 mutex_lock(&ctx->mutex);
6683 perf_install_in_context(ctx, event, cpu);
6684 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006685 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006686 mutex_unlock(&ctx->mutex);
6687
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006688 return event;
6689
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006690err_free:
6691 free_event(event);
6692err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006693 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006694}
6695EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
6696
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006697static void sync_child_event(struct perf_event *child_event,
6698 struct task_struct *child)
6699{
6700 struct perf_event *parent_event = child_event->parent;
6701 u64 child_val;
6702
6703 if (child_event->attr.inherit_stat)
6704 perf_event_read_event(child_event, child);
6705
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006706 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006707
6708 /*
6709 * Add back the child's count to the parent's count:
6710 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02006711 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006712 atomic64_add(child_event->total_time_enabled,
6713 &parent_event->child_total_time_enabled);
6714 atomic64_add(child_event->total_time_running,
6715 &parent_event->child_total_time_running);
6716
6717 /*
6718 * Remove this event from the parent's list
6719 */
6720 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
6721 mutex_lock(&parent_event->child_mutex);
6722 list_del_init(&child_event->child_list);
6723 mutex_unlock(&parent_event->child_mutex);
6724
6725 /*
6726 * Release the parent event, if this was the last
6727 * reference to it.
6728 */
6729 fput(parent_event->filp);
6730}
6731
6732static void
6733__perf_event_exit_task(struct perf_event *child_event,
6734 struct perf_event_context *child_ctx,
6735 struct task_struct *child)
6736{
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006737 if (child_event->parent) {
6738 raw_spin_lock_irq(&child_ctx->lock);
6739 perf_group_detach(child_event);
6740 raw_spin_unlock_irq(&child_ctx->lock);
6741 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006742
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006743 perf_remove_from_context(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006744
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006745 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006746 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006747 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006748 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006749 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006750 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006751 sync_child_event(child_event, child);
6752 free_event(child_event);
6753 }
6754}
6755
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006756static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006757{
6758 struct perf_event *child_event, *tmp;
6759 struct perf_event_context *child_ctx;
6760 unsigned long flags;
6761
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006762 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006763 perf_event_task(child, NULL, 0);
6764 return;
6765 }
6766
6767 local_irq_save(flags);
6768 /*
6769 * We can't reschedule here because interrupts are disabled,
6770 * and either child is current or it is a task that can't be
6771 * scheduled, so we are now safe from rescheduling changing
6772 * our context.
6773 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01006774 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02006775 task_ctx_sched_out(child_ctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006776
6777 /*
6778 * Take the context lock here so that if find_get_context is
6779 * reading child->perf_event_ctxp, we wait until it has
6780 * incremented the context's refcount before we do put_ctx below.
6781 */
Thomas Gleixnere625cce2009-11-17 18:02:06 +01006782 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006783 child->perf_event_ctxp[ctxn] = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006784 /*
6785 * If this context is a clone; unclone it so it can't get
6786 * swapped to another process while we're removing all
6787 * the events from it.
6788 */
6789 unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01006790 update_context_time(child_ctx);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01006791 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006792
6793 /*
6794 * Report the task dead after unscheduling the events so that we
6795 * won't get any samples after PERF_RECORD_EXIT. We can however still
6796 * get a few PERF_RECORD_READ events.
6797 */
6798 perf_event_task(child, child_ctx, 0);
6799
6800 /*
6801 * We can recurse on the same lock type through:
6802 *
6803 * __perf_event_exit_task()
6804 * sync_child_event()
6805 * fput(parent_event->filp)
6806 * perf_release()
6807 * mutex_lock(&ctx->mutex)
6808 *
6809 * But since its the parent context it won't be the same instance.
6810 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02006811 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006812
6813again:
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006814 list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
6815 group_entry)
6816 __perf_event_exit_task(child_event, child_ctx, child);
6817
6818 list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006819 group_entry)
6820 __perf_event_exit_task(child_event, child_ctx, child);
6821
6822 /*
6823 * If the last event was a group event, it will have appended all
6824 * its siblings to the list, but we obtained 'tmp' before that which
6825 * will still point to the list head terminating the iteration.
6826 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006827 if (!list_empty(&child_ctx->pinned_groups) ||
6828 !list_empty(&child_ctx->flexible_groups))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006829 goto again;
6830
6831 mutex_unlock(&child_ctx->mutex);
6832
6833 put_ctx(child_ctx);
6834}
6835
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006836/*
6837 * When a child task exits, feed back event values to parent events.
6838 */
6839void perf_event_exit_task(struct task_struct *child)
6840{
Peter Zijlstra88821352010-11-09 19:01:43 +01006841 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006842 int ctxn;
6843
Peter Zijlstra88821352010-11-09 19:01:43 +01006844 mutex_lock(&child->perf_event_mutex);
6845 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
6846 owner_entry) {
6847 list_del_init(&event->owner_entry);
6848
6849 /*
6850 * Ensure the list deletion is visible before we clear
6851 * the owner, closes a race against perf_release() where
6852 * we need to serialize on the owner->perf_event_mutex.
6853 */
6854 smp_wmb();
6855 event->owner = NULL;
6856 }
6857 mutex_unlock(&child->perf_event_mutex);
6858
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006859 for_each_task_context_nr(ctxn)
6860 perf_event_exit_task_context(child, ctxn);
6861}
6862
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006863static void perf_free_event(struct perf_event *event,
6864 struct perf_event_context *ctx)
6865{
6866 struct perf_event *parent = event->parent;
6867
6868 if (WARN_ON_ONCE(!parent))
6869 return;
6870
6871 mutex_lock(&parent->child_mutex);
6872 list_del_init(&event->child_list);
6873 mutex_unlock(&parent->child_mutex);
6874
6875 fput(parent->filp);
6876
Peter Zijlstra8a495422010-05-27 15:47:49 +02006877 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006878 list_del_event(event, ctx);
6879 free_event(event);
6880}
6881
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006882/*
6883 * free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006884 * perf_event_init_task below, used by fork() in case of fail.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006885 */
6886void perf_event_free_task(struct task_struct *task)
6887{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006888 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006889 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006890 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006891
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006892 for_each_task_context_nr(ctxn) {
6893 ctx = task->perf_event_ctxp[ctxn];
6894 if (!ctx)
6895 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006896
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006897 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006898again:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006899 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
6900 group_entry)
6901 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006902
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006903 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
6904 group_entry)
6905 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006906
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006907 if (!list_empty(&ctx->pinned_groups) ||
6908 !list_empty(&ctx->flexible_groups))
6909 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006910
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006911 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006912
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006913 put_ctx(ctx);
6914 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006915}
6916
Peter Zijlstra4e231c72010-09-09 21:01:59 +02006917void perf_event_delayed_put(struct task_struct *task)
6918{
6919 int ctxn;
6920
6921 for_each_task_context_nr(ctxn)
6922 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
6923}
6924
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006925/*
6926 * inherit a event from parent task to child task:
6927 */
6928static struct perf_event *
6929inherit_event(struct perf_event *parent_event,
6930 struct task_struct *parent,
6931 struct perf_event_context *parent_ctx,
6932 struct task_struct *child,
6933 struct perf_event *group_leader,
6934 struct perf_event_context *child_ctx)
6935{
6936 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02006937 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006938
6939 /*
6940 * Instead of creating recursive hierarchies of events,
6941 * we link inherited events back to the original parent,
6942 * which has a filp for sure, which we use as the reference
6943 * count:
6944 */
6945 if (parent_event->parent)
6946 parent_event = parent_event->parent;
6947
6948 child_event = perf_event_alloc(&parent_event->attr,
6949 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006950 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006951 group_leader, parent_event,
6952 NULL);
6953 if (IS_ERR(child_event))
6954 return child_event;
6955 get_ctx(child_ctx);
6956
6957 /*
6958 * Make the child state follow the state of the parent event,
6959 * not its attr.disabled bit. We hold the parent's mutex,
6960 * so we won't race with perf_event_{en, dis}able_family.
6961 */
6962 if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
6963 child_event->state = PERF_EVENT_STATE_INACTIVE;
6964 else
6965 child_event->state = PERF_EVENT_STATE_OFF;
6966
6967 if (parent_event->attr.freq) {
6968 u64 sample_period = parent_event->hw.sample_period;
6969 struct hw_perf_event *hwc = &child_event->hw;
6970
6971 hwc->sample_period = sample_period;
6972 hwc->last_period = sample_period;
6973
6974 local64_set(&hwc->period_left, sample_period);
6975 }
6976
6977 child_event->ctx = child_ctx;
6978 child_event->overflow_handler = parent_event->overflow_handler;
6979
6980 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02006981 * Precalculate sample_data sizes
6982 */
6983 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006984 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02006985
6986 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006987 * Link it up in the child's context:
6988 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02006989 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006990 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02006991 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006992
6993 /*
6994 * Get a reference to the parent filp - we will fput it
6995 * when the child event exits. This is safe to do because
6996 * we are in the parent and we know that the filp still
6997 * exists and has a nonzero count:
6998 */
6999 atomic_long_inc(&parent_event->filp->f_count);
7000
7001 /*
7002 * Link this into the parent event's child list
7003 */
7004 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7005 mutex_lock(&parent_event->child_mutex);
7006 list_add_tail(&child_event->child_list, &parent_event->child_list);
7007 mutex_unlock(&parent_event->child_mutex);
7008
7009 return child_event;
7010}
7011
7012static int inherit_group(struct perf_event *parent_event,
7013 struct task_struct *parent,
7014 struct perf_event_context *parent_ctx,
7015 struct task_struct *child,
7016 struct perf_event_context *child_ctx)
7017{
7018 struct perf_event *leader;
7019 struct perf_event *sub;
7020 struct perf_event *child_ctr;
7021
7022 leader = inherit_event(parent_event, parent, parent_ctx,
7023 child, NULL, child_ctx);
7024 if (IS_ERR(leader))
7025 return PTR_ERR(leader);
7026 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
7027 child_ctr = inherit_event(sub, parent, parent_ctx,
7028 child, leader, child_ctx);
7029 if (IS_ERR(child_ctr))
7030 return PTR_ERR(child_ctr);
7031 }
7032 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007033}
7034
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007035static int
7036inherit_task_group(struct perf_event *event, struct task_struct *parent,
7037 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007038 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007039 int *inherited_all)
7040{
7041 int ret;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007042 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007043
7044 if (!event->attr.inherit) {
7045 *inherited_all = 0;
7046 return 0;
7047 }
7048
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007049 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007050 if (!child_ctx) {
7051 /*
7052 * This is executed from the parent task context, so
7053 * inherit events that have been marked for cloning.
7054 * First allocate and initialize a context for the
7055 * child.
7056 */
7057
Peter Zijlstraeb184472010-09-07 15:55:13 +02007058 child_ctx = alloc_perf_context(event->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007059 if (!child_ctx)
7060 return -ENOMEM;
7061
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007062 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007063 }
7064
7065 ret = inherit_group(event, parent, parent_ctx,
7066 child, child_ctx);
7067
7068 if (ret)
7069 *inherited_all = 0;
7070
7071 return ret;
7072}
7073
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007074/*
7075 * Initialize the perf_event context in task_struct
7076 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007077int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007078{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007079 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007080 struct perf_event_context *cloned_ctx;
7081 struct perf_event *event;
7082 struct task_struct *parent = current;
7083 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007084 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007085 int ret = 0;
7086
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007087 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007088 return 0;
7089
7090 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007091 * If the parent's context is a clone, pin it so it won't get
7092 * swapped under us.
7093 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007094 parent_ctx = perf_pin_task_context(parent, ctxn);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007095
7096 /*
7097 * No need to check if parent_ctx != NULL here; since we saw
7098 * it non-NULL earlier, the only reason for it to become NULL
7099 * is if we exit, and since we're currently in the middle of
7100 * a fork we can't be exiting at the same time.
7101 */
7102
7103 /*
7104 * Lock the parent list. No need to lock the child - not PID
7105 * hashed yet and not running, so nobody can access it.
7106 */
7107 mutex_lock(&parent_ctx->mutex);
7108
7109 /*
7110 * We dont have to disable NMIs - we are only looking at
7111 * the list, not manipulating it:
7112 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007113 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007114 ret = inherit_task_group(event, parent, parent_ctx,
7115 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007116 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007117 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007118 }
7119
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007120 /*
7121 * We can't hold ctx->lock when iterating the ->flexible_group list due
7122 * to allocations, but we need to prevent rotation because
7123 * rotate_ctx() will change the list from interrupt context.
7124 */
7125 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7126 parent_ctx->rotate_disable = 1;
7127 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
7128
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007129 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007130 ret = inherit_task_group(event, parent, parent_ctx,
7131 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007132 if (ret)
7133 break;
7134 }
7135
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007136 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7137 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007138
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007139 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007140
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01007141 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007142 /*
7143 * Mark the child context as a clone of the parent
7144 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007145 *
7146 * Note that if the parent is a clone, the holding of
7147 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007148 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007149 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007150 if (cloned_ctx) {
7151 child_ctx->parent_ctx = cloned_ctx;
7152 child_ctx->parent_gen = parent_ctx->parent_gen;
7153 } else {
7154 child_ctx->parent_ctx = parent_ctx;
7155 child_ctx->parent_gen = parent_ctx->generation;
7156 }
7157 get_ctx(child_ctx->parent_ctx);
7158 }
7159
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007160 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007161 mutex_unlock(&parent_ctx->mutex);
7162
7163 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007164 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007165
7166 return ret;
7167}
7168
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007169/*
7170 * Initialize the perf_event context in task_struct
7171 */
7172int perf_event_init_task(struct task_struct *child)
7173{
7174 int ctxn, ret;
7175
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01007176 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
7177 mutex_init(&child->perf_event_mutex);
7178 INIT_LIST_HEAD(&child->perf_event_list);
7179
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007180 for_each_task_context_nr(ctxn) {
7181 ret = perf_event_init_context(child, ctxn);
7182 if (ret)
7183 return ret;
7184 }
7185
7186 return 0;
7187}
7188
Paul Mackerras220b1402010-03-10 20:45:52 +11007189static void __init perf_event_init_all_cpus(void)
7190{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007191 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11007192 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11007193
7194 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007195 swhash = &per_cpu(swevent_htable, cpu);
7196 mutex_init(&swhash->hlist_mutex);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007197 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11007198 }
7199}
7200
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007201static void __cpuinit perf_event_init_cpu(int cpu)
7202{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007203 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007204
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007205 mutex_lock(&swhash->hlist_mutex);
7206 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007207 struct swevent_hlist *hlist;
7208
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007209 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
7210 WARN_ON(!hlist);
7211 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007212 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007213 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007214}
7215
Peter Zijlstrac2774432010-12-08 15:29:02 +01007216#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007217static void perf_pmu_rotate_stop(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007218{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007219 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
7220
7221 WARN_ON(!irqs_disabled());
7222
7223 list_del_init(&cpuctx->rotation_list);
7224}
7225
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007226static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007227{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007228 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007229 struct perf_event *event, *tmp;
7230
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007231 perf_pmu_rotate_stop(ctx->pmu);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02007232
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007233 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007234 __perf_remove_from_context(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007235 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007236 __perf_remove_from_context(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007237}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007238
7239static void perf_event_exit_cpu_context(int cpu)
7240{
7241 struct perf_event_context *ctx;
7242 struct pmu *pmu;
7243 int idx;
7244
7245 idx = srcu_read_lock(&pmus_srcu);
7246 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02007247 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007248
7249 mutex_lock(&ctx->mutex);
7250 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
7251 mutex_unlock(&ctx->mutex);
7252 }
7253 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007254}
7255
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007256static void perf_event_exit_cpu(int cpu)
7257{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007258 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007259
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007260 mutex_lock(&swhash->hlist_mutex);
7261 swevent_hlist_release(swhash);
7262 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007263
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007264 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007265}
7266#else
7267static inline void perf_event_exit_cpu(int cpu) { }
7268#endif
7269
Peter Zijlstrac2774432010-12-08 15:29:02 +01007270static int
7271perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
7272{
7273 int cpu;
7274
7275 for_each_online_cpu(cpu)
7276 perf_event_exit_cpu(cpu);
7277
7278 return NOTIFY_OK;
7279}
7280
7281/*
7282 * Run the perf reboot notifier at the very last possible moment so that
7283 * the generic watchdog code runs as long as possible.
7284 */
7285static struct notifier_block perf_reboot_notifier = {
7286 .notifier_call = perf_reboot,
7287 .priority = INT_MIN,
7288};
7289
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007290static int __cpuinit
7291perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
7292{
7293 unsigned int cpu = (long)hcpu;
7294
Peter Zijlstra5e116372010-06-11 13:35:08 +02007295 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007296
7297 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02007298 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007299 perf_event_init_cpu(cpu);
7300 break;
7301
Peter Zijlstra5e116372010-06-11 13:35:08 +02007302 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007303 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007304 perf_event_exit_cpu(cpu);
7305 break;
7306
7307 default:
7308 break;
7309 }
7310
7311 return NOTIFY_OK;
7312}
7313
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007314void __init perf_event_init(void)
7315{
Jason Wessel3c502e72010-11-04 17:33:01 -05007316 int ret;
7317
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007318 idr_init(&pmu_idr);
7319
Paul Mackerras220b1402010-03-10 20:45:52 +11007320 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007321 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007322 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
7323 perf_pmu_register(&perf_cpu_clock, NULL, -1);
7324 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007325 perf_tp_register();
7326 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01007327 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05007328
7329 ret = init_hw_breakpoint();
7330 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007331}
Peter Zijlstraabe43402010-11-17 23:17:37 +01007332
7333static int __init perf_event_sysfs_init(void)
7334{
7335 struct pmu *pmu;
7336 int ret;
7337
7338 mutex_lock(&pmus_lock);
7339
7340 ret = bus_register(&pmu_bus);
7341 if (ret)
7342 goto unlock;
7343
7344 list_for_each_entry(pmu, &pmus, entry) {
7345 if (!pmu->name || pmu->type < 0)
7346 continue;
7347
7348 ret = pmu_dev_alloc(pmu);
7349 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
7350 }
7351 pmu_bus_running = 1;
7352 ret = 0;
7353
7354unlock:
7355 mutex_unlock(&pmus_lock);
7356
7357 return ret;
7358}
7359device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007360
7361#ifdef CONFIG_CGROUP_PERF
7362static struct cgroup_subsys_state *perf_cgroup_create(
7363 struct cgroup_subsys *ss, struct cgroup *cont)
7364{
7365 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02007366
Li Zefan1b15d052011-03-03 14:26:06 +08007367 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007368 if (!jc)
7369 return ERR_PTR(-ENOMEM);
7370
Stephane Eraniane5d13672011-02-14 11:20:01 +02007371 jc->info = alloc_percpu(struct perf_cgroup_info);
7372 if (!jc->info) {
7373 kfree(jc);
7374 return ERR_PTR(-ENOMEM);
7375 }
7376
Stephane Eraniane5d13672011-02-14 11:20:01 +02007377 return &jc->css;
7378}
7379
7380static void perf_cgroup_destroy(struct cgroup_subsys *ss,
7381 struct cgroup *cont)
7382{
7383 struct perf_cgroup *jc;
7384 jc = container_of(cgroup_subsys_state(cont, perf_subsys_id),
7385 struct perf_cgroup, css);
7386 free_percpu(jc->info);
7387 kfree(jc);
7388}
7389
7390static int __perf_cgroup_move(void *info)
7391{
7392 struct task_struct *task = info;
7393 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
7394 return 0;
7395}
7396
7397static void perf_cgroup_move(struct task_struct *task)
7398{
7399 task_function_call(task, __perf_cgroup_move, task);
7400}
7401
7402static void perf_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
7403 struct cgroup *old_cgrp, struct task_struct *task,
7404 bool threadgroup)
7405{
7406 perf_cgroup_move(task);
7407 if (threadgroup) {
7408 struct task_struct *c;
7409 rcu_read_lock();
7410 list_for_each_entry_rcu(c, &task->thread_group, thread_group) {
7411 perf_cgroup_move(c);
7412 }
7413 rcu_read_unlock();
7414 }
7415}
7416
7417static void perf_cgroup_exit(struct cgroup_subsys *ss, struct cgroup *cgrp,
7418 struct cgroup *old_cgrp, struct task_struct *task)
7419{
7420 /*
7421 * cgroup_exit() is called in the copy_process() failure path.
7422 * Ignore this case since the task hasn't ran yet, this avoids
7423 * trying to poke a half freed task state from generic code.
7424 */
7425 if (!(task->flags & PF_EXITING))
7426 return;
7427
7428 perf_cgroup_move(task);
7429}
7430
7431struct cgroup_subsys perf_subsys = {
7432 .name = "perf_event",
7433 .subsys_id = perf_subsys_id,
7434 .create = perf_cgroup_create,
7435 .destroy = perf_cgroup_destroy,
7436 .exit = perf_cgroup_exit,
7437 .attach = perf_cgroup_attach,
7438};
7439#endif /* CONFIG_CGROUP_PERF */