blob: c75925c4d1e29a3296bed32a6f0eeb7e6c189c29 [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 Weisbecker880f5732011-03-23 19:29:39 +0100148/* Minimum for 128 pages + 1 for the user control page */
149int sysctl_perf_event_mlock __read_mostly = 516; /* 'free' kb 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) {
367 /* set cgrp before ctxsw in to
368 * allow event_filter_match() to not
369 * have to pass task around
370 */
371 cpuctx->cgrp = perf_cgroup_from_task(task);
372 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
373 }
374 }
375
376 perf_pmu_enable(cpuctx->ctx.pmu);
377 }
378
379 rcu_read_unlock();
380
381 local_irq_restore(flags);
382}
383
384static inline void perf_cgroup_sched_out(struct task_struct *task)
385{
386 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
387}
388
389static inline void perf_cgroup_sched_in(struct task_struct *task)
390{
391 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
392}
393
394static inline int perf_cgroup_connect(int fd, struct perf_event *event,
395 struct perf_event_attr *attr,
396 struct perf_event *group_leader)
397{
398 struct perf_cgroup *cgrp;
399 struct cgroup_subsys_state *css;
400 struct file *file;
401 int ret = 0, fput_needed;
402
403 file = fget_light(fd, &fput_needed);
404 if (!file)
405 return -EBADF;
406
407 css = cgroup_css_from_dir(file, perf_subsys_id);
Li Zefan3db272c2011-03-03 14:25:37 +0800408 if (IS_ERR(css)) {
409 ret = PTR_ERR(css);
410 goto out;
411 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200412
413 cgrp = container_of(css, struct perf_cgroup, css);
414 event->cgrp = cgrp;
415
Li Zefanf75e18c2011-03-03 14:25:50 +0800416 /* must be done before we fput() the file */
417 perf_get_cgroup(event);
418
Stephane Eraniane5d13672011-02-14 11:20:01 +0200419 /*
420 * all events in a group must monitor
421 * the same cgroup because a task belongs
422 * to only one perf cgroup at a time
423 */
424 if (group_leader && group_leader->cgrp != cgrp) {
425 perf_detach_cgroup(event);
426 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200427 }
Li Zefan3db272c2011-03-03 14:25:37 +0800428out:
Stephane Eraniane5d13672011-02-14 11:20:01 +0200429 fput_light(file, fput_needed);
430 return ret;
431}
432
433static inline void
434perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
435{
436 struct perf_cgroup_info *t;
437 t = per_cpu_ptr(event->cgrp->info, event->cpu);
438 event->shadow_ctx_time = now - t->timestamp;
439}
440
441static inline void
442perf_cgroup_defer_enabled(struct perf_event *event)
443{
444 /*
445 * when the current task's perf cgroup does not match
446 * the event's, we need to remember to call the
447 * perf_mark_enable() function the first time a task with
448 * a matching perf cgroup is scheduled in.
449 */
450 if (is_cgroup_event(event) && !perf_cgroup_match(event))
451 event->cgrp_defer_enabled = 1;
452}
453
454static inline void
455perf_cgroup_mark_enabled(struct perf_event *event,
456 struct perf_event_context *ctx)
457{
458 struct perf_event *sub;
459 u64 tstamp = perf_event_time(event);
460
461 if (!event->cgrp_defer_enabled)
462 return;
463
464 event->cgrp_defer_enabled = 0;
465
466 event->tstamp_enabled = tstamp - event->total_time_enabled;
467 list_for_each_entry(sub, &event->sibling_list, group_entry) {
468 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
469 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
470 sub->cgrp_defer_enabled = 0;
471 }
472 }
473}
474#else /* !CONFIG_CGROUP_PERF */
475
476static inline bool
477perf_cgroup_match(struct perf_event *event)
478{
479 return true;
480}
481
482static inline void perf_detach_cgroup(struct perf_event *event)
483{}
484
485static inline int is_cgroup_event(struct perf_event *event)
486{
487 return 0;
488}
489
490static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
491{
492 return 0;
493}
494
495static inline void update_cgrp_time_from_event(struct perf_event *event)
496{
497}
498
499static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
500{
501}
502
503static inline void perf_cgroup_sched_out(struct task_struct *task)
504{
505}
506
507static inline void perf_cgroup_sched_in(struct task_struct *task)
508{
509}
510
511static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
512 struct perf_event_attr *attr,
513 struct perf_event *group_leader)
514{
515 return -EINVAL;
516}
517
518static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200519perf_cgroup_set_timestamp(struct task_struct *task,
520 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200521{
522}
523
524void
525perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
526{
527}
528
529static inline void
530perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
531{
532}
533
534static inline u64 perf_cgroup_event_time(struct perf_event *event)
535{
536 return 0;
537}
538
539static inline void
540perf_cgroup_defer_enabled(struct perf_event *event)
541{
542}
543
544static inline void
545perf_cgroup_mark_enabled(struct perf_event *event,
546 struct perf_event_context *ctx)
547{
548}
549#endif
550
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200551void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200552{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200553 int *count = this_cpu_ptr(pmu->pmu_disable_count);
554 if (!(*count)++)
555 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200556}
557
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200558void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200559{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200560 int *count = this_cpu_ptr(pmu->pmu_disable_count);
561 if (!--(*count))
562 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200563}
564
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200565static DEFINE_PER_CPU(struct list_head, rotation_list);
566
567/*
568 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
569 * because they're strictly cpu affine and rotate_start is called with IRQs
570 * disabled, while rotate_context is called from IRQ context.
571 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200572static void perf_pmu_rotate_start(struct pmu *pmu)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200573{
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200574 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200575 struct list_head *head = &__get_cpu_var(rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200576
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200577 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200578
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200579 if (list_empty(&cpuctx->rotation_list))
580 list_add(&cpuctx->rotation_list, head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200581}
582
583static void get_ctx(struct perf_event_context *ctx)
584{
585 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
586}
587
588static void free_ctx(struct rcu_head *head)
589{
590 struct perf_event_context *ctx;
591
592 ctx = container_of(head, struct perf_event_context, rcu_head);
593 kfree(ctx);
594}
595
596static void put_ctx(struct perf_event_context *ctx)
597{
598 if (atomic_dec_and_test(&ctx->refcount)) {
599 if (ctx->parent_ctx)
600 put_ctx(ctx->parent_ctx);
601 if (ctx->task)
602 put_task_struct(ctx->task);
603 call_rcu(&ctx->rcu_head, free_ctx);
604 }
605}
606
607static void unclone_ctx(struct perf_event_context *ctx)
608{
609 if (ctx->parent_ctx) {
610 put_ctx(ctx->parent_ctx);
611 ctx->parent_ctx = NULL;
612 }
613}
614
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200615static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
616{
617 /*
618 * only top level events have the pid namespace they were created in
619 */
620 if (event->parent)
621 event = event->parent;
622
623 return task_tgid_nr_ns(p, event->ns);
624}
625
626static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
627{
628 /*
629 * only top level events have the pid namespace they were created in
630 */
631 if (event->parent)
632 event = event->parent;
633
634 return task_pid_nr_ns(p, event->ns);
635}
636
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200637/*
638 * If we inherit events we want to return the parent event id
639 * to userspace.
640 */
641static u64 primary_event_id(struct perf_event *event)
642{
643 u64 id = event->id;
644
645 if (event->parent)
646 id = event->parent->id;
647
648 return id;
649}
650
651/*
652 * Get the perf_event_context for a task and lock it.
653 * This has to cope with with the fact that until it is locked,
654 * the context could get moved to another task.
655 */
656static struct perf_event_context *
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200657perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200658{
659 struct perf_event_context *ctx;
660
661 rcu_read_lock();
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200662retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200663 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200664 if (ctx) {
665 /*
666 * If this context is a clone of another, it might
667 * get swapped for another underneath us by
668 * perf_event_task_sched_out, though the
669 * rcu_read_lock() protects us from any context
670 * getting freed. Lock the context and check if it
671 * got swapped before we could get the lock, and retry
672 * if so. If we locked the right context, then it
673 * can't get swapped on us any more.
674 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100675 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200676 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100677 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200678 goto retry;
679 }
680
681 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100682 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200683 ctx = NULL;
684 }
685 }
686 rcu_read_unlock();
687 return ctx;
688}
689
690/*
691 * Get the context for a task and increment its pin_count so it
692 * can't get swapped to another task. This also increments its
693 * reference count so that the context can't get freed.
694 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200695static struct perf_event_context *
696perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200697{
698 struct perf_event_context *ctx;
699 unsigned long flags;
700
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200701 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200702 if (ctx) {
703 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100704 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200705 }
706 return ctx;
707}
708
709static void perf_unpin_context(struct perf_event_context *ctx)
710{
711 unsigned long flags;
712
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100713 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200714 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100715 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200716}
717
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100718/*
719 * Update the record of the current time in a context.
720 */
721static void update_context_time(struct perf_event_context *ctx)
722{
723 u64 now = perf_clock();
724
725 ctx->time += now - ctx->timestamp;
726 ctx->timestamp = now;
727}
728
Stephane Eranian41587552011-01-03 18:20:01 +0200729static u64 perf_event_time(struct perf_event *event)
730{
731 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200732
733 if (is_cgroup_event(event))
734 return perf_cgroup_event_time(event);
735
Stephane Eranian41587552011-01-03 18:20:01 +0200736 return ctx ? ctx->time : 0;
737}
738
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100739/*
740 * Update the total_time_enabled and total_time_running fields for a event.
741 */
742static void update_event_times(struct perf_event *event)
743{
744 struct perf_event_context *ctx = event->ctx;
745 u64 run_end;
746
747 if (event->state < PERF_EVENT_STATE_INACTIVE ||
748 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
749 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200750 /*
751 * in cgroup mode, time_enabled represents
752 * the time the event was enabled AND active
753 * tasks were in the monitored cgroup. This is
754 * independent of the activity of the context as
755 * there may be a mix of cgroup and non-cgroup events.
756 *
757 * That is why we treat cgroup events differently
758 * here.
759 */
760 if (is_cgroup_event(event))
Stephane Eranian41587552011-01-03 18:20:01 +0200761 run_end = perf_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200762 else if (ctx->is_active)
763 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +0100764 else
765 run_end = event->tstamp_stopped;
766
767 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100768
769 if (event->state == PERF_EVENT_STATE_INACTIVE)
770 run_end = event->tstamp_stopped;
771 else
Stephane Eranian41587552011-01-03 18:20:01 +0200772 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100773
774 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200775
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100776}
777
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200778/*
779 * Update total_time_enabled and total_time_running for all events in a group.
780 */
781static void update_group_times(struct perf_event *leader)
782{
783 struct perf_event *event;
784
785 update_event_times(leader);
786 list_for_each_entry(event, &leader->sibling_list, group_entry)
787 update_event_times(event);
788}
789
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100790static struct list_head *
791ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
792{
793 if (event->attr.pinned)
794 return &ctx->pinned_groups;
795 else
796 return &ctx->flexible_groups;
797}
798
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200799/*
800 * Add a event from the lists for its context.
801 * Must be called with ctx->mutex and ctx->lock held.
802 */
803static void
804list_add_event(struct perf_event *event, struct perf_event_context *ctx)
805{
Peter Zijlstra8a495422010-05-27 15:47:49 +0200806 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
807 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200808
809 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +0200810 * If we're a stand alone event or group leader, we go to the context
811 * list, group events are kept attached to the group so that
812 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200813 */
Peter Zijlstra8a495422010-05-27 15:47:49 +0200814 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100815 struct list_head *list;
816
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100817 if (is_software_event(event))
818 event->group_flags |= PERF_GROUP_SOFTWARE;
819
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100820 list = ctx_group_list(event, ctx);
821 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200822 }
823
Peter Zijlstra08309372011-03-03 11:31:20 +0100824 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200825 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200826
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200827 list_add_rcu(&event->event_entry, &ctx->event_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200828 if (!ctx->nr_events)
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200829 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200830 ctx->nr_events++;
831 if (event->attr.inherit_stat)
832 ctx->nr_stat++;
833}
834
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200835/*
836 * Called at perf_event creation and when events are attached/detached from a
837 * group.
838 */
839static void perf_event__read_size(struct perf_event *event)
840{
841 int entry = sizeof(u64); /* value */
842 int size = 0;
843 int nr = 1;
844
845 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
846 size += sizeof(u64);
847
848 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
849 size += sizeof(u64);
850
851 if (event->attr.read_format & PERF_FORMAT_ID)
852 entry += sizeof(u64);
853
854 if (event->attr.read_format & PERF_FORMAT_GROUP) {
855 nr += event->group_leader->nr_siblings;
856 size += sizeof(u64);
857 }
858
859 size += entry * nr;
860 event->read_size = size;
861}
862
863static void perf_event__header_size(struct perf_event *event)
864{
865 struct perf_sample_data *data;
866 u64 sample_type = event->attr.sample_type;
867 u16 size = 0;
868
869 perf_event__read_size(event);
870
871 if (sample_type & PERF_SAMPLE_IP)
872 size += sizeof(data->ip);
873
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200874 if (sample_type & PERF_SAMPLE_ADDR)
875 size += sizeof(data->addr);
876
877 if (sample_type & PERF_SAMPLE_PERIOD)
878 size += sizeof(data->period);
879
880 if (sample_type & PERF_SAMPLE_READ)
881 size += event->read_size;
882
883 event->header_size = size;
884}
885
886static void perf_event__id_header_size(struct perf_event *event)
887{
888 struct perf_sample_data *data;
889 u64 sample_type = event->attr.sample_type;
890 u16 size = 0;
891
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200892 if (sample_type & PERF_SAMPLE_TID)
893 size += sizeof(data->tid_entry);
894
895 if (sample_type & PERF_SAMPLE_TIME)
896 size += sizeof(data->time);
897
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200898 if (sample_type & PERF_SAMPLE_ID)
899 size += sizeof(data->id);
900
901 if (sample_type & PERF_SAMPLE_STREAM_ID)
902 size += sizeof(data->stream_id);
903
904 if (sample_type & PERF_SAMPLE_CPU)
905 size += sizeof(data->cpu_entry);
906
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200907 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200908}
909
Peter Zijlstra8a495422010-05-27 15:47:49 +0200910static void perf_group_attach(struct perf_event *event)
911{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200912 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200913
Peter Zijlstra74c33372010-10-15 11:40:29 +0200914 /*
915 * We can have double attach due to group movement in perf_event_open.
916 */
917 if (event->attach_state & PERF_ATTACH_GROUP)
918 return;
919
Peter Zijlstra8a495422010-05-27 15:47:49 +0200920 event->attach_state |= PERF_ATTACH_GROUP;
921
922 if (group_leader == event)
923 return;
924
925 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
926 !is_software_event(event))
927 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
928
929 list_add_tail(&event->group_entry, &group_leader->sibling_list);
930 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200931
932 perf_event__header_size(group_leader);
933
934 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
935 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +0200936}
937
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200938/*
939 * Remove a event from the lists for its context.
940 * Must be called with ctx->mutex and ctx->lock held.
941 */
942static void
943list_del_event(struct perf_event *event, struct perf_event_context *ctx)
944{
Stephane Eranian68cacd22011-03-23 16:03:06 +0100945 struct perf_cpu_context *cpuctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200946 /*
947 * We can have double detach due to exit/hot-unplug + close.
948 */
949 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200950 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200951
952 event->attach_state &= ~PERF_ATTACH_CONTEXT;
953
Stephane Eranian68cacd22011-03-23 16:03:06 +0100954 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200955 ctx->nr_cgroups--;
Stephane Eranian68cacd22011-03-23 16:03:06 +0100956 cpuctx = __get_cpu_context(ctx);
957 /*
958 * if there are no more cgroup events
959 * then cler cgrp to avoid stale pointer
960 * in update_cgrp_time_from_cpuctx()
961 */
962 if (!ctx->nr_cgroups)
963 cpuctx->cgrp = NULL;
964 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200965
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200966 ctx->nr_events--;
967 if (event->attr.inherit_stat)
968 ctx->nr_stat--;
969
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200970 list_del_rcu(&event->event_entry);
971
Peter Zijlstra8a495422010-05-27 15:47:49 +0200972 if (event->group_leader == event)
973 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200974
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200975 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -0800976
977 /*
978 * If event was in error state, then keep it
979 * that way, otherwise bogus counts will be
980 * returned on read(). The only way to get out
981 * of error state is by explicit re-enabling
982 * of the event
983 */
984 if (event->state > PERF_EVENT_STATE_OFF)
985 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra050735b2010-05-11 11:51:53 +0200986}
987
Peter Zijlstra8a495422010-05-27 15:47:49 +0200988static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +0200989{
990 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200991 struct list_head *list = NULL;
992
993 /*
994 * We can have double detach due to exit/hot-unplug + close.
995 */
996 if (!(event->attach_state & PERF_ATTACH_GROUP))
997 return;
998
999 event->attach_state &= ~PERF_ATTACH_GROUP;
1000
1001 /*
1002 * If this is a sibling, remove it from its group.
1003 */
1004 if (event->group_leader != event) {
1005 list_del_init(&event->group_entry);
1006 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001007 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001008 }
1009
1010 if (!list_empty(&event->group_entry))
1011 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001012
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001013 /*
1014 * If this was a group event with sibling events then
1015 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001016 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001017 */
1018 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001019 if (list)
1020 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001021 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001022
1023 /* Inherit group flags from the previous leader */
1024 sibling->group_flags = event->group_flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001025 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001026
1027out:
1028 perf_event__header_size(event->group_leader);
1029
1030 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1031 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001032}
1033
Stephane Eranianfa66f072010-08-26 16:40:01 +02001034static inline int
1035event_filter_match(struct perf_event *event)
1036{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001037 return (event->cpu == -1 || event->cpu == smp_processor_id())
1038 && perf_cgroup_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001039}
1040
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001041static void
1042event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001043 struct perf_cpu_context *cpuctx,
1044 struct perf_event_context *ctx)
1045{
Stephane Eranian41587552011-01-03 18:20:01 +02001046 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001047 u64 delta;
1048 /*
1049 * An event which could not be activated because of
1050 * filter mismatch still needs to have its timings
1051 * maintained, otherwise bogus information is return
1052 * via read() for time_enabled, time_running:
1053 */
1054 if (event->state == PERF_EVENT_STATE_INACTIVE
1055 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001056 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001057 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001058 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001059 }
1060
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001061 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001062 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001063
1064 event->state = PERF_EVENT_STATE_INACTIVE;
1065 if (event->pending_disable) {
1066 event->pending_disable = 0;
1067 event->state = PERF_EVENT_STATE_OFF;
1068 }
Stephane Eranian41587552011-01-03 18:20:01 +02001069 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001070 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001071 event->oncpu = -1;
1072
1073 if (!is_software_event(event))
1074 cpuctx->active_oncpu--;
1075 ctx->nr_active--;
1076 if (event->attr.exclusive || !cpuctx->active_oncpu)
1077 cpuctx->exclusive = 0;
1078}
1079
1080static void
1081group_sched_out(struct perf_event *group_event,
1082 struct perf_cpu_context *cpuctx,
1083 struct perf_event_context *ctx)
1084{
1085 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001086 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001087
1088 event_sched_out(group_event, cpuctx, ctx);
1089
1090 /*
1091 * Schedule out siblings (if any):
1092 */
1093 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1094 event_sched_out(event, cpuctx, ctx);
1095
Stephane Eranianfa66f072010-08-26 16:40:01 +02001096 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001097 cpuctx->exclusive = 0;
1098}
1099
1100/*
1101 * Cross CPU call to remove a performance event
1102 *
1103 * We disable the event on the hardware level first. After that we
1104 * remove it from the context list.
1105 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001106static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001107{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001108 struct perf_event *event = info;
1109 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001110 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001111
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001112 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001113 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001114 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001115 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001116
1117 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001118}
1119
1120
1121/*
1122 * Remove the event from a task's (or a CPU's) list of events.
1123 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001124 * CPU events are removed with a smp call. For task events we only
1125 * call when the task is on a CPU.
1126 *
1127 * If event->ctx is a cloned context, callers must make sure that
1128 * every task struct that event->ctx->task could possibly point to
1129 * remains valid. This is OK when called from perf_release since
1130 * that only calls us on the top-level context, which can't be a clone.
1131 * When called from perf_event_exit_task, it's OK because the
1132 * context has been detached from its task.
1133 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001134static void perf_remove_from_context(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001135{
1136 struct perf_event_context *ctx = event->ctx;
1137 struct task_struct *task = ctx->task;
1138
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001139 lockdep_assert_held(&ctx->mutex);
1140
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001141 if (!task) {
1142 /*
1143 * Per cpu events are removed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001144 * the removal is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001145 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001146 cpu_function_call(event->cpu, __perf_remove_from_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001147 return;
1148 }
1149
1150retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001151 if (!task_function_call(task, __perf_remove_from_context, event))
1152 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001153
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001154 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001155 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001156 * If we failed to find a running task, but find the context active now
1157 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001158 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001159 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001160 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001161 goto retry;
1162 }
1163
1164 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001165 * Since the task isn't running, its safe to remove the event, us
1166 * holding the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001167 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001168 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001169 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001170}
1171
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001172/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001173 * Cross CPU call to disable a performance event
1174 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001175static int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001176{
1177 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001178 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001179 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001180
1181 /*
1182 * If this is a per-task event, need to check whether this
1183 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001184 *
1185 * Can trigger due to concurrent perf_event_context_sched_out()
1186 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001187 */
1188 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001189 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001190
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001191 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001192
1193 /*
1194 * If the event is on, turn it off.
1195 * If it is in error state, leave it in error state.
1196 */
1197 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1198 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001199 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001200 update_group_times(event);
1201 if (event == event->group_leader)
1202 group_sched_out(event, cpuctx, ctx);
1203 else
1204 event_sched_out(event, cpuctx, ctx);
1205 event->state = PERF_EVENT_STATE_OFF;
1206 }
1207
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001208 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001209
1210 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001211}
1212
1213/*
1214 * Disable a event.
1215 *
1216 * If event->ctx is a cloned context, callers must make sure that
1217 * every task struct that event->ctx->task could possibly point to
1218 * remains valid. This condition is satisifed when called through
1219 * perf_event_for_each_child or perf_event_for_each because they
1220 * hold the top-level event's child_mutex, so any descendant that
1221 * goes to exit will block in sync_child_event.
1222 * When called from perf_pending_event it's OK because event->ctx
1223 * is the current context on this CPU and preemption is disabled,
1224 * hence we can't get into perf_event_task_sched_out for this context.
1225 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001226void perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001227{
1228 struct perf_event_context *ctx = event->ctx;
1229 struct task_struct *task = ctx->task;
1230
1231 if (!task) {
1232 /*
1233 * Disable the event on the cpu that it's on
1234 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001235 cpu_function_call(event->cpu, __perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001236 return;
1237 }
1238
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001239retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001240 if (!task_function_call(task, __perf_event_disable, event))
1241 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001242
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001243 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001244 /*
1245 * If the event is still active, we need to retry the cross-call.
1246 */
1247 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001248 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001249 /*
1250 * Reload the task pointer, it might have been changed by
1251 * a concurrent perf_event_context_sched_out().
1252 */
1253 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001254 goto retry;
1255 }
1256
1257 /*
1258 * Since we have the lock this context can't be scheduled
1259 * in, so we can change the state safely.
1260 */
1261 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1262 update_group_times(event);
1263 event->state = PERF_EVENT_STATE_OFF;
1264 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001265 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001266}
1267
Stephane Eraniane5d13672011-02-14 11:20:01 +02001268static void perf_set_shadow_time(struct perf_event *event,
1269 struct perf_event_context *ctx,
1270 u64 tstamp)
1271{
1272 /*
1273 * use the correct time source for the time snapshot
1274 *
1275 * We could get by without this by leveraging the
1276 * fact that to get to this function, the caller
1277 * has most likely already called update_context_time()
1278 * and update_cgrp_time_xx() and thus both timestamp
1279 * are identical (or very close). Given that tstamp is,
1280 * already adjusted for cgroup, we could say that:
1281 * tstamp - ctx->timestamp
1282 * is equivalent to
1283 * tstamp - cgrp->timestamp.
1284 *
1285 * Then, in perf_output_read(), the calculation would
1286 * work with no changes because:
1287 * - event is guaranteed scheduled in
1288 * - no scheduled out in between
1289 * - thus the timestamp would be the same
1290 *
1291 * But this is a bit hairy.
1292 *
1293 * So instead, we have an explicit cgroup call to remain
1294 * within the time time source all along. We believe it
1295 * is cleaner and simpler to understand.
1296 */
1297 if (is_cgroup_event(event))
1298 perf_cgroup_set_shadow_time(event, tstamp);
1299 else
1300 event->shadow_ctx_time = tstamp - ctx->timestamp;
1301}
1302
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001303#define MAX_INTERRUPTS (~0ULL)
1304
1305static void perf_log_throttle(struct perf_event *event, int enable);
1306
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001307static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001308event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001309 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001310 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001311{
Stephane Eranian41587552011-01-03 18:20:01 +02001312 u64 tstamp = perf_event_time(event);
1313
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001314 if (event->state <= PERF_EVENT_STATE_OFF)
1315 return 0;
1316
1317 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001318 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001319
1320 /*
1321 * Unthrottle events, since we scheduled we might have missed several
1322 * ticks already, also for a heavily scheduling task there is little
1323 * guarantee it'll get a tick in a timely manner.
1324 */
1325 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1326 perf_log_throttle(event, 1);
1327 event->hw.interrupts = 0;
1328 }
1329
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001330 /*
1331 * The new state must be visible before we turn it on in the hardware:
1332 */
1333 smp_wmb();
1334
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001335 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001336 event->state = PERF_EVENT_STATE_INACTIVE;
1337 event->oncpu = -1;
1338 return -EAGAIN;
1339 }
1340
Stephane Eranian41587552011-01-03 18:20:01 +02001341 event->tstamp_running += tstamp - event->tstamp_stopped;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001342
Stephane Eraniane5d13672011-02-14 11:20:01 +02001343 perf_set_shadow_time(event, ctx, tstamp);
Stephane Eranianeed01522010-10-26 16:08:01 +02001344
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001345 if (!is_software_event(event))
1346 cpuctx->active_oncpu++;
1347 ctx->nr_active++;
1348
1349 if (event->attr.exclusive)
1350 cpuctx->exclusive = 1;
1351
1352 return 0;
1353}
1354
1355static int
1356group_sched_in(struct perf_event *group_event,
1357 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001358 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001359{
Lin Ming6bde9b62010-04-23 13:56:00 +08001360 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001361 struct pmu *pmu = group_event->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001362 u64 now = ctx->time;
1363 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001364
1365 if (group_event->state == PERF_EVENT_STATE_OFF)
1366 return 0;
1367
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001368 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +08001369
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001370 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001371 pmu->cancel_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001372 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001373 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001374
1375 /*
1376 * Schedule in siblings as one group (if any):
1377 */
1378 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001379 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001380 partial_group = event;
1381 goto group_error;
1382 }
1383 }
1384
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001385 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001386 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001387
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001388group_error:
1389 /*
1390 * Groups can be scheduled in as one unit only, so undo any
1391 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001392 * The events up to the failed event are scheduled out normally,
1393 * tstamp_stopped will be updated.
1394 *
1395 * The failed events and the remaining siblings need to have
1396 * their timings updated as if they had gone thru event_sched_in()
1397 * and event_sched_out(). This is required to get consistent timings
1398 * across the group. This also takes care of the case where the group
1399 * could never be scheduled by ensuring tstamp_stopped is set to mark
1400 * the time the event was actually stopped, such that time delta
1401 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001402 */
1403 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1404 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001405 simulate = true;
1406
1407 if (simulate) {
1408 event->tstamp_running += now - event->tstamp_stopped;
1409 event->tstamp_stopped = now;
1410 } else {
1411 event_sched_out(event, cpuctx, ctx);
1412 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001413 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001414 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001415
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001416 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02001417
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001418 return -EAGAIN;
1419}
1420
1421/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001422 * Work out whether we can put this event group on the CPU now.
1423 */
1424static int group_can_go_on(struct perf_event *event,
1425 struct perf_cpu_context *cpuctx,
1426 int can_add_hw)
1427{
1428 /*
1429 * Groups consisting entirely of software events can always go on.
1430 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001431 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001432 return 1;
1433 /*
1434 * If an exclusive group is already on, no other hardware
1435 * events can go on.
1436 */
1437 if (cpuctx->exclusive)
1438 return 0;
1439 /*
1440 * If this group is exclusive and there are already
1441 * events on the CPU, it can't go on.
1442 */
1443 if (event->attr.exclusive && cpuctx->active_oncpu)
1444 return 0;
1445 /*
1446 * Otherwise, try to add it if all previous groups were able
1447 * to go on.
1448 */
1449 return can_add_hw;
1450}
1451
1452static void add_event_to_ctx(struct perf_event *event,
1453 struct perf_event_context *ctx)
1454{
Stephane Eranian41587552011-01-03 18:20:01 +02001455 u64 tstamp = perf_event_time(event);
1456
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001457 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001458 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02001459 event->tstamp_enabled = tstamp;
1460 event->tstamp_running = tstamp;
1461 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001462}
1463
Stephane Eraniane5d13672011-02-14 11:20:01 +02001464static void perf_event_context_sched_in(struct perf_event_context *ctx,
1465 struct task_struct *tsk);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001466
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001467/*
1468 * Cross CPU call to install and enable a performance event
1469 *
1470 * Must be called with ctx->mutex held
1471 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001472static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001473{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001474 struct perf_event *event = info;
1475 struct perf_event_context *ctx = event->ctx;
1476 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001477 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001478 int err;
1479
1480 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001481 * In case we're installing a new context to an already running task,
1482 * could also happen before perf_event_task_sched_in() on architectures
1483 * which do context switches with IRQs enabled.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001484 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001485 if (ctx->task && !cpuctx->task_ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +02001486 perf_event_context_sched_in(ctx, ctx->task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001487
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001488 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001489 ctx->is_active = 1;
1490 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001491 /*
1492 * update cgrp time only if current cgrp
1493 * matches event->cgrp. Must be done before
1494 * calling add_event_to_ctx()
1495 */
1496 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001497
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001498 add_event_to_ctx(event, ctx);
1499
Stephane Eranian5632ab12011-01-03 18:20:01 +02001500 if (!event_filter_match(event))
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001501 goto unlock;
1502
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001503 /*
1504 * Don't put the event on if it is disabled or if
1505 * it is in a group and the group isn't on.
1506 */
1507 if (event->state != PERF_EVENT_STATE_INACTIVE ||
1508 (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE))
1509 goto unlock;
1510
1511 /*
1512 * An exclusive event can't go on if there are already active
1513 * hardware events, and no hardware event can go on if there
1514 * is already an exclusive event on.
1515 */
1516 if (!group_can_go_on(event, cpuctx, 1))
1517 err = -EEXIST;
1518 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01001519 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001520
1521 if (err) {
1522 /*
1523 * This event couldn't go on. If it is in a group
1524 * then we have to pull the whole group off.
1525 * If the event group is pinned then put it in error state.
1526 */
1527 if (leader != event)
1528 group_sched_out(leader, cpuctx, ctx);
1529 if (leader->attr.pinned) {
1530 update_group_times(leader);
1531 leader->state = PERF_EVENT_STATE_ERROR;
1532 }
1533 }
1534
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001535unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001536 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001537
1538 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001539}
1540
1541/*
1542 * Attach a performance event to a context
1543 *
1544 * First we add the event to the list with the hardware enable bit
1545 * in event->hw_config cleared.
1546 *
1547 * If the event is attached to a task which is on a CPU we use a smp
1548 * call to enable it in the task context. The task might have been
1549 * scheduled away, but we check this in the smp call again.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001550 */
1551static void
1552perf_install_in_context(struct perf_event_context *ctx,
1553 struct perf_event *event,
1554 int cpu)
1555{
1556 struct task_struct *task = ctx->task;
1557
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001558 lockdep_assert_held(&ctx->mutex);
1559
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001560 event->ctx = ctx;
1561
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001562 if (!task) {
1563 /*
1564 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001565 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001566 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001567 cpu_function_call(cpu, __perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001568 return;
1569 }
1570
1571retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001572 if (!task_function_call(task, __perf_install_in_context, event))
1573 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001574
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001575 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001576 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001577 * If we failed to find a running task, but find the context active now
1578 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001579 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001580 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001581 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001582 goto retry;
1583 }
1584
1585 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001586 * Since the task isn't running, its safe to add the event, us holding
1587 * the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001588 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001589 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001590 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001591}
1592
1593/*
1594 * Put a event into inactive state and update time fields.
1595 * Enabling the leader of a group effectively enables all
1596 * the group members that aren't explicitly disabled, so we
1597 * have to update their ->tstamp_enabled also.
1598 * Note: this works for group members as well as group leaders
1599 * since the non-leader members' sibling_lists will be empty.
1600 */
1601static void __perf_event_mark_enabled(struct perf_event *event,
1602 struct perf_event_context *ctx)
1603{
1604 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02001605 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001606
1607 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02001608 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001609 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02001610 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
1611 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001612 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001613}
1614
1615/*
1616 * Cross CPU call to enable a performance event
1617 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001618static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001619{
1620 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001621 struct perf_event_context *ctx = event->ctx;
1622 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001623 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001624 int err;
1625
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001626 if (WARN_ON_ONCE(!ctx->is_active))
1627 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001628
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001629 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001630 update_context_time(ctx);
1631
1632 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1633 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001634
1635 /*
1636 * set current task's cgroup time reference point
1637 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001638 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001639
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001640 __perf_event_mark_enabled(event, ctx);
1641
Stephane Eraniane5d13672011-02-14 11:20:01 +02001642 if (!event_filter_match(event)) {
1643 if (is_cgroup_event(event))
1644 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001645 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001646 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001647
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001648 /*
1649 * If the event is in a group and isn't the group leader,
1650 * then don't put it on unless the group is on.
1651 */
1652 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
1653 goto unlock;
1654
1655 if (!group_can_go_on(event, cpuctx, 1)) {
1656 err = -EEXIST;
1657 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001658 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001659 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001660 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01001661 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001662 }
1663
1664 if (err) {
1665 /*
1666 * If this event can't go on and it's part of a
1667 * group, then the whole group has to come off.
1668 */
1669 if (leader != event)
1670 group_sched_out(leader, cpuctx, ctx);
1671 if (leader->attr.pinned) {
1672 update_group_times(leader);
1673 leader->state = PERF_EVENT_STATE_ERROR;
1674 }
1675 }
1676
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001677unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001678 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001679
1680 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001681}
1682
1683/*
1684 * Enable a event.
1685 *
1686 * If event->ctx is a cloned context, callers must make sure that
1687 * every task struct that event->ctx->task could possibly point to
1688 * remains valid. This condition is satisfied when called through
1689 * perf_event_for_each_child or perf_event_for_each as described
1690 * for perf_event_disable.
1691 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001692void perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001693{
1694 struct perf_event_context *ctx = event->ctx;
1695 struct task_struct *task = ctx->task;
1696
1697 if (!task) {
1698 /*
1699 * Enable the event on the cpu that it's on
1700 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001701 cpu_function_call(event->cpu, __perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001702 return;
1703 }
1704
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001705 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001706 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1707 goto out;
1708
1709 /*
1710 * If the event is in error state, clear that first.
1711 * That way, if we see the event in error state below, we
1712 * know that it has gone back into error state, as distinct
1713 * from the task having been scheduled away before the
1714 * cross-call arrived.
1715 */
1716 if (event->state == PERF_EVENT_STATE_ERROR)
1717 event->state = PERF_EVENT_STATE_OFF;
1718
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001719retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001720 if (!ctx->is_active) {
1721 __perf_event_mark_enabled(event, ctx);
1722 goto out;
1723 }
1724
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001725 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001726
1727 if (!task_function_call(task, __perf_event_enable, event))
1728 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001729
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001730 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001731
1732 /*
1733 * If the context is active and the event is still off,
1734 * we need to retry the cross-call.
1735 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001736 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
1737 /*
1738 * task could have been flipped by a concurrent
1739 * perf_event_context_sched_out()
1740 */
1741 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001742 goto retry;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001743 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001744
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001745out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001746 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001747}
1748
1749static int perf_event_refresh(struct perf_event *event, int refresh)
1750{
1751 /*
1752 * not supported on inherited events
1753 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01001754 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001755 return -EINVAL;
1756
1757 atomic_add(refresh, &event->event_limit);
1758 perf_event_enable(event);
1759
1760 return 0;
1761}
1762
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001763static void ctx_sched_out(struct perf_event_context *ctx,
1764 struct perf_cpu_context *cpuctx,
1765 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001766{
1767 struct perf_event *event;
1768
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001769 raw_spin_lock(&ctx->lock);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001770 perf_pmu_disable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001771 ctx->is_active = 0;
1772 if (likely(!ctx->nr_events))
1773 goto out;
1774 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001775 update_cgrp_time_from_cpuctx(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001776
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001777 if (!ctx->nr_active)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001778 goto out;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001779
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001780 if (event_type & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001781 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
1782 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001783 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001784
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001785 if (event_type & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001786 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08001787 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001788 }
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001789out:
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001790 perf_pmu_enable(ctx->pmu);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001791 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001792}
1793
1794/*
1795 * Test whether two contexts are equivalent, i.e. whether they
1796 * have both been cloned from the same version of the same context
1797 * and they both have the same number of enabled events.
1798 * If the number of enabled events is the same, then the set
1799 * of enabled events should be the same, because these are both
1800 * inherited contexts, therefore we can't access individual events
1801 * in them directly with an fd; we can only enable/disable all
1802 * events via prctl, or enable/disable all events in a family
1803 * via ioctl, which will have the same effect on both contexts.
1804 */
1805static int context_equiv(struct perf_event_context *ctx1,
1806 struct perf_event_context *ctx2)
1807{
1808 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
1809 && ctx1->parent_gen == ctx2->parent_gen
1810 && !ctx1->pin_count && !ctx2->pin_count;
1811}
1812
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001813static void __perf_event_sync_stat(struct perf_event *event,
1814 struct perf_event *next_event)
1815{
1816 u64 value;
1817
1818 if (!event->attr.inherit_stat)
1819 return;
1820
1821 /*
1822 * Update the event value, we cannot use perf_event_read()
1823 * because we're in the middle of a context switch and have IRQs
1824 * disabled, which upsets smp_call_function_single(), however
1825 * we know the event must be on the current CPU, therefore we
1826 * don't need to use it.
1827 */
1828 switch (event->state) {
1829 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01001830 event->pmu->read(event);
1831 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001832
1833 case PERF_EVENT_STATE_INACTIVE:
1834 update_event_times(event);
1835 break;
1836
1837 default:
1838 break;
1839 }
1840
1841 /*
1842 * In order to keep per-task stats reliable we need to flip the event
1843 * values when we flip the contexts.
1844 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02001845 value = local64_read(&next_event->count);
1846 value = local64_xchg(&event->count, value);
1847 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001848
1849 swap(event->total_time_enabled, next_event->total_time_enabled);
1850 swap(event->total_time_running, next_event->total_time_running);
1851
1852 /*
1853 * Since we swizzled the values, update the user visible data too.
1854 */
1855 perf_event_update_userpage(event);
1856 perf_event_update_userpage(next_event);
1857}
1858
1859#define list_next_entry(pos, member) \
1860 list_entry(pos->member.next, typeof(*pos), member)
1861
1862static void perf_event_sync_stat(struct perf_event_context *ctx,
1863 struct perf_event_context *next_ctx)
1864{
1865 struct perf_event *event, *next_event;
1866
1867 if (!ctx->nr_stat)
1868 return;
1869
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01001870 update_context_time(ctx);
1871
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001872 event = list_first_entry(&ctx->event_list,
1873 struct perf_event, event_entry);
1874
1875 next_event = list_first_entry(&next_ctx->event_list,
1876 struct perf_event, event_entry);
1877
1878 while (&event->event_entry != &ctx->event_list &&
1879 &next_event->event_entry != &next_ctx->event_list) {
1880
1881 __perf_event_sync_stat(event, next_event);
1882
1883 event = list_next_entry(event, event_entry);
1884 next_event = list_next_entry(next_event, event_entry);
1885 }
1886}
1887
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001888static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
1889 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001890{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001891 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001892 struct perf_event_context *next_ctx;
1893 struct perf_event_context *parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001894 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001895 int do_switch = 1;
1896
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001897 if (likely(!ctx))
1898 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001899
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001900 cpuctx = __get_cpu_context(ctx);
1901 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001902 return;
1903
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001904 rcu_read_lock();
1905 parent = rcu_dereference(ctx->parent_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001906 next_ctx = next->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001907 if (parent && next_ctx &&
1908 rcu_dereference(next_ctx->parent_ctx) == parent) {
1909 /*
1910 * Looks like the two contexts are clones, so we might be
1911 * able to optimize the context switch. We lock both
1912 * contexts and check that they are clones under the
1913 * lock (including re-checking that neither has been
1914 * uncloned in the meantime). It doesn't matter which
1915 * order we take the locks because no other cpu could
1916 * be trying to lock both of these tasks.
1917 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001918 raw_spin_lock(&ctx->lock);
1919 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001920 if (context_equiv(ctx, next_ctx)) {
1921 /*
1922 * XXX do we need a memory barrier of sorts
1923 * wrt to rcu_dereference() of perf_event_ctxp
1924 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001925 task->perf_event_ctxp[ctxn] = next_ctx;
1926 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001927 ctx->task = next;
1928 next_ctx->task = task;
1929 do_switch = 0;
1930
1931 perf_event_sync_stat(ctx, next_ctx);
1932 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001933 raw_spin_unlock(&next_ctx->lock);
1934 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001935 }
1936 rcu_read_unlock();
1937
1938 if (do_switch) {
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001939 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001940 cpuctx->task_ctx = NULL;
1941 }
1942}
1943
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001944#define for_each_task_context_nr(ctxn) \
1945 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
1946
1947/*
1948 * Called from scheduler to remove the events of the current task,
1949 * with interrupts disabled.
1950 *
1951 * We stop each event and update the event value in event->count.
1952 *
1953 * This does not protect us against NMI, but disable()
1954 * sets the disabled bit in the control field of event _before_
1955 * accessing the event control register. If a NMI hits, then it will
1956 * not restart the event.
1957 */
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02001958void __perf_event_task_sched_out(struct task_struct *task,
1959 struct task_struct *next)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001960{
1961 int ctxn;
1962
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001963 for_each_task_context_nr(ctxn)
1964 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001965
1966 /*
1967 * if cgroup events exist on this CPU, then we need
1968 * to check if we have to switch out PMU state.
1969 * cgroup event are system-wide mode only
1970 */
1971 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
1972 perf_cgroup_sched_out(task);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001973}
1974
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001975static void task_ctx_sched_out(struct perf_event_context *ctx,
1976 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001977{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001978 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001979
1980 if (!cpuctx->task_ctx)
1981 return;
1982
1983 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
1984 return;
1985
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001986 ctx_sched_out(ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001987 cpuctx->task_ctx = NULL;
1988}
1989
1990/*
1991 * Called with IRQs disabled
1992 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001993static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
1994 enum event_type_t event_type)
1995{
1996 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001997}
1998
1999static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002000ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002001 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002002{
2003 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002004
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002005 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2006 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002007 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002008 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002009 continue;
2010
Stephane Eraniane5d13672011-02-14 11:20:01 +02002011 /* may need to reset tstamp_enabled */
2012 if (is_cgroup_event(event))
2013 perf_cgroup_mark_enabled(event, ctx);
2014
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002015 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002016 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002017
2018 /*
2019 * If this pinned group hasn't been scheduled,
2020 * put it in error state.
2021 */
2022 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2023 update_group_times(event);
2024 event->state = PERF_EVENT_STATE_ERROR;
2025 }
2026 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002027}
2028
2029static void
2030ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002031 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002032{
2033 struct perf_event *event;
2034 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002035
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002036 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2037 /* Ignore events in OFF or ERROR state */
2038 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002039 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002040 /*
2041 * Listen to the 'cpu' scheduling filter constraint
2042 * of events:
2043 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002044 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002045 continue;
2046
Stephane Eraniane5d13672011-02-14 11:20:01 +02002047 /* may need to reset tstamp_enabled */
2048 if (is_cgroup_event(event))
2049 perf_cgroup_mark_enabled(event, ctx);
2050
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002051 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002052 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002053 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002054 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002055 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002056}
2057
2058static void
2059ctx_sched_in(struct perf_event_context *ctx,
2060 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002061 enum event_type_t event_type,
2062 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002063{
Stephane Eraniane5d13672011-02-14 11:20:01 +02002064 u64 now;
2065
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002066 raw_spin_lock(&ctx->lock);
2067 ctx->is_active = 1;
2068 if (likely(!ctx->nr_events))
2069 goto out;
2070
Stephane Eraniane5d13672011-02-14 11:20:01 +02002071 now = perf_clock();
2072 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002073 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002074 /*
2075 * First go through the list and put on any pinned groups
2076 * in order to give them the best chance of going on.
2077 */
2078 if (event_type & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002079 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002080
2081 /* Then walk through the lower prio flexible groups */
2082 if (event_type & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002083 ctx_flexible_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002084
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002085out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002086 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002087}
2088
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002089static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002090 enum event_type_t event_type,
2091 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002092{
2093 struct perf_event_context *ctx = &cpuctx->ctx;
2094
Stephane Eraniane5d13672011-02-14 11:20:01 +02002095 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002096}
2097
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002098static void task_ctx_sched_in(struct perf_event_context *ctx,
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002099 enum event_type_t event_type)
2100{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002101 struct perf_cpu_context *cpuctx;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002102
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002103 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002104 if (cpuctx->task_ctx == ctx)
2105 return;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002106
Stephane Eraniane5d13672011-02-14 11:20:01 +02002107 ctx_sched_in(ctx, cpuctx, event_type, NULL);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002108 cpuctx->task_ctx = ctx;
2109}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002110
Stephane Eraniane5d13672011-02-14 11:20:01 +02002111static void perf_event_context_sched_in(struct perf_event_context *ctx,
2112 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002113{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002114 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002115
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002116 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002117 if (cpuctx->task_ctx == ctx)
2118 return;
2119
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002120 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002121 /*
2122 * We want to keep the following priority order:
2123 * cpu pinned (that don't need to move), task pinned,
2124 * cpu flexible, task flexible.
2125 */
2126 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2127
Stephane Eraniane5d13672011-02-14 11:20:01 +02002128 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2129 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2130 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002131
2132 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002133
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002134 /*
2135 * Since these rotations are per-cpu, we need to ensure the
2136 * cpu-context we got scheduled on is actually rotating.
2137 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002138 perf_pmu_rotate_start(ctx->pmu);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002139 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002140}
2141
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002142/*
2143 * Called from scheduler to add the events of the current task
2144 * with interrupts disabled.
2145 *
2146 * We restore the event value and then enable it.
2147 *
2148 * This does not protect us against NMI, but enable()
2149 * sets the enabled bit in the control field of event _before_
2150 * accessing the event control register. If a NMI hits, then it will
2151 * keep the event running.
2152 */
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02002153void __perf_event_task_sched_in(struct task_struct *task)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002154{
2155 struct perf_event_context *ctx;
2156 int ctxn;
2157
2158 for_each_task_context_nr(ctxn) {
2159 ctx = task->perf_event_ctxp[ctxn];
2160 if (likely(!ctx))
2161 continue;
2162
Stephane Eraniane5d13672011-02-14 11:20:01 +02002163 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002164 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02002165 /*
2166 * if cgroup events exist on this CPU, then we need
2167 * to check if we have to switch in PMU state.
2168 * cgroup event are system-wide mode only
2169 */
2170 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
2171 perf_cgroup_sched_in(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002172}
2173
Peter Zijlstraabd50712010-01-26 18:50:16 +01002174static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2175{
2176 u64 frequency = event->attr.sample_freq;
2177 u64 sec = NSEC_PER_SEC;
2178 u64 divisor, dividend;
2179
2180 int count_fls, nsec_fls, frequency_fls, sec_fls;
2181
2182 count_fls = fls64(count);
2183 nsec_fls = fls64(nsec);
2184 frequency_fls = fls64(frequency);
2185 sec_fls = 30;
2186
2187 /*
2188 * We got @count in @nsec, with a target of sample_freq HZ
2189 * the target period becomes:
2190 *
2191 * @count * 10^9
2192 * period = -------------------
2193 * @nsec * sample_freq
2194 *
2195 */
2196
2197 /*
2198 * Reduce accuracy by one bit such that @a and @b converge
2199 * to a similar magnitude.
2200 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002201#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002202do { \
2203 if (a##_fls > b##_fls) { \
2204 a >>= 1; \
2205 a##_fls--; \
2206 } else { \
2207 b >>= 1; \
2208 b##_fls--; \
2209 } \
2210} while (0)
2211
2212 /*
2213 * Reduce accuracy until either term fits in a u64, then proceed with
2214 * the other, so that finally we can do a u64/u64 division.
2215 */
2216 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2217 REDUCE_FLS(nsec, frequency);
2218 REDUCE_FLS(sec, count);
2219 }
2220
2221 if (count_fls + sec_fls > 64) {
2222 divisor = nsec * frequency;
2223
2224 while (count_fls + sec_fls > 64) {
2225 REDUCE_FLS(count, sec);
2226 divisor >>= 1;
2227 }
2228
2229 dividend = count * sec;
2230 } else {
2231 dividend = count * sec;
2232
2233 while (nsec_fls + frequency_fls > 64) {
2234 REDUCE_FLS(nsec, frequency);
2235 dividend >>= 1;
2236 }
2237
2238 divisor = nsec * frequency;
2239 }
2240
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002241 if (!divisor)
2242 return dividend;
2243
Peter Zijlstraabd50712010-01-26 18:50:16 +01002244 return div64_u64(dividend, divisor);
2245}
2246
2247static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002248{
2249 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002250 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002251 s64 delta;
2252
Peter Zijlstraabd50712010-01-26 18:50:16 +01002253 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002254
2255 delta = (s64)(period - hwc->sample_period);
2256 delta = (delta + 7) / 8; /* low pass filter */
2257
2258 sample_period = hwc->sample_period + delta;
2259
2260 if (!sample_period)
2261 sample_period = 1;
2262
2263 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002264
Peter Zijlstrae7850592010-05-21 14:43:08 +02002265 if (local64_read(&hwc->period_left) > 8*sample_period) {
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002266 event->pmu->stop(event, PERF_EF_UPDATE);
Peter Zijlstrae7850592010-05-21 14:43:08 +02002267 local64_set(&hwc->period_left, 0);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002268 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002269 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002270}
2271
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002272static void perf_ctx_adjust_freq(struct perf_event_context *ctx, u64 period)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002273{
2274 struct perf_event *event;
2275 struct hw_perf_event *hwc;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002276 u64 interrupts, now;
2277 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002278
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002279 raw_spin_lock(&ctx->lock);
Paul Mackerras03541f82009-10-14 16:58:03 +11002280 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002281 if (event->state != PERF_EVENT_STATE_ACTIVE)
2282 continue;
2283
Stephane Eranian5632ab12011-01-03 18:20:01 +02002284 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002285 continue;
2286
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002287 hwc = &event->hw;
2288
2289 interrupts = hwc->interrupts;
2290 hwc->interrupts = 0;
2291
2292 /*
2293 * unthrottle events on the tick
2294 */
2295 if (interrupts == MAX_INTERRUPTS) {
2296 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002297 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002298 }
2299
2300 if (!event->attr.freq || !event->attr.sample_freq)
2301 continue;
2302
Peter Zijlstraabd50712010-01-26 18:50:16 +01002303 event->pmu->read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02002304 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002305 delta = now - hwc->freq_count_stamp;
2306 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002307
Peter Zijlstraabd50712010-01-26 18:50:16 +01002308 if (delta > 0)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002309 perf_adjust_period(event, period, delta);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002310 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002311 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002312}
2313
2314/*
2315 * Round-robin a context's events:
2316 */
2317static void rotate_ctx(struct perf_event_context *ctx)
2318{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002319 raw_spin_lock(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002320
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01002321 /*
2322 * Rotate the first entry last of non-pinned groups. Rotation might be
2323 * disabled by the inheritance code.
2324 */
2325 if (!ctx->rotate_disable)
2326 list_rotate_left(&ctx->flexible_groups);
Frederic Weisbeckere2864172010-01-09 21:05:28 +01002327
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002328 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002329}
2330
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002331/*
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002332 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
2333 * because they're strictly cpu affine and rotate_start is called with IRQs
2334 * disabled, while rotate_context is called from IRQ context.
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002335 */
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002336static void perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002337{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002338 u64 interval = (u64)cpuctx->jiffies_interval * TICK_NSEC;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002339 struct perf_event_context *ctx = NULL;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002340 int rotate = 0, remove = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002341
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002342 if (cpuctx->ctx.nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002343 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002344 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
2345 rotate = 1;
2346 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002347
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002348 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002349 if (ctx && ctx->nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002350 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002351 if (ctx->nr_events != ctx->nr_active)
2352 rotate = 1;
2353 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002354
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002355 perf_pmu_disable(cpuctx->ctx.pmu);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002356 perf_ctx_adjust_freq(&cpuctx->ctx, interval);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002357 if (ctx)
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002358 perf_ctx_adjust_freq(ctx, interval);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002359
Peter Zijlstrad4944a02010-03-08 13:51:20 +01002360 if (!rotate)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002361 goto done;
Peter Zijlstrad4944a02010-03-08 13:51:20 +01002362
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01002363 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002364 if (ctx)
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01002365 task_ctx_sched_out(ctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002366
2367 rotate_ctx(&cpuctx->ctx);
2368 if (ctx)
2369 rotate_ctx(ctx);
2370
Stephane Eraniane5d13672011-02-14 11:20:01 +02002371 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, current);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002372 if (ctx)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002373 task_ctx_sched_in(ctx, EVENT_FLEXIBLE);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002374
2375done:
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002376 if (remove)
2377 list_del_init(&cpuctx->rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002378
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002379 perf_pmu_enable(cpuctx->ctx.pmu);
2380}
2381
2382void perf_event_task_tick(void)
2383{
2384 struct list_head *head = &__get_cpu_var(rotation_list);
2385 struct perf_cpu_context *cpuctx, *tmp;
2386
2387 WARN_ON(!irqs_disabled());
2388
2389 list_for_each_entry_safe(cpuctx, tmp, head, rotation_list) {
2390 if (cpuctx->jiffies_interval == 1 ||
2391 !(jiffies % cpuctx->jiffies_interval))
2392 perf_rotate_context(cpuctx);
2393 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002394}
2395
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002396static int event_enable_on_exec(struct perf_event *event,
2397 struct perf_event_context *ctx)
2398{
2399 if (!event->attr.enable_on_exec)
2400 return 0;
2401
2402 event->attr.enable_on_exec = 0;
2403 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2404 return 0;
2405
2406 __perf_event_mark_enabled(event, ctx);
2407
2408 return 1;
2409}
2410
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002411/*
2412 * Enable all of a task's events that have been marked enable-on-exec.
2413 * This expects task == current.
2414 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002415static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002416{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002417 struct perf_event *event;
2418 unsigned long flags;
2419 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002420 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002421
2422 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002423 if (!ctx || !ctx->nr_events)
2424 goto out;
2425
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002426 task_ctx_sched_out(ctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002427
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002428 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002429
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002430 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2431 ret = event_enable_on_exec(event, ctx);
2432 if (ret)
2433 enabled = 1;
2434 }
2435
2436 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2437 ret = event_enable_on_exec(event, ctx);
2438 if (ret)
2439 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002440 }
2441
2442 /*
2443 * Unclone this context if we enabled any event.
2444 */
2445 if (enabled)
2446 unclone_ctx(ctx);
2447
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002448 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002449
Stephane Eraniane5d13672011-02-14 11:20:01 +02002450 perf_event_context_sched_in(ctx, ctx->task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002451out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002452 local_irq_restore(flags);
2453}
2454
2455/*
2456 * Cross CPU call to read the hardware event
2457 */
2458static void __perf_event_read(void *info)
2459{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002460 struct perf_event *event = info;
2461 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002462 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002463
2464 /*
2465 * If this is a task context, we need to check whether it is
2466 * the current task context of this cpu. If not it has been
2467 * scheduled out before the smp call arrived. In that case
2468 * event->count would have been updated to a recent sample
2469 * when the event was scheduled out.
2470 */
2471 if (ctx->task && cpuctx->task_ctx != ctx)
2472 return;
2473
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002474 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002475 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002476 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002477 update_cgrp_time_from_event(event);
2478 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002479 update_event_times(event);
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002480 if (event->state == PERF_EVENT_STATE_ACTIVE)
2481 event->pmu->read(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002482 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002483}
2484
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002485static inline u64 perf_event_count(struct perf_event *event)
2486{
Peter Zijlstrae7850592010-05-21 14:43:08 +02002487 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002488}
2489
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002490static u64 perf_event_read(struct perf_event *event)
2491{
2492 /*
2493 * If event is enabled and currently active on a CPU, update the
2494 * value in the event structure:
2495 */
2496 if (event->state == PERF_EVENT_STATE_ACTIVE) {
2497 smp_call_function_single(event->oncpu,
2498 __perf_event_read, event, 1);
2499 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01002500 struct perf_event_context *ctx = event->ctx;
2501 unsigned long flags;
2502
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002503 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002504 /*
2505 * may read while context is not active
2506 * (e.g., thread is blocked), in that case
2507 * we cannot update context time
2508 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002509 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002510 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002511 update_cgrp_time_from_event(event);
2512 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002513 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002514 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002515 }
2516
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002517 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002518}
2519
2520/*
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002521 * Callchain support
2522 */
2523
2524struct callchain_cpus_entries {
2525 struct rcu_head rcu_head;
2526 struct perf_callchain_entry *cpu_entries[0];
2527};
2528
Frederic Weisbecker7ae07ea2010-08-14 20:45:13 +02002529static DEFINE_PER_CPU(int, callchain_recursion[PERF_NR_CONTEXTS]);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002530static atomic_t nr_callchain_events;
2531static DEFINE_MUTEX(callchain_mutex);
2532struct callchain_cpus_entries *callchain_cpus_entries;
2533
2534
2535__weak void perf_callchain_kernel(struct perf_callchain_entry *entry,
2536 struct pt_regs *regs)
2537{
2538}
2539
2540__weak void perf_callchain_user(struct perf_callchain_entry *entry,
2541 struct pt_regs *regs)
2542{
2543}
2544
2545static void release_callchain_buffers_rcu(struct rcu_head *head)
2546{
2547 struct callchain_cpus_entries *entries;
2548 int cpu;
2549
2550 entries = container_of(head, struct callchain_cpus_entries, rcu_head);
2551
2552 for_each_possible_cpu(cpu)
2553 kfree(entries->cpu_entries[cpu]);
2554
2555 kfree(entries);
2556}
2557
2558static void release_callchain_buffers(void)
2559{
2560 struct callchain_cpus_entries *entries;
2561
2562 entries = callchain_cpus_entries;
2563 rcu_assign_pointer(callchain_cpus_entries, NULL);
2564 call_rcu(&entries->rcu_head, release_callchain_buffers_rcu);
2565}
2566
2567static int alloc_callchain_buffers(void)
2568{
2569 int cpu;
2570 int size;
2571 struct callchain_cpus_entries *entries;
2572
2573 /*
2574 * We can't use the percpu allocation API for data that can be
2575 * accessed from NMI. Use a temporary manual per cpu allocation
2576 * until that gets sorted out.
2577 */
Eric Dumazet88d4f0d2011-01-25 19:40:51 +01002578 size = offsetof(struct callchain_cpus_entries, cpu_entries[nr_cpu_ids]);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002579
2580 entries = kzalloc(size, GFP_KERNEL);
2581 if (!entries)
2582 return -ENOMEM;
2583
Frederic Weisbecker7ae07ea2010-08-14 20:45:13 +02002584 size = sizeof(struct perf_callchain_entry) * PERF_NR_CONTEXTS;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002585
2586 for_each_possible_cpu(cpu) {
2587 entries->cpu_entries[cpu] = kmalloc_node(size, GFP_KERNEL,
2588 cpu_to_node(cpu));
2589 if (!entries->cpu_entries[cpu])
2590 goto fail;
2591 }
2592
2593 rcu_assign_pointer(callchain_cpus_entries, entries);
2594
2595 return 0;
2596
2597fail:
2598 for_each_possible_cpu(cpu)
2599 kfree(entries->cpu_entries[cpu]);
2600 kfree(entries);
2601
2602 return -ENOMEM;
2603}
2604
2605static int get_callchain_buffers(void)
2606{
2607 int err = 0;
2608 int count;
2609
2610 mutex_lock(&callchain_mutex);
2611
2612 count = atomic_inc_return(&nr_callchain_events);
2613 if (WARN_ON_ONCE(count < 1)) {
2614 err = -EINVAL;
2615 goto exit;
2616 }
2617
2618 if (count > 1) {
2619 /* If the allocation failed, give up */
2620 if (!callchain_cpus_entries)
2621 err = -ENOMEM;
2622 goto exit;
2623 }
2624
2625 err = alloc_callchain_buffers();
2626 if (err)
2627 release_callchain_buffers();
2628exit:
2629 mutex_unlock(&callchain_mutex);
2630
2631 return err;
2632}
2633
2634static void put_callchain_buffers(void)
2635{
2636 if (atomic_dec_and_mutex_lock(&nr_callchain_events, &callchain_mutex)) {
2637 release_callchain_buffers();
2638 mutex_unlock(&callchain_mutex);
2639 }
2640}
2641
2642static int get_recursion_context(int *recursion)
2643{
2644 int rctx;
2645
2646 if (in_nmi())
2647 rctx = 3;
2648 else if (in_irq())
2649 rctx = 2;
2650 else if (in_softirq())
2651 rctx = 1;
2652 else
2653 rctx = 0;
2654
2655 if (recursion[rctx])
2656 return -1;
2657
2658 recursion[rctx]++;
2659 barrier();
2660
2661 return rctx;
2662}
2663
2664static inline void put_recursion_context(int *recursion, int rctx)
2665{
2666 barrier();
2667 recursion[rctx]--;
2668}
2669
2670static struct perf_callchain_entry *get_callchain_entry(int *rctx)
2671{
2672 int cpu;
2673 struct callchain_cpus_entries *entries;
2674
2675 *rctx = get_recursion_context(__get_cpu_var(callchain_recursion));
2676 if (*rctx == -1)
2677 return NULL;
2678
2679 entries = rcu_dereference(callchain_cpus_entries);
2680 if (!entries)
2681 return NULL;
2682
2683 cpu = smp_processor_id();
2684
2685 return &entries->cpu_entries[cpu][*rctx];
2686}
2687
2688static void
2689put_callchain_entry(int rctx)
2690{
2691 put_recursion_context(__get_cpu_var(callchain_recursion), rctx);
2692}
2693
2694static struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
2695{
2696 int rctx;
2697 struct perf_callchain_entry *entry;
2698
2699
2700 entry = get_callchain_entry(&rctx);
2701 if (rctx == -1)
2702 return NULL;
2703
2704 if (!entry)
2705 goto exit_put;
2706
2707 entry->nr = 0;
2708
2709 if (!user_mode(regs)) {
2710 perf_callchain_store(entry, PERF_CONTEXT_KERNEL);
2711 perf_callchain_kernel(entry, regs);
2712 if (current->mm)
2713 regs = task_pt_regs(current);
2714 else
2715 regs = NULL;
2716 }
2717
2718 if (regs) {
2719 perf_callchain_store(entry, PERF_CONTEXT_USER);
2720 perf_callchain_user(entry, regs);
2721 }
2722
2723exit_put:
2724 put_callchain_entry(rctx);
2725
2726 return entry;
2727}
2728
2729/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002730 * Initialize the perf_event context in a task_struct:
2731 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02002732static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002733{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002734 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002735 mutex_init(&ctx->mutex);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002736 INIT_LIST_HEAD(&ctx->pinned_groups);
2737 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002738 INIT_LIST_HEAD(&ctx->event_list);
2739 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002740}
2741
Peter Zijlstraeb184472010-09-07 15:55:13 +02002742static struct perf_event_context *
2743alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002744{
2745 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002746
2747 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
2748 if (!ctx)
2749 return NULL;
2750
2751 __perf_event_init_context(ctx);
2752 if (task) {
2753 ctx->task = task;
2754 get_task_struct(task);
2755 }
2756 ctx->pmu = pmu;
2757
2758 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002759}
2760
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002761static struct task_struct *
2762find_lively_task_by_vpid(pid_t vpid)
2763{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002764 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002765 int err;
2766
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002767 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002768 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002769 task = current;
2770 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002771 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002772 if (task)
2773 get_task_struct(task);
2774 rcu_read_unlock();
2775
2776 if (!task)
2777 return ERR_PTR(-ESRCH);
2778
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002779 /* Reuse ptrace permission checks for now. */
2780 err = -EACCES;
2781 if (!ptrace_may_access(task, PTRACE_MODE_READ))
2782 goto errout;
2783
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002784 return task;
2785errout:
2786 put_task_struct(task);
2787 return ERR_PTR(err);
2788
2789}
2790
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002791/*
2792 * Returns a matching context with refcount and pincount.
2793 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002794static struct perf_event_context *
Matt Helsley38a81da2010-09-13 13:01:20 -07002795find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002796{
2797 struct perf_event_context *ctx;
2798 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002799 unsigned long flags;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002800 int ctxn, err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002801
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01002802 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002803 /* Must be root to operate on a CPU event: */
2804 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
2805 return ERR_PTR(-EACCES);
2806
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002807 /*
2808 * We could be clever and allow to attach a event to an
2809 * offline CPU and activate it when the CPU comes up, but
2810 * that's for later.
2811 */
2812 if (!cpu_online(cpu))
2813 return ERR_PTR(-ENODEV);
2814
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002815 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002816 ctx = &cpuctx->ctx;
2817 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002818 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002819
2820 return ctx;
2821 }
2822
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002823 err = -EINVAL;
2824 ctxn = pmu->task_ctx_nr;
2825 if (ctxn < 0)
2826 goto errout;
2827
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002828retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002829 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002830 if (ctx) {
2831 unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002832 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002833 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002834 }
2835
2836 if (!ctx) {
Peter Zijlstraeb184472010-09-07 15:55:13 +02002837 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002838 err = -ENOMEM;
2839 if (!ctx)
2840 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002841
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002842 get_ctx(ctx);
Peter Zijlstraeb184472010-09-07 15:55:13 +02002843
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002844 err = 0;
2845 mutex_lock(&task->perf_event_mutex);
2846 /*
2847 * If it has already passed perf_event_exit_task().
2848 * we must see PF_EXITING, it takes this mutex too.
2849 */
2850 if (task->flags & PF_EXITING)
2851 err = -ESRCH;
2852 else if (task->perf_event_ctxp[ctxn])
2853 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002854 else {
2855 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002856 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002857 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002858 mutex_unlock(&task->perf_event_mutex);
2859
2860 if (unlikely(err)) {
Peter Zijlstraeb184472010-09-07 15:55:13 +02002861 put_task_struct(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002862 kfree(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002863
2864 if (err == -EAGAIN)
2865 goto retry;
2866 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002867 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002868 }
2869
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002870 return ctx;
2871
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002872errout:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002873 return ERR_PTR(err);
2874}
2875
Li Zefan6fb29152009-10-15 11:21:42 +08002876static void perf_event_free_filter(struct perf_event *event);
2877
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002878static void free_event_rcu(struct rcu_head *head)
2879{
2880 struct perf_event *event;
2881
2882 event = container_of(head, struct perf_event, rcu_head);
2883 if (event->ns)
2884 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08002885 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002886 kfree(event);
2887}
2888
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002889static void perf_buffer_put(struct perf_buffer *buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002890
2891static void free_event(struct perf_event *event)
2892{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08002893 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002894
2895 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02002896 if (event->attach_state & PERF_ATTACH_TASK)
Stephane Eraniane5d13672011-02-14 11:20:01 +02002897 jump_label_dec(&perf_sched_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01002898 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002899 atomic_dec(&nr_mmap_events);
2900 if (event->attr.comm)
2901 atomic_dec(&nr_comm_events);
2902 if (event->attr.task)
2903 atomic_dec(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002904 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
2905 put_callchain_buffers();
Peter Zijlstra08309372011-03-03 11:31:20 +01002906 if (is_cgroup_event(event)) {
2907 atomic_dec(&per_cpu(perf_cgroup_events, event->cpu));
2908 jump_label_dec(&perf_sched_events);
2909 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002910 }
2911
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002912 if (event->buffer) {
2913 perf_buffer_put(event->buffer);
2914 event->buffer = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002915 }
2916
Stephane Eraniane5d13672011-02-14 11:20:01 +02002917 if (is_cgroup_event(event))
2918 perf_detach_cgroup(event);
2919
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002920 if (event->destroy)
2921 event->destroy(event);
2922
Peter Zijlstra0c67b402010-09-13 11:15:58 +02002923 if (event->ctx)
2924 put_ctx(event->ctx);
2925
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002926 call_rcu(&event->rcu_head, free_event_rcu);
2927}
2928
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002929int perf_event_release_kernel(struct perf_event *event)
2930{
2931 struct perf_event_context *ctx = event->ctx;
2932
Peter Zijlstra050735b2010-05-11 11:51:53 +02002933 /*
2934 * Remove from the PMU, can't get re-enabled since we got
2935 * here because the last ref went.
2936 */
2937 perf_event_disable(event);
2938
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002939 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa0507c82010-05-06 15:42:53 +02002940 /*
2941 * There are two ways this annotation is useful:
2942 *
2943 * 1) there is a lock recursion from perf_event_exit_task
2944 * see the comment there.
2945 *
2946 * 2) there is a lock-inversion with mmap_sem through
2947 * perf_event_read_group(), which takes faults while
2948 * holding ctx->mutex, however this is called after
2949 * the last filedesc died, so there is no possibility
2950 * to trigger the AB-BA case.
2951 */
2952 mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002953 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002954 perf_group_detach(event);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002955 list_del_event(event, ctx);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002956 raw_spin_unlock_irq(&ctx->lock);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002957 mutex_unlock(&ctx->mutex);
2958
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002959 free_event(event);
2960
2961 return 0;
2962}
2963EXPORT_SYMBOL_GPL(perf_event_release_kernel);
2964
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002965/*
2966 * Called when the last reference to the file is gone.
2967 */
2968static int perf_release(struct inode *inode, struct file *file)
2969{
2970 struct perf_event *event = file->private_data;
Peter Zijlstra88821352010-11-09 19:01:43 +01002971 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002972
2973 file->private_data = NULL;
2974
Peter Zijlstra88821352010-11-09 19:01:43 +01002975 rcu_read_lock();
2976 owner = ACCESS_ONCE(event->owner);
2977 /*
2978 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
2979 * !owner it means the list deletion is complete and we can indeed
2980 * free this event, otherwise we need to serialize on
2981 * owner->perf_event_mutex.
2982 */
2983 smp_read_barrier_depends();
2984 if (owner) {
2985 /*
2986 * Since delayed_put_task_struct() also drops the last
2987 * task reference we can safely take a new reference
2988 * while holding the rcu_read_lock().
2989 */
2990 get_task_struct(owner);
2991 }
2992 rcu_read_unlock();
2993
2994 if (owner) {
2995 mutex_lock(&owner->perf_event_mutex);
2996 /*
2997 * We have to re-check the event->owner field, if it is cleared
2998 * we raced with perf_event_exit_task(), acquiring the mutex
2999 * ensured they're done, and we can proceed with freeing the
3000 * event.
3001 */
3002 if (event->owner)
3003 list_del_init(&event->owner_entry);
3004 mutex_unlock(&owner->perf_event_mutex);
3005 put_task_struct(owner);
3006 }
3007
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003008 return perf_event_release_kernel(event);
3009}
3010
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003011u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003012{
3013 struct perf_event *child;
3014 u64 total = 0;
3015
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003016 *enabled = 0;
3017 *running = 0;
3018
Peter Zijlstra6f105812009-11-20 22:19:56 +01003019 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003020 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003021 *enabled += event->total_time_enabled +
3022 atomic64_read(&event->child_total_time_enabled);
3023 *running += event->total_time_running +
3024 atomic64_read(&event->child_total_time_running);
3025
3026 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003027 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003028 *enabled += child->total_time_enabled;
3029 *running += child->total_time_running;
3030 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003031 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003032
3033 return total;
3034}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003035EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003036
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003037static int perf_event_read_group(struct perf_event *event,
3038 u64 read_format, char __user *buf)
3039{
3040 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003041 int n = 0, size = 0, ret = -EFAULT;
3042 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003043 u64 values[5];
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003044 u64 count, enabled, running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003045
Peter Zijlstra6f105812009-11-20 22:19:56 +01003046 mutex_lock(&ctx->mutex);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003047 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003048
3049 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003050 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3051 values[n++] = enabled;
3052 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3053 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003054 values[n++] = count;
3055 if (read_format & PERF_FORMAT_ID)
3056 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003057
3058 size = n * sizeof(u64);
3059
3060 if (copy_to_user(buf, values, size))
Peter Zijlstra6f105812009-11-20 22:19:56 +01003061 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003062
Peter Zijlstra6f105812009-11-20 22:19:56 +01003063 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003064
3065 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01003066 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003067
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003068 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003069 if (read_format & PERF_FORMAT_ID)
3070 values[n++] = primary_event_id(sub);
3071
3072 size = n * sizeof(u64);
3073
Stephane Eranian184d3da2009-11-23 21:40:49 -08003074 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstra6f105812009-11-20 22:19:56 +01003075 ret = -EFAULT;
3076 goto unlock;
3077 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01003078
3079 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003080 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003081unlock:
3082 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003083
Peter Zijlstraabf48682009-11-20 22:19:49 +01003084 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003085}
3086
3087static int perf_event_read_one(struct perf_event *event,
3088 u64 read_format, char __user *buf)
3089{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003090 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003091 u64 values[4];
3092 int n = 0;
3093
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003094 values[n++] = perf_event_read_value(event, &enabled, &running);
3095 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3096 values[n++] = enabled;
3097 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3098 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003099 if (read_format & PERF_FORMAT_ID)
3100 values[n++] = primary_event_id(event);
3101
3102 if (copy_to_user(buf, values, n * sizeof(u64)))
3103 return -EFAULT;
3104
3105 return n * sizeof(u64);
3106}
3107
3108/*
3109 * Read the performance event - simple non blocking version for now
3110 */
3111static ssize_t
3112perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
3113{
3114 u64 read_format = event->attr.read_format;
3115 int ret;
3116
3117 /*
3118 * Return end-of-file for a read on a event that is in
3119 * error state (i.e. because it was pinned but it couldn't be
3120 * scheduled on to the CPU at some point).
3121 */
3122 if (event->state == PERF_EVENT_STATE_ERROR)
3123 return 0;
3124
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003125 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003126 return -ENOSPC;
3127
3128 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003129 if (read_format & PERF_FORMAT_GROUP)
3130 ret = perf_event_read_group(event, read_format, buf);
3131 else
3132 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003133
3134 return ret;
3135}
3136
3137static ssize_t
3138perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3139{
3140 struct perf_event *event = file->private_data;
3141
3142 return perf_read_hw(event, buf, count);
3143}
3144
3145static unsigned int perf_poll(struct file *file, poll_table *wait)
3146{
3147 struct perf_event *event = file->private_data;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003148 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003149 unsigned int events = POLL_HUP;
3150
3151 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003152 buffer = rcu_dereference(event->buffer);
3153 if (buffer)
3154 events = atomic_xchg(&buffer->poll, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003155 rcu_read_unlock();
3156
3157 poll_wait(file, &event->waitq, wait);
3158
3159 return events;
3160}
3161
3162static void perf_event_reset(struct perf_event *event)
3163{
3164 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02003165 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003166 perf_event_update_userpage(event);
3167}
3168
3169/*
3170 * Holding the top-level event's child_mutex means that any
3171 * descendant process that has inherited this event will block
3172 * in sync_child_event if it goes to exit, thus satisfying the
3173 * task existence requirements of perf_event_enable/disable.
3174 */
3175static void perf_event_for_each_child(struct perf_event *event,
3176 void (*func)(struct perf_event *))
3177{
3178 struct perf_event *child;
3179
3180 WARN_ON_ONCE(event->ctx->parent_ctx);
3181 mutex_lock(&event->child_mutex);
3182 func(event);
3183 list_for_each_entry(child, &event->child_list, child_list)
3184 func(child);
3185 mutex_unlock(&event->child_mutex);
3186}
3187
3188static void perf_event_for_each(struct perf_event *event,
3189 void (*func)(struct perf_event *))
3190{
3191 struct perf_event_context *ctx = event->ctx;
3192 struct perf_event *sibling;
3193
3194 WARN_ON_ONCE(ctx->parent_ctx);
3195 mutex_lock(&ctx->mutex);
3196 event = event->group_leader;
3197
3198 perf_event_for_each_child(event, func);
3199 func(event);
3200 list_for_each_entry(sibling, &event->sibling_list, group_entry)
3201 perf_event_for_each_child(event, func);
3202 mutex_unlock(&ctx->mutex);
3203}
3204
3205static int perf_event_period(struct perf_event *event, u64 __user *arg)
3206{
3207 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003208 int ret = 0;
3209 u64 value;
3210
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01003211 if (!is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003212 return -EINVAL;
3213
John Blackwoodad0cf342010-09-28 18:03:11 -04003214 if (copy_from_user(&value, arg, sizeof(value)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003215 return -EFAULT;
3216
3217 if (!value)
3218 return -EINVAL;
3219
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003220 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003221 if (event->attr.freq) {
3222 if (value > sysctl_perf_event_sample_rate) {
3223 ret = -EINVAL;
3224 goto unlock;
3225 }
3226
3227 event->attr.sample_freq = value;
3228 } else {
3229 event->attr.sample_period = value;
3230 event->hw.sample_period = value;
3231 }
3232unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003233 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003234
3235 return ret;
3236}
3237
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003238static const struct file_operations perf_fops;
3239
3240static struct perf_event *perf_fget_light(int fd, int *fput_needed)
3241{
3242 struct file *file;
3243
3244 file = fget_light(fd, fput_needed);
3245 if (!file)
3246 return ERR_PTR(-EBADF);
3247
3248 if (file->f_op != &perf_fops) {
3249 fput_light(file, *fput_needed);
3250 *fput_needed = 0;
3251 return ERR_PTR(-EBADF);
3252 }
3253
3254 return file->private_data;
3255}
3256
3257static int perf_event_set_output(struct perf_event *event,
3258 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08003259static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003260
3261static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3262{
3263 struct perf_event *event = file->private_data;
3264 void (*func)(struct perf_event *);
3265 u32 flags = arg;
3266
3267 switch (cmd) {
3268 case PERF_EVENT_IOC_ENABLE:
3269 func = perf_event_enable;
3270 break;
3271 case PERF_EVENT_IOC_DISABLE:
3272 func = perf_event_disable;
3273 break;
3274 case PERF_EVENT_IOC_RESET:
3275 func = perf_event_reset;
3276 break;
3277
3278 case PERF_EVENT_IOC_REFRESH:
3279 return perf_event_refresh(event, arg);
3280
3281 case PERF_EVENT_IOC_PERIOD:
3282 return perf_event_period(event, (u64 __user *)arg);
3283
3284 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003285 {
3286 struct perf_event *output_event = NULL;
3287 int fput_needed = 0;
3288 int ret;
3289
3290 if (arg != -1) {
3291 output_event = perf_fget_light(arg, &fput_needed);
3292 if (IS_ERR(output_event))
3293 return PTR_ERR(output_event);
3294 }
3295
3296 ret = perf_event_set_output(event, output_event);
3297 if (output_event)
3298 fput_light(output_event->filp, fput_needed);
3299
3300 return ret;
3301 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003302
Li Zefan6fb29152009-10-15 11:21:42 +08003303 case PERF_EVENT_IOC_SET_FILTER:
3304 return perf_event_set_filter(event, (void __user *)arg);
3305
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003306 default:
3307 return -ENOTTY;
3308 }
3309
3310 if (flags & PERF_IOC_FLAG_GROUP)
3311 perf_event_for_each(event, func);
3312 else
3313 perf_event_for_each_child(event, func);
3314
3315 return 0;
3316}
3317
3318int perf_event_task_enable(void)
3319{
3320 struct perf_event *event;
3321
3322 mutex_lock(&current->perf_event_mutex);
3323 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3324 perf_event_for_each_child(event, perf_event_enable);
3325 mutex_unlock(&current->perf_event_mutex);
3326
3327 return 0;
3328}
3329
3330int perf_event_task_disable(void)
3331{
3332 struct perf_event *event;
3333
3334 mutex_lock(&current->perf_event_mutex);
3335 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3336 perf_event_for_each_child(event, perf_event_disable);
3337 mutex_unlock(&current->perf_event_mutex);
3338
3339 return 0;
3340}
3341
3342#ifndef PERF_EVENT_INDEX_OFFSET
3343# define PERF_EVENT_INDEX_OFFSET 0
3344#endif
3345
3346static int perf_event_index(struct perf_event *event)
3347{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003348 if (event->hw.state & PERF_HES_STOPPED)
3349 return 0;
3350
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003351 if (event->state != PERF_EVENT_STATE_ACTIVE)
3352 return 0;
3353
3354 return event->hw.idx + 1 - PERF_EVENT_INDEX_OFFSET;
3355}
3356
3357/*
3358 * Callers need to ensure there can be no nesting of this function, otherwise
3359 * the seqlock logic goes bad. We can not serialize this because the arch
3360 * code calls this from NMI context.
3361 */
3362void perf_event_update_userpage(struct perf_event *event)
3363{
3364 struct perf_event_mmap_page *userpg;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003365 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003366
3367 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003368 buffer = rcu_dereference(event->buffer);
3369 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003370 goto unlock;
3371
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003372 userpg = buffer->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003373
3374 /*
3375 * Disable preemption so as to not let the corresponding user-space
3376 * spin too long if we get preempted.
3377 */
3378 preempt_disable();
3379 ++userpg->lock;
3380 barrier();
3381 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003382 userpg->offset = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003383 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstrae7850592010-05-21 14:43:08 +02003384 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003385
3386 userpg->time_enabled = event->total_time_enabled +
3387 atomic64_read(&event->child_total_time_enabled);
3388
3389 userpg->time_running = event->total_time_running +
3390 atomic64_read(&event->child_total_time_running);
3391
3392 barrier();
3393 ++userpg->lock;
3394 preempt_enable();
3395unlock:
3396 rcu_read_unlock();
3397}
3398
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003399static unsigned long perf_data_size(struct perf_buffer *buffer);
3400
3401static void
3402perf_buffer_init(struct perf_buffer *buffer, long watermark, int flags)
3403{
3404 long max_size = perf_data_size(buffer);
3405
3406 if (watermark)
3407 buffer->watermark = min(max_size, watermark);
3408
3409 if (!buffer->watermark)
3410 buffer->watermark = max_size / 2;
3411
3412 if (flags & PERF_BUFFER_WRITABLE)
3413 buffer->writable = 1;
3414
3415 atomic_set(&buffer->refcount, 1);
3416}
3417
Peter Zijlstra906010b2009-09-21 16:08:49 +02003418#ifndef CONFIG_PERF_USE_VMALLOC
3419
3420/*
3421 * Back perf_mmap() with regular GFP_KERNEL-0 pages.
3422 */
3423
3424static struct page *
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003425perf_mmap_to_page(struct perf_buffer *buffer, unsigned long pgoff)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003426{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003427 if (pgoff > buffer->nr_pages)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003428 return NULL;
3429
3430 if (pgoff == 0)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003431 return virt_to_page(buffer->user_page);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003432
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003433 return virt_to_page(buffer->data_pages[pgoff - 1]);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003434}
3435
Peter Zijlstraa19d35c2010-05-17 18:48:00 +02003436static void *perf_mmap_alloc_page(int cpu)
3437{
3438 struct page *page;
3439 int node;
3440
3441 node = (cpu == -1) ? cpu : cpu_to_node(cpu);
3442 page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
3443 if (!page)
3444 return NULL;
3445
3446 return page_address(page);
3447}
3448
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003449static struct perf_buffer *
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003450perf_buffer_alloc(int nr_pages, long watermark, int cpu, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003451{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003452 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003453 unsigned long size;
3454 int i;
3455
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003456 size = sizeof(struct perf_buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003457 size += nr_pages * sizeof(void *);
3458
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003459 buffer = kzalloc(size, GFP_KERNEL);
3460 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003461 goto fail;
3462
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003463 buffer->user_page = perf_mmap_alloc_page(cpu);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003464 if (!buffer->user_page)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003465 goto fail_user_page;
3466
3467 for (i = 0; i < nr_pages; i++) {
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003468 buffer->data_pages[i] = perf_mmap_alloc_page(cpu);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003469 if (!buffer->data_pages[i])
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003470 goto fail_data_pages;
3471 }
3472
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003473 buffer->nr_pages = nr_pages;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003474
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003475 perf_buffer_init(buffer, watermark, flags);
3476
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003477 return buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003478
3479fail_data_pages:
3480 for (i--; i >= 0; i--)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003481 free_page((unsigned long)buffer->data_pages[i]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003482
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003483 free_page((unsigned long)buffer->user_page);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003484
3485fail_user_page:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003486 kfree(buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003487
3488fail:
Peter Zijlstra906010b2009-09-21 16:08:49 +02003489 return NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003490}
3491
3492static void perf_mmap_free_page(unsigned long addr)
3493{
3494 struct page *page = virt_to_page((void *)addr);
3495
3496 page->mapping = NULL;
3497 __free_page(page);
3498}
3499
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003500static void perf_buffer_free(struct perf_buffer *buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003501{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003502 int i;
3503
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003504 perf_mmap_free_page((unsigned long)buffer->user_page);
3505 for (i = 0; i < buffer->nr_pages; i++)
3506 perf_mmap_free_page((unsigned long)buffer->data_pages[i]);
3507 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003508}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003509
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003510static inline int page_order(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003511{
3512 return 0;
3513}
3514
Peter Zijlstra906010b2009-09-21 16:08:49 +02003515#else
3516
3517/*
3518 * Back perf_mmap() with vmalloc memory.
3519 *
3520 * Required for architectures that have d-cache aliasing issues.
3521 */
3522
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003523static inline int page_order(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003524{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003525 return buffer->page_order;
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003526}
3527
Peter Zijlstra906010b2009-09-21 16:08:49 +02003528static struct page *
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003529perf_mmap_to_page(struct perf_buffer *buffer, unsigned long pgoff)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003530{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003531 if (pgoff > (1UL << page_order(buffer)))
Peter Zijlstra906010b2009-09-21 16:08:49 +02003532 return NULL;
3533
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003534 return vmalloc_to_page((void *)buffer->user_page + pgoff * PAGE_SIZE);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003535}
3536
3537static void perf_mmap_unmark_page(void *addr)
3538{
3539 struct page *page = vmalloc_to_page(addr);
3540
3541 page->mapping = NULL;
3542}
3543
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003544static void perf_buffer_free_work(struct work_struct *work)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003545{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003546 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003547 void *base;
3548 int i, nr;
3549
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003550 buffer = container_of(work, struct perf_buffer, work);
3551 nr = 1 << page_order(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003552
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003553 base = buffer->user_page;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003554 for (i = 0; i < nr + 1; i++)
3555 perf_mmap_unmark_page(base + (i * PAGE_SIZE));
3556
3557 vfree(base);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003558 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003559}
3560
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003561static void perf_buffer_free(struct perf_buffer *buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003562{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003563 schedule_work(&buffer->work);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003564}
3565
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003566static struct perf_buffer *
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003567perf_buffer_alloc(int nr_pages, long watermark, int cpu, int flags)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003568{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003569 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003570 unsigned long size;
3571 void *all_buf;
3572
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003573 size = sizeof(struct perf_buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003574 size += sizeof(void *);
3575
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003576 buffer = kzalloc(size, GFP_KERNEL);
3577 if (!buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003578 goto fail;
3579
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003580 INIT_WORK(&buffer->work, perf_buffer_free_work);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003581
3582 all_buf = vmalloc_user((nr_pages + 1) * PAGE_SIZE);
3583 if (!all_buf)
3584 goto fail_all_buf;
3585
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003586 buffer->user_page = all_buf;
3587 buffer->data_pages[0] = all_buf + PAGE_SIZE;
3588 buffer->page_order = ilog2(nr_pages);
3589 buffer->nr_pages = 1;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003590
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003591 perf_buffer_init(buffer, watermark, flags);
3592
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003593 return buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003594
3595fail_all_buf:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003596 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003597
3598fail:
3599 return NULL;
3600}
3601
3602#endif
3603
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003604static unsigned long perf_data_size(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003605{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003606 return buffer->nr_pages << (PAGE_SHIFT + page_order(buffer));
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003607}
3608
Peter Zijlstra906010b2009-09-21 16:08:49 +02003609static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
3610{
3611 struct perf_event *event = vma->vm_file->private_data;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003612 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003613 int ret = VM_FAULT_SIGBUS;
3614
3615 if (vmf->flags & FAULT_FLAG_MKWRITE) {
3616 if (vmf->pgoff == 0)
3617 ret = 0;
3618 return ret;
3619 }
3620
3621 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003622 buffer = rcu_dereference(event->buffer);
3623 if (!buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003624 goto unlock;
3625
3626 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
3627 goto unlock;
3628
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003629 vmf->page = perf_mmap_to_page(buffer, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003630 if (!vmf->page)
3631 goto unlock;
3632
3633 get_page(vmf->page);
3634 vmf->page->mapping = vma->vm_file->f_mapping;
3635 vmf->page->index = vmf->pgoff;
3636
3637 ret = 0;
3638unlock:
3639 rcu_read_unlock();
3640
3641 return ret;
3642}
3643
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003644static void perf_buffer_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003645{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003646 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003647
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003648 buffer = container_of(rcu_head, struct perf_buffer, rcu_head);
3649 perf_buffer_free(buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003650}
3651
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003652static struct perf_buffer *perf_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003653{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003654 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003655
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003656 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003657 buffer = rcu_dereference(event->buffer);
3658 if (buffer) {
3659 if (!atomic_inc_not_zero(&buffer->refcount))
3660 buffer = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003661 }
3662 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003663
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003664 return buffer;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003665}
3666
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003667static void perf_buffer_put(struct perf_buffer *buffer)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003668{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003669 if (!atomic_dec_and_test(&buffer->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003670 return;
3671
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003672 call_rcu(&buffer->rcu_head, perf_buffer_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003673}
3674
3675static void perf_mmap_open(struct vm_area_struct *vma)
3676{
3677 struct perf_event *event = vma->vm_file->private_data;
3678
3679 atomic_inc(&event->mmap_count);
3680}
3681
3682static void perf_mmap_close(struct vm_area_struct *vma)
3683{
3684 struct perf_event *event = vma->vm_file->private_data;
3685
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003686 if (atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex)) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003687 unsigned long size = perf_data_size(event->buffer);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003688 struct user_struct *user = event->mmap_user;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003689 struct perf_buffer *buffer = event->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003690
Peter Zijlstra906010b2009-09-21 16:08:49 +02003691 atomic_long_sub((size >> PAGE_SHIFT) + 1, &user->locked_vm);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003692 vma->vm_mm->locked_vm -= event->mmap_locked;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003693 rcu_assign_pointer(event->buffer, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003694 mutex_unlock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003695
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003696 perf_buffer_put(buffer);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003697 free_uid(user);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003698 }
3699}
3700
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003701static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003702 .open = perf_mmap_open,
3703 .close = perf_mmap_close,
3704 .fault = perf_mmap_fault,
3705 .page_mkwrite = perf_mmap_fault,
3706};
3707
3708static int perf_mmap(struct file *file, struct vm_area_struct *vma)
3709{
3710 struct perf_event *event = file->private_data;
3711 unsigned long user_locked, user_lock_limit;
3712 struct user_struct *user = current_user();
3713 unsigned long locked, lock_limit;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003714 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003715 unsigned long vma_size;
3716 unsigned long nr_pages;
3717 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003718 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003719
Peter Zijlstrac7920612010-05-18 10:33:24 +02003720 /*
3721 * Don't allow mmap() of inherited per-task counters. This would
3722 * create a performance issue due to all children writing to the
3723 * same buffer.
3724 */
3725 if (event->cpu == -1 && event->attr.inherit)
3726 return -EINVAL;
3727
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003728 if (!(vma->vm_flags & VM_SHARED))
3729 return -EINVAL;
3730
3731 vma_size = vma->vm_end - vma->vm_start;
3732 nr_pages = (vma_size / PAGE_SIZE) - 1;
3733
3734 /*
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003735 * If we have buffer pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003736 * can do bitmasks instead of modulo.
3737 */
3738 if (nr_pages != 0 && !is_power_of_2(nr_pages))
3739 return -EINVAL;
3740
3741 if (vma_size != PAGE_SIZE * (1 + nr_pages))
3742 return -EINVAL;
3743
3744 if (vma->vm_pgoff != 0)
3745 return -EINVAL;
3746
3747 WARN_ON_ONCE(event->ctx->parent_ctx);
3748 mutex_lock(&event->mmap_mutex);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003749 if (event->buffer) {
3750 if (event->buffer->nr_pages == nr_pages)
3751 atomic_inc(&event->buffer->refcount);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003752 else
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003753 ret = -EINVAL;
3754 goto unlock;
3755 }
3756
3757 user_extra = nr_pages + 1;
3758 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
3759
3760 /*
3761 * Increase the limit linearly with more CPUs:
3762 */
3763 user_lock_limit *= num_online_cpus();
3764
3765 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
3766
3767 extra = 0;
3768 if (user_locked > user_lock_limit)
3769 extra = user_locked - user_lock_limit;
3770
Jiri Slaby78d7d402010-03-05 13:42:54 -08003771 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003772 lock_limit >>= PAGE_SHIFT;
3773 locked = vma->vm_mm->locked_vm + extra;
3774
3775 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
3776 !capable(CAP_IPC_LOCK)) {
3777 ret = -EPERM;
3778 goto unlock;
3779 }
3780
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003781 WARN_ON(event->buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003782
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003783 if (vma->vm_flags & VM_WRITE)
3784 flags |= PERF_BUFFER_WRITABLE;
3785
3786 buffer = perf_buffer_alloc(nr_pages, event->attr.wakeup_watermark,
3787 event->cpu, flags);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003788 if (!buffer) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003789 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003790 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003791 }
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003792 rcu_assign_pointer(event->buffer, buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003793
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003794 atomic_long_add(user_extra, &user->locked_vm);
3795 event->mmap_locked = extra;
3796 event->mmap_user = get_current_user();
3797 vma->vm_mm->locked_vm += event->mmap_locked;
3798
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003799unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003800 if (!ret)
3801 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003802 mutex_unlock(&event->mmap_mutex);
3803
3804 vma->vm_flags |= VM_RESERVED;
3805 vma->vm_ops = &perf_mmap_vmops;
3806
3807 return ret;
3808}
3809
3810static int perf_fasync(int fd, struct file *filp, int on)
3811{
3812 struct inode *inode = filp->f_path.dentry->d_inode;
3813 struct perf_event *event = filp->private_data;
3814 int retval;
3815
3816 mutex_lock(&inode->i_mutex);
3817 retval = fasync_helper(fd, filp, on, &event->fasync);
3818 mutex_unlock(&inode->i_mutex);
3819
3820 if (retval < 0)
3821 return retval;
3822
3823 return 0;
3824}
3825
3826static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01003827 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003828 .release = perf_release,
3829 .read = perf_read,
3830 .poll = perf_poll,
3831 .unlocked_ioctl = perf_ioctl,
3832 .compat_ioctl = perf_ioctl,
3833 .mmap = perf_mmap,
3834 .fasync = perf_fasync,
3835};
3836
3837/*
3838 * Perf event wakeup
3839 *
3840 * If there's data, ensure we set the poll() state and publish everything
3841 * to user-space before waking everybody up.
3842 */
3843
3844void perf_event_wakeup(struct perf_event *event)
3845{
3846 wake_up_all(&event->waitq);
3847
3848 if (event->pending_kill) {
3849 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
3850 event->pending_kill = 0;
3851 }
3852}
3853
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003854static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003855{
3856 struct perf_event *event = container_of(entry,
3857 struct perf_event, pending);
3858
3859 if (event->pending_disable) {
3860 event->pending_disable = 0;
3861 __perf_event_disable(event);
3862 }
3863
3864 if (event->pending_wakeup) {
3865 event->pending_wakeup = 0;
3866 perf_event_wakeup(event);
3867 }
3868}
3869
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003870/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08003871 * We assume there is only KVM supporting the callbacks.
3872 * Later on, we might change it to a list if there is
3873 * another virtualization implementation supporting the callbacks.
3874 */
3875struct perf_guest_info_callbacks *perf_guest_cbs;
3876
3877int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3878{
3879 perf_guest_cbs = cbs;
3880 return 0;
3881}
3882EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
3883
3884int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3885{
3886 perf_guest_cbs = NULL;
3887 return 0;
3888}
3889EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
3890
3891/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003892 * Output
3893 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003894static bool perf_output_space(struct perf_buffer *buffer, unsigned long tail,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003895 unsigned long offset, unsigned long head)
3896{
3897 unsigned long mask;
3898
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003899 if (!buffer->writable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003900 return true;
3901
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003902 mask = perf_data_size(buffer) - 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003903
3904 offset = (offset - tail) & mask;
3905 head = (head - tail) & mask;
3906
3907 if ((int)(head - offset) < 0)
3908 return false;
3909
3910 return true;
3911}
3912
3913static void perf_output_wakeup(struct perf_output_handle *handle)
3914{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003915 atomic_set(&handle->buffer->poll, POLL_IN);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003916
3917 if (handle->nmi) {
3918 handle->event->pending_wakeup = 1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003919 irq_work_queue(&handle->event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003920 } else
3921 perf_event_wakeup(handle->event);
3922}
3923
3924/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003925 * We need to ensure a later event_id doesn't publish a head when a former
Peter Zijlstraef607772010-05-18 10:50:41 +02003926 * event isn't done writing. However since we need to deal with NMIs we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003927 * cannot fully serialize things.
3928 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003929 * We only publish the head (and generate a wakeup) when the outer-most
Peter Zijlstraef607772010-05-18 10:50:41 +02003930 * event completes.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003931 */
Peter Zijlstraef607772010-05-18 10:50:41 +02003932static void perf_output_get_handle(struct perf_output_handle *handle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003933{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003934 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003935
Peter Zijlstraef607772010-05-18 10:50:41 +02003936 preempt_disable();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003937 local_inc(&buffer->nest);
3938 handle->wakeup = local_read(&buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003939}
3940
Peter Zijlstraef607772010-05-18 10:50:41 +02003941static void perf_output_put_handle(struct perf_output_handle *handle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003942{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003943 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003944 unsigned long head;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003945
3946again:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003947 head = local_read(&buffer->head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003948
3949 /*
Peter Zijlstraef607772010-05-18 10:50:41 +02003950 * IRQ/NMI can happen here, which means we can miss a head update.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003951 */
3952
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003953 if (!local_dec_and_test(&buffer->nest))
Frederic Weisbeckeracd35a42010-05-20 21:28:34 +02003954 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003955
3956 /*
Peter Zijlstraef607772010-05-18 10:50:41 +02003957 * Publish the known good head. Rely on the full barrier implied
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003958 * by atomic_dec_and_test() order the buffer->head read and this
Peter Zijlstraef607772010-05-18 10:50:41 +02003959 * write.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003960 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003961 buffer->user_page->data_head = head;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003962
Peter Zijlstraef607772010-05-18 10:50:41 +02003963 /*
3964 * Now check if we missed an update, rely on the (compiler)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003965 * barrier in atomic_dec_and_test() to re-read buffer->head.
Peter Zijlstraef607772010-05-18 10:50:41 +02003966 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003967 if (unlikely(head != local_read(&buffer->head))) {
3968 local_inc(&buffer->nest);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003969 goto again;
3970 }
3971
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003972 if (handle->wakeup != local_read(&buffer->wakeup))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003973 perf_output_wakeup(handle);
Peter Zijlstraef607772010-05-18 10:50:41 +02003974
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003975out:
Peter Zijlstraef607772010-05-18 10:50:41 +02003976 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003977}
3978
Peter Zijlstraa94ffaa2010-05-20 19:50:07 +02003979__always_inline void perf_output_copy(struct perf_output_handle *handle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003980 const void *buf, unsigned int len)
3981{
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003982 do {
Peter Zijlstraa94ffaa2010-05-20 19:50:07 +02003983 unsigned long size = min_t(unsigned long, handle->size, len);
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003984
3985 memcpy(handle->addr, buf, size);
3986
3987 len -= size;
3988 handle->addr += size;
Frederic Weisbecker74048f82010-05-27 21:34:58 +02003989 buf += size;
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003990 handle->size -= size;
3991 if (!handle->size) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003992 struct perf_buffer *buffer = handle->buffer;
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003993
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003994 handle->page++;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003995 handle->page &= buffer->nr_pages - 1;
3996 handle->addr = buffer->data_pages[handle->page];
3997 handle->size = PAGE_SIZE << page_order(buffer);
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003998 }
3999 } while (len);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004000}
4001
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004002static void __perf_event_header__init_id(struct perf_event_header *header,
4003 struct perf_sample_data *data,
4004 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004005{
4006 u64 sample_type = event->attr.sample_type;
4007
4008 data->type = sample_type;
4009 header->size += event->id_header_size;
4010
4011 if (sample_type & PERF_SAMPLE_TID) {
4012 /* namespace issues */
4013 data->tid_entry.pid = perf_event_pid(event, current);
4014 data->tid_entry.tid = perf_event_tid(event, current);
4015 }
4016
4017 if (sample_type & PERF_SAMPLE_TIME)
4018 data->time = perf_clock();
4019
4020 if (sample_type & PERF_SAMPLE_ID)
4021 data->id = primary_event_id(event);
4022
4023 if (sample_type & PERF_SAMPLE_STREAM_ID)
4024 data->stream_id = event->id;
4025
4026 if (sample_type & PERF_SAMPLE_CPU) {
4027 data->cpu_entry.cpu = raw_smp_processor_id();
4028 data->cpu_entry.reserved = 0;
4029 }
4030}
4031
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004032static void perf_event_header__init_id(struct perf_event_header *header,
4033 struct perf_sample_data *data,
4034 struct perf_event *event)
4035{
4036 if (event->attr.sample_id_all)
4037 __perf_event_header__init_id(header, data, event);
4038}
4039
4040static void __perf_event__output_id_sample(struct perf_output_handle *handle,
4041 struct perf_sample_data *data)
4042{
4043 u64 sample_type = data->type;
4044
4045 if (sample_type & PERF_SAMPLE_TID)
4046 perf_output_put(handle, data->tid_entry);
4047
4048 if (sample_type & PERF_SAMPLE_TIME)
4049 perf_output_put(handle, data->time);
4050
4051 if (sample_type & PERF_SAMPLE_ID)
4052 perf_output_put(handle, data->id);
4053
4054 if (sample_type & PERF_SAMPLE_STREAM_ID)
4055 perf_output_put(handle, data->stream_id);
4056
4057 if (sample_type & PERF_SAMPLE_CPU)
4058 perf_output_put(handle, data->cpu_entry);
4059}
4060
4061static void perf_event__output_id_sample(struct perf_event *event,
4062 struct perf_output_handle *handle,
4063 struct perf_sample_data *sample)
4064{
4065 if (event->attr.sample_id_all)
4066 __perf_event__output_id_sample(handle, sample);
4067}
4068
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004069int perf_output_begin(struct perf_output_handle *handle,
4070 struct perf_event *event, unsigned int size,
4071 int nmi, int sample)
4072{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004073 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004074 unsigned long tail, offset, head;
4075 int have_lost;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004076 struct perf_sample_data sample_data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004077 struct {
4078 struct perf_event_header header;
4079 u64 id;
4080 u64 lost;
4081 } lost_event;
4082
4083 rcu_read_lock();
4084 /*
4085 * For inherited events we send all the output towards the parent.
4086 */
4087 if (event->parent)
4088 event = event->parent;
4089
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004090 buffer = rcu_dereference(event->buffer);
4091 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004092 goto out;
4093
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004094 handle->buffer = buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004095 handle->event = event;
4096 handle->nmi = nmi;
4097 handle->sample = sample;
4098
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004099 if (!buffer->nr_pages)
Stephane Eranian00d1d0b2010-05-17 12:46:01 +02004100 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004101
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004102 have_lost = local_read(&buffer->lost);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004103 if (have_lost) {
4104 lost_event.header.size = sizeof(lost_event);
4105 perf_event_header__init_id(&lost_event.header, &sample_data,
4106 event);
4107 size += lost_event.header.size;
4108 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004109
Peter Zijlstraef607772010-05-18 10:50:41 +02004110 perf_output_get_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004111
4112 do {
4113 /*
4114 * Userspace could choose to issue a mb() before updating the
4115 * tail pointer. So that all reads will be completed before the
4116 * write is issued.
4117 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004118 tail = ACCESS_ONCE(buffer->user_page->data_tail);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004119 smp_rmb();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004120 offset = head = local_read(&buffer->head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004121 head += size;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004122 if (unlikely(!perf_output_space(buffer, tail, offset, head)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004123 goto fail;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004124 } while (local_cmpxchg(&buffer->head, offset, head) != offset);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004125
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004126 if (head - local_read(&buffer->wakeup) > buffer->watermark)
4127 local_add(buffer->watermark, &buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004128
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004129 handle->page = offset >> (PAGE_SHIFT + page_order(buffer));
4130 handle->page &= buffer->nr_pages - 1;
4131 handle->size = offset & ((PAGE_SIZE << page_order(buffer)) - 1);
4132 handle->addr = buffer->data_pages[handle->page];
Peter Zijlstra5d967a82010-05-20 16:46:39 +02004133 handle->addr += handle->size;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004134 handle->size = (PAGE_SIZE << page_order(buffer)) - handle->size;
Peter Zijlstra5d967a82010-05-20 16:46:39 +02004135
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004136 if (have_lost) {
4137 lost_event.header.type = PERF_RECORD_LOST;
4138 lost_event.header.misc = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004139 lost_event.id = event->id;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004140 lost_event.lost = local_xchg(&buffer->lost, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004141
4142 perf_output_put(handle, lost_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004143 perf_event__output_id_sample(event, handle, &sample_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004144 }
4145
4146 return 0;
4147
4148fail:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004149 local_inc(&buffer->lost);
Peter Zijlstraef607772010-05-18 10:50:41 +02004150 perf_output_put_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004151out:
4152 rcu_read_unlock();
4153
4154 return -ENOSPC;
4155}
4156
4157void perf_output_end(struct perf_output_handle *handle)
4158{
4159 struct perf_event *event = handle->event;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004160 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004161
4162 int wakeup_events = event->attr.wakeup_events;
4163
4164 if (handle->sample && wakeup_events) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004165 int events = local_inc_return(&buffer->events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004166 if (events >= wakeup_events) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02004167 local_sub(wakeup_events, &buffer->events);
4168 local_inc(&buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004169 }
4170 }
4171
Peter Zijlstraef607772010-05-18 10:50:41 +02004172 perf_output_put_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004173 rcu_read_unlock();
4174}
4175
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004176static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004177 struct perf_event *event,
4178 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004179{
4180 u64 read_format = event->attr.read_format;
4181 u64 values[4];
4182 int n = 0;
4183
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004184 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004185 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004186 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004187 atomic64_read(&event->child_total_time_enabled);
4188 }
4189 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004190 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004191 atomic64_read(&event->child_total_time_running);
4192 }
4193 if (read_format & PERF_FORMAT_ID)
4194 values[n++] = primary_event_id(event);
4195
4196 perf_output_copy(handle, values, n * sizeof(u64));
4197}
4198
4199/*
4200 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
4201 */
4202static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004203 struct perf_event *event,
4204 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004205{
4206 struct perf_event *leader = event->group_leader, *sub;
4207 u64 read_format = event->attr.read_format;
4208 u64 values[5];
4209 int n = 0;
4210
4211 values[n++] = 1 + leader->nr_siblings;
4212
4213 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02004214 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004215
4216 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02004217 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004218
4219 if (leader != event)
4220 leader->pmu->read(leader);
4221
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004222 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004223 if (read_format & PERF_FORMAT_ID)
4224 values[n++] = primary_event_id(leader);
4225
4226 perf_output_copy(handle, values, n * sizeof(u64));
4227
4228 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
4229 n = 0;
4230
4231 if (sub != event)
4232 sub->pmu->read(sub);
4233
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004234 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004235 if (read_format & PERF_FORMAT_ID)
4236 values[n++] = primary_event_id(sub);
4237
4238 perf_output_copy(handle, values, n * sizeof(u64));
4239 }
4240}
4241
Stephane Eranianeed01522010-10-26 16:08:01 +02004242#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
4243 PERF_FORMAT_TOTAL_TIME_RUNNING)
4244
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004245static void perf_output_read(struct perf_output_handle *handle,
4246 struct perf_event *event)
4247{
Stephane Eranianeed01522010-10-26 16:08:01 +02004248 u64 enabled = 0, running = 0, now, ctx_time;
4249 u64 read_format = event->attr.read_format;
4250
4251 /*
4252 * compute total_time_enabled, total_time_running
4253 * based on snapshot values taken when the event
4254 * was last scheduled in.
4255 *
4256 * we cannot simply called update_context_time()
4257 * because of locking issue as we are called in
4258 * NMI context
4259 */
4260 if (read_format & PERF_FORMAT_TOTAL_TIMES) {
4261 now = perf_clock();
4262 ctx_time = event->shadow_ctx_time + now;
4263 enabled = ctx_time - event->tstamp_enabled;
4264 running = ctx_time - event->tstamp_running;
4265 }
4266
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004267 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02004268 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004269 else
Stephane Eranianeed01522010-10-26 16:08:01 +02004270 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004271}
4272
4273void perf_output_sample(struct perf_output_handle *handle,
4274 struct perf_event_header *header,
4275 struct perf_sample_data *data,
4276 struct perf_event *event)
4277{
4278 u64 sample_type = data->type;
4279
4280 perf_output_put(handle, *header);
4281
4282 if (sample_type & PERF_SAMPLE_IP)
4283 perf_output_put(handle, data->ip);
4284
4285 if (sample_type & PERF_SAMPLE_TID)
4286 perf_output_put(handle, data->tid_entry);
4287
4288 if (sample_type & PERF_SAMPLE_TIME)
4289 perf_output_put(handle, data->time);
4290
4291 if (sample_type & PERF_SAMPLE_ADDR)
4292 perf_output_put(handle, data->addr);
4293
4294 if (sample_type & PERF_SAMPLE_ID)
4295 perf_output_put(handle, data->id);
4296
4297 if (sample_type & PERF_SAMPLE_STREAM_ID)
4298 perf_output_put(handle, data->stream_id);
4299
4300 if (sample_type & PERF_SAMPLE_CPU)
4301 perf_output_put(handle, data->cpu_entry);
4302
4303 if (sample_type & PERF_SAMPLE_PERIOD)
4304 perf_output_put(handle, data->period);
4305
4306 if (sample_type & PERF_SAMPLE_READ)
4307 perf_output_read(handle, event);
4308
4309 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4310 if (data->callchain) {
4311 int size = 1;
4312
4313 if (data->callchain)
4314 size += data->callchain->nr;
4315
4316 size *= sizeof(u64);
4317
4318 perf_output_copy(handle, data->callchain, size);
4319 } else {
4320 u64 nr = 0;
4321 perf_output_put(handle, nr);
4322 }
4323 }
4324
4325 if (sample_type & PERF_SAMPLE_RAW) {
4326 if (data->raw) {
4327 perf_output_put(handle, data->raw->size);
4328 perf_output_copy(handle, data->raw->data,
4329 data->raw->size);
4330 } else {
4331 struct {
4332 u32 size;
4333 u32 data;
4334 } raw = {
4335 .size = sizeof(u32),
4336 .data = 0,
4337 };
4338 perf_output_put(handle, raw);
4339 }
4340 }
4341}
4342
4343void perf_prepare_sample(struct perf_event_header *header,
4344 struct perf_sample_data *data,
4345 struct perf_event *event,
4346 struct pt_regs *regs)
4347{
4348 u64 sample_type = event->attr.sample_type;
4349
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004350 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004351 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004352
4353 header->misc = 0;
4354 header->misc |= perf_misc_flags(regs);
4355
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004356 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004357
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004358 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004359 data->ip = perf_instruction_pointer(regs);
4360
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004361 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4362 int size = 1;
4363
4364 data->callchain = perf_callchain(regs);
4365
4366 if (data->callchain)
4367 size += data->callchain->nr;
4368
4369 header->size += size * sizeof(u64);
4370 }
4371
4372 if (sample_type & PERF_SAMPLE_RAW) {
4373 int size = sizeof(u32);
4374
4375 if (data->raw)
4376 size += data->raw->size;
4377 else
4378 size += sizeof(u32);
4379
4380 WARN_ON_ONCE(size & (sizeof(u64)-1));
4381 header->size += size;
4382 }
4383}
4384
4385static void perf_event_output(struct perf_event *event, int nmi,
4386 struct perf_sample_data *data,
4387 struct pt_regs *regs)
4388{
4389 struct perf_output_handle handle;
4390 struct perf_event_header header;
4391
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004392 /* protect the callchain buffers */
4393 rcu_read_lock();
4394
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004395 perf_prepare_sample(&header, data, event, regs);
4396
4397 if (perf_output_begin(&handle, event, header.size, nmi, 1))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004398 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004399
4400 perf_output_sample(&handle, &header, data, event);
4401
4402 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004403
4404exit:
4405 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004406}
4407
4408/*
4409 * read event_id
4410 */
4411
4412struct perf_read_event {
4413 struct perf_event_header header;
4414
4415 u32 pid;
4416 u32 tid;
4417};
4418
4419static void
4420perf_event_read_event(struct perf_event *event,
4421 struct task_struct *task)
4422{
4423 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004424 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004425 struct perf_read_event read_event = {
4426 .header = {
4427 .type = PERF_RECORD_READ,
4428 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004429 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004430 },
4431 .pid = perf_event_pid(event, task),
4432 .tid = perf_event_tid(event, task),
4433 };
4434 int ret;
4435
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004436 perf_event_header__init_id(&read_event.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004437 ret = perf_output_begin(&handle, event, read_event.header.size, 0, 0);
4438 if (ret)
4439 return;
4440
4441 perf_output_put(&handle, read_event);
4442 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004443 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004444
4445 perf_output_end(&handle);
4446}
4447
4448/*
4449 * task tracking -- fork/exit
4450 *
Eric B Munson3af9e852010-05-18 15:30:49 +01004451 * enabled by: attr.comm | attr.mmap | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004452 */
4453
4454struct perf_task_event {
4455 struct task_struct *task;
4456 struct perf_event_context *task_ctx;
4457
4458 struct {
4459 struct perf_event_header header;
4460
4461 u32 pid;
4462 u32 ppid;
4463 u32 tid;
4464 u32 ptid;
4465 u64 time;
4466 } event_id;
4467};
4468
4469static void perf_event_task_output(struct perf_event *event,
4470 struct perf_task_event *task_event)
4471{
4472 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004473 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004474 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004475 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01004476
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004477 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004478
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004479 ret = perf_output_begin(&handle, event,
4480 task_event->event_id.header.size, 0, 0);
Peter Zijlstraef607772010-05-18 10:50:41 +02004481 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004482 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004483
4484 task_event->event_id.pid = perf_event_pid(event, task);
4485 task_event->event_id.ppid = perf_event_pid(event, current);
4486
4487 task_event->event_id.tid = perf_event_tid(event, task);
4488 task_event->event_id.ptid = perf_event_tid(event, current);
4489
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004490 perf_output_put(&handle, task_event->event_id);
4491
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004492 perf_event__output_id_sample(event, &handle, &sample);
4493
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004494 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004495out:
4496 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004497}
4498
4499static int perf_event_task_match(struct perf_event *event)
4500{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004501 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01004502 return 0;
4503
Stephane Eranian5632ab12011-01-03 18:20:01 +02004504 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004505 return 0;
4506
Eric B Munson3af9e852010-05-18 15:30:49 +01004507 if (event->attr.comm || event->attr.mmap ||
4508 event->attr.mmap_data || event->attr.task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004509 return 1;
4510
4511 return 0;
4512}
4513
4514static void perf_event_task_ctx(struct perf_event_context *ctx,
4515 struct perf_task_event *task_event)
4516{
4517 struct perf_event *event;
4518
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004519 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4520 if (perf_event_task_match(event))
4521 perf_event_task_output(event, task_event);
4522 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004523}
4524
4525static void perf_event_task_event(struct perf_task_event *task_event)
4526{
4527 struct perf_cpu_context *cpuctx;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004528 struct perf_event_context *ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004529 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004530 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004531
Peter Zijlstrad6ff86c2009-11-20 22:19:46 +01004532 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004533 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02004534 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra51676952010-12-07 14:18:20 +01004535 if (cpuctx->active_pmu != pmu)
4536 goto next;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004537 perf_event_task_ctx(&cpuctx->ctx, task_event);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004538
4539 ctx = task_event->task_ctx;
4540 if (!ctx) {
4541 ctxn = pmu->task_ctx_nr;
4542 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02004543 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004544 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4545 }
4546 if (ctx)
4547 perf_event_task_ctx(ctx, task_event);
Peter Zijlstra41945f62010-09-16 19:17:24 +02004548next:
4549 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004550 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004551 rcu_read_unlock();
4552}
4553
4554static void perf_event_task(struct task_struct *task,
4555 struct perf_event_context *task_ctx,
4556 int new)
4557{
4558 struct perf_task_event task_event;
4559
4560 if (!atomic_read(&nr_comm_events) &&
4561 !atomic_read(&nr_mmap_events) &&
4562 !atomic_read(&nr_task_events))
4563 return;
4564
4565 task_event = (struct perf_task_event){
4566 .task = task,
4567 .task_ctx = task_ctx,
4568 .event_id = {
4569 .header = {
4570 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
4571 .misc = 0,
4572 .size = sizeof(task_event.event_id),
4573 },
4574 /* .pid */
4575 /* .ppid */
4576 /* .tid */
4577 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004578 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004579 },
4580 };
4581
4582 perf_event_task_event(&task_event);
4583}
4584
4585void perf_event_fork(struct task_struct *task)
4586{
4587 perf_event_task(task, NULL, 1);
4588}
4589
4590/*
4591 * comm tracking
4592 */
4593
4594struct perf_comm_event {
4595 struct task_struct *task;
4596 char *comm;
4597 int comm_size;
4598
4599 struct {
4600 struct perf_event_header header;
4601
4602 u32 pid;
4603 u32 tid;
4604 } event_id;
4605};
4606
4607static void perf_event_comm_output(struct perf_event *event,
4608 struct perf_comm_event *comm_event)
4609{
4610 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004611 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004612 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004613 int ret;
4614
4615 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
4616 ret = perf_output_begin(&handle, event,
4617 comm_event->event_id.header.size, 0, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004618
4619 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004620 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004621
4622 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
4623 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
4624
4625 perf_output_put(&handle, comm_event->event_id);
4626 perf_output_copy(&handle, comm_event->comm,
4627 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004628
4629 perf_event__output_id_sample(event, &handle, &sample);
4630
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004631 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004632out:
4633 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004634}
4635
4636static int perf_event_comm_match(struct perf_event *event)
4637{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004638 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01004639 return 0;
4640
Stephane Eranian5632ab12011-01-03 18:20:01 +02004641 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004642 return 0;
4643
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004644 if (event->attr.comm)
4645 return 1;
4646
4647 return 0;
4648}
4649
4650static void perf_event_comm_ctx(struct perf_event_context *ctx,
4651 struct perf_comm_event *comm_event)
4652{
4653 struct perf_event *event;
4654
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004655 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4656 if (perf_event_comm_match(event))
4657 perf_event_comm_output(event, comm_event);
4658 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004659}
4660
4661static void perf_event_comm_event(struct perf_comm_event *comm_event)
4662{
4663 struct perf_cpu_context *cpuctx;
4664 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004665 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004666 unsigned int size;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004667 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004668 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004669
4670 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01004671 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004672 size = ALIGN(strlen(comm)+1, sizeof(u64));
4673
4674 comm_event->comm = comm;
4675 comm_event->comm_size = size;
4676
4677 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstraf6595f32009-11-20 22:19:47 +01004678 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004679 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02004680 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra51676952010-12-07 14:18:20 +01004681 if (cpuctx->active_pmu != pmu)
4682 goto next;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004683 perf_event_comm_ctx(&cpuctx->ctx, comm_event);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004684
4685 ctxn = pmu->task_ctx_nr;
4686 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02004687 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004688
4689 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4690 if (ctx)
4691 perf_event_comm_ctx(ctx, comm_event);
Peter Zijlstra41945f62010-09-16 19:17:24 +02004692next:
4693 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004694 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004695 rcu_read_unlock();
4696}
4697
4698void perf_event_comm(struct task_struct *task)
4699{
4700 struct perf_comm_event comm_event;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004701 struct perf_event_context *ctx;
4702 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004703
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004704 for_each_task_context_nr(ctxn) {
4705 ctx = task->perf_event_ctxp[ctxn];
4706 if (!ctx)
4707 continue;
4708
4709 perf_event_enable_on_exec(ctx);
4710 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004711
4712 if (!atomic_read(&nr_comm_events))
4713 return;
4714
4715 comm_event = (struct perf_comm_event){
4716 .task = task,
4717 /* .comm */
4718 /* .comm_size */
4719 .event_id = {
4720 .header = {
4721 .type = PERF_RECORD_COMM,
4722 .misc = 0,
4723 /* .size */
4724 },
4725 /* .pid */
4726 /* .tid */
4727 },
4728 };
4729
4730 perf_event_comm_event(&comm_event);
4731}
4732
4733/*
4734 * mmap tracking
4735 */
4736
4737struct perf_mmap_event {
4738 struct vm_area_struct *vma;
4739
4740 const char *file_name;
4741 int file_size;
4742
4743 struct {
4744 struct perf_event_header header;
4745
4746 u32 pid;
4747 u32 tid;
4748 u64 start;
4749 u64 len;
4750 u64 pgoff;
4751 } event_id;
4752};
4753
4754static void perf_event_mmap_output(struct perf_event *event,
4755 struct perf_mmap_event *mmap_event)
4756{
4757 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004758 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004759 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004760 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004761
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004762 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
4763 ret = perf_output_begin(&handle, event,
4764 mmap_event->event_id.header.size, 0, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004765 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004766 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004767
4768 mmap_event->event_id.pid = perf_event_pid(event, current);
4769 mmap_event->event_id.tid = perf_event_tid(event, current);
4770
4771 perf_output_put(&handle, mmap_event->event_id);
4772 perf_output_copy(&handle, mmap_event->file_name,
4773 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004774
4775 perf_event__output_id_sample(event, &handle, &sample);
4776
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004777 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004778out:
4779 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004780}
4781
4782static int perf_event_mmap_match(struct perf_event *event,
Eric B Munson3af9e852010-05-18 15:30:49 +01004783 struct perf_mmap_event *mmap_event,
4784 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004785{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004786 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01004787 return 0;
4788
Stephane Eranian5632ab12011-01-03 18:20:01 +02004789 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004790 return 0;
4791
Eric B Munson3af9e852010-05-18 15:30:49 +01004792 if ((!executable && event->attr.mmap_data) ||
4793 (executable && event->attr.mmap))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004794 return 1;
4795
4796 return 0;
4797}
4798
4799static void perf_event_mmap_ctx(struct perf_event_context *ctx,
Eric B Munson3af9e852010-05-18 15:30:49 +01004800 struct perf_mmap_event *mmap_event,
4801 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004802{
4803 struct perf_event *event;
4804
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004805 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Eric B Munson3af9e852010-05-18 15:30:49 +01004806 if (perf_event_mmap_match(event, mmap_event, executable))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004807 perf_event_mmap_output(event, mmap_event);
4808 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004809}
4810
4811static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
4812{
4813 struct perf_cpu_context *cpuctx;
4814 struct perf_event_context *ctx;
4815 struct vm_area_struct *vma = mmap_event->vma;
4816 struct file *file = vma->vm_file;
4817 unsigned int size;
4818 char tmp[16];
4819 char *buf = NULL;
4820 const char *name;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004821 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004822 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004823
4824 memset(tmp, 0, sizeof(tmp));
4825
4826 if (file) {
4827 /*
4828 * d_path works from the end of the buffer backwards, so we
4829 * need to add enough zero bytes after the string to handle
4830 * the 64bit alignment we do later.
4831 */
4832 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
4833 if (!buf) {
4834 name = strncpy(tmp, "//enomem", sizeof(tmp));
4835 goto got_name;
4836 }
4837 name = d_path(&file->f_path, buf, PATH_MAX);
4838 if (IS_ERR(name)) {
4839 name = strncpy(tmp, "//toolong", sizeof(tmp));
4840 goto got_name;
4841 }
4842 } else {
4843 if (arch_vma_name(mmap_event->vma)) {
4844 name = strncpy(tmp, arch_vma_name(mmap_event->vma),
4845 sizeof(tmp));
4846 goto got_name;
4847 }
4848
4849 if (!vma->vm_mm) {
4850 name = strncpy(tmp, "[vdso]", sizeof(tmp));
4851 goto got_name;
Eric B Munson3af9e852010-05-18 15:30:49 +01004852 } else if (vma->vm_start <= vma->vm_mm->start_brk &&
4853 vma->vm_end >= vma->vm_mm->brk) {
4854 name = strncpy(tmp, "[heap]", sizeof(tmp));
4855 goto got_name;
4856 } else if (vma->vm_start <= vma->vm_mm->start_stack &&
4857 vma->vm_end >= vma->vm_mm->start_stack) {
4858 name = strncpy(tmp, "[stack]", sizeof(tmp));
4859 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004860 }
4861
4862 name = strncpy(tmp, "//anon", sizeof(tmp));
4863 goto got_name;
4864 }
4865
4866got_name:
4867 size = ALIGN(strlen(name)+1, sizeof(u64));
4868
4869 mmap_event->file_name = name;
4870 mmap_event->file_size = size;
4871
4872 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
4873
Peter Zijlstraf6d9dd22009-11-20 22:19:48 +01004874 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004875 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02004876 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra51676952010-12-07 14:18:20 +01004877 if (cpuctx->active_pmu != pmu)
4878 goto next;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004879 perf_event_mmap_ctx(&cpuctx->ctx, mmap_event,
4880 vma->vm_flags & VM_EXEC);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004881
4882 ctxn = pmu->task_ctx_nr;
4883 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02004884 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004885
4886 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4887 if (ctx) {
4888 perf_event_mmap_ctx(ctx, mmap_event,
4889 vma->vm_flags & VM_EXEC);
4890 }
Peter Zijlstra41945f62010-09-16 19:17:24 +02004891next:
4892 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004893 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004894 rcu_read_unlock();
4895
4896 kfree(buf);
4897}
4898
Eric B Munson3af9e852010-05-18 15:30:49 +01004899void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004900{
4901 struct perf_mmap_event mmap_event;
4902
4903 if (!atomic_read(&nr_mmap_events))
4904 return;
4905
4906 mmap_event = (struct perf_mmap_event){
4907 .vma = vma,
4908 /* .file_name */
4909 /* .file_size */
4910 .event_id = {
4911 .header = {
4912 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004913 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004914 /* .size */
4915 },
4916 /* .pid */
4917 /* .tid */
4918 .start = vma->vm_start,
4919 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01004920 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004921 },
4922 };
4923
4924 perf_event_mmap_event(&mmap_event);
4925}
4926
4927/*
4928 * IRQ throttle logging
4929 */
4930
4931static void perf_log_throttle(struct perf_event *event, int enable)
4932{
4933 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004934 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004935 int ret;
4936
4937 struct {
4938 struct perf_event_header header;
4939 u64 time;
4940 u64 id;
4941 u64 stream_id;
4942 } throttle_event = {
4943 .header = {
4944 .type = PERF_RECORD_THROTTLE,
4945 .misc = 0,
4946 .size = sizeof(throttle_event),
4947 },
4948 .time = perf_clock(),
4949 .id = primary_event_id(event),
4950 .stream_id = event->id,
4951 };
4952
4953 if (enable)
4954 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
4955
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004956 perf_event_header__init_id(&throttle_event.header, &sample, event);
4957
4958 ret = perf_output_begin(&handle, event,
4959 throttle_event.header.size, 1, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004960 if (ret)
4961 return;
4962
4963 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004964 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004965 perf_output_end(&handle);
4966}
4967
4968/*
4969 * Generic event overflow handling, sampling.
4970 */
4971
4972static int __perf_event_overflow(struct perf_event *event, int nmi,
4973 int throttle, struct perf_sample_data *data,
4974 struct pt_regs *regs)
4975{
4976 int events = atomic_read(&event->event_limit);
4977 struct hw_perf_event *hwc = &event->hw;
4978 int ret = 0;
4979
Peter Zijlstra96398822010-11-24 18:55:29 +01004980 /*
4981 * Non-sampling counters might still use the PMI to fold short
4982 * hardware counters, ignore those.
4983 */
4984 if (unlikely(!is_sampling_event(event)))
4985 return 0;
4986
Peter Zijlstra163ec432011-02-16 11:22:34 +01004987 if (unlikely(hwc->interrupts >= max_samples_per_tick)) {
4988 if (throttle) {
4989 hwc->interrupts = MAX_INTERRUPTS;
4990 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004991 ret = 1;
4992 }
Peter Zijlstra163ec432011-02-16 11:22:34 +01004993 } else
4994 hwc->interrupts++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004995
4996 if (event->attr.freq) {
4997 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01004998 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004999
Peter Zijlstraabd50712010-01-26 18:50:16 +01005000 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005001
Peter Zijlstraabd50712010-01-26 18:50:16 +01005002 if (delta > 0 && delta < 2*TICK_NSEC)
5003 perf_adjust_period(event, delta, hwc->last_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005004 }
5005
5006 /*
5007 * XXX event_limit might not quite work as expected on inherited
5008 * events
5009 */
5010
5011 event->pending_kill = POLL_IN;
5012 if (events && atomic_dec_and_test(&event->event_limit)) {
5013 ret = 1;
5014 event->pending_kill = POLL_HUP;
5015 if (nmi) {
5016 event->pending_disable = 1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005017 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005018 } else
5019 perf_event_disable(event);
5020 }
5021
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005022 if (event->overflow_handler)
5023 event->overflow_handler(event, nmi, data, regs);
5024 else
5025 perf_event_output(event, nmi, data, regs);
5026
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005027 return ret;
5028}
5029
5030int perf_event_overflow(struct perf_event *event, int nmi,
5031 struct perf_sample_data *data,
5032 struct pt_regs *regs)
5033{
5034 return __perf_event_overflow(event, nmi, 1, data, regs);
5035}
5036
5037/*
5038 * Generic software event infrastructure
5039 */
5040
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005041struct swevent_htable {
5042 struct swevent_hlist *swevent_hlist;
5043 struct mutex hlist_mutex;
5044 int hlist_refcount;
5045
5046 /* Recursion avoidance in each contexts */
5047 int recursion[PERF_NR_CONTEXTS];
5048};
5049
5050static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
5051
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005052/*
5053 * We directly increment event->count and keep a second value in
5054 * event->hw.period_left to count intervals. This period event
5055 * is kept in the range [-sample_period, 0] so that we can use the
5056 * sign as trigger.
5057 */
5058
5059static u64 perf_swevent_set_period(struct perf_event *event)
5060{
5061 struct hw_perf_event *hwc = &event->hw;
5062 u64 period = hwc->last_period;
5063 u64 nr, offset;
5064 s64 old, val;
5065
5066 hwc->last_period = hwc->sample_period;
5067
5068again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02005069 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005070 if (val < 0)
5071 return 0;
5072
5073 nr = div64_u64(period + val, period);
5074 offset = nr * period;
5075 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02005076 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005077 goto again;
5078
5079 return nr;
5080}
5081
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005082static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005083 int nmi, struct perf_sample_data *data,
5084 struct pt_regs *regs)
5085{
5086 struct hw_perf_event *hwc = &event->hw;
5087 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005088
5089 data->period = event->hw.last_period;
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005090 if (!overflow)
5091 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005092
5093 if (hwc->interrupts == MAX_INTERRUPTS)
5094 return;
5095
5096 for (; overflow; overflow--) {
5097 if (__perf_event_overflow(event, nmi, throttle,
5098 data, regs)) {
5099 /*
5100 * We inhibit the overflow from happening when
5101 * hwc->interrupts == MAX_INTERRUPTS.
5102 */
5103 break;
5104 }
5105 throttle = 1;
5106 }
5107}
5108
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005109static void perf_swevent_event(struct perf_event *event, u64 nr,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005110 int nmi, struct perf_sample_data *data,
5111 struct pt_regs *regs)
5112{
5113 struct hw_perf_event *hwc = &event->hw;
5114
Peter Zijlstrae7850592010-05-21 14:43:08 +02005115 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005116
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005117 if (!regs)
5118 return;
5119
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005120 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005121 return;
5122
5123 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
5124 return perf_swevent_overflow(event, 1, nmi, data, regs);
5125
Peter Zijlstrae7850592010-05-21 14:43:08 +02005126 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005127 return;
5128
5129 perf_swevent_overflow(event, 0, nmi, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005130}
5131
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005132static int perf_exclude_event(struct perf_event *event,
5133 struct pt_regs *regs)
5134{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005135 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01005136 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005137
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005138 if (regs) {
5139 if (event->attr.exclude_user && user_mode(regs))
5140 return 1;
5141
5142 if (event->attr.exclude_kernel && !user_mode(regs))
5143 return 1;
5144 }
5145
5146 return 0;
5147}
5148
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005149static int perf_swevent_match(struct perf_event *event,
5150 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08005151 u32 event_id,
5152 struct perf_sample_data *data,
5153 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005154{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005155 if (event->attr.type != type)
5156 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005157
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005158 if (event->attr.config != event_id)
5159 return 0;
5160
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005161 if (perf_exclude_event(event, regs))
5162 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005163
5164 return 1;
5165}
5166
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005167static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005168{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005169 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005170
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005171 return hash_64(val, SWEVENT_HLIST_BITS);
5172}
5173
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005174static inline struct hlist_head *
5175__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005176{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005177 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005178
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005179 return &hlist->heads[hash];
5180}
5181
5182/* For the read side: events when they trigger */
5183static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005184find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005185{
5186 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005187
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005188 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005189 if (!hlist)
5190 return NULL;
5191
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005192 return __find_swevent_head(hlist, type, event_id);
5193}
5194
5195/* For the event head insertion and removal in the hlist */
5196static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005197find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005198{
5199 struct swevent_hlist *hlist;
5200 u32 event_id = event->attr.config;
5201 u64 type = event->attr.type;
5202
5203 /*
5204 * Event scheduling is always serialized against hlist allocation
5205 * and release. Which makes the protected version suitable here.
5206 * The context lock guarantees that.
5207 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005208 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005209 lockdep_is_held(&event->ctx->lock));
5210 if (!hlist)
5211 return NULL;
5212
5213 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005214}
5215
5216static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
5217 u64 nr, int nmi,
5218 struct perf_sample_data *data,
5219 struct pt_regs *regs)
5220{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005221 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005222 struct perf_event *event;
5223 struct hlist_node *node;
5224 struct hlist_head *head;
5225
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005226 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005227 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005228 if (!head)
5229 goto end;
5230
5231 hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08005232 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005233 perf_swevent_event(event, nr, nmi, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005234 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005235end:
5236 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005237}
5238
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005239int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005240{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005241 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005242
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005243 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005244}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01005245EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005246
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01005247inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005248{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005249 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005250
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005251 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005252}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005253
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005254void __perf_sw_event(u32 event_id, u64 nr, int nmi,
5255 struct pt_regs *regs, u64 addr)
5256{
Ingo Molnara4234bf2009-11-23 10:57:59 +01005257 struct perf_sample_data data;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005258 int rctx;
5259
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005260 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005261 rctx = perf_swevent_get_recursion_context();
5262 if (rctx < 0)
5263 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005264
Peter Zijlstradc1d6282010-03-03 15:55:04 +01005265 perf_sample_data_init(&data, addr);
Ingo Molnara4234bf2009-11-23 10:57:59 +01005266
5267 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, nmi, &data, regs);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005268
5269 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005270 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005271}
5272
5273static void perf_swevent_read(struct perf_event *event)
5274{
5275}
5276
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005277static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005278{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005279 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005280 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005281 struct hlist_head *head;
5282
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005283 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005284 hwc->last_period = hwc->sample_period;
5285 perf_swevent_set_period(event);
5286 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005287
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005288 hwc->state = !(flags & PERF_EF_START);
5289
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005290 head = find_swevent_head(swhash, event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005291 if (WARN_ON_ONCE(!head))
5292 return -EINVAL;
5293
5294 hlist_add_head_rcu(&event->hlist_entry, head);
5295
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005296 return 0;
5297}
5298
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005299static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005300{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005301 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005302}
5303
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005304static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005305{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005306 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005307}
5308
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005309static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005310{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005311 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005312}
5313
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005314/* Deref the hlist from the update side */
5315static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005316swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005317{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005318 return rcu_dereference_protected(swhash->swevent_hlist,
5319 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005320}
5321
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005322static void swevent_hlist_release_rcu(struct rcu_head *rcu_head)
5323{
5324 struct swevent_hlist *hlist;
5325
5326 hlist = container_of(rcu_head, struct swevent_hlist, rcu_head);
5327 kfree(hlist);
5328}
5329
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005330static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005331{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005332 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005333
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005334 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005335 return;
5336
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005337 rcu_assign_pointer(swhash->swevent_hlist, NULL);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005338 call_rcu(&hlist->rcu_head, swevent_hlist_release_rcu);
5339}
5340
5341static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
5342{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005343 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005344
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005345 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005346
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005347 if (!--swhash->hlist_refcount)
5348 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005349
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005350 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005351}
5352
5353static void swevent_hlist_put(struct perf_event *event)
5354{
5355 int cpu;
5356
5357 if (event->cpu != -1) {
5358 swevent_hlist_put_cpu(event, event->cpu);
5359 return;
5360 }
5361
5362 for_each_possible_cpu(cpu)
5363 swevent_hlist_put_cpu(event, cpu);
5364}
5365
5366static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
5367{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005368 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005369 int err = 0;
5370
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005371 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005372
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005373 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005374 struct swevent_hlist *hlist;
5375
5376 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
5377 if (!hlist) {
5378 err = -ENOMEM;
5379 goto exit;
5380 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005381 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005382 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005383 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005384exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005385 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005386
5387 return err;
5388}
5389
5390static int swevent_hlist_get(struct perf_event *event)
5391{
5392 int err;
5393 int cpu, failed_cpu;
5394
5395 if (event->cpu != -1)
5396 return swevent_hlist_get_cpu(event, event->cpu);
5397
5398 get_online_cpus();
5399 for_each_possible_cpu(cpu) {
5400 err = swevent_hlist_get_cpu(event, cpu);
5401 if (err) {
5402 failed_cpu = cpu;
5403 goto fail;
5404 }
5405 }
5406 put_online_cpus();
5407
5408 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005409fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005410 for_each_possible_cpu(cpu) {
5411 if (cpu == failed_cpu)
5412 break;
5413 swevent_hlist_put_cpu(event, cpu);
5414 }
5415
5416 put_online_cpus();
5417 return err;
5418}
5419
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005420atomic_t perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005421
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005422static void sw_perf_event_destroy(struct perf_event *event)
5423{
5424 u64 event_id = event->attr.config;
5425
5426 WARN_ON(event->parent);
5427
Peter Zijlstra7e54a5a2010-10-14 22:32:45 +02005428 jump_label_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005429 swevent_hlist_put(event);
5430}
5431
5432static int perf_swevent_init(struct perf_event *event)
5433{
5434 int event_id = event->attr.config;
5435
5436 if (event->attr.type != PERF_TYPE_SOFTWARE)
5437 return -ENOENT;
5438
5439 switch (event_id) {
5440 case PERF_COUNT_SW_CPU_CLOCK:
5441 case PERF_COUNT_SW_TASK_CLOCK:
5442 return -ENOENT;
5443
5444 default:
5445 break;
5446 }
5447
Dan Carpenterce677832010-10-24 21:50:42 +02005448 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005449 return -ENOENT;
5450
5451 if (!event->parent) {
5452 int err;
5453
5454 err = swevent_hlist_get(event);
5455 if (err)
5456 return err;
5457
Peter Zijlstra7e54a5a2010-10-14 22:32:45 +02005458 jump_label_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005459 event->destroy = sw_perf_event_destroy;
5460 }
5461
5462 return 0;
5463}
5464
5465static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005466 .task_ctx_nr = perf_sw_context,
5467
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005468 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005469 .add = perf_swevent_add,
5470 .del = perf_swevent_del,
5471 .start = perf_swevent_start,
5472 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005473 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005474};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005475
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005476#ifdef CONFIG_EVENT_TRACING
5477
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005478static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005479 struct perf_sample_data *data)
5480{
5481 void *record = data->raw->data;
5482
5483 if (likely(!event->filter) || filter_match_preds(event->filter, record))
5484 return 1;
5485 return 0;
5486}
5487
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005488static int perf_tp_event_match(struct perf_event *event,
5489 struct perf_sample_data *data,
5490 struct pt_regs *regs)
5491{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01005492 if (event->hw.state & PERF_HES_STOPPED)
5493 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02005494 /*
5495 * All tracepoints are from kernel-space.
5496 */
5497 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005498 return 0;
5499
5500 if (!perf_tp_filter_match(event, data))
5501 return 0;
5502
5503 return 1;
5504}
5505
5506void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005507 struct pt_regs *regs, struct hlist_head *head, int rctx)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005508{
5509 struct perf_sample_data data;
5510 struct perf_event *event;
5511 struct hlist_node *node;
5512
5513 struct perf_raw_record raw = {
5514 .size = entry_size,
5515 .data = record,
5516 };
5517
5518 perf_sample_data_init(&data, addr);
5519 data.raw = &raw;
5520
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005521 hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
5522 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005523 perf_swevent_event(event, count, 1, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005524 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005525
5526 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005527}
5528EXPORT_SYMBOL_GPL(perf_tp_event);
5529
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005530static void tp_perf_event_destroy(struct perf_event *event)
5531{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005532 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005533}
5534
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005535static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005536{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005537 int err;
5538
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005539 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5540 return -ENOENT;
5541
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005542 err = perf_trace_init(event);
5543 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005544 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005545
5546 event->destroy = tp_perf_event_destroy;
5547
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005548 return 0;
5549}
5550
5551static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005552 .task_ctx_nr = perf_sw_context,
5553
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005554 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005555 .add = perf_trace_add,
5556 .del = perf_trace_del,
5557 .start = perf_swevent_start,
5558 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005559 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005560};
5561
5562static inline void perf_tp_register(void)
5563{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005564 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005565}
Li Zefan6fb29152009-10-15 11:21:42 +08005566
5567static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5568{
5569 char *filter_str;
5570 int ret;
5571
5572 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5573 return -EINVAL;
5574
5575 filter_str = strndup_user(arg, PAGE_SIZE);
5576 if (IS_ERR(filter_str))
5577 return PTR_ERR(filter_str);
5578
5579 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
5580
5581 kfree(filter_str);
5582 return ret;
5583}
5584
5585static void perf_event_free_filter(struct perf_event *event)
5586{
5587 ftrace_profile_free_filter(event);
5588}
5589
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005590#else
Li Zefan6fb29152009-10-15 11:21:42 +08005591
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005592static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005593{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005594}
Li Zefan6fb29152009-10-15 11:21:42 +08005595
5596static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5597{
5598 return -ENOENT;
5599}
5600
5601static void perf_event_free_filter(struct perf_event *event)
5602{
5603}
5604
Li Zefan07b139c2009-12-21 14:27:35 +08005605#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005606
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005607#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005608void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005609{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005610 struct perf_sample_data sample;
5611 struct pt_regs *regs = data;
5612
Peter Zijlstradc1d6282010-03-03 15:55:04 +01005613 perf_sample_data_init(&sample, bp->attr.bp_addr);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005614
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005615 if (!bp->hw.state && !perf_exclude_event(bp, regs))
5616 perf_swevent_event(bp, 1, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005617}
5618#endif
5619
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005620/*
5621 * hrtimer based swevent callback
5622 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005623
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005624static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005625{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005626 enum hrtimer_restart ret = HRTIMER_RESTART;
5627 struct perf_sample_data data;
5628 struct pt_regs *regs;
5629 struct perf_event *event;
5630 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005631
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005632 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005633
5634 if (event->state != PERF_EVENT_STATE_ACTIVE)
5635 return HRTIMER_NORESTART;
5636
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005637 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005638
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005639 perf_sample_data_init(&data, 0);
5640 data.period = event->hw.last_period;
5641 regs = get_irq_regs();
5642
5643 if (regs && !perf_exclude_event(event, regs)) {
5644 if (!(event->attr.exclude_idle && current->pid == 0))
5645 if (perf_event_overflow(event, 0, &data, regs))
5646 ret = HRTIMER_NORESTART;
5647 }
5648
5649 period = max_t(u64, 10000, event->hw.sample_period);
5650 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
5651
5652 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005653}
5654
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005655static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005656{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005657 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005658 s64 period;
5659
5660 if (!is_sampling_event(event))
5661 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005662
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005663 period = local64_read(&hwc->period_left);
5664 if (period) {
5665 if (period < 0)
5666 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02005667
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005668 local64_set(&hwc->period_left, 0);
5669 } else {
5670 period = max_t(u64, 10000, hwc->sample_period);
5671 }
5672 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005673 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02005674 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005675}
5676
5677static void perf_swevent_cancel_hrtimer(struct perf_event *event)
5678{
5679 struct hw_perf_event *hwc = &event->hw;
5680
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005681 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005682 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02005683 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005684
5685 hrtimer_cancel(&hwc->hrtimer);
5686 }
5687}
5688
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005689static void perf_swevent_init_hrtimer(struct perf_event *event)
5690{
5691 struct hw_perf_event *hwc = &event->hw;
5692
5693 if (!is_sampling_event(event))
5694 return;
5695
5696 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
5697 hwc->hrtimer.function = perf_swevent_hrtimer;
5698
5699 /*
5700 * Since hrtimers have a fixed rate, we can do a static freq->period
5701 * mapping and avoid the whole period adjust feedback stuff.
5702 */
5703 if (event->attr.freq) {
5704 long freq = event->attr.sample_freq;
5705
5706 event->attr.sample_period = NSEC_PER_SEC / freq;
5707 hwc->sample_period = event->attr.sample_period;
5708 local64_set(&hwc->period_left, hwc->sample_period);
5709 event->attr.freq = 0;
5710 }
5711}
5712
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005713/*
5714 * Software event: cpu wall time clock
5715 */
5716
5717static void cpu_clock_event_update(struct perf_event *event)
5718{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005719 s64 prev;
5720 u64 now;
5721
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005722 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005723 prev = local64_xchg(&event->hw.prev_count, now);
5724 local64_add(now - prev, &event->count);
5725}
5726
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005727static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005728{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005729 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005730 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005731}
5732
5733static void cpu_clock_event_stop(struct perf_event *event, int flags)
5734{
5735 perf_swevent_cancel_hrtimer(event);
5736 cpu_clock_event_update(event);
5737}
5738
5739static int cpu_clock_event_add(struct perf_event *event, int flags)
5740{
5741 if (flags & PERF_EF_START)
5742 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005743
5744 return 0;
5745}
5746
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005747static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005748{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005749 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005750}
5751
5752static void cpu_clock_event_read(struct perf_event *event)
5753{
5754 cpu_clock_event_update(event);
5755}
5756
5757static int cpu_clock_event_init(struct perf_event *event)
5758{
5759 if (event->attr.type != PERF_TYPE_SOFTWARE)
5760 return -ENOENT;
5761
5762 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
5763 return -ENOENT;
5764
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005765 perf_swevent_init_hrtimer(event);
5766
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005767 return 0;
5768}
5769
5770static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005771 .task_ctx_nr = perf_sw_context,
5772
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005773 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005774 .add = cpu_clock_event_add,
5775 .del = cpu_clock_event_del,
5776 .start = cpu_clock_event_start,
5777 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005778 .read = cpu_clock_event_read,
5779};
5780
5781/*
5782 * Software event: task time clock
5783 */
5784
5785static void task_clock_event_update(struct perf_event *event, u64 now)
5786{
5787 u64 prev;
5788 s64 delta;
5789
5790 prev = local64_xchg(&event->hw.prev_count, now);
5791 delta = now - prev;
5792 local64_add(delta, &event->count);
5793}
5794
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005795static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005796{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005797 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005798 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005799}
5800
5801static void task_clock_event_stop(struct perf_event *event, int flags)
5802{
5803 perf_swevent_cancel_hrtimer(event);
5804 task_clock_event_update(event, event->ctx->time);
5805}
5806
5807static int task_clock_event_add(struct perf_event *event, int flags)
5808{
5809 if (flags & PERF_EF_START)
5810 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005811
5812 return 0;
5813}
5814
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005815static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005816{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005817 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005818}
5819
5820static void task_clock_event_read(struct perf_event *event)
5821{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01005822 u64 now = perf_clock();
5823 u64 delta = now - event->ctx->timestamp;
5824 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005825
5826 task_clock_event_update(event, time);
5827}
5828
5829static int task_clock_event_init(struct perf_event *event)
5830{
5831 if (event->attr.type != PERF_TYPE_SOFTWARE)
5832 return -ENOENT;
5833
5834 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
5835 return -ENOENT;
5836
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005837 perf_swevent_init_hrtimer(event);
5838
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005839 return 0;
5840}
5841
5842static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005843 .task_ctx_nr = perf_sw_context,
5844
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005845 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005846 .add = task_clock_event_add,
5847 .del = task_clock_event_del,
5848 .start = task_clock_event_start,
5849 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005850 .read = task_clock_event_read,
5851};
5852
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005853static void perf_pmu_nop_void(struct pmu *pmu)
5854{
5855}
5856
5857static int perf_pmu_nop_int(struct pmu *pmu)
5858{
5859 return 0;
5860}
5861
5862static void perf_pmu_start_txn(struct pmu *pmu)
5863{
5864 perf_pmu_disable(pmu);
5865}
5866
5867static int perf_pmu_commit_txn(struct pmu *pmu)
5868{
5869 perf_pmu_enable(pmu);
5870 return 0;
5871}
5872
5873static void perf_pmu_cancel_txn(struct pmu *pmu)
5874{
5875 perf_pmu_enable(pmu);
5876}
5877
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005878/*
5879 * Ensures all contexts with the same task_ctx_nr have the same
5880 * pmu_cpu_context too.
5881 */
5882static void *find_pmu_context(int ctxn)
5883{
5884 struct pmu *pmu;
5885
5886 if (ctxn < 0)
5887 return NULL;
5888
5889 list_for_each_entry(pmu, &pmus, entry) {
5890 if (pmu->task_ctx_nr == ctxn)
5891 return pmu->pmu_cpu_context;
5892 }
5893
5894 return NULL;
5895}
5896
Peter Zijlstra51676952010-12-07 14:18:20 +01005897static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005898{
Peter Zijlstra51676952010-12-07 14:18:20 +01005899 int cpu;
5900
5901 for_each_possible_cpu(cpu) {
5902 struct perf_cpu_context *cpuctx;
5903
5904 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
5905
5906 if (cpuctx->active_pmu == old_pmu)
5907 cpuctx->active_pmu = pmu;
5908 }
5909}
5910
5911static void free_pmu_context(struct pmu *pmu)
5912{
5913 struct pmu *i;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005914
5915 mutex_lock(&pmus_lock);
5916 /*
5917 * Like a real lame refcount.
5918 */
Peter Zijlstra51676952010-12-07 14:18:20 +01005919 list_for_each_entry(i, &pmus, entry) {
5920 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
5921 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005922 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01005923 }
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005924 }
5925
Peter Zijlstra51676952010-12-07 14:18:20 +01005926 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005927out:
5928 mutex_unlock(&pmus_lock);
5929}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005930static struct idr pmu_idr;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005931
Peter Zijlstraabe43402010-11-17 23:17:37 +01005932static ssize_t
5933type_show(struct device *dev, struct device_attribute *attr, char *page)
5934{
5935 struct pmu *pmu = dev_get_drvdata(dev);
5936
5937 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
5938}
5939
5940static struct device_attribute pmu_dev_attrs[] = {
5941 __ATTR_RO(type),
5942 __ATTR_NULL,
5943};
5944
5945static int pmu_bus_running;
5946static struct bus_type pmu_bus = {
5947 .name = "event_source",
5948 .dev_attrs = pmu_dev_attrs,
5949};
5950
5951static void pmu_dev_release(struct device *dev)
5952{
5953 kfree(dev);
5954}
5955
5956static int pmu_dev_alloc(struct pmu *pmu)
5957{
5958 int ret = -ENOMEM;
5959
5960 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
5961 if (!pmu->dev)
5962 goto out;
5963
5964 device_initialize(pmu->dev);
5965 ret = dev_set_name(pmu->dev, "%s", pmu->name);
5966 if (ret)
5967 goto free_dev;
5968
5969 dev_set_drvdata(pmu->dev, pmu);
5970 pmu->dev->bus = &pmu_bus;
5971 pmu->dev->release = pmu_dev_release;
5972 ret = device_add(pmu->dev);
5973 if (ret)
5974 goto free_dev;
5975
5976out:
5977 return ret;
5978
5979free_dev:
5980 put_device(pmu->dev);
5981 goto out;
5982}
5983
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01005984static struct lock_class_key cpuctx_mutex;
5985
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005986int perf_pmu_register(struct pmu *pmu, char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005987{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005988 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005989
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005990 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005991 ret = -ENOMEM;
5992 pmu->pmu_disable_count = alloc_percpu(int);
5993 if (!pmu->pmu_disable_count)
5994 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005995
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005996 pmu->type = -1;
5997 if (!name)
5998 goto skip_type;
5999 pmu->name = name;
6000
6001 if (type < 0) {
6002 int err = idr_pre_get(&pmu_idr, GFP_KERNEL);
6003 if (!err)
6004 goto free_pdc;
6005
6006 err = idr_get_new_above(&pmu_idr, pmu, PERF_TYPE_MAX, &type);
6007 if (err) {
6008 ret = err;
6009 goto free_pdc;
6010 }
6011 }
6012 pmu->type = type;
6013
Peter Zijlstraabe43402010-11-17 23:17:37 +01006014 if (pmu_bus_running) {
6015 ret = pmu_dev_alloc(pmu);
6016 if (ret)
6017 goto free_idr;
6018 }
6019
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006020skip_type:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006021 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
6022 if (pmu->pmu_cpu_context)
6023 goto got_cpu_context;
6024
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006025 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
6026 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01006027 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006028
6029 for_each_possible_cpu(cpu) {
6030 struct perf_cpu_context *cpuctx;
6031
6032 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02006033 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006034 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006035 cpuctx->ctx.type = cpu_context;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006036 cpuctx->ctx.pmu = pmu;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006037 cpuctx->jiffies_interval = 1;
6038 INIT_LIST_HEAD(&cpuctx->rotation_list);
Peter Zijlstra51676952010-12-07 14:18:20 +01006039 cpuctx->active_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006040 }
6041
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006042got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006043 if (!pmu->start_txn) {
6044 if (pmu->pmu_enable) {
6045 /*
6046 * If we have pmu_enable/pmu_disable calls, install
6047 * transaction stubs that use that to try and batch
6048 * hardware accesses.
6049 */
6050 pmu->start_txn = perf_pmu_start_txn;
6051 pmu->commit_txn = perf_pmu_commit_txn;
6052 pmu->cancel_txn = perf_pmu_cancel_txn;
6053 } else {
6054 pmu->start_txn = perf_pmu_nop_void;
6055 pmu->commit_txn = perf_pmu_nop_int;
6056 pmu->cancel_txn = perf_pmu_nop_void;
6057 }
6058 }
6059
6060 if (!pmu->pmu_enable) {
6061 pmu->pmu_enable = perf_pmu_nop_void;
6062 pmu->pmu_disable = perf_pmu_nop_void;
6063 }
6064
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006065 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006066 ret = 0;
6067unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006068 mutex_unlock(&pmus_lock);
6069
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006070 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006071
Peter Zijlstraabe43402010-11-17 23:17:37 +01006072free_dev:
6073 device_del(pmu->dev);
6074 put_device(pmu->dev);
6075
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006076free_idr:
6077 if (pmu->type >= PERF_TYPE_MAX)
6078 idr_remove(&pmu_idr, pmu->type);
6079
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006080free_pdc:
6081 free_percpu(pmu->pmu_disable_count);
6082 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006083}
6084
6085void perf_pmu_unregister(struct pmu *pmu)
6086{
6087 mutex_lock(&pmus_lock);
6088 list_del_rcu(&pmu->entry);
6089 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006090
6091 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02006092 * We dereference the pmu list under both SRCU and regular RCU, so
6093 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006094 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006095 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02006096 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006097
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006098 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006099 if (pmu->type >= PERF_TYPE_MAX)
6100 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006101 device_del(pmu->dev);
6102 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01006103 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006104}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006105
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006106struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006107{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006108 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006109 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08006110 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006111
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006112 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006113
6114 rcu_read_lock();
6115 pmu = idr_find(&pmu_idr, event->attr.type);
6116 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08006117 if (pmu) {
6118 ret = pmu->event_init(event);
6119 if (ret)
6120 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006121 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08006122 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006123
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006124 list_for_each_entry_rcu(pmu, &pmus, entry) {
Lin Ming940c5b22011-02-27 21:13:31 +08006125 ret = pmu->event_init(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006126 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006127 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006128
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006129 if (ret != -ENOENT) {
6130 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006131 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006132 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006133 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006134 pmu = ERR_PTR(-ENOENT);
6135unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006136 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006137
6138 return pmu;
6139}
6140
6141/*
6142 * Allocate and initialize a event structure
6143 */
6144static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006145perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006146 struct task_struct *task,
6147 struct perf_event *group_leader,
6148 struct perf_event *parent_event,
6149 perf_overflow_handler_t overflow_handler)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006150{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006151 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006152 struct perf_event *event;
6153 struct hw_perf_event *hwc;
6154 long err;
6155
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006156 if ((unsigned)cpu >= nr_cpu_ids) {
6157 if (!task || cpu != -1)
6158 return ERR_PTR(-EINVAL);
6159 }
6160
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006161 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006162 if (!event)
6163 return ERR_PTR(-ENOMEM);
6164
6165 /*
6166 * Single events are their own group leaders, with an
6167 * empty sibling list:
6168 */
6169 if (!group_leader)
6170 group_leader = event;
6171
6172 mutex_init(&event->child_mutex);
6173 INIT_LIST_HEAD(&event->child_list);
6174
6175 INIT_LIST_HEAD(&event->group_entry);
6176 INIT_LIST_HEAD(&event->event_entry);
6177 INIT_LIST_HEAD(&event->sibling_list);
6178 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006179 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006180
6181 mutex_init(&event->mmap_mutex);
6182
6183 event->cpu = cpu;
6184 event->attr = *attr;
6185 event->group_leader = group_leader;
6186 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006187 event->oncpu = -1;
6188
6189 event->parent = parent_event;
6190
6191 event->ns = get_pid_ns(current->nsproxy->pid_ns);
6192 event->id = atomic64_inc_return(&perf_event_id);
6193
6194 event->state = PERF_EVENT_STATE_INACTIVE;
6195
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006196 if (task) {
6197 event->attach_state = PERF_ATTACH_TASK;
6198#ifdef CONFIG_HAVE_HW_BREAKPOINT
6199 /*
6200 * hw_breakpoint is a bit difficult here..
6201 */
6202 if (attr->type == PERF_TYPE_BREAKPOINT)
6203 event->hw.bp_target = task;
6204#endif
6205 }
6206
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006207 if (!overflow_handler && parent_event)
6208 overflow_handler = parent_event->overflow_handler;
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006209
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006210 event->overflow_handler = overflow_handler;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02006211
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006212 if (attr->disabled)
6213 event->state = PERF_EVENT_STATE_OFF;
6214
6215 pmu = NULL;
6216
6217 hwc = &event->hw;
6218 hwc->sample_period = attr->sample_period;
6219 if (attr->freq && attr->sample_freq)
6220 hwc->sample_period = 1;
6221 hwc->last_period = hwc->sample_period;
6222
Peter Zijlstrae7850592010-05-21 14:43:08 +02006223 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006224
6225 /*
6226 * we currently do not support PERF_FORMAT_GROUP on inherited events
6227 */
6228 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
6229 goto done;
6230
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006231 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006232
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006233done:
6234 err = 0;
6235 if (!pmu)
6236 err = -EINVAL;
6237 else if (IS_ERR(pmu))
6238 err = PTR_ERR(pmu);
6239
6240 if (err) {
6241 if (event->ns)
6242 put_pid_ns(event->ns);
6243 kfree(event);
6244 return ERR_PTR(err);
6245 }
6246
6247 event->pmu = pmu;
6248
6249 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02006250 if (event->attach_state & PERF_ATTACH_TASK)
Stephane Eraniane5d13672011-02-14 11:20:01 +02006251 jump_label_inc(&perf_sched_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01006252 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006253 atomic_inc(&nr_mmap_events);
6254 if (event->attr.comm)
6255 atomic_inc(&nr_comm_events);
6256 if (event->attr.task)
6257 atomic_inc(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006258 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
6259 err = get_callchain_buffers();
6260 if (err) {
6261 free_event(event);
6262 return ERR_PTR(err);
6263 }
6264 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006265 }
6266
6267 return event;
6268}
6269
6270static int perf_copy_attr(struct perf_event_attr __user *uattr,
6271 struct perf_event_attr *attr)
6272{
6273 u32 size;
6274 int ret;
6275
6276 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
6277 return -EFAULT;
6278
6279 /*
6280 * zero the full structure, so that a short copy will be nice.
6281 */
6282 memset(attr, 0, sizeof(*attr));
6283
6284 ret = get_user(size, &uattr->size);
6285 if (ret)
6286 return ret;
6287
6288 if (size > PAGE_SIZE) /* silly large */
6289 goto err_size;
6290
6291 if (!size) /* abi compat */
6292 size = PERF_ATTR_SIZE_VER0;
6293
6294 if (size < PERF_ATTR_SIZE_VER0)
6295 goto err_size;
6296
6297 /*
6298 * If we're handed a bigger struct than we know of,
6299 * ensure all the unknown bits are 0 - i.e. new
6300 * user-space does not rely on any kernel feature
6301 * extensions we dont know about yet.
6302 */
6303 if (size > sizeof(*attr)) {
6304 unsigned char __user *addr;
6305 unsigned char __user *end;
6306 unsigned char val;
6307
6308 addr = (void __user *)uattr + sizeof(*attr);
6309 end = (void __user *)uattr + size;
6310
6311 for (; addr < end; addr++) {
6312 ret = get_user(val, addr);
6313 if (ret)
6314 return ret;
6315 if (val)
6316 goto err_size;
6317 }
6318 size = sizeof(*attr);
6319 }
6320
6321 ret = copy_from_user(attr, uattr, size);
6322 if (ret)
6323 return -EFAULT;
6324
6325 /*
6326 * If the type exists, the corresponding creation will verify
6327 * the attr->config.
6328 */
6329 if (attr->type >= PERF_TYPE_MAX)
6330 return -EINVAL;
6331
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05306332 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006333 return -EINVAL;
6334
6335 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
6336 return -EINVAL;
6337
6338 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
6339 return -EINVAL;
6340
6341out:
6342 return ret;
6343
6344err_size:
6345 put_user(sizeof(*attr), &uattr->size);
6346 ret = -E2BIG;
6347 goto out;
6348}
6349
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006350static int
6351perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006352{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02006353 struct perf_buffer *buffer = NULL, *old_buffer = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006354 int ret = -EINVAL;
6355
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006356 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006357 goto set;
6358
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006359 /* don't allow circular references */
6360 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006361 goto out;
6362
Peter Zijlstra0f139302010-05-20 14:35:15 +02006363 /*
6364 * Don't allow cross-cpu buffers
6365 */
6366 if (output_event->cpu != event->cpu)
6367 goto out;
6368
6369 /*
6370 * If its not a per-cpu buffer, it must be the same task.
6371 */
6372 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
6373 goto out;
6374
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006375set:
6376 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006377 /* Can't redirect output if we've got an active mmap() */
6378 if (atomic_read(&event->mmap_count))
6379 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006380
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006381 if (output_event) {
6382 /* get the buffer we want to redirect to */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02006383 buffer = perf_buffer_get(output_event);
6384 if (!buffer)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006385 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006386 }
6387
Peter Zijlstraca5135e2010-05-28 19:33:23 +02006388 old_buffer = event->buffer;
6389 rcu_assign_pointer(event->buffer, buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006390 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006391unlock:
6392 mutex_unlock(&event->mmap_mutex);
6393
Peter Zijlstraca5135e2010-05-28 19:33:23 +02006394 if (old_buffer)
6395 perf_buffer_put(old_buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006396out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006397 return ret;
6398}
6399
6400/**
6401 * sys_perf_event_open - open a performance event, associate it to a task/cpu
6402 *
6403 * @attr_uptr: event_id type attributes for monitoring/sampling
6404 * @pid: target pid
6405 * @cpu: target cpu
6406 * @group_fd: group leader event fd
6407 */
6408SYSCALL_DEFINE5(perf_event_open,
6409 struct perf_event_attr __user *, attr_uptr,
6410 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
6411{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006412 struct perf_event *group_leader = NULL, *output_event = NULL;
6413 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006414 struct perf_event_attr attr;
6415 struct perf_event_context *ctx;
6416 struct file *event_file = NULL;
6417 struct file *group_file = NULL;
Matt Helsley38a81da2010-09-13 13:01:20 -07006418 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006419 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04006420 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006421 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006422 int fput_needed = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006423 int err;
6424
6425 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02006426 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006427 return -EINVAL;
6428
6429 err = perf_copy_attr(attr_uptr, &attr);
6430 if (err)
6431 return err;
6432
6433 if (!attr.exclude_kernel) {
6434 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6435 return -EACCES;
6436 }
6437
6438 if (attr.freq) {
6439 if (attr.sample_freq > sysctl_perf_event_sample_rate)
6440 return -EINVAL;
6441 }
6442
Stephane Eraniane5d13672011-02-14 11:20:01 +02006443 /*
6444 * In cgroup mode, the pid argument is used to pass the fd
6445 * opened to the cgroup directory in cgroupfs. The cpu argument
6446 * designates the cpu on which to monitor threads from that
6447 * cgroup.
6448 */
6449 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
6450 return -EINVAL;
6451
Al Viroea635c62010-05-26 17:40:29 -04006452 event_fd = get_unused_fd_flags(O_RDWR);
6453 if (event_fd < 0)
6454 return event_fd;
6455
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006456 if (group_fd != -1) {
6457 group_leader = perf_fget_light(group_fd, &fput_needed);
6458 if (IS_ERR(group_leader)) {
6459 err = PTR_ERR(group_leader);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006460 goto err_fd;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006461 }
6462 group_file = group_leader->filp;
6463 if (flags & PERF_FLAG_FD_OUTPUT)
6464 output_event = group_leader;
6465 if (flags & PERF_FLAG_FD_NO_GROUP)
6466 group_leader = NULL;
6467 }
6468
Stephane Eraniane5d13672011-02-14 11:20:01 +02006469 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006470 task = find_lively_task_by_vpid(pid);
6471 if (IS_ERR(task)) {
6472 err = PTR_ERR(task);
6473 goto err_group_fd;
6474 }
6475 }
6476
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006477 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL, NULL);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006478 if (IS_ERR(event)) {
6479 err = PTR_ERR(event);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006480 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006481 }
6482
Stephane Eraniane5d13672011-02-14 11:20:01 +02006483 if (flags & PERF_FLAG_PID_CGROUP) {
6484 err = perf_cgroup_connect(pid, event, &attr, group_leader);
6485 if (err)
6486 goto err_alloc;
Peter Zijlstra08309372011-03-03 11:31:20 +01006487 /*
6488 * one more event:
6489 * - that has cgroup constraint on event->cpu
6490 * - that may need work on context switch
6491 */
6492 atomic_inc(&per_cpu(perf_cgroup_events, event->cpu));
6493 jump_label_inc(&perf_sched_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +02006494 }
6495
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006496 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006497 * Special case software events and allow them to be part of
6498 * any hardware group.
6499 */
6500 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006501
6502 if (group_leader &&
6503 (is_software_event(event) != is_software_event(group_leader))) {
6504 if (is_software_event(event)) {
6505 /*
6506 * If event and group_leader are not both a software
6507 * event, and event is, then group leader is not.
6508 *
6509 * Allow the addition of software events to !software
6510 * groups, this is safe because software events never
6511 * fail to schedule.
6512 */
6513 pmu = group_leader->pmu;
6514 } else if (is_software_event(group_leader) &&
6515 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
6516 /*
6517 * In case the group is a pure software group, and we
6518 * try to add a hardware event, move the whole group to
6519 * the hardware context.
6520 */
6521 move_group = 1;
6522 }
6523 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006524
6525 /*
6526 * Get the target context (task or percpu):
6527 */
Matt Helsley38a81da2010-09-13 13:01:20 -07006528 ctx = find_get_context(pmu, task, cpu);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006529 if (IS_ERR(ctx)) {
6530 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006531 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006532 }
6533
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006534 /*
6535 * Look up the group leader (we will attach this event to it):
6536 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006537 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006538 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006539
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006540 /*
6541 * Do not allow a recursive hierarchy (this new sibling
6542 * becoming part of another group-sibling):
6543 */
6544 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006545 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006546 /*
6547 * Do not allow to attach to a group in a different
6548 * task or CPU context:
6549 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006550 if (move_group) {
6551 if (group_leader->ctx->type != ctx->type)
6552 goto err_context;
6553 } else {
6554 if (group_leader->ctx != ctx)
6555 goto err_context;
6556 }
6557
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006558 /*
6559 * Only a group leader can be exclusive or pinned
6560 */
6561 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006562 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006563 }
6564
6565 if (output_event) {
6566 err = perf_event_set_output(event, output_event);
6567 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006568 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006569 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006570
Al Viroea635c62010-05-26 17:40:29 -04006571 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
6572 if (IS_ERR(event_file)) {
6573 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006574 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04006575 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006576
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006577 if (move_group) {
6578 struct perf_event_context *gctx = group_leader->ctx;
6579
6580 mutex_lock(&gctx->mutex);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006581 perf_remove_from_context(group_leader);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006582 list_for_each_entry(sibling, &group_leader->sibling_list,
6583 group_entry) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006584 perf_remove_from_context(sibling);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006585 put_ctx(gctx);
6586 }
6587 mutex_unlock(&gctx->mutex);
6588 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006589 }
6590
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006591 event->filp = event_file;
6592 WARN_ON_ONCE(ctx->parent_ctx);
6593 mutex_lock(&ctx->mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006594
6595 if (move_group) {
6596 perf_install_in_context(ctx, group_leader, cpu);
6597 get_ctx(ctx);
6598 list_for_each_entry(sibling, &group_leader->sibling_list,
6599 group_entry) {
6600 perf_install_in_context(ctx, sibling, cpu);
6601 get_ctx(ctx);
6602 }
6603 }
6604
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006605 perf_install_in_context(ctx, event, cpu);
6606 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006607 perf_unpin_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006608 mutex_unlock(&ctx->mutex);
6609
6610 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01006611
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006612 mutex_lock(&current->perf_event_mutex);
6613 list_add_tail(&event->owner_entry, &current->perf_event_list);
6614 mutex_unlock(&current->perf_event_mutex);
6615
Peter Zijlstra8a495422010-05-27 15:47:49 +02006616 /*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006617 * Precalculate sample_data sizes
6618 */
6619 perf_event__header_size(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006620 perf_event__id_header_size(event);
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006621
6622 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02006623 * Drop the reference on the group_event after placing the
6624 * new event on the sibling_list. This ensures destruction
6625 * of the group leader will find the pointer to itself in
6626 * perf_group_detach().
6627 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006628 fput_light(group_file, fput_needed);
Al Viroea635c62010-05-26 17:40:29 -04006629 fd_install(event_fd, event_file);
6630 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006631
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006632err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006633 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04006634 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006635err_alloc:
6636 free_event(event);
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02006637err_task:
6638 if (task)
6639 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006640err_group_fd:
6641 fput_light(group_file, fput_needed);
Al Viroea635c62010-05-26 17:40:29 -04006642err_fd:
6643 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006644 return err;
6645}
6646
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006647/**
6648 * perf_event_create_kernel_counter
6649 *
6650 * @attr: attributes of the counter to create
6651 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07006652 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006653 */
6654struct perf_event *
6655perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07006656 struct task_struct *task,
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006657 perf_overflow_handler_t overflow_handler)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006658{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006659 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006660 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006661 int err;
6662
6663 /*
6664 * Get the target context (task or percpu):
6665 */
6666
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006667 event = perf_event_alloc(attr, cpu, task, NULL, NULL, overflow_handler);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006668 if (IS_ERR(event)) {
6669 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006670 goto err;
6671 }
6672
Matt Helsley38a81da2010-09-13 13:01:20 -07006673 ctx = find_get_context(event->pmu, task, cpu);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006674 if (IS_ERR(ctx)) {
6675 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006676 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006677 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006678
6679 event->filp = NULL;
6680 WARN_ON_ONCE(ctx->parent_ctx);
6681 mutex_lock(&ctx->mutex);
6682 perf_install_in_context(ctx, event, cpu);
6683 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006684 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006685 mutex_unlock(&ctx->mutex);
6686
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006687 return event;
6688
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006689err_free:
6690 free_event(event);
6691err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006692 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006693}
6694EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
6695
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006696static void sync_child_event(struct perf_event *child_event,
6697 struct task_struct *child)
6698{
6699 struct perf_event *parent_event = child_event->parent;
6700 u64 child_val;
6701
6702 if (child_event->attr.inherit_stat)
6703 perf_event_read_event(child_event, child);
6704
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006705 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006706
6707 /*
6708 * Add back the child's count to the parent's count:
6709 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02006710 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006711 atomic64_add(child_event->total_time_enabled,
6712 &parent_event->child_total_time_enabled);
6713 atomic64_add(child_event->total_time_running,
6714 &parent_event->child_total_time_running);
6715
6716 /*
6717 * Remove this event from the parent's list
6718 */
6719 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
6720 mutex_lock(&parent_event->child_mutex);
6721 list_del_init(&child_event->child_list);
6722 mutex_unlock(&parent_event->child_mutex);
6723
6724 /*
6725 * Release the parent event, if this was the last
6726 * reference to it.
6727 */
6728 fput(parent_event->filp);
6729}
6730
6731static void
6732__perf_event_exit_task(struct perf_event *child_event,
6733 struct perf_event_context *child_ctx,
6734 struct task_struct *child)
6735{
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006736 if (child_event->parent) {
6737 raw_spin_lock_irq(&child_ctx->lock);
6738 perf_group_detach(child_event);
6739 raw_spin_unlock_irq(&child_ctx->lock);
6740 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006741
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006742 perf_remove_from_context(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006743
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006744 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006745 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006746 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006747 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006748 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006749 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006750 sync_child_event(child_event, child);
6751 free_event(child_event);
6752 }
6753}
6754
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006755static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006756{
6757 struct perf_event *child_event, *tmp;
6758 struct perf_event_context *child_ctx;
6759 unsigned long flags;
6760
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006761 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006762 perf_event_task(child, NULL, 0);
6763 return;
6764 }
6765
6766 local_irq_save(flags);
6767 /*
6768 * We can't reschedule here because interrupts are disabled,
6769 * and either child is current or it is a task that can't be
6770 * scheduled, so we are now safe from rescheduling changing
6771 * our context.
6772 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01006773 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02006774 task_ctx_sched_out(child_ctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006775
6776 /*
6777 * Take the context lock here so that if find_get_context is
6778 * reading child->perf_event_ctxp, we wait until it has
6779 * incremented the context's refcount before we do put_ctx below.
6780 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01006781 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006782 child->perf_event_ctxp[ctxn] = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006783 /*
6784 * If this context is a clone; unclone it so it can't get
6785 * swapped to another process while we're removing all
6786 * the events from it.
6787 */
6788 unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01006789 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01006790 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006791
6792 /*
6793 * Report the task dead after unscheduling the events so that we
6794 * won't get any samples after PERF_RECORD_EXIT. We can however still
6795 * get a few PERF_RECORD_READ events.
6796 */
6797 perf_event_task(child, child_ctx, 0);
6798
6799 /*
6800 * We can recurse on the same lock type through:
6801 *
6802 * __perf_event_exit_task()
6803 * sync_child_event()
6804 * fput(parent_event->filp)
6805 * perf_release()
6806 * mutex_lock(&ctx->mutex)
6807 *
6808 * But since its the parent context it won't be the same instance.
6809 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02006810 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006811
6812again:
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006813 list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
6814 group_entry)
6815 __perf_event_exit_task(child_event, child_ctx, child);
6816
6817 list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006818 group_entry)
6819 __perf_event_exit_task(child_event, child_ctx, child);
6820
6821 /*
6822 * If the last event was a group event, it will have appended all
6823 * its siblings to the list, but we obtained 'tmp' before that which
6824 * will still point to the list head terminating the iteration.
6825 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006826 if (!list_empty(&child_ctx->pinned_groups) ||
6827 !list_empty(&child_ctx->flexible_groups))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006828 goto again;
6829
6830 mutex_unlock(&child_ctx->mutex);
6831
6832 put_ctx(child_ctx);
6833}
6834
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006835/*
6836 * When a child task exits, feed back event values to parent events.
6837 */
6838void perf_event_exit_task(struct task_struct *child)
6839{
Peter Zijlstra88821352010-11-09 19:01:43 +01006840 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006841 int ctxn;
6842
Peter Zijlstra88821352010-11-09 19:01:43 +01006843 mutex_lock(&child->perf_event_mutex);
6844 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
6845 owner_entry) {
6846 list_del_init(&event->owner_entry);
6847
6848 /*
6849 * Ensure the list deletion is visible before we clear
6850 * the owner, closes a race against perf_release() where
6851 * we need to serialize on the owner->perf_event_mutex.
6852 */
6853 smp_wmb();
6854 event->owner = NULL;
6855 }
6856 mutex_unlock(&child->perf_event_mutex);
6857
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006858 for_each_task_context_nr(ctxn)
6859 perf_event_exit_task_context(child, ctxn);
6860}
6861
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006862static void perf_free_event(struct perf_event *event,
6863 struct perf_event_context *ctx)
6864{
6865 struct perf_event *parent = event->parent;
6866
6867 if (WARN_ON_ONCE(!parent))
6868 return;
6869
6870 mutex_lock(&parent->child_mutex);
6871 list_del_init(&event->child_list);
6872 mutex_unlock(&parent->child_mutex);
6873
6874 fput(parent->filp);
6875
Peter Zijlstra8a495422010-05-27 15:47:49 +02006876 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006877 list_del_event(event, ctx);
6878 free_event(event);
6879}
6880
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006881/*
6882 * free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006883 * perf_event_init_task below, used by fork() in case of fail.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006884 */
6885void perf_event_free_task(struct task_struct *task)
6886{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006887 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006888 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006889 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006890
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006891 for_each_task_context_nr(ctxn) {
6892 ctx = task->perf_event_ctxp[ctxn];
6893 if (!ctx)
6894 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006895
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006896 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006897again:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006898 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
6899 group_entry)
6900 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006901
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006902 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
6903 group_entry)
6904 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006905
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006906 if (!list_empty(&ctx->pinned_groups) ||
6907 !list_empty(&ctx->flexible_groups))
6908 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006909
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006910 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006911
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006912 put_ctx(ctx);
6913 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006914}
6915
Peter Zijlstra4e231c72010-09-09 21:01:59 +02006916void perf_event_delayed_put(struct task_struct *task)
6917{
6918 int ctxn;
6919
6920 for_each_task_context_nr(ctxn)
6921 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
6922}
6923
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006924/*
6925 * inherit a event from parent task to child task:
6926 */
6927static struct perf_event *
6928inherit_event(struct perf_event *parent_event,
6929 struct task_struct *parent,
6930 struct perf_event_context *parent_ctx,
6931 struct task_struct *child,
6932 struct perf_event *group_leader,
6933 struct perf_event_context *child_ctx)
6934{
6935 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02006936 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006937
6938 /*
6939 * Instead of creating recursive hierarchies of events,
6940 * we link inherited events back to the original parent,
6941 * which has a filp for sure, which we use as the reference
6942 * count:
6943 */
6944 if (parent_event->parent)
6945 parent_event = parent_event->parent;
6946
6947 child_event = perf_event_alloc(&parent_event->attr,
6948 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006949 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006950 group_leader, parent_event,
6951 NULL);
6952 if (IS_ERR(child_event))
6953 return child_event;
6954 get_ctx(child_ctx);
6955
6956 /*
6957 * Make the child state follow the state of the parent event,
6958 * not its attr.disabled bit. We hold the parent's mutex,
6959 * so we won't race with perf_event_{en, dis}able_family.
6960 */
6961 if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
6962 child_event->state = PERF_EVENT_STATE_INACTIVE;
6963 else
6964 child_event->state = PERF_EVENT_STATE_OFF;
6965
6966 if (parent_event->attr.freq) {
6967 u64 sample_period = parent_event->hw.sample_period;
6968 struct hw_perf_event *hwc = &child_event->hw;
6969
6970 hwc->sample_period = sample_period;
6971 hwc->last_period = sample_period;
6972
6973 local64_set(&hwc->period_left, sample_period);
6974 }
6975
6976 child_event->ctx = child_ctx;
6977 child_event->overflow_handler = parent_event->overflow_handler;
6978
6979 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02006980 * Precalculate sample_data sizes
6981 */
6982 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006983 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02006984
6985 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006986 * Link it up in the child's context:
6987 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02006988 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006989 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02006990 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006991
6992 /*
6993 * Get a reference to the parent filp - we will fput it
6994 * when the child event exits. This is safe to do because
6995 * we are in the parent and we know that the filp still
6996 * exists and has a nonzero count:
6997 */
6998 atomic_long_inc(&parent_event->filp->f_count);
6999
7000 /*
7001 * Link this into the parent event's child list
7002 */
7003 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7004 mutex_lock(&parent_event->child_mutex);
7005 list_add_tail(&child_event->child_list, &parent_event->child_list);
7006 mutex_unlock(&parent_event->child_mutex);
7007
7008 return child_event;
7009}
7010
7011static int inherit_group(struct perf_event *parent_event,
7012 struct task_struct *parent,
7013 struct perf_event_context *parent_ctx,
7014 struct task_struct *child,
7015 struct perf_event_context *child_ctx)
7016{
7017 struct perf_event *leader;
7018 struct perf_event *sub;
7019 struct perf_event *child_ctr;
7020
7021 leader = inherit_event(parent_event, parent, parent_ctx,
7022 child, NULL, child_ctx);
7023 if (IS_ERR(leader))
7024 return PTR_ERR(leader);
7025 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
7026 child_ctr = inherit_event(sub, parent, parent_ctx,
7027 child, leader, child_ctx);
7028 if (IS_ERR(child_ctr))
7029 return PTR_ERR(child_ctr);
7030 }
7031 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007032}
7033
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007034static int
7035inherit_task_group(struct perf_event *event, struct task_struct *parent,
7036 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007037 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007038 int *inherited_all)
7039{
7040 int ret;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007041 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007042
7043 if (!event->attr.inherit) {
7044 *inherited_all = 0;
7045 return 0;
7046 }
7047
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007048 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007049 if (!child_ctx) {
7050 /*
7051 * This is executed from the parent task context, so
7052 * inherit events that have been marked for cloning.
7053 * First allocate and initialize a context for the
7054 * child.
7055 */
7056
Peter Zijlstraeb184472010-09-07 15:55:13 +02007057 child_ctx = alloc_perf_context(event->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007058 if (!child_ctx)
7059 return -ENOMEM;
7060
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007061 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007062 }
7063
7064 ret = inherit_group(event, parent, parent_ctx,
7065 child, child_ctx);
7066
7067 if (ret)
7068 *inherited_all = 0;
7069
7070 return ret;
7071}
7072
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007073/*
7074 * Initialize the perf_event context in task_struct
7075 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007076int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007077{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007078 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007079 struct perf_event_context *cloned_ctx;
7080 struct perf_event *event;
7081 struct task_struct *parent = current;
7082 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007083 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007084 int ret = 0;
7085
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007086 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007087 return 0;
7088
7089 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007090 * If the parent's context is a clone, pin it so it won't get
7091 * swapped under us.
7092 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007093 parent_ctx = perf_pin_task_context(parent, ctxn);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007094
7095 /*
7096 * No need to check if parent_ctx != NULL here; since we saw
7097 * it non-NULL earlier, the only reason for it to become NULL
7098 * is if we exit, and since we're currently in the middle of
7099 * a fork we can't be exiting at the same time.
7100 */
7101
7102 /*
7103 * Lock the parent list. No need to lock the child - not PID
7104 * hashed yet and not running, so nobody can access it.
7105 */
7106 mutex_lock(&parent_ctx->mutex);
7107
7108 /*
7109 * We dont have to disable NMIs - we are only looking at
7110 * the list, not manipulating it:
7111 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007112 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007113 ret = inherit_task_group(event, parent, parent_ctx,
7114 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007115 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007116 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007117 }
7118
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007119 /*
7120 * We can't hold ctx->lock when iterating the ->flexible_group list due
7121 * to allocations, but we need to prevent rotation because
7122 * rotate_ctx() will change the list from interrupt context.
7123 */
7124 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7125 parent_ctx->rotate_disable = 1;
7126 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
7127
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007128 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007129 ret = inherit_task_group(event, parent, parent_ctx,
7130 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007131 if (ret)
7132 break;
7133 }
7134
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007135 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7136 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007137
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007138 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007139
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01007140 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007141 /*
7142 * Mark the child context as a clone of the parent
7143 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007144 *
7145 * Note that if the parent is a clone, the holding of
7146 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007147 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007148 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007149 if (cloned_ctx) {
7150 child_ctx->parent_ctx = cloned_ctx;
7151 child_ctx->parent_gen = parent_ctx->parent_gen;
7152 } else {
7153 child_ctx->parent_ctx = parent_ctx;
7154 child_ctx->parent_gen = parent_ctx->generation;
7155 }
7156 get_ctx(child_ctx->parent_ctx);
7157 }
7158
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007159 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007160 mutex_unlock(&parent_ctx->mutex);
7161
7162 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007163 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007164
7165 return ret;
7166}
7167
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007168/*
7169 * Initialize the perf_event context in task_struct
7170 */
7171int perf_event_init_task(struct task_struct *child)
7172{
7173 int ctxn, ret;
7174
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01007175 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
7176 mutex_init(&child->perf_event_mutex);
7177 INIT_LIST_HEAD(&child->perf_event_list);
7178
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007179 for_each_task_context_nr(ctxn) {
7180 ret = perf_event_init_context(child, ctxn);
7181 if (ret)
7182 return ret;
7183 }
7184
7185 return 0;
7186}
7187
Paul Mackerras220b1402010-03-10 20:45:52 +11007188static void __init perf_event_init_all_cpus(void)
7189{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007190 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11007191 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11007192
7193 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007194 swhash = &per_cpu(swevent_htable, cpu);
7195 mutex_init(&swhash->hlist_mutex);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007196 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11007197 }
7198}
7199
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007200static void __cpuinit perf_event_init_cpu(int cpu)
7201{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007202 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007203
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007204 mutex_lock(&swhash->hlist_mutex);
7205 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007206 struct swevent_hlist *hlist;
7207
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007208 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
7209 WARN_ON(!hlist);
7210 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007211 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007212 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007213}
7214
Peter Zijlstrac2774432010-12-08 15:29:02 +01007215#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007216static void perf_pmu_rotate_stop(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007217{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007218 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
7219
7220 WARN_ON(!irqs_disabled());
7221
7222 list_del_init(&cpuctx->rotation_list);
7223}
7224
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007225static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007226{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007227 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007228 struct perf_event *event, *tmp;
7229
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007230 perf_pmu_rotate_stop(ctx->pmu);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02007231
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007232 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007233 __perf_remove_from_context(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007234 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007235 __perf_remove_from_context(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007236}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007237
7238static void perf_event_exit_cpu_context(int cpu)
7239{
7240 struct perf_event_context *ctx;
7241 struct pmu *pmu;
7242 int idx;
7243
7244 idx = srcu_read_lock(&pmus_srcu);
7245 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02007246 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007247
7248 mutex_lock(&ctx->mutex);
7249 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
7250 mutex_unlock(&ctx->mutex);
7251 }
7252 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007253}
7254
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007255static void perf_event_exit_cpu(int cpu)
7256{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007257 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007258
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007259 mutex_lock(&swhash->hlist_mutex);
7260 swevent_hlist_release(swhash);
7261 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007262
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007263 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007264}
7265#else
7266static inline void perf_event_exit_cpu(int cpu) { }
7267#endif
7268
Peter Zijlstrac2774432010-12-08 15:29:02 +01007269static int
7270perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
7271{
7272 int cpu;
7273
7274 for_each_online_cpu(cpu)
7275 perf_event_exit_cpu(cpu);
7276
7277 return NOTIFY_OK;
7278}
7279
7280/*
7281 * Run the perf reboot notifier at the very last possible moment so that
7282 * the generic watchdog code runs as long as possible.
7283 */
7284static struct notifier_block perf_reboot_notifier = {
7285 .notifier_call = perf_reboot,
7286 .priority = INT_MIN,
7287};
7288
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007289static int __cpuinit
7290perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
7291{
7292 unsigned int cpu = (long)hcpu;
7293
Peter Zijlstra5e116372010-06-11 13:35:08 +02007294 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007295
7296 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02007297 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007298 perf_event_init_cpu(cpu);
7299 break;
7300
Peter Zijlstra5e116372010-06-11 13:35:08 +02007301 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007302 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007303 perf_event_exit_cpu(cpu);
7304 break;
7305
7306 default:
7307 break;
7308 }
7309
7310 return NOTIFY_OK;
7311}
7312
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007313void __init perf_event_init(void)
7314{
Jason Wessel3c502e72010-11-04 17:33:01 -05007315 int ret;
7316
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007317 idr_init(&pmu_idr);
7318
Paul Mackerras220b1402010-03-10 20:45:52 +11007319 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007320 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007321 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
7322 perf_pmu_register(&perf_cpu_clock, NULL, -1);
7323 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007324 perf_tp_register();
7325 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01007326 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05007327
7328 ret = init_hw_breakpoint();
7329 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007330}
Peter Zijlstraabe43402010-11-17 23:17:37 +01007331
7332static int __init perf_event_sysfs_init(void)
7333{
7334 struct pmu *pmu;
7335 int ret;
7336
7337 mutex_lock(&pmus_lock);
7338
7339 ret = bus_register(&pmu_bus);
7340 if (ret)
7341 goto unlock;
7342
7343 list_for_each_entry(pmu, &pmus, entry) {
7344 if (!pmu->name || pmu->type < 0)
7345 continue;
7346
7347 ret = pmu_dev_alloc(pmu);
7348 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
7349 }
7350 pmu_bus_running = 1;
7351 ret = 0;
7352
7353unlock:
7354 mutex_unlock(&pmus_lock);
7355
7356 return ret;
7357}
7358device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007359
7360#ifdef CONFIG_CGROUP_PERF
7361static struct cgroup_subsys_state *perf_cgroup_create(
7362 struct cgroup_subsys *ss, struct cgroup *cont)
7363{
7364 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02007365
Li Zefan1b15d052011-03-03 14:26:06 +08007366 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007367 if (!jc)
7368 return ERR_PTR(-ENOMEM);
7369
Stephane Eraniane5d13672011-02-14 11:20:01 +02007370 jc->info = alloc_percpu(struct perf_cgroup_info);
7371 if (!jc->info) {
7372 kfree(jc);
7373 return ERR_PTR(-ENOMEM);
7374 }
7375
Stephane Eraniane5d13672011-02-14 11:20:01 +02007376 return &jc->css;
7377}
7378
7379static void perf_cgroup_destroy(struct cgroup_subsys *ss,
7380 struct cgroup *cont)
7381{
7382 struct perf_cgroup *jc;
7383 jc = container_of(cgroup_subsys_state(cont, perf_subsys_id),
7384 struct perf_cgroup, css);
7385 free_percpu(jc->info);
7386 kfree(jc);
7387}
7388
7389static int __perf_cgroup_move(void *info)
7390{
7391 struct task_struct *task = info;
7392 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
7393 return 0;
7394}
7395
7396static void perf_cgroup_move(struct task_struct *task)
7397{
7398 task_function_call(task, __perf_cgroup_move, task);
7399}
7400
7401static void perf_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
7402 struct cgroup *old_cgrp, struct task_struct *task,
7403 bool threadgroup)
7404{
7405 perf_cgroup_move(task);
7406 if (threadgroup) {
7407 struct task_struct *c;
7408 rcu_read_lock();
7409 list_for_each_entry_rcu(c, &task->thread_group, thread_group) {
7410 perf_cgroup_move(c);
7411 }
7412 rcu_read_unlock();
7413 }
7414}
7415
7416static void perf_cgroup_exit(struct cgroup_subsys *ss, struct cgroup *cgrp,
7417 struct cgroup *old_cgrp, struct task_struct *task)
7418{
7419 /*
7420 * cgroup_exit() is called in the copy_process() failure path.
7421 * Ignore this case since the task hasn't ran yet, this avoids
7422 * trying to poke a half freed task state from generic code.
7423 */
7424 if (!(task->flags & PF_EXITING))
7425 return;
7426
7427 perf_cgroup_move(task);
7428}
7429
7430struct cgroup_subsys perf_subsys = {
7431 .name = "perf_event",
7432 .subsys_id = perf_subsys_id,
7433 .create = perf_cgroup_create,
7434 .destroy = perf_cgroup_destroy,
7435 .exit = perf_cgroup_exit,
7436 .attach = perf_cgroup_attach,
7437};
7438#endif /* CONFIG_CGROUP_PERF */