Merge branch 'perf/urgent' into perf/core
[platform/adaptation/renesas_rcar/renesas_kernel.git] / kernel / events / core.c
1 /*
2  * Performance events core code:
3  *
4  *  Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
5  *  Copyright (C) 2008-2011 Red Hat, Inc., Ingo Molnar
6  *  Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
7  *  Copyright  ©  2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
8  *
9  * For licensing details see kernel-base/COPYING
10  */
11
12 #include <linux/fs.h>
13 #include <linux/mm.h>
14 #include <linux/cpu.h>
15 #include <linux/smp.h>
16 #include <linux/idr.h>
17 #include <linux/file.h>
18 #include <linux/poll.h>
19 #include <linux/slab.h>
20 #include <linux/hash.h>
21 #include <linux/sysfs.h>
22 #include <linux/dcache.h>
23 #include <linux/percpu.h>
24 #include <linux/ptrace.h>
25 #include <linux/reboot.h>
26 #include <linux/vmstat.h>
27 #include <linux/device.h>
28 #include <linux/export.h>
29 #include <linux/vmalloc.h>
30 #include <linux/hardirq.h>
31 #include <linux/rculist.h>
32 #include <linux/uaccess.h>
33 #include <linux/syscalls.h>
34 #include <linux/anon_inodes.h>
35 #include <linux/kernel_stat.h>
36 #include <linux/perf_event.h>
37 #include <linux/ftrace_event.h>
38 #include <linux/hw_breakpoint.h>
39
40 #include "internal.h"
41
42 #include <asm/irq_regs.h>
43
44 struct remote_function_call {
45         struct task_struct      *p;
46         int                     (*func)(void *info);
47         void                    *info;
48         int                     ret;
49 };
50
51 static void remote_function(void *data)
52 {
53         struct remote_function_call *tfc = data;
54         struct task_struct *p = tfc->p;
55
56         if (p) {
57                 tfc->ret = -EAGAIN;
58                 if (task_cpu(p) != smp_processor_id() || !task_curr(p))
59                         return;
60         }
61
62         tfc->ret = tfc->func(tfc->info);
63 }
64
65 /**
66  * task_function_call - call a function on the cpu on which a task runs
67  * @p:          the task to evaluate
68  * @func:       the function to be called
69  * @info:       the function call argument
70  *
71  * Calls the function @func when the task is currently running. This might
72  * be on the current CPU, which just calls the function directly
73  *
74  * returns: @func return value, or
75  *          -ESRCH  - when the process isn't running
76  *          -EAGAIN - when the process moved away
77  */
78 static int
79 task_function_call(struct task_struct *p, int (*func) (void *info), void *info)
80 {
81         struct remote_function_call data = {
82                 .p      = p,
83                 .func   = func,
84                 .info   = info,
85                 .ret    = -ESRCH, /* No such (running) process */
86         };
87
88         if (task_curr(p))
89                 smp_call_function_single(task_cpu(p), remote_function, &data, 1);
90
91         return data.ret;
92 }
93
94 /**
95  * cpu_function_call - call a function on the cpu
96  * @func:       the function to be called
97  * @info:       the function call argument
98  *
99  * Calls the function @func on the remote cpu.
100  *
101  * returns: @func return value or -ENXIO when the cpu is offline
102  */
103 static int cpu_function_call(int cpu, int (*func) (void *info), void *info)
104 {
105         struct remote_function_call data = {
106                 .p      = NULL,
107                 .func   = func,
108                 .info   = info,
109                 .ret    = -ENXIO, /* No such CPU */
110         };
111
112         smp_call_function_single(cpu, remote_function, &data, 1);
113
114         return data.ret;
115 }
116
117 #define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
118                        PERF_FLAG_FD_OUTPUT  |\
119                        PERF_FLAG_PID_CGROUP)
120
121 enum event_type_t {
122         EVENT_FLEXIBLE = 0x1,
123         EVENT_PINNED = 0x2,
124         EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
125 };
126
127 /*
128  * perf_sched_events : >0 events exist
129  * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
130  */
131 struct jump_label_key perf_sched_events __read_mostly;
132 static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
133
134 static atomic_t nr_mmap_events __read_mostly;
135 static atomic_t nr_comm_events __read_mostly;
136 static atomic_t nr_task_events __read_mostly;
137
138 static LIST_HEAD(pmus);
139 static DEFINE_MUTEX(pmus_lock);
140 static struct srcu_struct pmus_srcu;
141
142 /*
143  * perf event paranoia level:
144  *  -1 - not paranoid at all
145  *   0 - disallow raw tracepoint access for unpriv
146  *   1 - disallow cpu events for unpriv
147  *   2 - disallow kernel profiling for unpriv
148  */
149 int sysctl_perf_event_paranoid __read_mostly = 1;
150
151 /* Minimum for 512 kiB + 1 user control page */
152 int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
153
154 /*
155  * max perf event sample rate
156  */
157 #define DEFAULT_MAX_SAMPLE_RATE 100000
158 int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
159 static int max_samples_per_tick __read_mostly =
160         DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
161
162 int perf_proc_update_handler(struct ctl_table *table, int write,
163                 void __user *buffer, size_t *lenp,
164                 loff_t *ppos)
165 {
166         int ret = proc_dointvec(table, write, buffer, lenp, ppos);
167
168         if (ret || !write)
169                 return ret;
170
171         max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
172
173         return 0;
174 }
175
176 static atomic64_t perf_event_id;
177
178 static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
179                               enum event_type_t event_type);
180
181 static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
182                              enum event_type_t event_type,
183                              struct task_struct *task);
184
185 static void update_context_time(struct perf_event_context *ctx);
186 static u64 perf_event_time(struct perf_event *event);
187
188 static void ring_buffer_attach(struct perf_event *event,
189                                struct ring_buffer *rb);
190
191 void __weak perf_event_print_debug(void)        { }
192
193 extern __weak const char *perf_pmu_name(void)
194 {
195         return "pmu";
196 }
197
198 static inline u64 perf_clock(void)
199 {
200         return local_clock();
201 }
202
203 static inline struct perf_cpu_context *
204 __get_cpu_context(struct perf_event_context *ctx)
205 {
206         return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
207 }
208
209 static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
210                           struct perf_event_context *ctx)
211 {
212         raw_spin_lock(&cpuctx->ctx.lock);
213         if (ctx)
214                 raw_spin_lock(&ctx->lock);
215 }
216
217 static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
218                             struct perf_event_context *ctx)
219 {
220         if (ctx)
221                 raw_spin_unlock(&ctx->lock);
222         raw_spin_unlock(&cpuctx->ctx.lock);
223 }
224
225 #ifdef CONFIG_CGROUP_PERF
226
227 /*
228  * Must ensure cgroup is pinned (css_get) before calling
229  * this function. In other words, we cannot call this function
230  * if there is no cgroup event for the current CPU context.
231  */
232 static inline struct perf_cgroup *
233 perf_cgroup_from_task(struct task_struct *task)
234 {
235         return container_of(task_subsys_state(task, perf_subsys_id),
236                         struct perf_cgroup, css);
237 }
238
239 static inline bool
240 perf_cgroup_match(struct perf_event *event)
241 {
242         struct perf_event_context *ctx = event->ctx;
243         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
244
245         return !event->cgrp || event->cgrp == cpuctx->cgrp;
246 }
247
248 static inline void perf_get_cgroup(struct perf_event *event)
249 {
250         css_get(&event->cgrp->css);
251 }
252
253 static inline void perf_put_cgroup(struct perf_event *event)
254 {
255         css_put(&event->cgrp->css);
256 }
257
258 static inline void perf_detach_cgroup(struct perf_event *event)
259 {
260         perf_put_cgroup(event);
261         event->cgrp = NULL;
262 }
263
264 static inline int is_cgroup_event(struct perf_event *event)
265 {
266         return event->cgrp != NULL;
267 }
268
269 static inline u64 perf_cgroup_event_time(struct perf_event *event)
270 {
271         struct perf_cgroup_info *t;
272
273         t = per_cpu_ptr(event->cgrp->info, event->cpu);
274         return t->time;
275 }
276
277 static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
278 {
279         struct perf_cgroup_info *info;
280         u64 now;
281
282         now = perf_clock();
283
284         info = this_cpu_ptr(cgrp->info);
285
286         info->time += now - info->timestamp;
287         info->timestamp = now;
288 }
289
290 static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
291 {
292         struct perf_cgroup *cgrp_out = cpuctx->cgrp;
293         if (cgrp_out)
294                 __update_cgrp_time(cgrp_out);
295 }
296
297 static inline void update_cgrp_time_from_event(struct perf_event *event)
298 {
299         struct perf_cgroup *cgrp;
300
301         /*
302          * ensure we access cgroup data only when needed and
303          * when we know the cgroup is pinned (css_get)
304          */
305         if (!is_cgroup_event(event))
306                 return;
307
308         cgrp = perf_cgroup_from_task(current);
309         /*
310          * Do not update time when cgroup is not active
311          */
312         if (cgrp == event->cgrp)
313                 __update_cgrp_time(event->cgrp);
314 }
315
316 static inline void
317 perf_cgroup_set_timestamp(struct task_struct *task,
318                           struct perf_event_context *ctx)
319 {
320         struct perf_cgroup *cgrp;
321         struct perf_cgroup_info *info;
322
323         /*
324          * ctx->lock held by caller
325          * ensure we do not access cgroup data
326          * unless we have the cgroup pinned (css_get)
327          */
328         if (!task || !ctx->nr_cgroups)
329                 return;
330
331         cgrp = perf_cgroup_from_task(task);
332         info = this_cpu_ptr(cgrp->info);
333         info->timestamp = ctx->timestamp;
334 }
335
336 #define PERF_CGROUP_SWOUT       0x1 /* cgroup switch out every event */
337 #define PERF_CGROUP_SWIN        0x2 /* cgroup switch in events based on task */
338
339 /*
340  * reschedule events based on the cgroup constraint of task.
341  *
342  * mode SWOUT : schedule out everything
343  * mode SWIN : schedule in based on cgroup for next
344  */
345 void perf_cgroup_switch(struct task_struct *task, int mode)
346 {
347         struct perf_cpu_context *cpuctx;
348         struct pmu *pmu;
349         unsigned long flags;
350
351         /*
352          * disable interrupts to avoid geting nr_cgroup
353          * changes via __perf_event_disable(). Also
354          * avoids preemption.
355          */
356         local_irq_save(flags);
357
358         /*
359          * we reschedule only in the presence of cgroup
360          * constrained events.
361          */
362         rcu_read_lock();
363
364         list_for_each_entry_rcu(pmu, &pmus, entry) {
365                 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
366
367                 /*
368                  * perf_cgroup_events says at least one
369                  * context on this CPU has cgroup events.
370                  *
371                  * ctx->nr_cgroups reports the number of cgroup
372                  * events for a context.
373                  */
374                 if (cpuctx->ctx.nr_cgroups > 0) {
375                         perf_ctx_lock(cpuctx, cpuctx->task_ctx);
376                         perf_pmu_disable(cpuctx->ctx.pmu);
377
378                         if (mode & PERF_CGROUP_SWOUT) {
379                                 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
380                                 /*
381                                  * must not be done before ctxswout due
382                                  * to event_filter_match() in event_sched_out()
383                                  */
384                                 cpuctx->cgrp = NULL;
385                         }
386
387                         if (mode & PERF_CGROUP_SWIN) {
388                                 WARN_ON_ONCE(cpuctx->cgrp);
389                                 /* set cgrp before ctxsw in to
390                                  * allow event_filter_match() to not
391                                  * have to pass task around
392                                  */
393                                 cpuctx->cgrp = perf_cgroup_from_task(task);
394                                 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
395                         }
396                         perf_pmu_enable(cpuctx->ctx.pmu);
397                         perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
398                 }
399         }
400
401         rcu_read_unlock();
402
403         local_irq_restore(flags);
404 }
405
406 static inline void perf_cgroup_sched_out(struct task_struct *task,
407                                          struct task_struct *next)
408 {
409         struct perf_cgroup *cgrp1;
410         struct perf_cgroup *cgrp2 = NULL;
411
412         /*
413          * we come here when we know perf_cgroup_events > 0
414          */
415         cgrp1 = perf_cgroup_from_task(task);
416
417         /*
418          * next is NULL when called from perf_event_enable_on_exec()
419          * that will systematically cause a cgroup_switch()
420          */
421         if (next)
422                 cgrp2 = perf_cgroup_from_task(next);
423
424         /*
425          * only schedule out current cgroup events if we know
426          * that we are switching to a different cgroup. Otherwise,
427          * do no touch the cgroup events.
428          */
429         if (cgrp1 != cgrp2)
430                 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
431 }
432
433 static inline void perf_cgroup_sched_in(struct task_struct *prev,
434                                         struct task_struct *task)
435 {
436         struct perf_cgroup *cgrp1;
437         struct perf_cgroup *cgrp2 = NULL;
438
439         /*
440          * we come here when we know perf_cgroup_events > 0
441          */
442         cgrp1 = perf_cgroup_from_task(task);
443
444         /* prev can never be NULL */
445         cgrp2 = perf_cgroup_from_task(prev);
446
447         /*
448          * only need to schedule in cgroup events if we are changing
449          * cgroup during ctxsw. Cgroup events were not scheduled
450          * out of ctxsw out if that was not the case.
451          */
452         if (cgrp1 != cgrp2)
453                 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
454 }
455
456 static inline int perf_cgroup_connect(int fd, struct perf_event *event,
457                                       struct perf_event_attr *attr,
458                                       struct perf_event *group_leader)
459 {
460         struct perf_cgroup *cgrp;
461         struct cgroup_subsys_state *css;
462         struct file *file;
463         int ret = 0, fput_needed;
464
465         file = fget_light(fd, &fput_needed);
466         if (!file)
467                 return -EBADF;
468
469         css = cgroup_css_from_dir(file, perf_subsys_id);
470         if (IS_ERR(css)) {
471                 ret = PTR_ERR(css);
472                 goto out;
473         }
474
475         cgrp = container_of(css, struct perf_cgroup, css);
476         event->cgrp = cgrp;
477
478         /* must be done before we fput() the file */
479         perf_get_cgroup(event);
480
481         /*
482          * all events in a group must monitor
483          * the same cgroup because a task belongs
484          * to only one perf cgroup at a time
485          */
486         if (group_leader && group_leader->cgrp != cgrp) {
487                 perf_detach_cgroup(event);
488                 ret = -EINVAL;
489         }
490 out:
491         fput_light(file, fput_needed);
492         return ret;
493 }
494
495 static inline void
496 perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
497 {
498         struct perf_cgroup_info *t;
499         t = per_cpu_ptr(event->cgrp->info, event->cpu);
500         event->shadow_ctx_time = now - t->timestamp;
501 }
502
503 static inline void
504 perf_cgroup_defer_enabled(struct perf_event *event)
505 {
506         /*
507          * when the current task's perf cgroup does not match
508          * the event's, we need to remember to call the
509          * perf_mark_enable() function the first time a task with
510          * a matching perf cgroup is scheduled in.
511          */
512         if (is_cgroup_event(event) && !perf_cgroup_match(event))
513                 event->cgrp_defer_enabled = 1;
514 }
515
516 static inline void
517 perf_cgroup_mark_enabled(struct perf_event *event,
518                          struct perf_event_context *ctx)
519 {
520         struct perf_event *sub;
521         u64 tstamp = perf_event_time(event);
522
523         if (!event->cgrp_defer_enabled)
524                 return;
525
526         event->cgrp_defer_enabled = 0;
527
528         event->tstamp_enabled = tstamp - event->total_time_enabled;
529         list_for_each_entry(sub, &event->sibling_list, group_entry) {
530                 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
531                         sub->tstamp_enabled = tstamp - sub->total_time_enabled;
532                         sub->cgrp_defer_enabled = 0;
533                 }
534         }
535 }
536 #else /* !CONFIG_CGROUP_PERF */
537
538 static inline bool
539 perf_cgroup_match(struct perf_event *event)
540 {
541         return true;
542 }
543
544 static inline void perf_detach_cgroup(struct perf_event *event)
545 {}
546
547 static inline int is_cgroup_event(struct perf_event *event)
548 {
549         return 0;
550 }
551
552 static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
553 {
554         return 0;
555 }
556
557 static inline void update_cgrp_time_from_event(struct perf_event *event)
558 {
559 }
560
561 static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
562 {
563 }
564
565 static inline void perf_cgroup_sched_out(struct task_struct *task,
566                                          struct task_struct *next)
567 {
568 }
569
570 static inline void perf_cgroup_sched_in(struct task_struct *prev,
571                                         struct task_struct *task)
572 {
573 }
574
575 static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
576                                       struct perf_event_attr *attr,
577                                       struct perf_event *group_leader)
578 {
579         return -EINVAL;
580 }
581
582 static inline void
583 perf_cgroup_set_timestamp(struct task_struct *task,
584                           struct perf_event_context *ctx)
585 {
586 }
587
588 void
589 perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
590 {
591 }
592
593 static inline void
594 perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
595 {
596 }
597
598 static inline u64 perf_cgroup_event_time(struct perf_event *event)
599 {
600         return 0;
601 }
602
603 static inline void
604 perf_cgroup_defer_enabled(struct perf_event *event)
605 {
606 }
607
608 static inline void
609 perf_cgroup_mark_enabled(struct perf_event *event,
610                          struct perf_event_context *ctx)
611 {
612 }
613 #endif
614
615 void perf_pmu_disable(struct pmu *pmu)
616 {
617         int *count = this_cpu_ptr(pmu->pmu_disable_count);
618         if (!(*count)++)
619                 pmu->pmu_disable(pmu);
620 }
621
622 void perf_pmu_enable(struct pmu *pmu)
623 {
624         int *count = this_cpu_ptr(pmu->pmu_disable_count);
625         if (!--(*count))
626                 pmu->pmu_enable(pmu);
627 }
628
629 static DEFINE_PER_CPU(struct list_head, rotation_list);
630
631 /*
632  * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
633  * because they're strictly cpu affine and rotate_start is called with IRQs
634  * disabled, while rotate_context is called from IRQ context.
635  */
636 static void perf_pmu_rotate_start(struct pmu *pmu)
637 {
638         struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
639         struct list_head *head = &__get_cpu_var(rotation_list);
640
641         WARN_ON(!irqs_disabled());
642
643         if (list_empty(&cpuctx->rotation_list))
644                 list_add(&cpuctx->rotation_list, head);
645 }
646
647 static void get_ctx(struct perf_event_context *ctx)
648 {
649         WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
650 }
651
652 static void put_ctx(struct perf_event_context *ctx)
653 {
654         if (atomic_dec_and_test(&ctx->refcount)) {
655                 if (ctx->parent_ctx)
656                         put_ctx(ctx->parent_ctx);
657                 if (ctx->task)
658                         put_task_struct(ctx->task);
659                 kfree_rcu(ctx, rcu_head);
660         }
661 }
662
663 static void unclone_ctx(struct perf_event_context *ctx)
664 {
665         if (ctx->parent_ctx) {
666                 put_ctx(ctx->parent_ctx);
667                 ctx->parent_ctx = NULL;
668         }
669 }
670
671 static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
672 {
673         /*
674          * only top level events have the pid namespace they were created in
675          */
676         if (event->parent)
677                 event = event->parent;
678
679         return task_tgid_nr_ns(p, event->ns);
680 }
681
682 static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
683 {
684         /*
685          * only top level events have the pid namespace they were created in
686          */
687         if (event->parent)
688                 event = event->parent;
689
690         return task_pid_nr_ns(p, event->ns);
691 }
692
693 /*
694  * If we inherit events we want to return the parent event id
695  * to userspace.
696  */
697 static u64 primary_event_id(struct perf_event *event)
698 {
699         u64 id = event->id;
700
701         if (event->parent)
702                 id = event->parent->id;
703
704         return id;
705 }
706
707 /*
708  * Get the perf_event_context for a task and lock it.
709  * This has to cope with with the fact that until it is locked,
710  * the context could get moved to another task.
711  */
712 static struct perf_event_context *
713 perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
714 {
715         struct perf_event_context *ctx;
716
717         rcu_read_lock();
718 retry:
719         ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
720         if (ctx) {
721                 /*
722                  * If this context is a clone of another, it might
723                  * get swapped for another underneath us by
724                  * perf_event_task_sched_out, though the
725                  * rcu_read_lock() protects us from any context
726                  * getting freed.  Lock the context and check if it
727                  * got swapped before we could get the lock, and retry
728                  * if so.  If we locked the right context, then it
729                  * can't get swapped on us any more.
730                  */
731                 raw_spin_lock_irqsave(&ctx->lock, *flags);
732                 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
733                         raw_spin_unlock_irqrestore(&ctx->lock, *flags);
734                         goto retry;
735                 }
736
737                 if (!atomic_inc_not_zero(&ctx->refcount)) {
738                         raw_spin_unlock_irqrestore(&ctx->lock, *flags);
739                         ctx = NULL;
740                 }
741         }
742         rcu_read_unlock();
743         return ctx;
744 }
745
746 /*
747  * Get the context for a task and increment its pin_count so it
748  * can't get swapped to another task.  This also increments its
749  * reference count so that the context can't get freed.
750  */
751 static struct perf_event_context *
752 perf_pin_task_context(struct task_struct *task, int ctxn)
753 {
754         struct perf_event_context *ctx;
755         unsigned long flags;
756
757         ctx = perf_lock_task_context(task, ctxn, &flags);
758         if (ctx) {
759                 ++ctx->pin_count;
760                 raw_spin_unlock_irqrestore(&ctx->lock, flags);
761         }
762         return ctx;
763 }
764
765 static void perf_unpin_context(struct perf_event_context *ctx)
766 {
767         unsigned long flags;
768
769         raw_spin_lock_irqsave(&ctx->lock, flags);
770         --ctx->pin_count;
771         raw_spin_unlock_irqrestore(&ctx->lock, flags);
772 }
773
774 /*
775  * Update the record of the current time in a context.
776  */
777 static void update_context_time(struct perf_event_context *ctx)
778 {
779         u64 now = perf_clock();
780
781         ctx->time += now - ctx->timestamp;
782         ctx->timestamp = now;
783 }
784
785 static u64 perf_event_time(struct perf_event *event)
786 {
787         struct perf_event_context *ctx = event->ctx;
788
789         if (is_cgroup_event(event))
790                 return perf_cgroup_event_time(event);
791
792         return ctx ? ctx->time : 0;
793 }
794
795 /*
796  * Update the total_time_enabled and total_time_running fields for a event.
797  * The caller of this function needs to hold the ctx->lock.
798  */
799 static void update_event_times(struct perf_event *event)
800 {
801         struct perf_event_context *ctx = event->ctx;
802         u64 run_end;
803
804         if (event->state < PERF_EVENT_STATE_INACTIVE ||
805             event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
806                 return;
807         /*
808          * in cgroup mode, time_enabled represents
809          * the time the event was enabled AND active
810          * tasks were in the monitored cgroup. This is
811          * independent of the activity of the context as
812          * there may be a mix of cgroup and non-cgroup events.
813          *
814          * That is why we treat cgroup events differently
815          * here.
816          */
817         if (is_cgroup_event(event))
818                 run_end = perf_event_time(event);
819         else if (ctx->is_active)
820                 run_end = ctx->time;
821         else
822                 run_end = event->tstamp_stopped;
823
824         event->total_time_enabled = run_end - event->tstamp_enabled;
825
826         if (event->state == PERF_EVENT_STATE_INACTIVE)
827                 run_end = event->tstamp_stopped;
828         else
829                 run_end = perf_event_time(event);
830
831         event->total_time_running = run_end - event->tstamp_running;
832
833 }
834
835 /*
836  * Update total_time_enabled and total_time_running for all events in a group.
837  */
838 static void update_group_times(struct perf_event *leader)
839 {
840         struct perf_event *event;
841
842         update_event_times(leader);
843         list_for_each_entry(event, &leader->sibling_list, group_entry)
844                 update_event_times(event);
845 }
846
847 static struct list_head *
848 ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
849 {
850         if (event->attr.pinned)
851                 return &ctx->pinned_groups;
852         else
853                 return &ctx->flexible_groups;
854 }
855
856 /*
857  * Add a event from the lists for its context.
858  * Must be called with ctx->mutex and ctx->lock held.
859  */
860 static void
861 list_add_event(struct perf_event *event, struct perf_event_context *ctx)
862 {
863         WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
864         event->attach_state |= PERF_ATTACH_CONTEXT;
865
866         /*
867          * If we're a stand alone event or group leader, we go to the context
868          * list, group events are kept attached to the group so that
869          * perf_group_detach can, at all times, locate all siblings.
870          */
871         if (event->group_leader == event) {
872                 struct list_head *list;
873
874                 if (is_software_event(event))
875                         event->group_flags |= PERF_GROUP_SOFTWARE;
876
877                 list = ctx_group_list(event, ctx);
878                 list_add_tail(&event->group_entry, list);
879         }
880
881         if (is_cgroup_event(event))
882                 ctx->nr_cgroups++;
883
884         list_add_rcu(&event->event_entry, &ctx->event_list);
885         if (!ctx->nr_events)
886                 perf_pmu_rotate_start(ctx->pmu);
887         ctx->nr_events++;
888         if (event->attr.inherit_stat)
889                 ctx->nr_stat++;
890 }
891
892 /*
893  * Called at perf_event creation and when events are attached/detached from a
894  * group.
895  */
896 static void perf_event__read_size(struct perf_event *event)
897 {
898         int entry = sizeof(u64); /* value */
899         int size = 0;
900         int nr = 1;
901
902         if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
903                 size += sizeof(u64);
904
905         if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
906                 size += sizeof(u64);
907
908         if (event->attr.read_format & PERF_FORMAT_ID)
909                 entry += sizeof(u64);
910
911         if (event->attr.read_format & PERF_FORMAT_GROUP) {
912                 nr += event->group_leader->nr_siblings;
913                 size += sizeof(u64);
914         }
915
916         size += entry * nr;
917         event->read_size = size;
918 }
919
920 static void perf_event__header_size(struct perf_event *event)
921 {
922         struct perf_sample_data *data;
923         u64 sample_type = event->attr.sample_type;
924         u16 size = 0;
925
926         perf_event__read_size(event);
927
928         if (sample_type & PERF_SAMPLE_IP)
929                 size += sizeof(data->ip);
930
931         if (sample_type & PERF_SAMPLE_ADDR)
932                 size += sizeof(data->addr);
933
934         if (sample_type & PERF_SAMPLE_PERIOD)
935                 size += sizeof(data->period);
936
937         if (sample_type & PERF_SAMPLE_READ)
938                 size += event->read_size;
939
940         event->header_size = size;
941 }
942
943 static void perf_event__id_header_size(struct perf_event *event)
944 {
945         struct perf_sample_data *data;
946         u64 sample_type = event->attr.sample_type;
947         u16 size = 0;
948
949         if (sample_type & PERF_SAMPLE_TID)
950                 size += sizeof(data->tid_entry);
951
952         if (sample_type & PERF_SAMPLE_TIME)
953                 size += sizeof(data->time);
954
955         if (sample_type & PERF_SAMPLE_ID)
956                 size += sizeof(data->id);
957
958         if (sample_type & PERF_SAMPLE_STREAM_ID)
959                 size += sizeof(data->stream_id);
960
961         if (sample_type & PERF_SAMPLE_CPU)
962                 size += sizeof(data->cpu_entry);
963
964         event->id_header_size = size;
965 }
966
967 static void perf_group_attach(struct perf_event *event)
968 {
969         struct perf_event *group_leader = event->group_leader, *pos;
970
971         /*
972          * We can have double attach due to group movement in perf_event_open.
973          */
974         if (event->attach_state & PERF_ATTACH_GROUP)
975                 return;
976
977         event->attach_state |= PERF_ATTACH_GROUP;
978
979         if (group_leader == event)
980                 return;
981
982         if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
983                         !is_software_event(event))
984                 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
985
986         list_add_tail(&event->group_entry, &group_leader->sibling_list);
987         group_leader->nr_siblings++;
988
989         perf_event__header_size(group_leader);
990
991         list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
992                 perf_event__header_size(pos);
993 }
994
995 /*
996  * Remove a event from the lists for its context.
997  * Must be called with ctx->mutex and ctx->lock held.
998  */
999 static void
1000 list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1001 {
1002         struct perf_cpu_context *cpuctx;
1003         /*
1004          * We can have double detach due to exit/hot-unplug + close.
1005          */
1006         if (!(event->attach_state & PERF_ATTACH_CONTEXT))
1007                 return;
1008
1009         event->attach_state &= ~PERF_ATTACH_CONTEXT;
1010
1011         if (is_cgroup_event(event)) {
1012                 ctx->nr_cgroups--;
1013                 cpuctx = __get_cpu_context(ctx);
1014                 /*
1015                  * if there are no more cgroup events
1016                  * then cler cgrp to avoid stale pointer
1017                  * in update_cgrp_time_from_cpuctx()
1018                  */
1019                 if (!ctx->nr_cgroups)
1020                         cpuctx->cgrp = NULL;
1021         }
1022
1023         ctx->nr_events--;
1024         if (event->attr.inherit_stat)
1025                 ctx->nr_stat--;
1026
1027         list_del_rcu(&event->event_entry);
1028
1029         if (event->group_leader == event)
1030                 list_del_init(&event->group_entry);
1031
1032         update_group_times(event);
1033
1034         /*
1035          * If event was in error state, then keep it
1036          * that way, otherwise bogus counts will be
1037          * returned on read(). The only way to get out
1038          * of error state is by explicit re-enabling
1039          * of the event
1040          */
1041         if (event->state > PERF_EVENT_STATE_OFF)
1042                 event->state = PERF_EVENT_STATE_OFF;
1043 }
1044
1045 static void perf_group_detach(struct perf_event *event)
1046 {
1047         struct perf_event *sibling, *tmp;
1048         struct list_head *list = NULL;
1049
1050         /*
1051          * We can have double detach due to exit/hot-unplug + close.
1052          */
1053         if (!(event->attach_state & PERF_ATTACH_GROUP))
1054                 return;
1055
1056         event->attach_state &= ~PERF_ATTACH_GROUP;
1057
1058         /*
1059          * If this is a sibling, remove it from its group.
1060          */
1061         if (event->group_leader != event) {
1062                 list_del_init(&event->group_entry);
1063                 event->group_leader->nr_siblings--;
1064                 goto out;
1065         }
1066
1067         if (!list_empty(&event->group_entry))
1068                 list = &event->group_entry;
1069
1070         /*
1071          * If this was a group event with sibling events then
1072          * upgrade the siblings to singleton events by adding them
1073          * to whatever list we are on.
1074          */
1075         list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
1076                 if (list)
1077                         list_move_tail(&sibling->group_entry, list);
1078                 sibling->group_leader = sibling;
1079
1080                 /* Inherit group flags from the previous leader */
1081                 sibling->group_flags = event->group_flags;
1082         }
1083
1084 out:
1085         perf_event__header_size(event->group_leader);
1086
1087         list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1088                 perf_event__header_size(tmp);
1089 }
1090
1091 static inline int
1092 event_filter_match(struct perf_event *event)
1093 {
1094         return (event->cpu == -1 || event->cpu == smp_processor_id())
1095             && perf_cgroup_match(event);
1096 }
1097
1098 static void
1099 event_sched_out(struct perf_event *event,
1100                   struct perf_cpu_context *cpuctx,
1101                   struct perf_event_context *ctx)
1102 {
1103         u64 tstamp = perf_event_time(event);
1104         u64 delta;
1105         /*
1106          * An event which could not be activated because of
1107          * filter mismatch still needs to have its timings
1108          * maintained, otherwise bogus information is return
1109          * via read() for time_enabled, time_running:
1110          */
1111         if (event->state == PERF_EVENT_STATE_INACTIVE
1112             && !event_filter_match(event)) {
1113                 delta = tstamp - event->tstamp_stopped;
1114                 event->tstamp_running += delta;
1115                 event->tstamp_stopped = tstamp;
1116         }
1117
1118         if (event->state != PERF_EVENT_STATE_ACTIVE)
1119                 return;
1120
1121         event->state = PERF_EVENT_STATE_INACTIVE;
1122         if (event->pending_disable) {
1123                 event->pending_disable = 0;
1124                 event->state = PERF_EVENT_STATE_OFF;
1125         }
1126         event->tstamp_stopped = tstamp;
1127         event->pmu->del(event, 0);
1128         event->oncpu = -1;
1129
1130         if (!is_software_event(event))
1131                 cpuctx->active_oncpu--;
1132         ctx->nr_active--;
1133         if (event->attr.exclusive || !cpuctx->active_oncpu)
1134                 cpuctx->exclusive = 0;
1135 }
1136
1137 static void
1138 group_sched_out(struct perf_event *group_event,
1139                 struct perf_cpu_context *cpuctx,
1140                 struct perf_event_context *ctx)
1141 {
1142         struct perf_event *event;
1143         int state = group_event->state;
1144
1145         event_sched_out(group_event, cpuctx, ctx);
1146
1147         /*
1148          * Schedule out siblings (if any):
1149          */
1150         list_for_each_entry(event, &group_event->sibling_list, group_entry)
1151                 event_sched_out(event, cpuctx, ctx);
1152
1153         if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
1154                 cpuctx->exclusive = 0;
1155 }
1156
1157 /*
1158  * Cross CPU call to remove a performance event
1159  *
1160  * We disable the event on the hardware level first. After that we
1161  * remove it from the context list.
1162  */
1163 static int __perf_remove_from_context(void *info)
1164 {
1165         struct perf_event *event = info;
1166         struct perf_event_context *ctx = event->ctx;
1167         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
1168
1169         raw_spin_lock(&ctx->lock);
1170         event_sched_out(event, cpuctx, ctx);
1171         list_del_event(event, ctx);
1172         if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1173                 ctx->is_active = 0;
1174                 cpuctx->task_ctx = NULL;
1175         }
1176         raw_spin_unlock(&ctx->lock);
1177
1178         return 0;
1179 }
1180
1181
1182 /*
1183  * Remove the event from a task's (or a CPU's) list of events.
1184  *
1185  * CPU events are removed with a smp call. For task events we only
1186  * call when the task is on a CPU.
1187  *
1188  * If event->ctx is a cloned context, callers must make sure that
1189  * every task struct that event->ctx->task could possibly point to
1190  * remains valid.  This is OK when called from perf_release since
1191  * that only calls us on the top-level context, which can't be a clone.
1192  * When called from perf_event_exit_task, it's OK because the
1193  * context has been detached from its task.
1194  */
1195 static void perf_remove_from_context(struct perf_event *event)
1196 {
1197         struct perf_event_context *ctx = event->ctx;
1198         struct task_struct *task = ctx->task;
1199
1200         lockdep_assert_held(&ctx->mutex);
1201
1202         if (!task) {
1203                 /*
1204                  * Per cpu events are removed via an smp call and
1205                  * the removal is always successful.
1206                  */
1207                 cpu_function_call(event->cpu, __perf_remove_from_context, event);
1208                 return;
1209         }
1210
1211 retry:
1212         if (!task_function_call(task, __perf_remove_from_context, event))
1213                 return;
1214
1215         raw_spin_lock_irq(&ctx->lock);
1216         /*
1217          * If we failed to find a running task, but find the context active now
1218          * that we've acquired the ctx->lock, retry.
1219          */
1220         if (ctx->is_active) {
1221                 raw_spin_unlock_irq(&ctx->lock);
1222                 goto retry;
1223         }
1224
1225         /*
1226          * Since the task isn't running, its safe to remove the event, us
1227          * holding the ctx->lock ensures the task won't get scheduled in.
1228          */
1229         list_del_event(event, ctx);
1230         raw_spin_unlock_irq(&ctx->lock);
1231 }
1232
1233 /*
1234  * Cross CPU call to disable a performance event
1235  */
1236 static int __perf_event_disable(void *info)
1237 {
1238         struct perf_event *event = info;
1239         struct perf_event_context *ctx = event->ctx;
1240         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
1241
1242         /*
1243          * If this is a per-task event, need to check whether this
1244          * event's task is the current task on this cpu.
1245          *
1246          * Can trigger due to concurrent perf_event_context_sched_out()
1247          * flipping contexts around.
1248          */
1249         if (ctx->task && cpuctx->task_ctx != ctx)
1250                 return -EINVAL;
1251
1252         raw_spin_lock(&ctx->lock);
1253
1254         /*
1255          * If the event is on, turn it off.
1256          * If it is in error state, leave it in error state.
1257          */
1258         if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1259                 update_context_time(ctx);
1260                 update_cgrp_time_from_event(event);
1261                 update_group_times(event);
1262                 if (event == event->group_leader)
1263                         group_sched_out(event, cpuctx, ctx);
1264                 else
1265                         event_sched_out(event, cpuctx, ctx);
1266                 event->state = PERF_EVENT_STATE_OFF;
1267         }
1268
1269         raw_spin_unlock(&ctx->lock);
1270
1271         return 0;
1272 }
1273
1274 /*
1275  * Disable a event.
1276  *
1277  * If event->ctx is a cloned context, callers must make sure that
1278  * every task struct that event->ctx->task could possibly point to
1279  * remains valid.  This condition is satisifed when called through
1280  * perf_event_for_each_child or perf_event_for_each because they
1281  * hold the top-level event's child_mutex, so any descendant that
1282  * goes to exit will block in sync_child_event.
1283  * When called from perf_pending_event it's OK because event->ctx
1284  * is the current context on this CPU and preemption is disabled,
1285  * hence we can't get into perf_event_task_sched_out for this context.
1286  */
1287 void perf_event_disable(struct perf_event *event)
1288 {
1289         struct perf_event_context *ctx = event->ctx;
1290         struct task_struct *task = ctx->task;
1291
1292         if (!task) {
1293                 /*
1294                  * Disable the event on the cpu that it's on
1295                  */
1296                 cpu_function_call(event->cpu, __perf_event_disable, event);
1297                 return;
1298         }
1299
1300 retry:
1301         if (!task_function_call(task, __perf_event_disable, event))
1302                 return;
1303
1304         raw_spin_lock_irq(&ctx->lock);
1305         /*
1306          * If the event is still active, we need to retry the cross-call.
1307          */
1308         if (event->state == PERF_EVENT_STATE_ACTIVE) {
1309                 raw_spin_unlock_irq(&ctx->lock);
1310                 /*
1311                  * Reload the task pointer, it might have been changed by
1312                  * a concurrent perf_event_context_sched_out().
1313                  */
1314                 task = ctx->task;
1315                 goto retry;
1316         }
1317
1318         /*
1319          * Since we have the lock this context can't be scheduled
1320          * in, so we can change the state safely.
1321          */
1322         if (event->state == PERF_EVENT_STATE_INACTIVE) {
1323                 update_group_times(event);
1324                 event->state = PERF_EVENT_STATE_OFF;
1325         }
1326         raw_spin_unlock_irq(&ctx->lock);
1327 }
1328 EXPORT_SYMBOL_GPL(perf_event_disable);
1329
1330 static void perf_set_shadow_time(struct perf_event *event,
1331                                  struct perf_event_context *ctx,
1332                                  u64 tstamp)
1333 {
1334         /*
1335          * use the correct time source for the time snapshot
1336          *
1337          * We could get by without this by leveraging the
1338          * fact that to get to this function, the caller
1339          * has most likely already called update_context_time()
1340          * and update_cgrp_time_xx() and thus both timestamp
1341          * are identical (or very close). Given that tstamp is,
1342          * already adjusted for cgroup, we could say that:
1343          *    tstamp - ctx->timestamp
1344          * is equivalent to
1345          *    tstamp - cgrp->timestamp.
1346          *
1347          * Then, in perf_output_read(), the calculation would
1348          * work with no changes because:
1349          * - event is guaranteed scheduled in
1350          * - no scheduled out in between
1351          * - thus the timestamp would be the same
1352          *
1353          * But this is a bit hairy.
1354          *
1355          * So instead, we have an explicit cgroup call to remain
1356          * within the time time source all along. We believe it
1357          * is cleaner and simpler to understand.
1358          */
1359         if (is_cgroup_event(event))
1360                 perf_cgroup_set_shadow_time(event, tstamp);
1361         else
1362                 event->shadow_ctx_time = tstamp - ctx->timestamp;
1363 }
1364
1365 #define MAX_INTERRUPTS (~0ULL)
1366
1367 static void perf_log_throttle(struct perf_event *event, int enable);
1368
1369 static int
1370 event_sched_in(struct perf_event *event,
1371                  struct perf_cpu_context *cpuctx,
1372                  struct perf_event_context *ctx)
1373 {
1374         u64 tstamp = perf_event_time(event);
1375
1376         if (event->state <= PERF_EVENT_STATE_OFF)
1377                 return 0;
1378
1379         event->state = PERF_EVENT_STATE_ACTIVE;
1380         event->oncpu = smp_processor_id();
1381
1382         /*
1383          * Unthrottle events, since we scheduled we might have missed several
1384          * ticks already, also for a heavily scheduling task there is little
1385          * guarantee it'll get a tick in a timely manner.
1386          */
1387         if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1388                 perf_log_throttle(event, 1);
1389                 event->hw.interrupts = 0;
1390         }
1391
1392         /*
1393          * The new state must be visible before we turn it on in the hardware:
1394          */
1395         smp_wmb();
1396
1397         if (event->pmu->add(event, PERF_EF_START)) {
1398                 event->state = PERF_EVENT_STATE_INACTIVE;
1399                 event->oncpu = -1;
1400                 return -EAGAIN;
1401         }
1402
1403         event->tstamp_running += tstamp - event->tstamp_stopped;
1404
1405         perf_set_shadow_time(event, ctx, tstamp);
1406
1407         if (!is_software_event(event))
1408                 cpuctx->active_oncpu++;
1409         ctx->nr_active++;
1410
1411         if (event->attr.exclusive)
1412                 cpuctx->exclusive = 1;
1413
1414         return 0;
1415 }
1416
1417 static int
1418 group_sched_in(struct perf_event *group_event,
1419                struct perf_cpu_context *cpuctx,
1420                struct perf_event_context *ctx)
1421 {
1422         struct perf_event *event, *partial_group = NULL;
1423         struct pmu *pmu = group_event->pmu;
1424         u64 now = ctx->time;
1425         bool simulate = false;
1426
1427         if (group_event->state == PERF_EVENT_STATE_OFF)
1428                 return 0;
1429
1430         pmu->start_txn(pmu);
1431
1432         if (event_sched_in(group_event, cpuctx, ctx)) {
1433                 pmu->cancel_txn(pmu);
1434                 return -EAGAIN;
1435         }
1436
1437         /*
1438          * Schedule in siblings as one group (if any):
1439          */
1440         list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1441                 if (event_sched_in(event, cpuctx, ctx)) {
1442                         partial_group = event;
1443                         goto group_error;
1444                 }
1445         }
1446
1447         if (!pmu->commit_txn(pmu))
1448                 return 0;
1449
1450 group_error:
1451         /*
1452          * Groups can be scheduled in as one unit only, so undo any
1453          * partial group before returning:
1454          * The events up to the failed event are scheduled out normally,
1455          * tstamp_stopped will be updated.
1456          *
1457          * The failed events and the remaining siblings need to have
1458          * their timings updated as if they had gone thru event_sched_in()
1459          * and event_sched_out(). This is required to get consistent timings
1460          * across the group. This also takes care of the case where the group
1461          * could never be scheduled by ensuring tstamp_stopped is set to mark
1462          * the time the event was actually stopped, such that time delta
1463          * calculation in update_event_times() is correct.
1464          */
1465         list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1466                 if (event == partial_group)
1467                         simulate = true;
1468
1469                 if (simulate) {
1470                         event->tstamp_running += now - event->tstamp_stopped;
1471                         event->tstamp_stopped = now;
1472                 } else {
1473                         event_sched_out(event, cpuctx, ctx);
1474                 }
1475         }
1476         event_sched_out(group_event, cpuctx, ctx);
1477
1478         pmu->cancel_txn(pmu);
1479
1480         return -EAGAIN;
1481 }
1482
1483 /*
1484  * Work out whether we can put this event group on the CPU now.
1485  */
1486 static int group_can_go_on(struct perf_event *event,
1487                            struct perf_cpu_context *cpuctx,
1488                            int can_add_hw)
1489 {
1490         /*
1491          * Groups consisting entirely of software events can always go on.
1492          */
1493         if (event->group_flags & PERF_GROUP_SOFTWARE)
1494                 return 1;
1495         /*
1496          * If an exclusive group is already on, no other hardware
1497          * events can go on.
1498          */
1499         if (cpuctx->exclusive)
1500                 return 0;
1501         /*
1502          * If this group is exclusive and there are already
1503          * events on the CPU, it can't go on.
1504          */
1505         if (event->attr.exclusive && cpuctx->active_oncpu)
1506                 return 0;
1507         /*
1508          * Otherwise, try to add it if all previous groups were able
1509          * to go on.
1510          */
1511         return can_add_hw;
1512 }
1513
1514 static void add_event_to_ctx(struct perf_event *event,
1515                                struct perf_event_context *ctx)
1516 {
1517         u64 tstamp = perf_event_time(event);
1518
1519         list_add_event(event, ctx);
1520         perf_group_attach(event);
1521         event->tstamp_enabled = tstamp;
1522         event->tstamp_running = tstamp;
1523         event->tstamp_stopped = tstamp;
1524 }
1525
1526 static void task_ctx_sched_out(struct perf_event_context *ctx);
1527 static void
1528 ctx_sched_in(struct perf_event_context *ctx,
1529              struct perf_cpu_context *cpuctx,
1530              enum event_type_t event_type,
1531              struct task_struct *task);
1532
1533 static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
1534                                 struct perf_event_context *ctx,
1535                                 struct task_struct *task)
1536 {
1537         cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
1538         if (ctx)
1539                 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
1540         cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
1541         if (ctx)
1542                 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
1543 }
1544
1545 /*
1546  * Cross CPU call to install and enable a performance event
1547  *
1548  * Must be called with ctx->mutex held
1549  */
1550 static int  __perf_install_in_context(void *info)
1551 {
1552         struct perf_event *event = info;
1553         struct perf_event_context *ctx = event->ctx;
1554         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
1555         struct perf_event_context *task_ctx = cpuctx->task_ctx;
1556         struct task_struct *task = current;
1557
1558         perf_ctx_lock(cpuctx, task_ctx);
1559         perf_pmu_disable(cpuctx->ctx.pmu);
1560
1561         /*
1562          * If there was an active task_ctx schedule it out.
1563          */
1564         if (task_ctx)
1565                 task_ctx_sched_out(task_ctx);
1566
1567         /*
1568          * If the context we're installing events in is not the
1569          * active task_ctx, flip them.
1570          */
1571         if (ctx->task && task_ctx != ctx) {
1572                 if (task_ctx)
1573                         raw_spin_unlock(&task_ctx->lock);
1574                 raw_spin_lock(&ctx->lock);
1575                 task_ctx = ctx;
1576         }
1577
1578         if (task_ctx) {
1579                 cpuctx->task_ctx = task_ctx;
1580                 task = task_ctx->task;
1581         }
1582
1583         cpu_ctx_sched_out(cpuctx, EVENT_ALL);
1584
1585         update_context_time(ctx);
1586         /*
1587          * update cgrp time only if current cgrp
1588          * matches event->cgrp. Must be done before
1589          * calling add_event_to_ctx()
1590          */
1591         update_cgrp_time_from_event(event);
1592
1593         add_event_to_ctx(event, ctx);
1594
1595         /*
1596          * Schedule everything back in
1597          */
1598         perf_event_sched_in(cpuctx, task_ctx, task);
1599
1600         perf_pmu_enable(cpuctx->ctx.pmu);
1601         perf_ctx_unlock(cpuctx, task_ctx);
1602
1603         return 0;
1604 }
1605
1606 /*
1607  * Attach a performance event to a context
1608  *
1609  * First we add the event to the list with the hardware enable bit
1610  * in event->hw_config cleared.
1611  *
1612  * If the event is attached to a task which is on a CPU we use a smp
1613  * call to enable it in the task context. The task might have been
1614  * scheduled away, but we check this in the smp call again.
1615  */
1616 static void
1617 perf_install_in_context(struct perf_event_context *ctx,
1618                         struct perf_event *event,
1619                         int cpu)
1620 {
1621         struct task_struct *task = ctx->task;
1622
1623         lockdep_assert_held(&ctx->mutex);
1624
1625         event->ctx = ctx;
1626
1627         if (!task) {
1628                 /*
1629                  * Per cpu events are installed via an smp call and
1630                  * the install is always successful.
1631                  */
1632                 cpu_function_call(cpu, __perf_install_in_context, event);
1633                 return;
1634         }
1635
1636 retry:
1637         if (!task_function_call(task, __perf_install_in_context, event))
1638                 return;
1639
1640         raw_spin_lock_irq(&ctx->lock);
1641         /*
1642          * If we failed to find a running task, but find the context active now
1643          * that we've acquired the ctx->lock, retry.
1644          */
1645         if (ctx->is_active) {
1646                 raw_spin_unlock_irq(&ctx->lock);
1647                 goto retry;
1648         }
1649
1650         /*
1651          * Since the task isn't running, its safe to add the event, us holding
1652          * the ctx->lock ensures the task won't get scheduled in.
1653          */
1654         add_event_to_ctx(event, ctx);
1655         raw_spin_unlock_irq(&ctx->lock);
1656 }
1657
1658 /*
1659  * Put a event into inactive state and update time fields.
1660  * Enabling the leader of a group effectively enables all
1661  * the group members that aren't explicitly disabled, so we
1662  * have to update their ->tstamp_enabled also.
1663  * Note: this works for group members as well as group leaders
1664  * since the non-leader members' sibling_lists will be empty.
1665  */
1666 static void __perf_event_mark_enabled(struct perf_event *event,
1667                                         struct perf_event_context *ctx)
1668 {
1669         struct perf_event *sub;
1670         u64 tstamp = perf_event_time(event);
1671
1672         event->state = PERF_EVENT_STATE_INACTIVE;
1673         event->tstamp_enabled = tstamp - event->total_time_enabled;
1674         list_for_each_entry(sub, &event->sibling_list, group_entry) {
1675                 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
1676                         sub->tstamp_enabled = tstamp - sub->total_time_enabled;
1677         }
1678 }
1679
1680 /*
1681  * Cross CPU call to enable a performance event
1682  */
1683 static int __perf_event_enable(void *info)
1684 {
1685         struct perf_event *event = info;
1686         struct perf_event_context *ctx = event->ctx;
1687         struct perf_event *leader = event->group_leader;
1688         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
1689         int err;
1690
1691         if (WARN_ON_ONCE(!ctx->is_active))
1692                 return -EINVAL;
1693
1694         raw_spin_lock(&ctx->lock);
1695         update_context_time(ctx);
1696
1697         if (event->state >= PERF_EVENT_STATE_INACTIVE)
1698                 goto unlock;
1699
1700         /*
1701          * set current task's cgroup time reference point
1702          */
1703         perf_cgroup_set_timestamp(current, ctx);
1704
1705         __perf_event_mark_enabled(event, ctx);
1706
1707         if (!event_filter_match(event)) {
1708                 if (is_cgroup_event(event))
1709                         perf_cgroup_defer_enabled(event);
1710                 goto unlock;
1711         }
1712
1713         /*
1714          * If the event is in a group and isn't the group leader,
1715          * then don't put it on unless the group is on.
1716          */
1717         if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
1718                 goto unlock;
1719
1720         if (!group_can_go_on(event, cpuctx, 1)) {
1721                 err = -EEXIST;
1722         } else {
1723                 if (event == leader)
1724                         err = group_sched_in(event, cpuctx, ctx);
1725                 else
1726                         err = event_sched_in(event, cpuctx, ctx);
1727         }
1728
1729         if (err) {
1730                 /*
1731                  * If this event can't go on and it's part of a
1732                  * group, then the whole group has to come off.
1733                  */
1734                 if (leader != event)
1735                         group_sched_out(leader, cpuctx, ctx);
1736                 if (leader->attr.pinned) {
1737                         update_group_times(leader);
1738                         leader->state = PERF_EVENT_STATE_ERROR;
1739                 }
1740         }
1741
1742 unlock:
1743         raw_spin_unlock(&ctx->lock);
1744
1745         return 0;
1746 }
1747
1748 /*
1749  * Enable a event.
1750  *
1751  * If event->ctx is a cloned context, callers must make sure that
1752  * every task struct that event->ctx->task could possibly point to
1753  * remains valid.  This condition is satisfied when called through
1754  * perf_event_for_each_child or perf_event_for_each as described
1755  * for perf_event_disable.
1756  */
1757 void perf_event_enable(struct perf_event *event)
1758 {
1759         struct perf_event_context *ctx = event->ctx;
1760         struct task_struct *task = ctx->task;
1761
1762         if (!task) {
1763                 /*
1764                  * Enable the event on the cpu that it's on
1765                  */
1766                 cpu_function_call(event->cpu, __perf_event_enable, event);
1767                 return;
1768         }
1769
1770         raw_spin_lock_irq(&ctx->lock);
1771         if (event->state >= PERF_EVENT_STATE_INACTIVE)
1772                 goto out;
1773
1774         /*
1775          * If the event is in error state, clear that first.
1776          * That way, if we see the event in error state below, we
1777          * know that it has gone back into error state, as distinct
1778          * from the task having been scheduled away before the
1779          * cross-call arrived.
1780          */
1781         if (event->state == PERF_EVENT_STATE_ERROR)
1782                 event->state = PERF_EVENT_STATE_OFF;
1783
1784 retry:
1785         if (!ctx->is_active) {
1786                 __perf_event_mark_enabled(event, ctx);
1787                 goto out;
1788         }
1789
1790         raw_spin_unlock_irq(&ctx->lock);
1791
1792         if (!task_function_call(task, __perf_event_enable, event))
1793                 return;
1794
1795         raw_spin_lock_irq(&ctx->lock);
1796
1797         /*
1798          * If the context is active and the event is still off,
1799          * we need to retry the cross-call.
1800          */
1801         if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
1802                 /*
1803                  * task could have been flipped by a concurrent
1804                  * perf_event_context_sched_out()
1805                  */
1806                 task = ctx->task;
1807                 goto retry;
1808         }
1809
1810 out:
1811         raw_spin_unlock_irq(&ctx->lock);
1812 }
1813 EXPORT_SYMBOL_GPL(perf_event_enable);
1814
1815 int perf_event_refresh(struct perf_event *event, int refresh)
1816 {
1817         /*
1818          * not supported on inherited events
1819          */
1820         if (event->attr.inherit || !is_sampling_event(event))
1821                 return -EINVAL;
1822
1823         atomic_add(refresh, &event->event_limit);
1824         perf_event_enable(event);
1825
1826         return 0;
1827 }
1828 EXPORT_SYMBOL_GPL(perf_event_refresh);
1829
1830 static void ctx_sched_out(struct perf_event_context *ctx,
1831                           struct perf_cpu_context *cpuctx,
1832                           enum event_type_t event_type)
1833 {
1834         struct perf_event *event;
1835         int is_active = ctx->is_active;
1836
1837         ctx->is_active &= ~event_type;
1838         if (likely(!ctx->nr_events))
1839                 return;
1840
1841         update_context_time(ctx);
1842         update_cgrp_time_from_cpuctx(cpuctx);
1843         if (!ctx->nr_active)
1844                 return;
1845
1846         perf_pmu_disable(ctx->pmu);
1847         if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
1848                 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
1849                         group_sched_out(event, cpuctx, ctx);
1850         }
1851
1852         if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
1853                 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
1854                         group_sched_out(event, cpuctx, ctx);
1855         }
1856         perf_pmu_enable(ctx->pmu);
1857 }
1858
1859 /*
1860  * Test whether two contexts are equivalent, i.e. whether they
1861  * have both been cloned from the same version of the same context
1862  * and they both have the same number of enabled events.
1863  * If the number of enabled events is the same, then the set
1864  * of enabled events should be the same, because these are both
1865  * inherited contexts, therefore we can't access individual events
1866  * in them directly with an fd; we can only enable/disable all
1867  * events via prctl, or enable/disable all events in a family
1868  * via ioctl, which will have the same effect on both contexts.
1869  */
1870 static int context_equiv(struct perf_event_context *ctx1,
1871                          struct perf_event_context *ctx2)
1872 {
1873         return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
1874                 && ctx1->parent_gen == ctx2->parent_gen
1875                 && !ctx1->pin_count && !ctx2->pin_count;
1876 }
1877
1878 static void __perf_event_sync_stat(struct perf_event *event,
1879                                      struct perf_event *next_event)
1880 {
1881         u64 value;
1882
1883         if (!event->attr.inherit_stat)
1884                 return;
1885
1886         /*
1887          * Update the event value, we cannot use perf_event_read()
1888          * because we're in the middle of a context switch and have IRQs
1889          * disabled, which upsets smp_call_function_single(), however
1890          * we know the event must be on the current CPU, therefore we
1891          * don't need to use it.
1892          */
1893         switch (event->state) {
1894         case PERF_EVENT_STATE_ACTIVE:
1895                 event->pmu->read(event);
1896                 /* fall-through */
1897
1898         case PERF_EVENT_STATE_INACTIVE:
1899                 update_event_times(event);
1900                 break;
1901
1902         default:
1903                 break;
1904         }
1905
1906         /*
1907          * In order to keep per-task stats reliable we need to flip the event
1908          * values when we flip the contexts.
1909          */
1910         value = local64_read(&next_event->count);
1911         value = local64_xchg(&event->count, value);
1912         local64_set(&next_event->count, value);
1913
1914         swap(event->total_time_enabled, next_event->total_time_enabled);
1915         swap(event->total_time_running, next_event->total_time_running);
1916
1917         /*
1918          * Since we swizzled the values, update the user visible data too.
1919          */
1920         perf_event_update_userpage(event);
1921         perf_event_update_userpage(next_event);
1922 }
1923
1924 #define list_next_entry(pos, member) \
1925         list_entry(pos->member.next, typeof(*pos), member)
1926
1927 static void perf_event_sync_stat(struct perf_event_context *ctx,
1928                                    struct perf_event_context *next_ctx)
1929 {
1930         struct perf_event *event, *next_event;
1931
1932         if (!ctx->nr_stat)
1933                 return;
1934
1935         update_context_time(ctx);
1936
1937         event = list_first_entry(&ctx->event_list,
1938                                    struct perf_event, event_entry);
1939
1940         next_event = list_first_entry(&next_ctx->event_list,
1941                                         struct perf_event, event_entry);
1942
1943         while (&event->event_entry != &ctx->event_list &&
1944                &next_event->event_entry != &next_ctx->event_list) {
1945
1946                 __perf_event_sync_stat(event, next_event);
1947
1948                 event = list_next_entry(event, event_entry);
1949                 next_event = list_next_entry(next_event, event_entry);
1950         }
1951 }
1952
1953 static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
1954                                          struct task_struct *next)
1955 {
1956         struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
1957         struct perf_event_context *next_ctx;
1958         struct perf_event_context *parent;
1959         struct perf_cpu_context *cpuctx;
1960         int do_switch = 1;
1961
1962         if (likely(!ctx))
1963                 return;
1964
1965         cpuctx = __get_cpu_context(ctx);
1966         if (!cpuctx->task_ctx)
1967                 return;
1968
1969         rcu_read_lock();
1970         parent = rcu_dereference(ctx->parent_ctx);
1971         next_ctx = next->perf_event_ctxp[ctxn];
1972         if (parent && next_ctx &&
1973             rcu_dereference(next_ctx->parent_ctx) == parent) {
1974                 /*
1975                  * Looks like the two contexts are clones, so we might be
1976                  * able to optimize the context switch.  We lock both
1977                  * contexts and check that they are clones under the
1978                  * lock (including re-checking that neither has been
1979                  * uncloned in the meantime).  It doesn't matter which
1980                  * order we take the locks because no other cpu could
1981                  * be trying to lock both of these tasks.
1982                  */
1983                 raw_spin_lock(&ctx->lock);
1984                 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
1985                 if (context_equiv(ctx, next_ctx)) {
1986                         /*
1987                          * XXX do we need a memory barrier of sorts
1988                          * wrt to rcu_dereference() of perf_event_ctxp
1989                          */
1990                         task->perf_event_ctxp[ctxn] = next_ctx;
1991                         next->perf_event_ctxp[ctxn] = ctx;
1992                         ctx->task = next;
1993                         next_ctx->task = task;
1994                         do_switch = 0;
1995
1996                         perf_event_sync_stat(ctx, next_ctx);
1997                 }
1998                 raw_spin_unlock(&next_ctx->lock);
1999                 raw_spin_unlock(&ctx->lock);
2000         }
2001         rcu_read_unlock();
2002
2003         if (do_switch) {
2004                 raw_spin_lock(&ctx->lock);
2005                 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
2006                 cpuctx->task_ctx = NULL;
2007                 raw_spin_unlock(&ctx->lock);
2008         }
2009 }
2010
2011 #define for_each_task_context_nr(ctxn)                                  \
2012         for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2013
2014 /*
2015  * Called from scheduler to remove the events of the current task,
2016  * with interrupts disabled.
2017  *
2018  * We stop each event and update the event value in event->count.
2019  *
2020  * This does not protect us against NMI, but disable()
2021  * sets the disabled bit in the control field of event _before_
2022  * accessing the event control register. If a NMI hits, then it will
2023  * not restart the event.
2024  */
2025 void __perf_event_task_sched_out(struct task_struct *task,
2026                                  struct task_struct *next)
2027 {
2028         int ctxn;
2029
2030         for_each_task_context_nr(ctxn)
2031                 perf_event_context_sched_out(task, ctxn, next);
2032
2033         /*
2034          * if cgroup events exist on this CPU, then we need
2035          * to check if we have to switch out PMU state.
2036          * cgroup event are system-wide mode only
2037          */
2038         if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
2039                 perf_cgroup_sched_out(task, next);
2040 }
2041
2042 static void task_ctx_sched_out(struct perf_event_context *ctx)
2043 {
2044         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2045
2046         if (!cpuctx->task_ctx)
2047                 return;
2048
2049         if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2050                 return;
2051
2052         ctx_sched_out(ctx, cpuctx, EVENT_ALL);
2053         cpuctx->task_ctx = NULL;
2054 }
2055
2056 /*
2057  * Called with IRQs disabled
2058  */
2059 static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2060                               enum event_type_t event_type)
2061 {
2062         ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
2063 }
2064
2065 static void
2066 ctx_pinned_sched_in(struct perf_event_context *ctx,
2067                     struct perf_cpu_context *cpuctx)
2068 {
2069         struct perf_event *event;
2070
2071         list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2072                 if (event->state <= PERF_EVENT_STATE_OFF)
2073                         continue;
2074                 if (!event_filter_match(event))
2075                         continue;
2076
2077                 /* may need to reset tstamp_enabled */
2078                 if (is_cgroup_event(event))
2079                         perf_cgroup_mark_enabled(event, ctx);
2080
2081                 if (group_can_go_on(event, cpuctx, 1))
2082                         group_sched_in(event, cpuctx, ctx);
2083
2084                 /*
2085                  * If this pinned group hasn't been scheduled,
2086                  * put it in error state.
2087                  */
2088                 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2089                         update_group_times(event);
2090                         event->state = PERF_EVENT_STATE_ERROR;
2091                 }
2092         }
2093 }
2094
2095 static void
2096 ctx_flexible_sched_in(struct perf_event_context *ctx,
2097                       struct perf_cpu_context *cpuctx)
2098 {
2099         struct perf_event *event;
2100         int can_add_hw = 1;
2101
2102         list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2103                 /* Ignore events in OFF or ERROR state */
2104                 if (event->state <= PERF_EVENT_STATE_OFF)
2105                         continue;
2106                 /*
2107                  * Listen to the 'cpu' scheduling filter constraint
2108                  * of events:
2109                  */
2110                 if (!event_filter_match(event))
2111                         continue;
2112
2113                 /* may need to reset tstamp_enabled */
2114                 if (is_cgroup_event(event))
2115                         perf_cgroup_mark_enabled(event, ctx);
2116
2117                 if (group_can_go_on(event, cpuctx, can_add_hw)) {
2118                         if (group_sched_in(event, cpuctx, ctx))
2119                                 can_add_hw = 0;
2120                 }
2121         }
2122 }
2123
2124 static void
2125 ctx_sched_in(struct perf_event_context *ctx,
2126              struct perf_cpu_context *cpuctx,
2127              enum event_type_t event_type,
2128              struct task_struct *task)
2129 {
2130         u64 now;
2131         int is_active = ctx->is_active;
2132
2133         ctx->is_active |= event_type;
2134         if (likely(!ctx->nr_events))
2135                 return;
2136
2137         now = perf_clock();
2138         ctx->timestamp = now;
2139         perf_cgroup_set_timestamp(task, ctx);
2140         /*
2141          * First go through the list and put on any pinned groups
2142          * in order to give them the best chance of going on.
2143          */
2144         if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
2145                 ctx_pinned_sched_in(ctx, cpuctx);
2146
2147         /* Then walk through the lower prio flexible groups */
2148         if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
2149                 ctx_flexible_sched_in(ctx, cpuctx);
2150 }
2151
2152 static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
2153                              enum event_type_t event_type,
2154                              struct task_struct *task)
2155 {
2156         struct perf_event_context *ctx = &cpuctx->ctx;
2157
2158         ctx_sched_in(ctx, cpuctx, event_type, task);
2159 }
2160
2161 static void perf_event_context_sched_in(struct perf_event_context *ctx,
2162                                         struct task_struct *task)
2163 {
2164         struct perf_cpu_context *cpuctx;
2165
2166         cpuctx = __get_cpu_context(ctx);
2167         if (cpuctx->task_ctx == ctx)
2168                 return;
2169
2170         perf_ctx_lock(cpuctx, ctx);
2171         perf_pmu_disable(ctx->pmu);
2172         /*
2173          * We want to keep the following priority order:
2174          * cpu pinned (that don't need to move), task pinned,
2175          * cpu flexible, task flexible.
2176          */
2177         cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2178
2179         perf_event_sched_in(cpuctx, ctx, task);
2180
2181         if (ctx->nr_events)
2182                 cpuctx->task_ctx = ctx;
2183
2184         perf_pmu_enable(ctx->pmu);
2185         perf_ctx_unlock(cpuctx, ctx);
2186
2187         /*
2188          * Since these rotations are per-cpu, we need to ensure the
2189          * cpu-context we got scheduled on is actually rotating.
2190          */
2191         perf_pmu_rotate_start(ctx->pmu);
2192 }
2193
2194 /*
2195  * Called from scheduler to add the events of the current task
2196  * with interrupts disabled.
2197  *
2198  * We restore the event value and then enable it.
2199  *
2200  * This does not protect us against NMI, but enable()
2201  * sets the enabled bit in the control field of event _before_
2202  * accessing the event control register. If a NMI hits, then it will
2203  * keep the event running.
2204  */
2205 void __perf_event_task_sched_in(struct task_struct *prev,
2206                                 struct task_struct *task)
2207 {
2208         struct perf_event_context *ctx;
2209         int ctxn;
2210
2211         for_each_task_context_nr(ctxn) {
2212                 ctx = task->perf_event_ctxp[ctxn];
2213                 if (likely(!ctx))
2214                         continue;
2215
2216                 perf_event_context_sched_in(ctx, task);
2217         }
2218         /*
2219          * if cgroup events exist on this CPU, then we need
2220          * to check if we have to switch in PMU state.
2221          * cgroup event are system-wide mode only
2222          */
2223         if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
2224                 perf_cgroup_sched_in(prev, task);
2225 }
2226
2227 static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2228 {
2229         u64 frequency = event->attr.sample_freq;
2230         u64 sec = NSEC_PER_SEC;
2231         u64 divisor, dividend;
2232
2233         int count_fls, nsec_fls, frequency_fls, sec_fls;
2234
2235         count_fls = fls64(count);
2236         nsec_fls = fls64(nsec);
2237         frequency_fls = fls64(frequency);
2238         sec_fls = 30;
2239
2240         /*
2241          * We got @count in @nsec, with a target of sample_freq HZ
2242          * the target period becomes:
2243          *
2244          *             @count * 10^9
2245          * period = -------------------
2246          *          @nsec * sample_freq
2247          *
2248          */
2249
2250         /*
2251          * Reduce accuracy by one bit such that @a and @b converge
2252          * to a similar magnitude.
2253          */
2254 #define REDUCE_FLS(a, b)                \
2255 do {                                    \
2256         if (a##_fls > b##_fls) {        \
2257                 a >>= 1;                \
2258                 a##_fls--;              \
2259         } else {                        \
2260                 b >>= 1;                \
2261                 b##_fls--;              \
2262         }                               \
2263 } while (0)
2264
2265         /*
2266          * Reduce accuracy until either term fits in a u64, then proceed with
2267          * the other, so that finally we can do a u64/u64 division.
2268          */
2269         while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2270                 REDUCE_FLS(nsec, frequency);
2271                 REDUCE_FLS(sec, count);
2272         }
2273
2274         if (count_fls + sec_fls > 64) {
2275                 divisor = nsec * frequency;
2276
2277                 while (count_fls + sec_fls > 64) {
2278                         REDUCE_FLS(count, sec);
2279                         divisor >>= 1;
2280                 }
2281
2282                 dividend = count * sec;
2283         } else {
2284                 dividend = count * sec;
2285
2286                 while (nsec_fls + frequency_fls > 64) {
2287                         REDUCE_FLS(nsec, frequency);
2288                         dividend >>= 1;
2289                 }
2290
2291                 divisor = nsec * frequency;
2292         }
2293
2294         if (!divisor)
2295                 return dividend;
2296
2297         return div64_u64(dividend, divisor);
2298 }
2299
2300 static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count)
2301 {
2302         struct hw_perf_event *hwc = &event->hw;
2303         s64 period, sample_period;
2304         s64 delta;
2305
2306         period = perf_calculate_period(event, nsec, count);
2307
2308         delta = (s64)(period - hwc->sample_period);
2309         delta = (delta + 7) / 8; /* low pass filter */
2310
2311         sample_period = hwc->sample_period + delta;
2312
2313         if (!sample_period)
2314                 sample_period = 1;
2315
2316         hwc->sample_period = sample_period;
2317
2318         if (local64_read(&hwc->period_left) > 8*sample_period) {
2319                 event->pmu->stop(event, PERF_EF_UPDATE);
2320                 local64_set(&hwc->period_left, 0);
2321                 event->pmu->start(event, PERF_EF_RELOAD);
2322         }
2323 }
2324
2325 static void perf_ctx_adjust_freq(struct perf_event_context *ctx, u64 period)
2326 {
2327         struct perf_event *event;
2328         struct hw_perf_event *hwc;
2329         u64 interrupts, now;
2330         s64 delta;
2331
2332         list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
2333                 if (event->state != PERF_EVENT_STATE_ACTIVE)
2334                         continue;
2335
2336                 if (!event_filter_match(event))
2337                         continue;
2338
2339                 hwc = &event->hw;
2340
2341                 interrupts = hwc->interrupts;
2342                 hwc->interrupts = 0;
2343
2344                 /*
2345                  * unthrottle events on the tick
2346                  */
2347                 if (interrupts == MAX_INTERRUPTS) {
2348                         perf_log_throttle(event, 1);
2349                         event->pmu->start(event, 0);
2350                 }
2351
2352                 if (!event->attr.freq || !event->attr.sample_freq)
2353                         continue;
2354
2355                 event->pmu->read(event);
2356                 now = local64_read(&event->count);
2357                 delta = now - hwc->freq_count_stamp;
2358                 hwc->freq_count_stamp = now;
2359
2360                 if (delta > 0)
2361                         perf_adjust_period(event, period, delta);
2362         }
2363 }
2364
2365 /*
2366  * Round-robin a context's events:
2367  */
2368 static void rotate_ctx(struct perf_event_context *ctx)
2369 {
2370         /*
2371          * Rotate the first entry last of non-pinned groups. Rotation might be
2372          * disabled by the inheritance code.
2373          */
2374         if (!ctx->rotate_disable)
2375                 list_rotate_left(&ctx->flexible_groups);
2376 }
2377
2378 /*
2379  * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
2380  * because they're strictly cpu affine and rotate_start is called with IRQs
2381  * disabled, while rotate_context is called from IRQ context.
2382  */
2383 static void perf_rotate_context(struct perf_cpu_context *cpuctx)
2384 {
2385         u64 interval = (u64)cpuctx->jiffies_interval * TICK_NSEC;
2386         struct perf_event_context *ctx = NULL;
2387         int rotate = 0, remove = 1;
2388
2389         if (cpuctx->ctx.nr_events) {
2390                 remove = 0;
2391                 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
2392                         rotate = 1;
2393         }
2394
2395         ctx = cpuctx->task_ctx;
2396         if (ctx && ctx->nr_events) {
2397                 remove = 0;
2398                 if (ctx->nr_events != ctx->nr_active)
2399                         rotate = 1;
2400         }
2401
2402         perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2403         perf_pmu_disable(cpuctx->ctx.pmu);
2404         perf_ctx_adjust_freq(&cpuctx->ctx, interval);
2405         if (ctx)
2406                 perf_ctx_adjust_freq(ctx, interval);
2407
2408         if (!rotate)
2409                 goto done;
2410
2411         cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2412         if (ctx)
2413                 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
2414
2415         rotate_ctx(&cpuctx->ctx);
2416         if (ctx)
2417                 rotate_ctx(ctx);
2418
2419         perf_event_sched_in(cpuctx, ctx, current);
2420
2421 done:
2422         if (remove)
2423                 list_del_init(&cpuctx->rotation_list);
2424
2425         perf_pmu_enable(cpuctx->ctx.pmu);
2426         perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2427 }
2428
2429 void perf_event_task_tick(void)
2430 {
2431         struct list_head *head = &__get_cpu_var(rotation_list);
2432         struct perf_cpu_context *cpuctx, *tmp;
2433
2434         WARN_ON(!irqs_disabled());
2435
2436         list_for_each_entry_safe(cpuctx, tmp, head, rotation_list) {
2437                 if (cpuctx->jiffies_interval == 1 ||
2438                                 !(jiffies % cpuctx->jiffies_interval))
2439                         perf_rotate_context(cpuctx);
2440         }
2441 }
2442
2443 static int event_enable_on_exec(struct perf_event *event,
2444                                 struct perf_event_context *ctx)
2445 {
2446         if (!event->attr.enable_on_exec)
2447                 return 0;
2448
2449         event->attr.enable_on_exec = 0;
2450         if (event->state >= PERF_EVENT_STATE_INACTIVE)
2451                 return 0;
2452
2453         __perf_event_mark_enabled(event, ctx);
2454
2455         return 1;
2456 }
2457
2458 /*
2459  * Enable all of a task's events that have been marked enable-on-exec.
2460  * This expects task == current.
2461  */
2462 static void perf_event_enable_on_exec(struct perf_event_context *ctx)
2463 {
2464         struct perf_event *event;
2465         unsigned long flags;
2466         int enabled = 0;
2467         int ret;
2468
2469         local_irq_save(flags);
2470         if (!ctx || !ctx->nr_events)
2471                 goto out;
2472
2473         /*
2474          * We must ctxsw out cgroup events to avoid conflict
2475          * when invoking perf_task_event_sched_in() later on
2476          * in this function. Otherwise we end up trying to
2477          * ctxswin cgroup events which are already scheduled
2478          * in.
2479          */
2480         perf_cgroup_sched_out(current, NULL);
2481
2482         raw_spin_lock(&ctx->lock);
2483         task_ctx_sched_out(ctx);
2484
2485         list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2486                 ret = event_enable_on_exec(event, ctx);
2487                 if (ret)
2488                         enabled = 1;
2489         }
2490
2491         list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2492                 ret = event_enable_on_exec(event, ctx);
2493                 if (ret)
2494                         enabled = 1;
2495         }
2496
2497         /*
2498          * Unclone this context if we enabled any event.
2499          */
2500         if (enabled)
2501                 unclone_ctx(ctx);
2502
2503         raw_spin_unlock(&ctx->lock);
2504
2505         /*
2506          * Also calls ctxswin for cgroup events, if any:
2507          */
2508         perf_event_context_sched_in(ctx, ctx->task);
2509 out:
2510         local_irq_restore(flags);
2511 }
2512
2513 /*
2514  * Cross CPU call to read the hardware event
2515  */
2516 static void __perf_event_read(void *info)
2517 {
2518         struct perf_event *event = info;
2519         struct perf_event_context *ctx = event->ctx;
2520         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2521
2522         /*
2523          * If this is a task context, we need to check whether it is
2524          * the current task context of this cpu.  If not it has been
2525          * scheduled out before the smp call arrived.  In that case
2526          * event->count would have been updated to a recent sample
2527          * when the event was scheduled out.
2528          */
2529         if (ctx->task && cpuctx->task_ctx != ctx)
2530                 return;
2531
2532         raw_spin_lock(&ctx->lock);
2533         if (ctx->is_active) {
2534                 update_context_time(ctx);
2535                 update_cgrp_time_from_event(event);
2536         }
2537         update_event_times(event);
2538         if (event->state == PERF_EVENT_STATE_ACTIVE)
2539                 event->pmu->read(event);
2540         raw_spin_unlock(&ctx->lock);
2541 }
2542
2543 static inline u64 perf_event_count(struct perf_event *event)
2544 {
2545         return local64_read(&event->count) + atomic64_read(&event->child_count);
2546 }
2547
2548 static u64 perf_event_read(struct perf_event *event)
2549 {
2550         /*
2551          * If event is enabled and currently active on a CPU, update the
2552          * value in the event structure:
2553          */
2554         if (event->state == PERF_EVENT_STATE_ACTIVE) {
2555                 smp_call_function_single(event->oncpu,
2556                                          __perf_event_read, event, 1);
2557         } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
2558                 struct perf_event_context *ctx = event->ctx;
2559                 unsigned long flags;
2560
2561                 raw_spin_lock_irqsave(&ctx->lock, flags);
2562                 /*
2563                  * may read while context is not active
2564                  * (e.g., thread is blocked), in that case
2565                  * we cannot update context time
2566                  */
2567                 if (ctx->is_active) {
2568                         update_context_time(ctx);
2569                         update_cgrp_time_from_event(event);
2570                 }
2571                 update_event_times(event);
2572                 raw_spin_unlock_irqrestore(&ctx->lock, flags);
2573         }
2574
2575         return perf_event_count(event);
2576 }
2577
2578 /*
2579  * Initialize the perf_event context in a task_struct:
2580  */
2581 static void __perf_event_init_context(struct perf_event_context *ctx)
2582 {
2583         raw_spin_lock_init(&ctx->lock);
2584         mutex_init(&ctx->mutex);
2585         INIT_LIST_HEAD(&ctx->pinned_groups);
2586         INIT_LIST_HEAD(&ctx->flexible_groups);
2587         INIT_LIST_HEAD(&ctx->event_list);
2588         atomic_set(&ctx->refcount, 1);
2589 }
2590
2591 static struct perf_event_context *
2592 alloc_perf_context(struct pmu *pmu, struct task_struct *task)
2593 {
2594         struct perf_event_context *ctx;
2595
2596         ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
2597         if (!ctx)
2598                 return NULL;
2599
2600         __perf_event_init_context(ctx);
2601         if (task) {
2602                 ctx->task = task;
2603                 get_task_struct(task);
2604         }
2605         ctx->pmu = pmu;
2606
2607         return ctx;
2608 }
2609
2610 static struct task_struct *
2611 find_lively_task_by_vpid(pid_t vpid)
2612 {
2613         struct task_struct *task;
2614         int err;
2615
2616         rcu_read_lock();
2617         if (!vpid)
2618                 task = current;
2619         else
2620                 task = find_task_by_vpid(vpid);
2621         if (task)
2622                 get_task_struct(task);
2623         rcu_read_unlock();
2624
2625         if (!task)
2626                 return ERR_PTR(-ESRCH);
2627
2628         /* Reuse ptrace permission checks for now. */
2629         err = -EACCES;
2630         if (!ptrace_may_access(task, PTRACE_MODE_READ))
2631                 goto errout;
2632
2633         return task;
2634 errout:
2635         put_task_struct(task);
2636         return ERR_PTR(err);
2637
2638 }
2639
2640 /*
2641  * Returns a matching context with refcount and pincount.
2642  */
2643 static struct perf_event_context *
2644 find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
2645 {
2646         struct perf_event_context *ctx;
2647         struct perf_cpu_context *cpuctx;
2648         unsigned long flags;
2649         int ctxn, err;
2650
2651         if (!task) {
2652                 /* Must be root to operate on a CPU event: */
2653                 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
2654                         return ERR_PTR(-EACCES);
2655
2656                 /*
2657                  * We could be clever and allow to attach a event to an
2658                  * offline CPU and activate it when the CPU comes up, but
2659                  * that's for later.
2660                  */
2661                 if (!cpu_online(cpu))
2662                         return ERR_PTR(-ENODEV);
2663
2664                 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
2665                 ctx = &cpuctx->ctx;
2666                 get_ctx(ctx);
2667                 ++ctx->pin_count;
2668
2669                 return ctx;
2670         }
2671
2672         err = -EINVAL;
2673         ctxn = pmu->task_ctx_nr;
2674         if (ctxn < 0)
2675                 goto errout;
2676
2677 retry:
2678         ctx = perf_lock_task_context(task, ctxn, &flags);
2679         if (ctx) {
2680                 unclone_ctx(ctx);
2681                 ++ctx->pin_count;
2682                 raw_spin_unlock_irqrestore(&ctx->lock, flags);
2683         } else {
2684                 ctx = alloc_perf_context(pmu, task);
2685                 err = -ENOMEM;
2686                 if (!ctx)
2687                         goto errout;
2688
2689                 err = 0;
2690                 mutex_lock(&task->perf_event_mutex);
2691                 /*
2692                  * If it has already passed perf_event_exit_task().
2693                  * we must see PF_EXITING, it takes this mutex too.
2694                  */
2695                 if (task->flags & PF_EXITING)
2696                         err = -ESRCH;
2697                 else if (task->perf_event_ctxp[ctxn])
2698                         err = -EAGAIN;
2699                 else {
2700                         get_ctx(ctx);
2701                         ++ctx->pin_count;
2702                         rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
2703                 }
2704                 mutex_unlock(&task->perf_event_mutex);
2705
2706                 if (unlikely(err)) {
2707                         put_ctx(ctx);
2708
2709                         if (err == -EAGAIN)
2710                                 goto retry;
2711                         goto errout;
2712                 }
2713         }
2714
2715         return ctx;
2716
2717 errout:
2718         return ERR_PTR(err);
2719 }
2720
2721 static void perf_event_free_filter(struct perf_event *event);
2722
2723 static void free_event_rcu(struct rcu_head *head)
2724 {
2725         struct perf_event *event;
2726
2727         event = container_of(head, struct perf_event, rcu_head);
2728         if (event->ns)
2729                 put_pid_ns(event->ns);
2730         perf_event_free_filter(event);
2731         kfree(event);
2732 }
2733
2734 static void ring_buffer_put(struct ring_buffer *rb);
2735
2736 static void free_event(struct perf_event *event)
2737 {
2738         irq_work_sync(&event->pending);
2739
2740         if (!event->parent) {
2741                 if (event->attach_state & PERF_ATTACH_TASK)
2742                         jump_label_dec(&perf_sched_events);
2743                 if (event->attr.mmap || event->attr.mmap_data)
2744                         atomic_dec(&nr_mmap_events);
2745                 if (event->attr.comm)
2746                         atomic_dec(&nr_comm_events);
2747                 if (event->attr.task)
2748                         atomic_dec(&nr_task_events);
2749                 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
2750                         put_callchain_buffers();
2751                 if (is_cgroup_event(event)) {
2752                         atomic_dec(&per_cpu(perf_cgroup_events, event->cpu));
2753                         jump_label_dec(&perf_sched_events);
2754                 }
2755         }
2756
2757         if (event->rb) {
2758                 ring_buffer_put(event->rb);
2759                 event->rb = NULL;
2760         }
2761
2762         if (is_cgroup_event(event))
2763                 perf_detach_cgroup(event);
2764
2765         if (event->destroy)
2766                 event->destroy(event);
2767
2768         if (event->ctx)
2769                 put_ctx(event->ctx);
2770
2771         call_rcu(&event->rcu_head, free_event_rcu);
2772 }
2773
2774 int perf_event_release_kernel(struct perf_event *event)
2775 {
2776         struct perf_event_context *ctx = event->ctx;
2777
2778         WARN_ON_ONCE(ctx->parent_ctx);
2779         /*
2780          * There are two ways this annotation is useful:
2781          *
2782          *  1) there is a lock recursion from perf_event_exit_task
2783          *     see the comment there.
2784          *
2785          *  2) there is a lock-inversion with mmap_sem through
2786          *     perf_event_read_group(), which takes faults while
2787          *     holding ctx->mutex, however this is called after
2788          *     the last filedesc died, so there is no possibility
2789          *     to trigger the AB-BA case.
2790          */
2791         mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
2792         raw_spin_lock_irq(&ctx->lock);
2793         perf_group_detach(event);
2794         raw_spin_unlock_irq(&ctx->lock);
2795         perf_remove_from_context(event);
2796         mutex_unlock(&ctx->mutex);
2797
2798         free_event(event);
2799
2800         return 0;
2801 }
2802 EXPORT_SYMBOL_GPL(perf_event_release_kernel);
2803
2804 /*
2805  * Called when the last reference to the file is gone.
2806  */
2807 static int perf_release(struct inode *inode, struct file *file)
2808 {
2809         struct perf_event *event = file->private_data;
2810         struct task_struct *owner;
2811
2812         file->private_data = NULL;
2813
2814         rcu_read_lock();
2815         owner = ACCESS_ONCE(event->owner);
2816         /*
2817          * Matches the smp_wmb() in perf_event_exit_task(). If we observe
2818          * !owner it means the list deletion is complete and we can indeed
2819          * free this event, otherwise we need to serialize on
2820          * owner->perf_event_mutex.
2821          */
2822         smp_read_barrier_depends();
2823         if (owner) {
2824                 /*
2825                  * Since delayed_put_task_struct() also drops the last
2826                  * task reference we can safely take a new reference
2827                  * while holding the rcu_read_lock().
2828                  */
2829                 get_task_struct(owner);
2830         }
2831         rcu_read_unlock();
2832
2833         if (owner) {
2834                 mutex_lock(&owner->perf_event_mutex);
2835                 /*
2836                  * We have to re-check the event->owner field, if it is cleared
2837                  * we raced with perf_event_exit_task(), acquiring the mutex
2838                  * ensured they're done, and we can proceed with freeing the
2839                  * event.
2840                  */
2841                 if (event->owner)
2842                         list_del_init(&event->owner_entry);
2843                 mutex_unlock(&owner->perf_event_mutex);
2844                 put_task_struct(owner);
2845         }
2846
2847         return perf_event_release_kernel(event);
2848 }
2849
2850 u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
2851 {
2852         struct perf_event *child;
2853         u64 total = 0;
2854
2855         *enabled = 0;
2856         *running = 0;
2857
2858         mutex_lock(&event->child_mutex);
2859         total += perf_event_read(event);
2860         *enabled += event->total_time_enabled +
2861                         atomic64_read(&event->child_total_time_enabled);
2862         *running += event->total_time_running +
2863                         atomic64_read(&event->child_total_time_running);
2864
2865         list_for_each_entry(child, &event->child_list, child_list) {
2866                 total += perf_event_read(child);
2867                 *enabled += child->total_time_enabled;
2868                 *running += child->total_time_running;
2869         }
2870         mutex_unlock(&event->child_mutex);
2871
2872         return total;
2873 }
2874 EXPORT_SYMBOL_GPL(perf_event_read_value);
2875
2876 static int perf_event_read_group(struct perf_event *event,
2877                                    u64 read_format, char __user *buf)
2878 {
2879         struct perf_event *leader = event->group_leader, *sub;
2880         int n = 0, size = 0, ret = -EFAULT;
2881         struct perf_event_context *ctx = leader->ctx;
2882         u64 values[5];
2883         u64 count, enabled, running;
2884
2885         mutex_lock(&ctx->mutex);
2886         count = perf_event_read_value(leader, &enabled, &running);
2887
2888         values[n++] = 1 + leader->nr_siblings;
2889         if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2890                 values[n++] = enabled;
2891         if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2892                 values[n++] = running;
2893         values[n++] = count;
2894         if (read_format & PERF_FORMAT_ID)
2895                 values[n++] = primary_event_id(leader);
2896
2897         size = n * sizeof(u64);
2898
2899         if (copy_to_user(buf, values, size))
2900                 goto unlock;
2901
2902         ret = size;
2903
2904         list_for_each_entry(sub, &leader->sibling_list, group_entry) {
2905                 n = 0;
2906
2907                 values[n++] = perf_event_read_value(sub, &enabled, &running);
2908                 if (read_format & PERF_FORMAT_ID)
2909                         values[n++] = primary_event_id(sub);
2910
2911                 size = n * sizeof(u64);
2912
2913                 if (copy_to_user(buf + ret, values, size)) {
2914                         ret = -EFAULT;
2915                         goto unlock;
2916                 }
2917
2918                 ret += size;
2919         }
2920 unlock:
2921         mutex_unlock(&ctx->mutex);
2922
2923         return ret;
2924 }
2925
2926 static int perf_event_read_one(struct perf_event *event,
2927                                  u64 read_format, char __user *buf)
2928 {
2929         u64 enabled, running;
2930         u64 values[4];
2931         int n = 0;
2932
2933         values[n++] = perf_event_read_value(event, &enabled, &running);
2934         if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2935                 values[n++] = enabled;
2936         if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2937                 values[n++] = running;
2938         if (read_format & PERF_FORMAT_ID)
2939                 values[n++] = primary_event_id(event);
2940
2941         if (copy_to_user(buf, values, n * sizeof(u64)))
2942                 return -EFAULT;
2943
2944         return n * sizeof(u64);
2945 }
2946
2947 /*
2948  * Read the performance event - simple non blocking version for now
2949  */
2950 static ssize_t
2951 perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
2952 {
2953         u64 read_format = event->attr.read_format;
2954         int ret;
2955
2956         /*
2957          * Return end-of-file for a read on a event that is in
2958          * error state (i.e. because it was pinned but it couldn't be
2959          * scheduled on to the CPU at some point).
2960          */
2961         if (event->state == PERF_EVENT_STATE_ERROR)
2962                 return 0;
2963
2964         if (count < event->read_size)
2965                 return -ENOSPC;
2966
2967         WARN_ON_ONCE(event->ctx->parent_ctx);
2968         if (read_format & PERF_FORMAT_GROUP)
2969                 ret = perf_event_read_group(event, read_format, buf);
2970         else
2971                 ret = perf_event_read_one(event, read_format, buf);
2972
2973         return ret;
2974 }
2975
2976 static ssize_t
2977 perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
2978 {
2979         struct perf_event *event = file->private_data;
2980
2981         return perf_read_hw(event, buf, count);
2982 }
2983
2984 static unsigned int perf_poll(struct file *file, poll_table *wait)
2985 {
2986         struct perf_event *event = file->private_data;
2987         struct ring_buffer *rb;
2988         unsigned int events = POLL_HUP;
2989
2990         /*
2991          * Race between perf_event_set_output() and perf_poll(): perf_poll()
2992          * grabs the rb reference but perf_event_set_output() overrides it.
2993          * Here is the timeline for two threads T1, T2:
2994          * t0: T1, rb = rcu_dereference(event->rb)
2995          * t1: T2, old_rb = event->rb
2996          * t2: T2, event->rb = new rb
2997          * t3: T2, ring_buffer_detach(old_rb)
2998          * t4: T1, ring_buffer_attach(rb1)
2999          * t5: T1, poll_wait(event->waitq)
3000          *
3001          * To avoid this problem, we grab mmap_mutex in perf_poll()
3002          * thereby ensuring that the assignment of the new ring buffer
3003          * and the detachment of the old buffer appear atomic to perf_poll()
3004          */
3005         mutex_lock(&event->mmap_mutex);
3006
3007         rcu_read_lock();
3008         rb = rcu_dereference(event->rb);
3009         if (rb) {
3010                 ring_buffer_attach(event, rb);
3011                 events = atomic_xchg(&rb->poll, 0);
3012         }
3013         rcu_read_unlock();
3014
3015         mutex_unlock(&event->mmap_mutex);
3016
3017         poll_wait(file, &event->waitq, wait);
3018
3019         return events;
3020 }
3021
3022 static void perf_event_reset(struct perf_event *event)
3023 {
3024         (void)perf_event_read(event);
3025         local64_set(&event->count, 0);
3026         perf_event_update_userpage(event);
3027 }
3028
3029 /*
3030  * Holding the top-level event's child_mutex means that any
3031  * descendant process that has inherited this event will block
3032  * in sync_child_event if it goes to exit, thus satisfying the
3033  * task existence requirements of perf_event_enable/disable.
3034  */
3035 static void perf_event_for_each_child(struct perf_event *event,
3036                                         void (*func)(struct perf_event *))
3037 {
3038         struct perf_event *child;
3039
3040         WARN_ON_ONCE(event->ctx->parent_ctx);
3041         mutex_lock(&event->child_mutex);
3042         func(event);
3043         list_for_each_entry(child, &event->child_list, child_list)
3044                 func(child);
3045         mutex_unlock(&event->child_mutex);
3046 }
3047
3048 static void perf_event_for_each(struct perf_event *event,
3049                                   void (*func)(struct perf_event *))
3050 {
3051         struct perf_event_context *ctx = event->ctx;
3052         struct perf_event *sibling;
3053
3054         WARN_ON_ONCE(ctx->parent_ctx);
3055         mutex_lock(&ctx->mutex);
3056         event = event->group_leader;
3057
3058         perf_event_for_each_child(event, func);
3059         func(event);
3060         list_for_each_entry(sibling, &event->sibling_list, group_entry)
3061                 perf_event_for_each_child(event, func);
3062         mutex_unlock(&ctx->mutex);
3063 }
3064
3065 static int perf_event_period(struct perf_event *event, u64 __user *arg)
3066 {
3067         struct perf_event_context *ctx = event->ctx;
3068         int ret = 0;
3069         u64 value;
3070
3071         if (!is_sampling_event(event))
3072                 return -EINVAL;
3073
3074         if (copy_from_user(&value, arg, sizeof(value)))
3075                 return -EFAULT;
3076
3077         if (!value)
3078                 return -EINVAL;
3079
3080         raw_spin_lock_irq(&ctx->lock);
3081         if (event->attr.freq) {
3082                 if (value > sysctl_perf_event_sample_rate) {
3083                         ret = -EINVAL;
3084                         goto unlock;
3085                 }
3086
3087                 event->attr.sample_freq = value;
3088         } else {
3089                 event->attr.sample_period = value;
3090                 event->hw.sample_period = value;
3091         }
3092 unlock:
3093         raw_spin_unlock_irq(&ctx->lock);
3094
3095         return ret;
3096 }
3097
3098 static const struct file_operations perf_fops;
3099
3100 static struct perf_event *perf_fget_light(int fd, int *fput_needed)
3101 {
3102         struct file *file;
3103
3104         file = fget_light(fd, fput_needed);
3105         if (!file)
3106                 return ERR_PTR(-EBADF);
3107
3108         if (file->f_op != &perf_fops) {
3109                 fput_light(file, *fput_needed);
3110                 *fput_needed = 0;
3111                 return ERR_PTR(-EBADF);
3112         }
3113
3114         return file->private_data;
3115 }
3116
3117 static int perf_event_set_output(struct perf_event *event,
3118                                  struct perf_event *output_event);
3119 static int perf_event_set_filter(struct perf_event *event, void __user *arg);
3120
3121 static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3122 {
3123         struct perf_event *event = file->private_data;
3124         void (*func)(struct perf_event *);
3125         u32 flags = arg;
3126
3127         switch (cmd) {
3128         case PERF_EVENT_IOC_ENABLE:
3129                 func = perf_event_enable;
3130                 break;
3131         case PERF_EVENT_IOC_DISABLE:
3132                 func = perf_event_disable;
3133                 break;
3134         case PERF_EVENT_IOC_RESET:
3135                 func = perf_event_reset;
3136                 break;
3137
3138         case PERF_EVENT_IOC_REFRESH:
3139                 return perf_event_refresh(event, arg);
3140
3141         case PERF_EVENT_IOC_PERIOD:
3142                 return perf_event_period(event, (u64 __user *)arg);
3143
3144         case PERF_EVENT_IOC_SET_OUTPUT:
3145         {
3146                 struct perf_event *output_event = NULL;
3147                 int fput_needed = 0;
3148                 int ret;
3149
3150                 if (arg != -1) {
3151                         output_event = perf_fget_light(arg, &fput_needed);
3152                         if (IS_ERR(output_event))
3153                                 return PTR_ERR(output_event);
3154                 }
3155
3156                 ret = perf_event_set_output(event, output_event);
3157                 if (output_event)
3158                         fput_light(output_event->filp, fput_needed);
3159
3160                 return ret;
3161         }
3162
3163         case PERF_EVENT_IOC_SET_FILTER:
3164                 return perf_event_set_filter(event, (void __user *)arg);
3165
3166         default:
3167                 return -ENOTTY;
3168         }
3169
3170         if (flags & PERF_IOC_FLAG_GROUP)
3171                 perf_event_for_each(event, func);
3172         else
3173                 perf_event_for_each_child(event, func);
3174
3175         return 0;
3176 }
3177
3178 int perf_event_task_enable(void)
3179 {
3180         struct perf_event *event;
3181
3182         mutex_lock(&current->perf_event_mutex);
3183         list_for_each_entry(event, &current->perf_event_list, owner_entry)
3184                 perf_event_for_each_child(event, perf_event_enable);
3185         mutex_unlock(&current->perf_event_mutex);
3186
3187         return 0;
3188 }
3189
3190 int perf_event_task_disable(void)
3191 {
3192         struct perf_event *event;
3193
3194         mutex_lock(&current->perf_event_mutex);
3195         list_for_each_entry(event, &current->perf_event_list, owner_entry)
3196                 perf_event_for_each_child(event, perf_event_disable);
3197         mutex_unlock(&current->perf_event_mutex);
3198
3199         return 0;
3200 }
3201
3202 #ifndef PERF_EVENT_INDEX_OFFSET
3203 # define PERF_EVENT_INDEX_OFFSET 0
3204 #endif
3205
3206 static int perf_event_index(struct perf_event *event)
3207 {
3208         if (event->hw.state & PERF_HES_STOPPED)
3209                 return 0;
3210
3211         if (event->state != PERF_EVENT_STATE_ACTIVE)
3212                 return 0;
3213
3214         return event->hw.idx + 1 - PERF_EVENT_INDEX_OFFSET;
3215 }
3216
3217 static void calc_timer_values(struct perf_event *event,
3218                                 u64 *enabled,
3219                                 u64 *running)
3220 {
3221         u64 now, ctx_time;
3222
3223         now = perf_clock();
3224         ctx_time = event->shadow_ctx_time + now;
3225         *enabled = ctx_time - event->tstamp_enabled;
3226         *running = ctx_time - event->tstamp_running;
3227 }
3228
3229 /*
3230  * Callers need to ensure there can be no nesting of this function, otherwise
3231  * the seqlock logic goes bad. We can not serialize this because the arch
3232  * code calls this from NMI context.
3233  */
3234 void perf_event_update_userpage(struct perf_event *event)
3235 {
3236         struct perf_event_mmap_page *userpg;
3237         struct ring_buffer *rb;
3238         u64 enabled, running;
3239
3240         rcu_read_lock();
3241         /*
3242          * compute total_time_enabled, total_time_running
3243          * based on snapshot values taken when the event
3244          * was last scheduled in.
3245          *
3246          * we cannot simply called update_context_time()
3247          * because of locking issue as we can be called in
3248          * NMI context
3249          */
3250         calc_timer_values(event, &enabled, &running);
3251         rb = rcu_dereference(event->rb);
3252         if (!rb)
3253                 goto unlock;
3254
3255         userpg = rb->user_page;
3256
3257         /*
3258          * Disable preemption so as to not let the corresponding user-space
3259          * spin too long if we get preempted.
3260          */
3261         preempt_disable();
3262         ++userpg->lock;
3263         barrier();
3264         userpg->index = perf_event_index(event);
3265         userpg->offset = perf_event_count(event);
3266         if (event->state == PERF_EVENT_STATE_ACTIVE)
3267                 userpg->offset -= local64_read(&event->hw.prev_count);
3268
3269         userpg->time_enabled = enabled +
3270                         atomic64_read(&event->child_total_time_enabled);
3271
3272         userpg->time_running = running +
3273                         atomic64_read(&event->child_total_time_running);
3274
3275         barrier();
3276         ++userpg->lock;
3277         preempt_enable();
3278 unlock:
3279         rcu_read_unlock();
3280 }
3281
3282 static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
3283 {
3284         struct perf_event *event = vma->vm_file->private_data;
3285         struct ring_buffer *rb;
3286         int ret = VM_FAULT_SIGBUS;
3287
3288         if (vmf->flags & FAULT_FLAG_MKWRITE) {
3289                 if (vmf->pgoff == 0)
3290                         ret = 0;
3291                 return ret;
3292         }
3293
3294         rcu_read_lock();
3295         rb = rcu_dereference(event->rb);
3296         if (!rb)
3297                 goto unlock;
3298
3299         if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
3300                 goto unlock;
3301
3302         vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
3303         if (!vmf->page)
3304                 goto unlock;
3305
3306         get_page(vmf->page);
3307         vmf->page->mapping = vma->vm_file->f_mapping;
3308         vmf->page->index   = vmf->pgoff;
3309
3310         ret = 0;
3311 unlock:
3312         rcu_read_unlock();
3313
3314         return ret;
3315 }
3316
3317 static void ring_buffer_attach(struct perf_event *event,
3318                                struct ring_buffer *rb)
3319 {
3320         unsigned long flags;
3321
3322         if (!list_empty(&event->rb_entry))
3323                 return;
3324
3325         spin_lock_irqsave(&rb->event_lock, flags);
3326         if (!list_empty(&event->rb_entry))
3327                 goto unlock;
3328
3329         list_add(&event->rb_entry, &rb->event_list);
3330 unlock:
3331         spin_unlock_irqrestore(&rb->event_lock, flags);
3332 }
3333
3334 static void ring_buffer_detach(struct perf_event *event,
3335                                struct ring_buffer *rb)
3336 {
3337         unsigned long flags;
3338
3339         if (list_empty(&event->rb_entry))
3340                 return;
3341
3342         spin_lock_irqsave(&rb->event_lock, flags);
3343         list_del_init(&event->rb_entry);
3344         wake_up_all(&event->waitq);
3345         spin_unlock_irqrestore(&rb->event_lock, flags);
3346 }
3347
3348 static void ring_buffer_wakeup(struct perf_event *event)
3349 {
3350         struct ring_buffer *rb;
3351
3352         rcu_read_lock();
3353         rb = rcu_dereference(event->rb);
3354         list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
3355                 wake_up_all(&event->waitq);
3356         }
3357         rcu_read_unlock();
3358 }
3359
3360 static void rb_free_rcu(struct rcu_head *rcu_head)
3361 {
3362         struct ring_buffer *rb;
3363
3364         rb = container_of(rcu_head, struct ring_buffer, rcu_head);
3365         rb_free(rb);
3366 }
3367
3368 static struct ring_buffer *ring_buffer_get(struct perf_event *event)
3369 {
3370         struct ring_buffer *rb;
3371
3372         rcu_read_lock();
3373         rb = rcu_dereference(event->rb);
3374         if (rb) {
3375                 if (!atomic_inc_not_zero(&rb->refcount))
3376                         rb = NULL;
3377         }
3378         rcu_read_unlock();
3379
3380         return rb;
3381 }
3382
3383 static void ring_buffer_put(struct ring_buffer *rb)
3384 {
3385         struct perf_event *event, *n;
3386         unsigned long flags;
3387
3388         if (!atomic_dec_and_test(&rb->refcount))
3389                 return;
3390
3391         spin_lock_irqsave(&rb->event_lock, flags);
3392         list_for_each_entry_safe(event, n, &rb->event_list, rb_entry) {
3393                 list_del_init(&event->rb_entry);
3394                 wake_up_all(&event->waitq);
3395         }
3396         spin_unlock_irqrestore(&rb->event_lock, flags);
3397
3398         call_rcu(&rb->rcu_head, rb_free_rcu);
3399 }
3400
3401 static void perf_mmap_open(struct vm_area_struct *vma)
3402 {
3403         struct perf_event *event = vma->vm_file->private_data;
3404
3405         atomic_inc(&event->mmap_count);
3406 }
3407
3408 static void perf_mmap_close(struct vm_area_struct *vma)
3409 {
3410         struct perf_event *event = vma->vm_file->private_data;
3411
3412         if (atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex)) {
3413                 unsigned long size = perf_data_size(event->rb);
3414                 struct user_struct *user = event->mmap_user;
3415                 struct ring_buffer *rb = event->rb;
3416
3417                 atomic_long_sub((size >> PAGE_SHIFT) + 1, &user->locked_vm);
3418                 vma->vm_mm->pinned_vm -= event->mmap_locked;
3419                 rcu_assign_pointer(event->rb, NULL);
3420                 ring_buffer_detach(event, rb);
3421                 mutex_unlock(&event->mmap_mutex);
3422
3423                 ring_buffer_put(rb);
3424                 free_uid(user);
3425         }
3426 }
3427
3428 static const struct vm_operations_struct perf_mmap_vmops = {
3429         .open           = perf_mmap_open,
3430         .close          = perf_mmap_close,
3431         .fault          = perf_mmap_fault,
3432         .page_mkwrite   = perf_mmap_fault,
3433 };
3434
3435 static int perf_mmap(struct file *file, struct vm_area_struct *vma)
3436 {
3437         struct perf_event *event = file->private_data;
3438         unsigned long user_locked, user_lock_limit;
3439         struct user_struct *user = current_user();
3440         unsigned long locked, lock_limit;
3441         struct ring_buffer *rb;
3442         unsigned long vma_size;
3443         unsigned long nr_pages;
3444         long user_extra, extra;
3445         int ret = 0, flags = 0;
3446
3447         /*
3448          * Don't allow mmap() of inherited per-task counters. This would
3449          * create a performance issue due to all children writing to the
3450          * same rb.
3451          */
3452         if (event->cpu == -1 && event->attr.inherit)
3453                 return -EINVAL;
3454
3455         if (!(vma->vm_flags & VM_SHARED))
3456                 return -EINVAL;
3457
3458         vma_size = vma->vm_end - vma->vm_start;
3459         nr_pages = (vma_size / PAGE_SIZE) - 1;
3460
3461         /*
3462          * If we have rb pages ensure they're a power-of-two number, so we
3463          * can do bitmasks instead of modulo.
3464          */
3465         if (nr_pages != 0 && !is_power_of_2(nr_pages))
3466                 return -EINVAL;
3467
3468         if (vma_size != PAGE_SIZE * (1 + nr_pages))
3469                 return -EINVAL;
3470
3471         if (vma->vm_pgoff != 0)
3472                 return -EINVAL;
3473
3474         WARN_ON_ONCE(event->ctx->parent_ctx);
3475         mutex_lock(&event->mmap_mutex);
3476         if (event->rb) {
3477                 if (event->rb->nr_pages == nr_pages)
3478                         atomic_inc(&event->rb->refcount);
3479                 else
3480                         ret = -EINVAL;
3481                 goto unlock;
3482         }
3483
3484         user_extra = nr_pages + 1;
3485         user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
3486
3487         /*
3488          * Increase the limit linearly with more CPUs:
3489          */
3490         user_lock_limit *= num_online_cpus();
3491
3492         user_locked = atomic_long_read(&user->locked_vm) + user_extra;
3493
3494         extra = 0;
3495         if (user_locked > user_lock_limit)
3496                 extra = user_locked - user_lock_limit;
3497
3498         lock_limit = rlimit(RLIMIT_MEMLOCK);
3499         lock_limit >>= PAGE_SHIFT;
3500         locked = vma->vm_mm->pinned_vm + extra;
3501
3502         if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
3503                 !capable(CAP_IPC_LOCK)) {
3504                 ret = -EPERM;
3505                 goto unlock;
3506         }
3507
3508         WARN_ON(event->rb);
3509
3510         if (vma->vm_flags & VM_WRITE)
3511                 flags |= RING_BUFFER_WRITABLE;
3512
3513         rb = rb_alloc(nr_pages, 
3514                 event->attr.watermark ? event->attr.wakeup_watermark : 0,
3515                 event->cpu, flags);
3516
3517         if (!rb) {
3518                 ret = -ENOMEM;
3519                 goto unlock;
3520         }
3521         rcu_assign_pointer(event->rb, rb);
3522
3523         atomic_long_add(user_extra, &user->locked_vm);
3524         event->mmap_locked = extra;
3525         event->mmap_user = get_current_user();
3526         vma->vm_mm->pinned_vm += event->mmap_locked;
3527
3528 unlock:
3529         if (!ret)
3530                 atomic_inc(&event->mmap_count);
3531         mutex_unlock(&event->mmap_mutex);
3532
3533         vma->vm_flags |= VM_RESERVED;
3534         vma->vm_ops = &perf_mmap_vmops;
3535
3536         return ret;
3537 }
3538
3539 static int perf_fasync(int fd, struct file *filp, int on)
3540 {
3541         struct inode *inode = filp->f_path.dentry->d_inode;
3542         struct perf_event *event = filp->private_data;
3543         int retval;
3544
3545         mutex_lock(&inode->i_mutex);
3546         retval = fasync_helper(fd, filp, on, &event->fasync);
3547         mutex_unlock(&inode->i_mutex);
3548
3549         if (retval < 0)
3550                 return retval;
3551
3552         return 0;
3553 }
3554
3555 static const struct file_operations perf_fops = {
3556         .llseek                 = no_llseek,
3557         .release                = perf_release,
3558         .read                   = perf_read,
3559         .poll                   = perf_poll,
3560         .unlocked_ioctl         = perf_ioctl,
3561         .compat_ioctl           = perf_ioctl,
3562         .mmap                   = perf_mmap,
3563         .fasync                 = perf_fasync,
3564 };
3565
3566 /*
3567  * Perf event wakeup
3568  *
3569  * If there's data, ensure we set the poll() state and publish everything
3570  * to user-space before waking everybody up.
3571  */
3572
3573 void perf_event_wakeup(struct perf_event *event)
3574 {
3575         ring_buffer_wakeup(event);
3576
3577         if (event->pending_kill) {
3578                 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
3579                 event->pending_kill = 0;
3580         }
3581 }
3582
3583 static void perf_pending_event(struct irq_work *entry)
3584 {
3585         struct perf_event *event = container_of(entry,
3586                         struct perf_event, pending);
3587
3588         if (event->pending_disable) {
3589                 event->pending_disable = 0;
3590                 __perf_event_disable(event);
3591         }
3592
3593         if (event->pending_wakeup) {
3594                 event->pending_wakeup = 0;
3595                 perf_event_wakeup(event);
3596         }
3597 }
3598
3599 /*
3600  * We assume there is only KVM supporting the callbacks.
3601  * Later on, we might change it to a list if there is
3602  * another virtualization implementation supporting the callbacks.
3603  */
3604 struct perf_guest_info_callbacks *perf_guest_cbs;
3605
3606 int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3607 {
3608         perf_guest_cbs = cbs;
3609         return 0;
3610 }
3611 EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
3612
3613 int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3614 {
3615         perf_guest_cbs = NULL;
3616         return 0;
3617 }
3618 EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
3619
3620 static void __perf_event_header__init_id(struct perf_event_header *header,
3621                                          struct perf_sample_data *data,
3622                                          struct perf_event *event)
3623 {
3624         u64 sample_type = event->attr.sample_type;
3625
3626         data->type = sample_type;
3627         header->size += event->id_header_size;
3628
3629         if (sample_type & PERF_SAMPLE_TID) {
3630                 /* namespace issues */
3631                 data->tid_entry.pid = perf_event_pid(event, current);
3632                 data->tid_entry.tid = perf_event_tid(event, current);
3633         }
3634
3635         if (sample_type & PERF_SAMPLE_TIME)
3636                 data->time = perf_clock();
3637
3638         if (sample_type & PERF_SAMPLE_ID)
3639                 data->id = primary_event_id(event);
3640
3641         if (sample_type & PERF_SAMPLE_STREAM_ID)
3642                 data->stream_id = event->id;
3643
3644         if (sample_type & PERF_SAMPLE_CPU) {
3645                 data->cpu_entry.cpu      = raw_smp_processor_id();
3646                 data->cpu_entry.reserved = 0;
3647         }
3648 }
3649
3650 void perf_event_header__init_id(struct perf_event_header *header,
3651                                 struct perf_sample_data *data,
3652                                 struct perf_event *event)
3653 {
3654         if (event->attr.sample_id_all)
3655                 __perf_event_header__init_id(header, data, event);
3656 }
3657
3658 static void __perf_event__output_id_sample(struct perf_output_handle *handle,
3659                                            struct perf_sample_data *data)
3660 {
3661         u64 sample_type = data->type;
3662
3663         if (sample_type & PERF_SAMPLE_TID)
3664                 perf_output_put(handle, data->tid_entry);
3665
3666         if (sample_type & PERF_SAMPLE_TIME)
3667                 perf_output_put(handle, data->time);
3668
3669         if (sample_type & PERF_SAMPLE_ID)
3670                 perf_output_put(handle, data->id);
3671
3672         if (sample_type & PERF_SAMPLE_STREAM_ID)
3673                 perf_output_put(handle, data->stream_id);
3674
3675         if (sample_type & PERF_SAMPLE_CPU)
3676                 perf_output_put(handle, data->cpu_entry);
3677 }
3678
3679 void perf_event__output_id_sample(struct perf_event *event,
3680                                   struct perf_output_handle *handle,
3681                                   struct perf_sample_data *sample)
3682 {
3683         if (event->attr.sample_id_all)
3684                 __perf_event__output_id_sample(handle, sample);
3685 }
3686
3687 static void perf_output_read_one(struct perf_output_handle *handle,
3688                                  struct perf_event *event,
3689                                  u64 enabled, u64 running)
3690 {
3691         u64 read_format = event->attr.read_format;
3692         u64 values[4];
3693         int n = 0;
3694
3695         values[n++] = perf_event_count(event);
3696         if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
3697                 values[n++] = enabled +
3698                         atomic64_read(&event->child_total_time_enabled);
3699         }
3700         if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
3701                 values[n++] = running +
3702                         atomic64_read(&event->child_total_time_running);
3703         }
3704         if (read_format & PERF_FORMAT_ID)
3705                 values[n++] = primary_event_id(event);
3706
3707         __output_copy(handle, values, n * sizeof(u64));
3708 }
3709
3710 /*
3711  * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
3712  */
3713 static void perf_output_read_group(struct perf_output_handle *handle,
3714                             struct perf_event *event,
3715                             u64 enabled, u64 running)
3716 {
3717         struct perf_event *leader = event->group_leader, *sub;
3718         u64 read_format = event->attr.read_format;
3719         u64 values[5];
3720         int n = 0;
3721
3722         values[n++] = 1 + leader->nr_siblings;
3723
3724         if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3725                 values[n++] = enabled;
3726
3727         if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3728                 values[n++] = running;
3729
3730         if (leader != event)
3731                 leader->pmu->read(leader);
3732
3733         values[n++] = perf_event_count(leader);
3734         if (read_format & PERF_FORMAT_ID)
3735                 values[n++] = primary_event_id(leader);
3736
3737         __output_copy(handle, values, n * sizeof(u64));
3738
3739         list_for_each_entry(sub, &leader->sibling_list, group_entry) {
3740                 n = 0;
3741
3742                 if (sub != event)
3743                         sub->pmu->read(sub);
3744
3745                 values[n++] = perf_event_count(sub);
3746                 if (read_format & PERF_FORMAT_ID)
3747                         values[n++] = primary_event_id(sub);
3748
3749                 __output_copy(handle, values, n * sizeof(u64));
3750         }
3751 }
3752
3753 #define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
3754                                  PERF_FORMAT_TOTAL_TIME_RUNNING)
3755
3756 static void perf_output_read(struct perf_output_handle *handle,
3757                              struct perf_event *event)
3758 {
3759         u64 enabled = 0, running = 0;
3760         u64 read_format = event->attr.read_format;
3761
3762         /*
3763          * compute total_time_enabled, total_time_running
3764          * based on snapshot values taken when the event
3765          * was last scheduled in.
3766          *
3767          * we cannot simply called update_context_time()
3768          * because of locking issue as we are called in
3769          * NMI context
3770          */
3771         if (read_format & PERF_FORMAT_TOTAL_TIMES)
3772                 calc_timer_values(event, &enabled, &running);
3773
3774         if (event->attr.read_format & PERF_FORMAT_GROUP)
3775                 perf_output_read_group(handle, event, enabled, running);
3776         else
3777                 perf_output_read_one(handle, event, enabled, running);
3778 }
3779
3780 void perf_output_sample(struct perf_output_handle *handle,
3781                         struct perf_event_header *header,
3782                         struct perf_sample_data *data,
3783                         struct perf_event *event)
3784 {
3785         u64 sample_type = data->type;
3786
3787         perf_output_put(handle, *header);
3788
3789         if (sample_type & PERF_SAMPLE_IP)
3790                 perf_output_put(handle, data->ip);
3791
3792         if (sample_type & PERF_SAMPLE_TID)
3793                 perf_output_put(handle, data->tid_entry);
3794
3795         if (sample_type & PERF_SAMPLE_TIME)
3796                 perf_output_put(handle, data->time);
3797
3798         if (sample_type & PERF_SAMPLE_ADDR)
3799                 perf_output_put(handle, data->addr);
3800
3801         if (sample_type & PERF_SAMPLE_ID)
3802                 perf_output_put(handle, data->id);
3803
3804         if (sample_type & PERF_SAMPLE_STREAM_ID)
3805                 perf_output_put(handle, data->stream_id);
3806
3807         if (sample_type & PERF_SAMPLE_CPU)
3808                 perf_output_put(handle, data->cpu_entry);
3809
3810         if (sample_type & PERF_SAMPLE_PERIOD)
3811                 perf_output_put(handle, data->period);
3812
3813         if (sample_type & PERF_SAMPLE_READ)
3814                 perf_output_read(handle, event);
3815
3816         if (sample_type & PERF_SAMPLE_CALLCHAIN) {
3817                 if (data->callchain) {
3818                         int size = 1;
3819
3820                         if (data->callchain)
3821                                 size += data->callchain->nr;
3822
3823                         size *= sizeof(u64);
3824
3825                         __output_copy(handle, data->callchain, size);
3826                 } else {
3827                         u64 nr = 0;
3828                         perf_output_put(handle, nr);
3829                 }
3830         }
3831
3832         if (sample_type & PERF_SAMPLE_RAW) {
3833                 if (data->raw) {
3834                         perf_output_put(handle, data->raw->size);
3835                         __output_copy(handle, data->raw->data,
3836                                            data->raw->size);
3837                 } else {
3838                         struct {
3839                                 u32     size;
3840                                 u32     data;
3841                         } raw = {
3842                                 .size = sizeof(u32),
3843                                 .data = 0,
3844                         };
3845                         perf_output_put(handle, raw);
3846                 }
3847         }
3848
3849         if (!event->attr.watermark) {
3850                 int wakeup_events = event->attr.wakeup_events;
3851
3852                 if (wakeup_events) {
3853                         struct ring_buffer *rb = handle->rb;
3854                         int events = local_inc_return(&rb->events);
3855
3856                         if (events >= wakeup_events) {
3857                                 local_sub(wakeup_events, &rb->events);
3858                                 local_inc(&rb->wakeup);
3859                         }
3860                 }
3861         }
3862 }
3863
3864 void perf_prepare_sample(struct perf_event_header *header,
3865                          struct perf_sample_data *data,
3866                          struct perf_event *event,
3867                          struct pt_regs *regs)
3868 {
3869         u64 sample_type = event->attr.sample_type;
3870
3871         header->type = PERF_RECORD_SAMPLE;
3872         header->size = sizeof(*header) + event->header_size;
3873
3874         header->misc = 0;
3875         header->misc |= perf_misc_flags(regs);
3876
3877         __perf_event_header__init_id(header, data, event);
3878
3879         if (sample_type & PERF_SAMPLE_IP)
3880                 data->ip = perf_instruction_pointer(regs);
3881
3882         if (sample_type & PERF_SAMPLE_CALLCHAIN) {
3883                 int size = 1;
3884
3885                 data->callchain = perf_callchain(regs);
3886
3887                 if (data->callchain)
3888                         size += data->callchain->nr;
3889
3890                 header->size += size * sizeof(u64);
3891         }
3892
3893         if (sample_type & PERF_SAMPLE_RAW) {
3894                 int size = sizeof(u32);
3895
3896                 if (data->raw)
3897                         size += data->raw->size;
3898                 else
3899                         size += sizeof(u32);
3900
3901                 WARN_ON_ONCE(size & (sizeof(u64)-1));
3902                 header->size += size;
3903         }
3904 }
3905
3906 static void perf_event_output(struct perf_event *event,
3907                                 struct perf_sample_data *data,
3908                                 struct pt_regs *regs)
3909 {
3910         struct perf_output_handle handle;
3911         struct perf_event_header header;
3912
3913         /* protect the callchain buffers */
3914         rcu_read_lock();
3915
3916         perf_prepare_sample(&header, data, event, regs);
3917
3918         if (perf_output_begin(&handle, event, header.size))
3919                 goto exit;
3920
3921         perf_output_sample(&handle, &header, data, event);
3922
3923         perf_output_end(&handle);
3924
3925 exit:
3926         rcu_read_unlock();
3927 }
3928
3929 /*
3930  * read event_id
3931  */
3932
3933 struct perf_read_event {
3934         struct perf_event_header        header;
3935
3936         u32                             pid;
3937         u32                             tid;
3938 };
3939
3940 static void
3941 perf_event_read_event(struct perf_event *event,
3942                         struct task_struct *task)
3943 {
3944         struct perf_output_handle handle;
3945         struct perf_sample_data sample;
3946         struct perf_read_event read_event = {
3947                 .header = {
3948                         .type = PERF_RECORD_READ,
3949                         .misc = 0,
3950                         .size = sizeof(read_event) + event->read_size,
3951                 },
3952                 .pid = perf_event_pid(event, task),
3953                 .tid = perf_event_tid(event, task),
3954         };
3955         int ret;
3956
3957         perf_event_header__init_id(&read_event.header, &sample, event);
3958         ret = perf_output_begin(&handle, event, read_event.header.size);
3959         if (ret)
3960                 return;
3961
3962         perf_output_put(&handle, read_event);
3963         perf_output_read(&handle, event);
3964         perf_event__output_id_sample(event, &handle, &sample);
3965
3966         perf_output_end(&handle);
3967 }
3968
3969 /*
3970  * task tracking -- fork/exit
3971  *
3972  * enabled by: attr.comm | attr.mmap | attr.mmap_data | attr.task
3973  */
3974
3975 struct perf_task_event {
3976         struct task_struct              *task;
3977         struct perf_event_context       *task_ctx;
3978
3979         struct {
3980                 struct perf_event_header        header;
3981
3982                 u32                             pid;
3983                 u32                             ppid;
3984                 u32                             tid;
3985                 u32                             ptid;
3986                 u64                             time;
3987         } event_id;
3988 };
3989
3990 static void perf_event_task_output(struct perf_event *event,
3991                                      struct perf_task_event *task_event)
3992 {
3993         struct perf_output_handle handle;
3994         struct perf_sample_data sample;
3995         struct task_struct *task = task_event->task;
3996         int ret, size = task_event->event_id.header.size;
3997
3998         perf_event_header__init_id(&task_event->event_id.header, &sample, event);
3999
4000         ret = perf_output_begin(&handle, event,
4001                                 task_event->event_id.header.size);
4002         if (ret)
4003                 goto out;
4004
4005         task_event->event_id.pid = perf_event_pid(event, task);
4006         task_event->event_id.ppid = perf_event_pid(event, current);
4007
4008         task_event->event_id.tid = perf_event_tid(event, task);
4009         task_event->event_id.ptid = perf_event_tid(event, current);
4010
4011         perf_output_put(&handle, task_event->event_id);
4012
4013         perf_event__output_id_sample(event, &handle, &sample);
4014
4015         perf_output_end(&handle);
4016 out:
4017         task_event->event_id.header.size = size;
4018 }
4019
4020 static int perf_event_task_match(struct perf_event *event)
4021 {
4022         if (event->state < PERF_EVENT_STATE_INACTIVE)
4023                 return 0;
4024
4025         if (!event_filter_match(event))
4026                 return 0;
4027
4028         if (event->attr.comm || event->attr.mmap ||
4029             event->attr.mmap_data || event->attr.task)
4030                 return 1;
4031
4032         return 0;
4033 }
4034
4035 static void perf_event_task_ctx(struct perf_event_context *ctx,
4036                                   struct perf_task_event *task_event)
4037 {
4038         struct perf_event *event;
4039
4040         list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4041                 if (perf_event_task_match(event))
4042                         perf_event_task_output(event, task_event);
4043         }
4044 }
4045
4046 static void perf_event_task_event(struct perf_task_event *task_event)
4047 {
4048         struct perf_cpu_context *cpuctx;
4049         struct perf_event_context *ctx;
4050         struct pmu *pmu;
4051         int ctxn;
4052
4053         rcu_read_lock();
4054         list_for_each_entry_rcu(pmu, &pmus, entry) {
4055                 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
4056                 if (cpuctx->active_pmu != pmu)
4057                         goto next;
4058                 perf_event_task_ctx(&cpuctx->ctx, task_event);
4059
4060                 ctx = task_event->task_ctx;
4061                 if (!ctx) {
4062                         ctxn = pmu->task_ctx_nr;
4063                         if (ctxn < 0)
4064                                 goto next;
4065                         ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4066                 }
4067                 if (ctx)
4068                         perf_event_task_ctx(ctx, task_event);
4069 next:
4070                 put_cpu_ptr(pmu->pmu_cpu_context);
4071         }
4072         rcu_read_unlock();
4073 }
4074
4075 static void perf_event_task(struct task_struct *task,
4076                               struct perf_event_context *task_ctx,
4077                               int new)
4078 {
4079         struct perf_task_event task_event;
4080
4081         if (!atomic_read(&nr_comm_events) &&
4082             !atomic_read(&nr_mmap_events) &&
4083             !atomic_read(&nr_task_events))
4084                 return;
4085
4086         task_event = (struct perf_task_event){
4087                 .task     = task,
4088                 .task_ctx = task_ctx,
4089                 .event_id    = {
4090                         .header = {
4091                                 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
4092                                 .misc = 0,
4093                                 .size = sizeof(task_event.event_id),
4094                         },
4095                         /* .pid  */
4096                         /* .ppid */
4097                         /* .tid  */
4098                         /* .ptid */
4099                         .time = perf_clock(),
4100                 },
4101         };
4102
4103         perf_event_task_event(&task_event);
4104 }
4105
4106 void perf_event_fork(struct task_struct *task)
4107 {
4108         perf_event_task(task, NULL, 1);
4109 }
4110
4111 /*
4112  * comm tracking
4113  */
4114
4115 struct perf_comm_event {
4116         struct task_struct      *task;
4117         char                    *comm;
4118         int                     comm_size;
4119
4120         struct {
4121                 struct perf_event_header        header;
4122
4123                 u32                             pid;
4124                 u32                             tid;
4125         } event_id;
4126 };
4127
4128 static void perf_event_comm_output(struct perf_event *event,
4129                                      struct perf_comm_event *comm_event)
4130 {
4131         struct perf_output_handle handle;
4132         struct perf_sample_data sample;
4133         int size = comm_event->event_id.header.size;
4134         int ret;
4135
4136         perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
4137         ret = perf_output_begin(&handle, event,
4138                                 comm_event->event_id.header.size);
4139
4140         if (ret)
4141                 goto out;
4142
4143         comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
4144         comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
4145
4146         perf_output_put(&handle, comm_event->event_id);
4147         __output_copy(&handle, comm_event->comm,
4148                                    comm_event->comm_size);
4149
4150         perf_event__output_id_sample(event, &handle, &sample);
4151
4152         perf_output_end(&handle);
4153 out:
4154         comm_event->event_id.header.size = size;
4155 }
4156
4157 static int perf_event_comm_match(struct perf_event *event)
4158 {
4159         if (event->state < PERF_EVENT_STATE_INACTIVE)
4160                 return 0;
4161
4162         if (!event_filter_match(event))
4163                 return 0;
4164
4165         if (event->attr.comm)
4166                 return 1;
4167
4168         return 0;
4169 }
4170
4171 static void perf_event_comm_ctx(struct perf_event_context *ctx,
4172                                   struct perf_comm_event *comm_event)
4173 {
4174         struct perf_event *event;
4175
4176         list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4177                 if (perf_event_comm_match(event))
4178                         perf_event_comm_output(event, comm_event);
4179         }
4180 }
4181
4182 static void perf_event_comm_event(struct perf_comm_event *comm_event)
4183 {
4184         struct perf_cpu_context *cpuctx;
4185         struct perf_event_context *ctx;
4186         char comm[TASK_COMM_LEN];
4187         unsigned int size;
4188         struct pmu *pmu;
4189         int ctxn;
4190
4191         memset(comm, 0, sizeof(comm));
4192         strlcpy(comm, comm_event->task->comm, sizeof(comm));
4193         size = ALIGN(strlen(comm)+1, sizeof(u64));
4194
4195         comm_event->comm = comm;
4196         comm_event->comm_size = size;
4197
4198         comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
4199         rcu_read_lock();
4200         list_for_each_entry_rcu(pmu, &pmus, entry) {
4201                 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
4202                 if (cpuctx->active_pmu != pmu)
4203                         goto next;
4204                 perf_event_comm_ctx(&cpuctx->ctx, comm_event);
4205
4206                 ctxn = pmu->task_ctx_nr;
4207                 if (ctxn < 0)
4208                         goto next;
4209
4210                 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4211                 if (ctx)
4212                         perf_event_comm_ctx(ctx, comm_event);
4213 next:
4214                 put_cpu_ptr(pmu->pmu_cpu_context);
4215         }
4216         rcu_read_unlock();
4217 }
4218
4219 void perf_event_comm(struct task_struct *task)
4220 {
4221         struct perf_comm_event comm_event;
4222         struct perf_event_context *ctx;
4223         int ctxn;
4224
4225         for_each_task_context_nr(ctxn) {
4226                 ctx = task->perf_event_ctxp[ctxn];
4227                 if (!ctx)
4228                         continue;
4229
4230                 perf_event_enable_on_exec(ctx);
4231         }
4232
4233         if (!atomic_read(&nr_comm_events))
4234                 return;
4235
4236         comm_event = (struct perf_comm_event){
4237                 .task   = task,
4238                 /* .comm      */
4239                 /* .comm_size */
4240                 .event_id  = {
4241                         .header = {
4242                                 .type = PERF_RECORD_COMM,
4243                                 .misc = 0,
4244                                 /* .size */
4245                         },
4246                         /* .pid */
4247                         /* .tid */
4248                 },
4249         };
4250
4251         perf_event_comm_event(&comm_event);
4252 }
4253
4254 /*
4255  * mmap tracking
4256  */
4257
4258 struct perf_mmap_event {
4259         struct vm_area_struct   *vma;
4260
4261         const char              *file_name;
4262         int                     file_size;
4263
4264         struct {
4265                 struct perf_event_header        header;
4266
4267                 u32                             pid;
4268                 u32                             tid;
4269                 u64                             start;
4270                 u64                             len;
4271                 u64                             pgoff;
4272         } event_id;
4273 };
4274
4275 static void perf_event_mmap_output(struct perf_event *event,
4276                                      struct perf_mmap_event *mmap_event)
4277 {
4278         struct perf_output_handle handle;
4279         struct perf_sample_data sample;
4280         int size = mmap_event->event_id.header.size;
4281         int ret;
4282
4283         perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
4284         ret = perf_output_begin(&handle, event,
4285                                 mmap_event->event_id.header.size);
4286         if (ret)
4287                 goto out;
4288
4289         mmap_event->event_id.pid = perf_event_pid(event, current);
4290         mmap_event->event_id.tid = perf_event_tid(event, current);
4291
4292         perf_output_put(&handle, mmap_event->event_id);
4293         __output_copy(&handle, mmap_event->file_name,
4294                                    mmap_event->file_size);
4295
4296         perf_event__output_id_sample(event, &handle, &sample);
4297
4298         perf_output_end(&handle);
4299 out:
4300         mmap_event->event_id.header.size = size;
4301 }
4302
4303 static int perf_event_mmap_match(struct perf_event *event,
4304                                    struct perf_mmap_event *mmap_event,
4305                                    int executable)
4306 {
4307         if (event->state < PERF_EVENT_STATE_INACTIVE)
4308                 return 0;
4309
4310         if (!event_filter_match(event))
4311                 return 0;
4312
4313         if ((!executable && event->attr.mmap_data) ||
4314             (executable && event->attr.mmap))
4315                 return 1;
4316
4317         return 0;
4318 }
4319
4320 static void perf_event_mmap_ctx(struct perf_event_context *ctx,
4321                                   struct perf_mmap_event *mmap_event,
4322                                   int executable)
4323 {
4324         struct perf_event *event;
4325
4326         list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4327                 if (perf_event_mmap_match(event, mmap_event, executable))
4328                         perf_event_mmap_output(event, mmap_event);
4329         }
4330 }
4331
4332 static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
4333 {
4334         struct perf_cpu_context *cpuctx;
4335         struct perf_event_context *ctx;
4336         struct vm_area_struct *vma = mmap_event->vma;
4337         struct file *file = vma->vm_file;
4338         unsigned int size;
4339         char tmp[16];
4340         char *buf = NULL;
4341         const char *name;
4342         struct pmu *pmu;
4343         int ctxn;
4344
4345         memset(tmp, 0, sizeof(tmp));
4346
4347         if (file) {
4348                 /*
4349                  * d_path works from the end of the rb backwards, so we
4350                  * need to add enough zero bytes after the string to handle
4351                  * the 64bit alignment we do later.
4352                  */
4353                 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
4354                 if (!buf) {
4355                         name = strncpy(tmp, "//enomem", sizeof(tmp));
4356                         goto got_name;
4357                 }
4358                 name = d_path(&file->f_path, buf, PATH_MAX);
4359                 if (IS_ERR(name)) {
4360                         name = strncpy(tmp, "//toolong", sizeof(tmp));
4361                         goto got_name;
4362                 }
4363         } else {
4364                 if (arch_vma_name(mmap_event->vma)) {
4365                         name = strncpy(tmp, arch_vma_name(mmap_event->vma),
4366                                        sizeof(tmp));
4367                         goto got_name;
4368                 }
4369
4370                 if (!vma->vm_mm) {
4371                         name = strncpy(tmp, "[vdso]", sizeof(tmp));
4372                         goto got_name;
4373                 } else if (vma->vm_start <= vma->vm_mm->start_brk &&
4374                                 vma->vm_end >= vma->vm_mm->brk) {
4375                         name = strncpy(tmp, "[heap]", sizeof(tmp));
4376                         goto got_name;
4377                 } else if (vma->vm_start <= vma->vm_mm->start_stack &&
4378                                 vma->vm_end >= vma->vm_mm->start_stack) {
4379                         name = strncpy(tmp, "[stack]", sizeof(tmp));
4380                         goto got_name;
4381                 }
4382
4383                 name = strncpy(tmp, "//anon", sizeof(tmp));
4384                 goto got_name;
4385         }
4386
4387 got_name:
4388         size = ALIGN(strlen(name)+1, sizeof(u64));
4389
4390         mmap_event->file_name = name;
4391         mmap_event->file_size = size;
4392
4393         mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
4394
4395         rcu_read_lock();
4396         list_for_each_entry_rcu(pmu, &pmus, entry) {
4397                 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
4398                 if (cpuctx->active_pmu != pmu)
4399                         goto next;
4400                 perf_event_mmap_ctx(&cpuctx->ctx, mmap_event,
4401                                         vma->vm_flags & VM_EXEC);
4402
4403                 ctxn = pmu->task_ctx_nr;
4404                 if (ctxn < 0)
4405                         goto next;
4406
4407                 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4408                 if (ctx) {
4409                         perf_event_mmap_ctx(ctx, mmap_event,
4410                                         vma->vm_flags & VM_EXEC);
4411                 }
4412 next:
4413                 put_cpu_ptr(pmu->pmu_cpu_context);
4414         }
4415         rcu_read_unlock();
4416
4417         kfree(buf);
4418 }
4419
4420 void perf_event_mmap(struct vm_area_struct *vma)
4421 {
4422         struct perf_mmap_event mmap_event;
4423
4424         if (!atomic_read(&nr_mmap_events))
4425                 return;
4426
4427         mmap_event = (struct perf_mmap_event){
4428                 .vma    = vma,
4429                 /* .file_name */
4430                 /* .file_size */
4431                 .event_id  = {
4432                         .header = {
4433                                 .type = PERF_RECORD_MMAP,
4434                                 .misc = PERF_RECORD_MISC_USER,
4435                                 /* .size */
4436                         },
4437                         /* .pid */
4438                         /* .tid */
4439                         .start  = vma->vm_start,
4440                         .len    = vma->vm_end - vma->vm_start,
4441                         .pgoff  = (u64)vma->vm_pgoff << PAGE_SHIFT,
4442                 },
4443         };
4444
4445         perf_event_mmap_event(&mmap_event);
4446 }
4447
4448 /*
4449  * IRQ throttle logging
4450  */
4451
4452 static void perf_log_throttle(struct perf_event *event, int enable)
4453 {
4454         struct perf_output_handle handle;
4455         struct perf_sample_data sample;
4456         int ret;
4457
4458         struct {
4459                 struct perf_event_header        header;
4460                 u64                             time;
4461                 u64                             id;
4462                 u64                             stream_id;
4463         } throttle_event = {
4464                 .header = {
4465                         .type = PERF_RECORD_THROTTLE,
4466                         .misc = 0,
4467                         .size = sizeof(throttle_event),
4468                 },
4469                 .time           = perf_clock(),
4470                 .id             = primary_event_id(event),
4471                 .stream_id      = event->id,
4472         };
4473
4474         if (enable)
4475                 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
4476
4477         perf_event_header__init_id(&throttle_event.header, &sample, event);
4478
4479         ret = perf_output_begin(&handle, event,
4480                                 throttle_event.header.size);
4481         if (ret)
4482                 return;
4483
4484         perf_output_put(&handle, throttle_event);
4485         perf_event__output_id_sample(event, &handle, &sample);
4486         perf_output_end(&handle);
4487 }
4488
4489 /*
4490  * Generic event overflow handling, sampling.
4491  */
4492
4493 static int __perf_event_overflow(struct perf_event *event,
4494                                    int throttle, struct perf_sample_data *data,
4495                                    struct pt_regs *regs)
4496 {
4497         int events = atomic_read(&event->event_limit);
4498         struct hw_perf_event *hwc = &event->hw;
4499         int ret = 0;
4500
4501         /*
4502          * Non-sampling counters might still use the PMI to fold short
4503          * hardware counters, ignore those.
4504          */
4505         if (unlikely(!is_sampling_event(event)))
4506                 return 0;
4507
4508         if (unlikely(hwc->interrupts >= max_samples_per_tick)) {
4509                 if (throttle) {
4510                         hwc->interrupts = MAX_INTERRUPTS;
4511                         perf_log_throttle(event, 0);
4512                         ret = 1;
4513                 }
4514         } else
4515                 hwc->interrupts++;
4516
4517         if (event->attr.freq) {
4518                 u64 now = perf_clock();
4519                 s64 delta = now - hwc->freq_time_stamp;
4520
4521                 hwc->freq_time_stamp = now;
4522
4523                 if (delta > 0 && delta < 2*TICK_NSEC)
4524                         perf_adjust_period(event, delta, hwc->last_period);
4525         }
4526
4527         /*
4528          * XXX event_limit might not quite work as expected on inherited
4529          * events
4530          */
4531
4532         event->pending_kill = POLL_IN;
4533         if (events && atomic_dec_and_test(&event->event_limit)) {
4534                 ret = 1;
4535                 event->pending_kill = POLL_HUP;
4536                 event->pending_disable = 1;
4537                 irq_work_queue(&event->pending);
4538         }
4539
4540         if (event->overflow_handler)
4541                 event->overflow_handler(event, data, regs);
4542         else
4543                 perf_event_output(event, data, regs);
4544
4545         if (event->fasync && event->pending_kill) {
4546                 event->pending_wakeup = 1;
4547                 irq_work_queue(&event->pending);
4548         }
4549
4550         return ret;
4551 }
4552
4553 int perf_event_overflow(struct perf_event *event,
4554                           struct perf_sample_data *data,
4555                           struct pt_regs *regs)
4556 {
4557         return __perf_event_overflow(event, 1, data, regs);
4558 }
4559
4560 /*
4561  * Generic software event infrastructure
4562  */
4563
4564 struct swevent_htable {
4565         struct swevent_hlist            *swevent_hlist;
4566         struct mutex                    hlist_mutex;
4567         int                             hlist_refcount;
4568
4569         /* Recursion avoidance in each contexts */
4570         int                             recursion[PERF_NR_CONTEXTS];
4571 };
4572
4573 static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
4574
4575 /*
4576  * We directly increment event->count and keep a second value in
4577  * event->hw.period_left to count intervals. This period event
4578  * is kept in the range [-sample_period, 0] so that we can use the
4579  * sign as trigger.
4580  */
4581
4582 static u64 perf_swevent_set_period(struct perf_event *event)
4583 {
4584         struct hw_perf_event *hwc = &event->hw;
4585         u64 period = hwc->last_period;
4586         u64 nr, offset;
4587         s64 old, val;
4588
4589         hwc->last_period = hwc->sample_period;
4590
4591 again:
4592         old = val = local64_read(&hwc->period_left);
4593         if (val < 0)
4594                 return 0;
4595
4596         nr = div64_u64(period + val, period);
4597         offset = nr * period;
4598         val -= offset;
4599         if (local64_cmpxchg(&hwc->period_left, old, val) != old)
4600                 goto again;
4601
4602         return nr;
4603 }
4604
4605 static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
4606                                     struct perf_sample_data *data,
4607                                     struct pt_regs *regs)
4608 {
4609         struct hw_perf_event *hwc = &event->hw;
4610         int throttle = 0;
4611
4612         if (!overflow)
4613                 overflow = perf_swevent_set_period(event);
4614
4615         if (hwc->interrupts == MAX_INTERRUPTS)
4616                 return;
4617
4618         for (; overflow; overflow--) {
4619                 if (__perf_event_overflow(event, throttle,
4620                                             data, regs)) {
4621                         /*
4622                          * We inhibit the overflow from happening when
4623                          * hwc->interrupts == MAX_INTERRUPTS.
4624                          */
4625                         break;
4626                 }
4627                 throttle = 1;
4628         }
4629 }
4630
4631 static void perf_swevent_event(struct perf_event *event, u64 nr,
4632                                struct perf_sample_data *data,
4633                                struct pt_regs *regs)
4634 {
4635         struct hw_perf_event *hwc = &event->hw;
4636
4637         local64_add(nr, &event->count);
4638
4639         if (!regs)
4640                 return;
4641
4642         if (!is_sampling_event(event))
4643                 return;
4644
4645         if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
4646                 data->period = nr;
4647                 return perf_swevent_overflow(event, 1, data, regs);
4648         } else
4649                 data->period = event->hw.last_period;
4650
4651         if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
4652                 return perf_swevent_overflow(event, 1, data, regs);
4653
4654         if (local64_add_negative(nr, &hwc->period_left))
4655                 return;
4656
4657         perf_swevent_overflow(event, 0, data, regs);
4658 }
4659
4660 static int perf_exclude_event(struct perf_event *event,
4661                               struct pt_regs *regs)
4662 {
4663         if (event->hw.state & PERF_HES_STOPPED)
4664                 return 1;
4665
4666         if (regs) {
4667                 if (event->attr.exclude_user && user_mode(regs))
4668                         return 1;
4669
4670                 if (event->attr.exclude_kernel && !user_mode(regs))
4671                         return 1;
4672         }
4673
4674         return 0;
4675 }
4676
4677 static int perf_swevent_match(struct perf_event *event,
4678                                 enum perf_type_id type,
4679                                 u32 event_id,
4680                                 struct perf_sample_data *data,
4681                                 struct pt_regs *regs)
4682 {
4683         if (event->attr.type != type)
4684                 return 0;
4685
4686         if (event->attr.config != event_id)
4687                 return 0;
4688
4689         if (perf_exclude_event(event, regs))
4690                 return 0;
4691
4692         return 1;
4693 }
4694
4695 static inline u64 swevent_hash(u64 type, u32 event_id)
4696 {
4697         u64 val = event_id | (type << 32);
4698
4699         return hash_64(val, SWEVENT_HLIST_BITS);
4700 }
4701
4702 static inline struct hlist_head *
4703 __find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
4704 {
4705         u64 hash = swevent_hash(type, event_id);
4706
4707         return &hlist->heads[hash];
4708 }
4709
4710 /* For the read side: events when they trigger */
4711 static inline struct hlist_head *
4712 find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
4713 {
4714         struct swevent_hlist *hlist;
4715
4716         hlist = rcu_dereference(swhash->swevent_hlist);
4717         if (!hlist)
4718                 return NULL;
4719
4720         return __find_swevent_head(hlist, type, event_id);
4721 }
4722
4723 /* For the event head insertion and removal in the hlist */
4724 static inline struct hlist_head *
4725 find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
4726 {
4727         struct swevent_hlist *hlist;
4728         u32 event_id = event->attr.config;
4729         u64 type = event->attr.type;
4730
4731         /*
4732          * Event scheduling is always serialized against hlist allocation
4733          * and release. Which makes the protected version suitable here.
4734          * The context lock guarantees that.
4735          */
4736         hlist = rcu_dereference_protected(swhash->swevent_hlist,
4737                                           lockdep_is_held(&event->ctx->lock));
4738         if (!hlist)
4739                 return NULL;
4740
4741         return __find_swevent_head(hlist, type, event_id);
4742 }
4743
4744 static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
4745                                     u64 nr,
4746                                     struct perf_sample_data *data,
4747                                     struct pt_regs *regs)
4748 {
4749         struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
4750         struct perf_event *event;
4751         struct hlist_node *node;
4752         struct hlist_head *head;
4753
4754         rcu_read_lock();
4755         head = find_swevent_head_rcu(swhash, type, event_id);
4756         if (!head)
4757                 goto end;
4758
4759         hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
4760                 if (perf_swevent_match(event, type, event_id, data, regs))
4761                         perf_swevent_event(event, nr, data, regs);
4762         }
4763 end:
4764         rcu_read_unlock();
4765 }
4766
4767 int perf_swevent_get_recursion_context(void)
4768 {
4769         struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
4770
4771         return get_recursion_context(swhash->recursion);
4772 }
4773 EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
4774
4775 inline void perf_swevent_put_recursion_context(int rctx)
4776 {
4777         struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
4778
4779         put_recursion_context(swhash->recursion, rctx);
4780 }
4781
4782 void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
4783 {
4784         struct perf_sample_data data;
4785         int rctx;
4786
4787         preempt_disable_notrace();
4788         rctx = perf_swevent_get_recursion_context();
4789         if (rctx < 0)
4790                 return;
4791
4792         perf_sample_data_init(&data, addr);
4793
4794         do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
4795
4796         perf_swevent_put_recursion_context(rctx);
4797         preempt_enable_notrace();
4798 }
4799
4800 static void perf_swevent_read(struct perf_event *event)
4801 {
4802 }
4803
4804 static int perf_swevent_add(struct perf_event *event, int flags)
4805 {
4806         struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
4807         struct hw_perf_event *hwc = &event->hw;
4808         struct hlist_head *head;
4809
4810         if (is_sampling_event(event)) {
4811                 hwc->last_period = hwc->sample_period;
4812                 perf_swevent_set_period(event);
4813         }
4814
4815         hwc->state = !(flags & PERF_EF_START);
4816
4817         head = find_swevent_head(swhash, event);
4818         if (WARN_ON_ONCE(!head))
4819                 return -EINVAL;
4820
4821         hlist_add_head_rcu(&event->hlist_entry, head);
4822
4823         return 0;
4824 }
4825
4826 static void perf_swevent_del(struct perf_event *event, int flags)
4827 {
4828         hlist_del_rcu(&event->hlist_entry);
4829 }
4830
4831 static void perf_swevent_start(struct perf_event *event, int flags)
4832 {
4833         event->hw.state = 0;
4834 }
4835
4836 static void perf_swevent_stop(struct perf_event *event, int flags)
4837 {
4838         event->hw.state = PERF_HES_STOPPED;
4839 }
4840
4841 /* Deref the hlist from the update side */
4842 static inline struct swevent_hlist *
4843 swevent_hlist_deref(struct swevent_htable *swhash)
4844 {
4845         return rcu_dereference_protected(swhash->swevent_hlist,
4846                                          lockdep_is_held(&swhash->hlist_mutex));
4847 }
4848
4849 static void swevent_hlist_release(struct swevent_htable *swhash)
4850 {
4851         struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
4852
4853         if (!hlist)
4854                 return;
4855
4856         rcu_assign_pointer(swhash->swevent_hlist, NULL);
4857         kfree_rcu(hlist, rcu_head);
4858 }
4859
4860 static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
4861 {
4862         struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
4863
4864         mutex_lock(&swhash->hlist_mutex);
4865
4866         if (!--swhash->hlist_refcount)
4867                 swevent_hlist_release(swhash);
4868
4869         mutex_unlock(&swhash->hlist_mutex);
4870 }
4871
4872 static void swevent_hlist_put(struct perf_event *event)
4873 {
4874         int cpu;
4875
4876         if (event->cpu != -1) {
4877                 swevent_hlist_put_cpu(event, event->cpu);
4878                 return;
4879         }
4880
4881         for_each_possible_cpu(cpu)
4882                 swevent_hlist_put_cpu(event, cpu);
4883 }
4884
4885 static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
4886 {
4887         struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
4888         int err = 0;
4889
4890         mutex_lock(&swhash->hlist_mutex);
4891
4892         if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
4893                 struct swevent_hlist *hlist;
4894
4895                 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
4896                 if (!hlist) {
4897                         err = -ENOMEM;
4898                         goto exit;
4899                 }
4900                 rcu_assign_pointer(swhash->swevent_hlist, hlist);
4901         }
4902         swhash->hlist_refcount++;
4903 exit:
4904         mutex_unlock(&swhash->hlist_mutex);
4905
4906         return err;
4907 }
4908
4909 static int swevent_hlist_get(struct perf_event *event)
4910 {
4911         int err;
4912         int cpu, failed_cpu;
4913
4914         if (event->cpu != -1)
4915                 return swevent_hlist_get_cpu(event, event->cpu);
4916
4917         get_online_cpus();
4918         for_each_possible_cpu(cpu) {
4919                 err = swevent_hlist_get_cpu(event, cpu);
4920                 if (err) {
4921                         failed_cpu = cpu;
4922                         goto fail;
4923                 }
4924         }
4925         put_online_cpus();
4926
4927         return 0;
4928 fail:
4929         for_each_possible_cpu(cpu) {
4930                 if (cpu == failed_cpu)
4931                         break;
4932                 swevent_hlist_put_cpu(event, cpu);
4933         }
4934
4935         put_online_cpus();
4936         return err;
4937 }
4938
4939 struct jump_label_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
4940
4941 static void sw_perf_event_destroy(struct perf_event *event)
4942 {
4943         u64 event_id = event->attr.config;
4944
4945         WARN_ON(event->parent);
4946
4947         jump_label_dec(&perf_swevent_enabled[event_id]);
4948         swevent_hlist_put(event);
4949 }
4950
4951 static int perf_swevent_init(struct perf_event *event)
4952 {
4953         int event_id = event->attr.config;
4954
4955         if (event->attr.type != PERF_TYPE_SOFTWARE)
4956                 return -ENOENT;
4957
4958         switch (event_id) {
4959         case PERF_COUNT_SW_CPU_CLOCK:
4960         case PERF_COUNT_SW_TASK_CLOCK:
4961                 return -ENOENT;
4962
4963         default:
4964                 break;
4965         }
4966
4967         if (event_id >= PERF_COUNT_SW_MAX)
4968                 return -ENOENT;
4969
4970         if (!event->parent) {
4971                 int err;
4972
4973                 err = swevent_hlist_get(event);
4974                 if (err)
4975                         return err;
4976
4977                 jump_label_inc(&perf_swevent_enabled[event_id]);
4978                 event->destroy = sw_perf_event_destroy;
4979         }
4980
4981         return 0;
4982 }
4983
4984 static struct pmu perf_swevent = {
4985         .task_ctx_nr    = perf_sw_context,
4986
4987         .event_init     = perf_swevent_init,
4988         .add            = perf_swevent_add,
4989         .del            = perf_swevent_del,
4990         .start          = perf_swevent_start,
4991         .stop           = perf_swevent_stop,
4992         .read           = perf_swevent_read,
4993 };
4994
4995 #ifdef CONFIG_EVENT_TRACING
4996
4997 static int perf_tp_filter_match(struct perf_event *event,
4998                                 struct perf_sample_data *data)
4999 {
5000         void *record = data->raw->data;
5001
5002         if (likely(!event->filter) || filter_match_preds(event->filter, record))
5003                 return 1;
5004         return 0;
5005 }
5006
5007 static int perf_tp_event_match(struct perf_event *event,
5008                                 struct perf_sample_data *data,
5009                                 struct pt_regs *regs)
5010 {
5011         if (event->hw.state & PERF_HES_STOPPED)
5012                 return 0;
5013         /*
5014          * All tracepoints are from kernel-space.
5015          */
5016         if (event->attr.exclude_kernel)
5017                 return 0;
5018
5019         if (!perf_tp_filter_match(event, data))
5020                 return 0;
5021
5022         return 1;
5023 }
5024
5025 void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
5026                    struct pt_regs *regs, struct hlist_head *head, int rctx)
5027 {
5028         struct perf_sample_data data;
5029         struct perf_event *event;
5030         struct hlist_node *node;
5031
5032         struct perf_raw_record raw = {
5033                 .size = entry_size,
5034                 .data = record,
5035         };
5036
5037         perf_sample_data_init(&data, addr);
5038         data.raw = &raw;
5039
5040         hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
5041                 if (perf_tp_event_match(event, &data, regs))
5042                         perf_swevent_event(event, count, &data, regs);
5043         }
5044
5045         perf_swevent_put_recursion_context(rctx);
5046 }
5047 EXPORT_SYMBOL_GPL(perf_tp_event);
5048
5049 static void tp_perf_event_destroy(struct perf_event *event)
5050 {
5051         perf_trace_destroy(event);
5052 }
5053
5054 static int perf_tp_event_init(struct perf_event *event)
5055 {
5056         int err;
5057
5058         if (event->attr.type != PERF_TYPE_TRACEPOINT)
5059                 return -ENOENT;
5060
5061         err = perf_trace_init(event);
5062         if (err)
5063                 return err;
5064
5065         event->destroy = tp_perf_event_destroy;
5066
5067         return 0;
5068 }
5069
5070 static struct pmu perf_tracepoint = {
5071         .task_ctx_nr    = perf_sw_context,
5072
5073         .event_init     = perf_tp_event_init,
5074         .add            = perf_trace_add,
5075         .del            = perf_trace_del,
5076         .start          = perf_swevent_start,
5077         .stop           = perf_swevent_stop,
5078         .read           = perf_swevent_read,
5079 };
5080
5081 static inline void perf_tp_register(void)
5082 {
5083         perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
5084 }
5085
5086 static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5087 {
5088         char *filter_str;
5089         int ret;
5090
5091         if (event->attr.type != PERF_TYPE_TRACEPOINT)
5092                 return -EINVAL;
5093
5094         filter_str = strndup_user(arg, PAGE_SIZE);
5095         if (IS_ERR(filter_str))
5096                 return PTR_ERR(filter_str);
5097
5098         ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
5099
5100         kfree(filter_str);
5101         return ret;
5102 }
5103
5104 static void perf_event_free_filter(struct perf_event *event)
5105 {
5106         ftrace_profile_free_filter(event);
5107 }
5108
5109 #else
5110
5111 static inline void perf_tp_register(void)
5112 {
5113 }
5114
5115 static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5116 {
5117         return -ENOENT;
5118 }
5119
5120 static void perf_event_free_filter(struct perf_event *event)
5121 {
5122 }
5123
5124 #endif /* CONFIG_EVENT_TRACING */
5125
5126 #ifdef CONFIG_HAVE_HW_BREAKPOINT
5127 void perf_bp_event(struct perf_event *bp, void *data)
5128 {
5129         struct perf_sample_data sample;
5130         struct pt_regs *regs = data;
5131
5132         perf_sample_data_init(&sample, bp->attr.bp_addr);
5133
5134         if (!bp->hw.state && !perf_exclude_event(bp, regs))
5135                 perf_swevent_event(bp, 1, &sample, regs);
5136 }
5137 #endif
5138
5139 /*
5140  * hrtimer based swevent callback
5141  */
5142
5143 static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
5144 {
5145         enum hrtimer_restart ret = HRTIMER_RESTART;
5146         struct perf_sample_data data;
5147         struct pt_regs *regs;
5148         struct perf_event *event;
5149         u64 period;
5150
5151         event = container_of(hrtimer, struct perf_event, hw.hrtimer);
5152
5153         if (event->state != PERF_EVENT_STATE_ACTIVE)
5154                 return HRTIMER_NORESTART;
5155
5156         event->pmu->read(event);
5157
5158         perf_sample_data_init(&data, 0);
5159         data.period = event->hw.last_period;
5160         regs = get_irq_regs();
5161
5162         if (regs && !perf_exclude_event(event, regs)) {
5163                 if (!(event->attr.exclude_idle && current->pid == 0))
5164                         if (perf_event_overflow(event, &data, regs))
5165                                 ret = HRTIMER_NORESTART;
5166         }
5167
5168         period = max_t(u64, 10000, event->hw.sample_period);
5169         hrtimer_forward_now(hrtimer, ns_to_ktime(period));
5170
5171         return ret;
5172 }
5173
5174 static void perf_swevent_start_hrtimer(struct perf_event *event)
5175 {
5176         struct hw_perf_event *hwc = &event->hw;
5177         s64 period;
5178
5179         if (!is_sampling_event(event))
5180                 return;
5181
5182         period = local64_read(&hwc->period_left);
5183         if (period) {
5184                 if (period < 0)
5185                         period = 10000;
5186
5187                 local64_set(&hwc->period_left, 0);
5188         } else {
5189                 period = max_t(u64, 10000, hwc->sample_period);
5190         }
5191         __hrtimer_start_range_ns(&hwc->hrtimer,
5192                                 ns_to_ktime(period), 0,
5193                                 HRTIMER_MODE_REL_PINNED, 0);
5194 }
5195
5196 static void perf_swevent_cancel_hrtimer(struct perf_event *event)
5197 {
5198         struct hw_perf_event *hwc = &event->hw;
5199
5200         if (is_sampling_event(event)) {
5201                 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
5202                 local64_set(&hwc->period_left, ktime_to_ns(remaining));
5203
5204                 hrtimer_cancel(&hwc->hrtimer);
5205         }
5206 }
5207
5208 static void perf_swevent_init_hrtimer(struct perf_event *event)
5209 {
5210         struct hw_perf_event *hwc = &event->hw;
5211
5212         if (!is_sampling_event(event))
5213                 return;
5214
5215         hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
5216         hwc->hrtimer.function = perf_swevent_hrtimer;
5217
5218         /*
5219          * Since hrtimers have a fixed rate, we can do a static freq->period
5220          * mapping and avoid the whole period adjust feedback stuff.
5221          */
5222         if (event->attr.freq) {
5223                 long freq = event->attr.sample_freq;
5224
5225                 event->attr.sample_period = NSEC_PER_SEC / freq;
5226                 hwc->sample_period = event->attr.sample_period;
5227                 local64_set(&hwc->period_left, hwc->sample_period);
5228                 event->attr.freq = 0;
5229         }
5230 }
5231
5232 /*
5233  * Software event: cpu wall time clock
5234  */
5235
5236 static void cpu_clock_event_update(struct perf_event *event)
5237 {
5238         s64 prev;
5239         u64 now;
5240
5241         now = local_clock();
5242         prev = local64_xchg(&event->hw.prev_count, now);
5243         local64_add(now - prev, &event->count);
5244 }
5245
5246 static void cpu_clock_event_start(struct perf_event *event, int flags)
5247 {
5248         local64_set(&event->hw.prev_count, local_clock());
5249         perf_swevent_start_hrtimer(event);
5250 }
5251
5252 static void cpu_clock_event_stop(struct perf_event *event, int flags)
5253 {
5254         perf_swevent_cancel_hrtimer(event);
5255         cpu_clock_event_update(event);
5256 }
5257
5258 static int cpu_clock_event_add(struct perf_event *event, int flags)
5259 {
5260         if (flags & PERF_EF_START)
5261                 cpu_clock_event_start(event, flags);
5262
5263         return 0;
5264 }
5265
5266 static void cpu_clock_event_del(struct perf_event *event, int flags)
5267 {
5268         cpu_clock_event_stop(event, flags);
5269 }
5270
5271 static void cpu_clock_event_read(struct perf_event *event)
5272 {
5273         cpu_clock_event_update(event);
5274 }
5275
5276 static int cpu_clock_event_init(struct perf_event *event)
5277 {
5278         if (event->attr.type != PERF_TYPE_SOFTWARE)
5279                 return -ENOENT;
5280
5281         if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
5282                 return -ENOENT;
5283
5284         perf_swevent_init_hrtimer(event);
5285
5286         return 0;
5287 }
5288
5289 static struct pmu perf_cpu_clock = {
5290         .task_ctx_nr    = perf_sw_context,
5291
5292         .event_init     = cpu_clock_event_init,
5293         .add            = cpu_clock_event_add,
5294         .del            = cpu_clock_event_del,
5295         .start          = cpu_clock_event_start,
5296         .stop           = cpu_clock_event_stop,
5297         .read           = cpu_clock_event_read,
5298 };
5299
5300 /*
5301  * Software event: task time clock
5302  */
5303
5304 static void task_clock_event_update(struct perf_event *event, u64 now)
5305 {
5306         u64 prev;
5307         s64 delta;
5308
5309         prev = local64_xchg(&event->hw.prev_count, now);
5310         delta = now - prev;
5311         local64_add(delta, &event->count);
5312 }
5313
5314 static void task_clock_event_start(struct perf_event *event, int flags)
5315 {
5316         local64_set(&event->hw.prev_count, event->ctx->time);
5317         perf_swevent_start_hrtimer(event);
5318 }
5319
5320 static void task_clock_event_stop(struct perf_event *event, int flags)
5321 {
5322         perf_swevent_cancel_hrtimer(event);
5323         task_clock_event_update(event, event->ctx->time);
5324 }
5325
5326 static int task_clock_event_add(struct perf_event *event, int flags)
5327 {
5328         if (flags & PERF_EF_START)
5329                 task_clock_event_start(event, flags);
5330
5331         return 0;
5332 }
5333
5334 static void task_clock_event_del(struct perf_event *event, int flags)
5335 {
5336         task_clock_event_stop(event, PERF_EF_UPDATE);
5337 }
5338
5339 static void task_clock_event_read(struct perf_event *event)
5340 {
5341         u64 now = perf_clock();
5342         u64 delta = now - event->ctx->timestamp;
5343         u64 time = event->ctx->time + delta;
5344
5345         task_clock_event_update(event, time);
5346 }
5347
5348 static int task_clock_event_init(struct perf_event *event)
5349 {
5350         if (event->attr.type != PERF_TYPE_SOFTWARE)
5351                 return -ENOENT;
5352
5353         if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
5354                 return -ENOENT;
5355
5356         perf_swevent_init_hrtimer(event);
5357
5358         return 0;
5359 }
5360
5361 static struct pmu perf_task_clock = {
5362         .task_ctx_nr    = perf_sw_context,
5363
5364         .event_init     = task_clock_event_init,
5365         .add            = task_clock_event_add,
5366         .del            = task_clock_event_del,
5367         .start          = task_clock_event_start,
5368         .stop           = task_clock_event_stop,
5369         .read           = task_clock_event_read,
5370 };
5371
5372 static void perf_pmu_nop_void(struct pmu *pmu)
5373 {
5374 }
5375
5376 static int perf_pmu_nop_int(struct pmu *pmu)
5377 {
5378         return 0;
5379 }
5380
5381 static void perf_pmu_start_txn(struct pmu *pmu)
5382 {
5383         perf_pmu_disable(pmu);
5384 }
5385
5386 static int perf_pmu_commit_txn(struct pmu *pmu)
5387 {
5388         perf_pmu_enable(pmu);
5389         return 0;
5390 }
5391
5392 static void perf_pmu_cancel_txn(struct pmu *pmu)
5393 {
5394         perf_pmu_enable(pmu);
5395 }
5396
5397 /*
5398  * Ensures all contexts with the same task_ctx_nr have the same
5399  * pmu_cpu_context too.
5400  */
5401 static void *find_pmu_context(int ctxn)
5402 {
5403         struct pmu *pmu;
5404
5405         if (ctxn < 0)
5406                 return NULL;
5407
5408         list_for_each_entry(pmu, &pmus, entry) {
5409                 if (pmu->task_ctx_nr == ctxn)
5410                         return pmu->pmu_cpu_context;
5411         }
5412
5413         return NULL;
5414 }
5415
5416 static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
5417 {
5418         int cpu;
5419
5420         for_each_possible_cpu(cpu) {
5421                 struct perf_cpu_context *cpuctx;
5422
5423                 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
5424
5425                 if (cpuctx->active_pmu == old_pmu)
5426                         cpuctx->active_pmu = pmu;
5427         }
5428 }
5429
5430 static void free_pmu_context(struct pmu *pmu)
5431 {
5432         struct pmu *i;
5433
5434         mutex_lock(&pmus_lock);
5435         /*
5436          * Like a real lame refcount.
5437          */
5438         list_for_each_entry(i, &pmus, entry) {
5439                 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
5440                         update_pmu_context(i, pmu);
5441                         goto out;
5442                 }
5443         }
5444
5445         free_percpu(pmu->pmu_cpu_context);
5446 out:
5447         mutex_unlock(&pmus_lock);
5448 }
5449 static struct idr pmu_idr;
5450
5451 static ssize_t
5452 type_show(struct device *dev, struct device_attribute *attr, char *page)
5453 {
5454         struct pmu *pmu = dev_get_drvdata(dev);
5455
5456         return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
5457 }
5458
5459 static struct device_attribute pmu_dev_attrs[] = {
5460        __ATTR_RO(type),
5461        __ATTR_NULL,
5462 };
5463
5464 static int pmu_bus_running;
5465 static struct bus_type pmu_bus = {
5466         .name           = "event_source",
5467         .dev_attrs      = pmu_dev_attrs,
5468 };
5469
5470 static void pmu_dev_release(struct device *dev)
5471 {
5472         kfree(dev);
5473 }
5474
5475 static int pmu_dev_alloc(struct pmu *pmu)
5476 {
5477         int ret = -ENOMEM;
5478
5479         pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
5480         if (!pmu->dev)
5481                 goto out;
5482
5483         device_initialize(pmu->dev);
5484         ret = dev_set_name(pmu->dev, "%s", pmu->name);
5485         if (ret)
5486                 goto free_dev;
5487
5488         dev_set_drvdata(pmu->dev, pmu);
5489         pmu->dev->bus = &pmu_bus;
5490         pmu->dev->release = pmu_dev_release;
5491         ret = device_add(pmu->dev);
5492         if (ret)
5493                 goto free_dev;
5494
5495 out:
5496         return ret;
5497
5498 free_dev:
5499         put_device(pmu->dev);
5500         goto out;
5501 }
5502
5503 static struct lock_class_key cpuctx_mutex;
5504 static struct lock_class_key cpuctx_lock;
5505
5506 int perf_pmu_register(struct pmu *pmu, char *name, int type)
5507 {
5508         int cpu, ret;
5509
5510         mutex_lock(&pmus_lock);
5511         ret = -ENOMEM;
5512         pmu->pmu_disable_count = alloc_percpu(int);
5513         if (!pmu->pmu_disable_count)
5514                 goto unlock;
5515
5516         pmu->type = -1;
5517         if (!name)
5518                 goto skip_type;
5519         pmu->name = name;
5520
5521         if (type < 0) {
5522                 int err = idr_pre_get(&pmu_idr, GFP_KERNEL);
5523                 if (!err)
5524                         goto free_pdc;
5525
5526                 err = idr_get_new_above(&pmu_idr, pmu, PERF_TYPE_MAX, &type);
5527                 if (err) {
5528                         ret = err;
5529                         goto free_pdc;
5530                 }
5531         }
5532         pmu->type = type;
5533
5534         if (pmu_bus_running) {
5535                 ret = pmu_dev_alloc(pmu);
5536                 if (ret)
5537                         goto free_idr;
5538         }
5539
5540 skip_type:
5541         pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
5542         if (pmu->pmu_cpu_context)
5543                 goto got_cpu_context;
5544
5545         pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
5546         if (!pmu->pmu_cpu_context)
5547                 goto free_dev;
5548
5549         for_each_possible_cpu(cpu) {
5550                 struct perf_cpu_context *cpuctx;
5551
5552                 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
5553                 __perf_event_init_context(&cpuctx->ctx);
5554                 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
5555                 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
5556                 cpuctx->ctx.type = cpu_context;
5557                 cpuctx->ctx.pmu = pmu;
5558                 cpuctx->jiffies_interval = 1;
5559                 INIT_LIST_HEAD(&cpuctx->rotation_list);
5560                 cpuctx->active_pmu = pmu;
5561         }
5562
5563 got_cpu_context:
5564         if (!pmu->start_txn) {
5565                 if (pmu->pmu_enable) {
5566                         /*
5567                          * If we have pmu_enable/pmu_disable calls, install
5568                          * transaction stubs that use that to try and batch
5569                          * hardware accesses.
5570                          */
5571                         pmu->start_txn  = perf_pmu_start_txn;
5572                         pmu->commit_txn = perf_pmu_commit_txn;
5573                         pmu->cancel_txn = perf_pmu_cancel_txn;
5574                 } else {
5575                         pmu->start_txn  = perf_pmu_nop_void;
5576                         pmu->commit_txn = perf_pmu_nop_int;
5577                         pmu->cancel_txn = perf_pmu_nop_void;
5578                 }
5579         }
5580
5581         if (!pmu->pmu_enable) {
5582                 pmu->pmu_enable  = perf_pmu_nop_void;
5583                 pmu->pmu_disable = perf_pmu_nop_void;
5584         }
5585
5586         list_add_rcu(&pmu->entry, &pmus);
5587         ret = 0;
5588 unlock:
5589         mutex_unlock(&pmus_lock);
5590
5591         return ret;
5592
5593 free_dev:
5594         device_del(pmu->dev);
5595         put_device(pmu->dev);
5596
5597 free_idr:
5598         if (pmu->type >= PERF_TYPE_MAX)
5599                 idr_remove(&pmu_idr, pmu->type);
5600
5601 free_pdc:
5602         free_percpu(pmu->pmu_disable_count);
5603         goto unlock;
5604 }
5605
5606 void perf_pmu_unregister(struct pmu *pmu)
5607 {
5608         mutex_lock(&pmus_lock);
5609         list_del_rcu(&pmu->entry);
5610         mutex_unlock(&pmus_lock);
5611
5612         /*
5613          * We dereference the pmu list under both SRCU and regular RCU, so
5614          * synchronize against both of those.
5615          */
5616         synchronize_srcu(&pmus_srcu);
5617         synchronize_rcu();
5618
5619         free_percpu(pmu->pmu_disable_count);
5620         if (pmu->type >= PERF_TYPE_MAX)
5621                 idr_remove(&pmu_idr, pmu->type);
5622         device_del(pmu->dev);
5623         put_device(pmu->dev);
5624         free_pmu_context(pmu);
5625 }
5626
5627 struct pmu *perf_init_event(struct perf_event *event)
5628 {
5629         struct pmu *pmu = NULL;
5630         int idx;
5631         int ret;
5632
5633         idx = srcu_read_lock(&pmus_srcu);
5634
5635         rcu_read_lock();
5636         pmu = idr_find(&pmu_idr, event->attr.type);
5637         rcu_read_unlock();
5638         if (pmu) {
5639                 event->pmu = pmu;
5640                 ret = pmu->event_init(event);
5641                 if (ret)
5642                         pmu = ERR_PTR(ret);
5643                 goto unlock;
5644         }
5645
5646         list_for_each_entry_rcu(pmu, &pmus, entry) {
5647                 event->pmu = pmu;
5648                 ret = pmu->event_init(event);
5649                 if (!ret)
5650                         goto unlock;
5651
5652                 if (ret != -ENOENT) {
5653                         pmu = ERR_PTR(ret);
5654                         goto unlock;
5655                 }
5656         }
5657         pmu = ERR_PTR(-ENOENT);
5658 unlock:
5659         srcu_read_unlock(&pmus_srcu, idx);
5660
5661         return pmu;
5662 }
5663
5664 /*
5665  * Allocate and initialize a event structure
5666  */
5667 static struct perf_event *
5668 perf_event_alloc(struct perf_event_attr *attr, int cpu,
5669                  struct task_struct *task,
5670                  struct perf_event *group_leader,
5671                  struct perf_event *parent_event,
5672                  perf_overflow_handler_t overflow_handler,
5673                  void *context)
5674 {
5675         struct pmu *pmu;
5676         struct perf_event *event;
5677         struct hw_perf_event *hwc;
5678         long err;
5679
5680         if ((unsigned)cpu >= nr_cpu_ids) {
5681                 if (!task || cpu != -1)
5682                         return ERR_PTR(-EINVAL);
5683         }
5684
5685         event = kzalloc(sizeof(*event), GFP_KERNEL);
5686         if (!event)
5687                 return ERR_PTR(-ENOMEM);
5688
5689         /*
5690          * Single events are their own group leaders, with an
5691          * empty sibling list:
5692          */
5693         if (!group_leader)
5694                 group_leader = event;
5695
5696         mutex_init(&event->child_mutex);
5697         INIT_LIST_HEAD(&event->child_list);
5698
5699         INIT_LIST_HEAD(&event->group_entry);
5700         INIT_LIST_HEAD(&event->event_entry);
5701         INIT_LIST_HEAD(&event->sibling_list);
5702         INIT_LIST_HEAD(&event->rb_entry);
5703
5704         init_waitqueue_head(&event->waitq);
5705         init_irq_work(&event->pending, perf_pending_event);
5706
5707         mutex_init(&event->mmap_mutex);
5708
5709         event->cpu              = cpu;
5710         event->attr             = *attr;
5711         event->group_leader     = group_leader;
5712         event->pmu              = NULL;
5713         event->oncpu            = -1;
5714
5715         event->parent           = parent_event;
5716
5717         event->ns               = get_pid_ns(current->nsproxy->pid_ns);
5718         event->id               = atomic64_inc_return(&perf_event_id);
5719
5720         event->state            = PERF_EVENT_STATE_INACTIVE;
5721
5722         if (task) {
5723                 event->attach_state = PERF_ATTACH_TASK;
5724 #ifdef CONFIG_HAVE_HW_BREAKPOINT
5725                 /*
5726                  * hw_breakpoint is a bit difficult here..
5727                  */
5728                 if (attr->type == PERF_TYPE_BREAKPOINT)
5729                         event->hw.bp_target = task;
5730 #endif
5731         }
5732
5733         if (!overflow_handler && parent_event) {
5734                 overflow_handler = parent_event->overflow_handler;
5735                 context = parent_event->overflow_handler_context;
5736         }
5737
5738         event->overflow_handler = overflow_handler;
5739         event->overflow_handler_context = context;
5740
5741         if (attr->disabled)
5742                 event->state = PERF_EVENT_STATE_OFF;
5743
5744         pmu = NULL;
5745
5746         hwc = &event->hw;
5747         hwc->sample_period = attr->sample_period;
5748         if (attr->freq && attr->sample_freq)
5749                 hwc->sample_period = 1;
5750         hwc->last_period = hwc->sample_period;
5751
5752         local64_set(&hwc->period_left, hwc->sample_period);
5753
5754         /*
5755          * we currently do not support PERF_FORMAT_GROUP on inherited events
5756          */
5757         if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
5758                 goto done;
5759
5760         pmu = perf_init_event(event);
5761
5762 done:
5763         err = 0;
5764         if (!pmu)
5765                 err = -EINVAL;
5766         else if (IS_ERR(pmu))
5767                 err = PTR_ERR(pmu);
5768
5769         if (err) {
5770                 if (event->ns)
5771                         put_pid_ns(event->ns);
5772                 kfree(event);
5773                 return ERR_PTR(err);
5774         }
5775
5776         if (!event->parent) {
5777                 if (event->attach_state & PERF_ATTACH_TASK)
5778                         jump_label_inc(&perf_sched_events);
5779                 if (event->attr.mmap || event->attr.mmap_data)
5780                         atomic_inc(&nr_mmap_events);
5781                 if (event->attr.comm)
5782                         atomic_inc(&nr_comm_events);
5783                 if (event->attr.task)
5784                         atomic_inc(&nr_task_events);
5785                 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
5786                         err = get_callchain_buffers();
5787                         if (err) {
5788                                 free_event(event);
5789                                 return ERR_PTR(err);
5790                         }
5791                 }
5792         }
5793
5794         return event;
5795 }
5796
5797 static int perf_copy_attr(struct perf_event_attr __user *uattr,
5798                           struct perf_event_attr *attr)
5799 {
5800         u32 size;
5801         int ret;
5802
5803         if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
5804                 return -EFAULT;
5805
5806         /*
5807          * zero the full structure, so that a short copy will be nice.
5808          */
5809         memset(attr, 0, sizeof(*attr));
5810
5811         ret = get_user(size, &uattr->size);
5812         if (ret)
5813                 return ret;
5814
5815         if (size > PAGE_SIZE)   /* silly large */
5816                 goto err_size;
5817
5818         if (!size)              /* abi compat */
5819                 size = PERF_ATTR_SIZE_VER0;
5820
5821         if (size < PERF_ATTR_SIZE_VER0)
5822                 goto err_size;
5823
5824         /*
5825          * If we're handed a bigger struct than we know of,
5826          * ensure all the unknown bits are 0 - i.e. new
5827          * user-space does not rely on any kernel feature
5828          * extensions we dont know about yet.
5829          */
5830         if (size > sizeof(*attr)) {
5831                 unsigned char __user *addr;
5832                 unsigned char __user *end;
5833                 unsigned char val;
5834
5835                 addr = (void __user *)uattr + sizeof(*attr);
5836                 end  = (void __user *)uattr + size;
5837
5838                 for (; addr < end; addr++) {
5839                         ret = get_user(val, addr);
5840                         if (ret)
5841                                 return ret;
5842                         if (val)
5843                                 goto err_size;
5844                 }
5845                 size = sizeof(*attr);
5846         }
5847
5848         ret = copy_from_user(attr, uattr, size);
5849         if (ret)
5850                 return -EFAULT;
5851
5852         if (attr->__reserved_1)
5853                 return -EINVAL;
5854
5855         if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
5856                 return -EINVAL;
5857
5858         if (attr->read_format & ~(PERF_FORMAT_MAX-1))
5859                 return -EINVAL;
5860
5861 out:
5862         return ret;
5863
5864 err_size:
5865         put_user(sizeof(*attr), &uattr->size);
5866         ret = -E2BIG;
5867         goto out;
5868 }
5869
5870 static int
5871 perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
5872 {
5873         struct ring_buffer *rb = NULL, *old_rb = NULL;
5874         int ret = -EINVAL;
5875
5876         if (!output_event)
5877                 goto set;
5878
5879         /* don't allow circular references */
5880         if (event == output_event)
5881                 goto out;
5882
5883         /*
5884          * Don't allow cross-cpu buffers
5885          */
5886         if (output_event->cpu != event->cpu)
5887                 goto out;
5888
5889         /*
5890          * If its not a per-cpu rb, it must be the same task.
5891          */
5892         if (output_event->cpu == -1 && output_event->ctx != event->ctx)
5893                 goto out;
5894
5895 set:
5896         mutex_lock(&event->mmap_mutex);
5897         /* Can't redirect output if we've got an active mmap() */
5898         if (atomic_read(&event->mmap_count))
5899                 goto unlock;
5900
5901         if (output_event) {
5902                 /* get the rb we want to redirect to */
5903                 rb = ring_buffer_get(output_event);
5904                 if (!rb)
5905                         goto unlock;
5906         }
5907
5908         old_rb = event->rb;
5909         rcu_assign_pointer(event->rb, rb);
5910         if (old_rb)
5911                 ring_buffer_detach(event, old_rb);
5912         ret = 0;
5913 unlock:
5914         mutex_unlock(&event->mmap_mutex);
5915
5916         if (old_rb)
5917                 ring_buffer_put(old_rb);
5918 out:
5919         return ret;
5920 }
5921
5922 /**
5923  * sys_perf_event_open - open a performance event, associate it to a task/cpu
5924  *
5925  * @attr_uptr:  event_id type attributes for monitoring/sampling
5926  * @pid:                target pid
5927  * @cpu:                target cpu
5928  * @group_fd:           group leader event fd
5929  */
5930 SYSCALL_DEFINE5(perf_event_open,
5931                 struct perf_event_attr __user *, attr_uptr,
5932                 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
5933 {
5934         struct perf_event *group_leader = NULL, *output_event = NULL;
5935         struct perf_event *event, *sibling;
5936         struct perf_event_attr attr;
5937         struct perf_event_context *ctx;
5938         struct file *event_file = NULL;
5939         struct file *group_file = NULL;
5940         struct task_struct *task = NULL;
5941         struct pmu *pmu;
5942         int event_fd;
5943         int move_group = 0;
5944         int fput_needed = 0;
5945         int err;
5946
5947         /* for future expandability... */
5948         if (flags & ~PERF_FLAG_ALL)
5949                 return -EINVAL;
5950
5951         err = perf_copy_attr(attr_uptr, &attr);
5952         if (err)
5953                 return err;
5954
5955         if (!attr.exclude_kernel) {
5956                 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
5957                         return -EACCES;
5958         }
5959
5960         if (attr.freq) {
5961                 if (attr.sample_freq > sysctl_perf_event_sample_rate)
5962                         return -EINVAL;
5963         }
5964
5965         /*
5966          * In cgroup mode, the pid argument is used to pass the fd
5967          * opened to the cgroup directory in cgroupfs. The cpu argument
5968          * designates the cpu on which to monitor threads from that
5969          * cgroup.
5970          */
5971         if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
5972                 return -EINVAL;
5973
5974         event_fd = get_unused_fd_flags(O_RDWR);
5975         if (event_fd < 0)
5976                 return event_fd;
5977
5978         if (group_fd != -1) {
5979                 group_leader = perf_fget_light(group_fd, &fput_needed);
5980                 if (IS_ERR(group_leader)) {
5981                         err = PTR_ERR(group_leader);
5982                         goto err_fd;
5983                 }
5984                 group_file = group_leader->filp;
5985                 if (flags & PERF_FLAG_FD_OUTPUT)
5986                         output_event = group_leader;
5987                 if (flags & PERF_FLAG_FD_NO_GROUP)
5988                         group_leader = NULL;
5989         }
5990
5991         if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
5992                 task = find_lively_task_by_vpid(pid);
5993                 if (IS_ERR(task)) {
5994                         err = PTR_ERR(task);
5995                         goto err_group_fd;
5996                 }
5997         }
5998
5999         event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
6000                                  NULL, NULL);
6001         if (IS_ERR(event)) {
6002                 err = PTR_ERR(event);
6003                 goto err_task;
6004         }
6005
6006         if (flags & PERF_FLAG_PID_CGROUP) {
6007                 err = perf_cgroup_connect(pid, event, &attr, group_leader);
6008                 if (err)
6009                         goto err_alloc;
6010                 /*
6011                  * one more event:
6012                  * - that has cgroup constraint on event->cpu
6013                  * - that may need work on context switch
6014                  */
6015                 atomic_inc(&per_cpu(perf_cgroup_events, event->cpu));
6016                 jump_label_inc(&perf_sched_events);
6017         }
6018
6019         /*
6020          * Special case software events and allow them to be part of
6021          * any hardware group.
6022          */
6023         pmu = event->pmu;
6024
6025         if (group_leader &&
6026             (is_software_event(event) != is_software_event(group_leader))) {
6027                 if (is_software_event(event)) {
6028                         /*
6029                          * If event and group_leader are not both a software
6030                          * event, and event is, then group leader is not.
6031                          *
6032                          * Allow the addition of software events to !software
6033                          * groups, this is safe because software events never
6034                          * fail to schedule.
6035                          */
6036                         pmu = group_leader->pmu;
6037                 } else if (is_software_event(group_leader) &&
6038                            (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
6039                         /*
6040                          * In case the group is a pure software group, and we
6041                          * try to add a hardware event, move the whole group to
6042                          * the hardware context.
6043                          */
6044                         move_group = 1;
6045                 }
6046         }
6047
6048         /*
6049          * Get the target context (task or percpu):
6050          */
6051         ctx = find_get_context(pmu, task, cpu);
6052         if (IS_ERR(ctx)) {
6053                 err = PTR_ERR(ctx);
6054                 goto err_alloc;
6055         }
6056
6057         if (task) {
6058                 put_task_struct(task);
6059                 task = NULL;
6060         }
6061
6062         /*
6063          * Look up the group leader (we will attach this event to it):
6064          */
6065         if (group_leader) {
6066                 err = -EINVAL;
6067
6068                 /*
6069                  * Do not allow a recursive hierarchy (this new sibling
6070                  * becoming part of another group-sibling):
6071                  */
6072                 if (group_leader->group_leader != group_leader)
6073                         goto err_context;
6074                 /*
6075                  * Do not allow to attach to a group in a different
6076                  * task or CPU context:
6077                  */
6078                 if (move_group) {
6079                         if (group_leader->ctx->type != ctx->type)
6080                                 goto err_context;
6081                 } else {
6082                         if (group_leader->ctx != ctx)
6083                                 goto err_context;
6084                 }
6085
6086                 /*
6087                  * Only a group leader can be exclusive or pinned
6088                  */
6089                 if (attr.exclusive || attr.pinned)
6090                         goto err_context;
6091         }
6092
6093         if (output_event) {
6094                 err = perf_event_set_output(event, output_event);
6095                 if (err)
6096                         goto err_context;
6097         }
6098
6099         event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
6100         if (IS_ERR(event_file)) {
6101                 err = PTR_ERR(event_file);
6102                 goto err_context;
6103         }
6104
6105         if (move_group) {
6106                 struct perf_event_context *gctx = group_leader->ctx;
6107
6108                 mutex_lock(&gctx->mutex);
6109                 perf_remove_from_context(group_leader);
6110                 list_for_each_entry(sibling, &group_leader->sibling_list,
6111                                     group_entry) {
6112                         perf_remove_from_context(sibling);
6113                         put_ctx(gctx);
6114                 }
6115                 mutex_unlock(&gctx->mutex);
6116                 put_ctx(gctx);
6117         }
6118
6119         event->filp = event_file;
6120         WARN_ON_ONCE(ctx->parent_ctx);
6121         mutex_lock(&ctx->mutex);
6122
6123         if (move_group) {
6124                 perf_install_in_context(ctx, group_leader, cpu);
6125                 get_ctx(ctx);
6126                 list_for_each_entry(sibling, &group_leader->sibling_list,
6127                                     group_entry) {
6128                         perf_install_in_context(ctx, sibling, cpu);
6129                         get_ctx(ctx);
6130                 }
6131         }
6132
6133         perf_install_in_context(ctx, event, cpu);
6134         ++ctx->generation;
6135         perf_unpin_context(ctx);
6136         mutex_unlock(&ctx->mutex);
6137
6138         event->owner = current;
6139
6140         mutex_lock(&current->perf_event_mutex);
6141         list_add_tail(&event->owner_entry, &current->perf_event_list);
6142         mutex_unlock(&current->perf_event_mutex);
6143
6144         /*
6145          * Precalculate sample_data sizes
6146          */
6147         perf_event__header_size(event);
6148         perf_event__id_header_size(event);
6149
6150         /*
6151          * Drop the reference on the group_event after placing the
6152          * new event on the sibling_list. This ensures destruction
6153          * of the group leader will find the pointer to itself in
6154          * perf_group_detach().
6155          */
6156         fput_light(group_file, fput_needed);
6157         fd_install(event_fd, event_file);
6158         return event_fd;
6159
6160 err_context:
6161         perf_unpin_context(ctx);
6162         put_ctx(ctx);
6163 err_alloc:
6164         free_event(event);
6165 err_task:
6166         if (task)
6167                 put_task_struct(task);
6168 err_group_fd:
6169         fput_light(group_file, fput_needed);
6170 err_fd:
6171         put_unused_fd(event_fd);
6172         return err;
6173 }
6174
6175 /**
6176  * perf_event_create_kernel_counter
6177  *
6178  * @attr: attributes of the counter to create
6179  * @cpu: cpu in which the counter is bound
6180  * @task: task to profile (NULL for percpu)
6181  */
6182 struct perf_event *
6183 perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
6184                                  struct task_struct *task,
6185                                  perf_overflow_handler_t overflow_handler,
6186                                  void *context)
6187 {
6188         struct perf_event_context *ctx;
6189         struct perf_event *event;
6190         int err;
6191
6192         /*
6193          * Get the target context (task or percpu):
6194          */
6195
6196         event = perf_event_alloc(attr, cpu, task, NULL, NULL,
6197                                  overflow_handler, context);
6198         if (IS_ERR(event)) {
6199                 err = PTR_ERR(event);
6200                 goto err;
6201         }
6202
6203         ctx = find_get_context(event->pmu, task, cpu);
6204         if (IS_ERR(ctx)) {
6205                 err = PTR_ERR(ctx);
6206                 goto err_free;
6207         }
6208
6209         event->filp = NULL;
6210         WARN_ON_ONCE(ctx->parent_ctx);
6211         mutex_lock(&ctx->mutex);
6212         perf_install_in_context(ctx, event, cpu);
6213         ++ctx->generation;
6214         perf_unpin_context(ctx);
6215         mutex_unlock(&ctx->mutex);
6216
6217         return event;
6218
6219 err_free:
6220         free_event(event);
6221 err:
6222         return ERR_PTR(err);
6223 }
6224 EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
6225
6226 static void sync_child_event(struct perf_event *child_event,
6227                                struct task_struct *child)
6228 {
6229         struct perf_event *parent_event = child_event->parent;
6230         u64 child_val;
6231
6232         if (child_event->attr.inherit_stat)
6233                 perf_event_read_event(child_event, child);
6234
6235         child_val = perf_event_count(child_event);
6236
6237         /*
6238          * Add back the child's count to the parent's count:
6239          */
6240         atomic64_add(child_val, &parent_event->child_count);
6241         atomic64_add(child_event->total_time_enabled,
6242                      &parent_event->child_total_time_enabled);
6243         atomic64_add(child_event->total_time_running,
6244                      &parent_event->child_total_time_running);
6245
6246         /*
6247          * Remove this event from the parent's list
6248          */
6249         WARN_ON_ONCE(parent_event->ctx->parent_ctx);
6250         mutex_lock(&parent_event->child_mutex);
6251         list_del_init(&child_event->child_list);
6252         mutex_unlock(&parent_event->child_mutex);
6253
6254         /*
6255          * Release the parent event, if this was the last
6256          * reference to it.
6257          */
6258         fput(parent_event->filp);
6259 }
6260
6261 static void
6262 __perf_event_exit_task(struct perf_event *child_event,
6263                          struct perf_event_context *child_ctx,
6264                          struct task_struct *child)
6265 {
6266         if (child_event->parent) {
6267                 raw_spin_lock_irq(&child_ctx->lock);
6268                 perf_group_detach(child_event);
6269                 raw_spin_unlock_irq(&child_ctx->lock);
6270         }
6271
6272         perf_remove_from_context(child_event);
6273
6274         /*
6275          * It can happen that the parent exits first, and has events
6276          * that are still around due to the child reference. These
6277          * events need to be zapped.
6278          */
6279         if (child_event->parent) {
6280                 sync_child_event(child_event, child);
6281                 free_event(child_event);
6282         }
6283 }
6284
6285 static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
6286 {
6287         struct perf_event *child_event, *tmp;
6288         struct perf_event_context *child_ctx;
6289         unsigned long flags;
6290
6291         if (likely(!child->perf_event_ctxp[ctxn])) {
6292                 perf_event_task(child, NULL, 0);
6293                 return;
6294         }
6295
6296         local_irq_save(flags);
6297         /*
6298          * We can't reschedule here because interrupts are disabled,
6299          * and either child is current or it is a task that can't be
6300          * scheduled, so we are now safe from rescheduling changing
6301          * our context.
6302          */
6303         child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
6304
6305         /*
6306          * Take the context lock here so that if find_get_context is
6307          * reading child->perf_event_ctxp, we wait until it has
6308          * incremented the context's refcount before we do put_ctx below.
6309          */
6310         raw_spin_lock(&child_ctx->lock);
6311         task_ctx_sched_out(child_ctx);
6312         child->perf_event_ctxp[ctxn] = NULL;
6313         /*
6314          * If this context is a clone; unclone it so it can't get
6315          * swapped to another process while we're removing all
6316          * the events from it.
6317          */
6318         unclone_ctx(child_ctx);
6319         update_context_time(child_ctx);
6320         raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
6321
6322         /*
6323          * Report the task dead after unscheduling the events so that we
6324          * won't get any samples after PERF_RECORD_EXIT. We can however still
6325          * get a few PERF_RECORD_READ events.
6326          */
6327         perf_event_task(child, child_ctx, 0);
6328
6329         /*
6330          * We can recurse on the same lock type through:
6331          *
6332          *   __perf_event_exit_task()
6333          *     sync_child_event()
6334          *       fput(parent_event->filp)
6335          *         perf_release()
6336          *           mutex_lock(&ctx->mutex)
6337          *
6338          * But since its the parent context it won't be the same instance.
6339          */
6340         mutex_lock(&child_ctx->mutex);
6341
6342 again:
6343         list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
6344                                  group_entry)
6345                 __perf_event_exit_task(child_event, child_ctx, child);
6346
6347         list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
6348                                  group_entry)
6349                 __perf_event_exit_task(child_event, child_ctx, child);
6350
6351         /*
6352          * If the last event was a group event, it will have appended all
6353          * its siblings to the list, but we obtained 'tmp' before that which
6354          * will still point to the list head terminating the iteration.
6355          */
6356         if (!list_empty(&child_ctx->pinned_groups) ||
6357             !list_empty(&child_ctx->flexible_groups))
6358                 goto again;
6359
6360         mutex_unlock(&child_ctx->mutex);
6361
6362         put_ctx(child_ctx);
6363 }
6364
6365 /*
6366  * When a child task exits, feed back event values to parent events.
6367  */
6368 void perf_event_exit_task(struct task_struct *child)
6369 {
6370         struct perf_event *event, *tmp;
6371         int ctxn;
6372
6373         mutex_lock(&child->perf_event_mutex);
6374         list_for_each_entry_safe(event, tmp, &child->perf_event_list,
6375                                  owner_entry) {
6376                 list_del_init(&event->owner_entry);
6377
6378                 /*
6379                  * Ensure the list deletion is visible before we clear
6380                  * the owner, closes a race against perf_release() where
6381                  * we need to serialize on the owner->perf_event_mutex.
6382                  */
6383                 smp_wmb();
6384                 event->owner = NULL;
6385         }
6386         mutex_unlock(&child->perf_event_mutex);
6387
6388         for_each_task_context_nr(ctxn)
6389                 perf_event_exit_task_context(child, ctxn);
6390 }
6391
6392 static void perf_free_event(struct perf_event *event,
6393                             struct perf_event_context *ctx)
6394 {
6395         struct perf_event *parent = event->parent;
6396
6397         if (WARN_ON_ONCE(!parent))
6398                 return;
6399
6400         mutex_lock(&parent->child_mutex);
6401         list_del_init(&event->child_list);
6402         mutex_unlock(&parent->child_mutex);
6403
6404         fput(parent->filp);
6405
6406         perf_group_detach(event);
6407         list_del_event(event, ctx);
6408         free_event(event);
6409 }
6410
6411 /*
6412  * free an unexposed, unused context as created by inheritance by
6413  * perf_event_init_task below, used by fork() in case of fail.
6414  */
6415 void perf_event_free_task(struct task_struct *task)
6416 {
6417         struct perf_event_context *ctx;
6418         struct perf_event *event, *tmp;
6419         int ctxn;
6420
6421         for_each_task_context_nr(ctxn) {
6422                 ctx = task->perf_event_ctxp[ctxn];
6423                 if (!ctx)
6424                         continue;
6425
6426                 mutex_lock(&ctx->mutex);
6427 again:
6428                 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
6429                                 group_entry)
6430                         perf_free_event(event, ctx);
6431
6432                 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
6433                                 group_entry)
6434                         perf_free_event(event, ctx);
6435
6436                 if (!list_empty(&ctx->pinned_groups) ||
6437                                 !list_empty(&ctx->flexible_groups))
6438                         goto again;
6439
6440                 mutex_unlock(&ctx->mutex);
6441
6442                 put_ctx(ctx);
6443         }
6444 }
6445
6446 void perf_event_delayed_put(struct task_struct *task)
6447 {
6448         int ctxn;
6449
6450         for_each_task_context_nr(ctxn)
6451                 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
6452 }
6453
6454 /*
6455  * inherit a event from parent task to child task:
6456  */
6457 static struct perf_event *
6458 inherit_event(struct perf_event *parent_event,
6459               struct task_struct *parent,
6460               struct perf_event_context *parent_ctx,
6461               struct task_struct *child,
6462               struct perf_event *group_leader,
6463               struct perf_event_context *child_ctx)
6464 {
6465         struct perf_event *child_event;
6466         unsigned long flags;
6467
6468         /*
6469          * Instead of creating recursive hierarchies of events,
6470          * we link inherited events back to the original parent,
6471          * which has a filp for sure, which we use as the reference
6472          * count:
6473          */
6474         if (parent_event->parent)
6475                 parent_event = parent_event->parent;
6476
6477         child_event = perf_event_alloc(&parent_event->attr,
6478                                            parent_event->cpu,
6479                                            child,
6480                                            group_leader, parent_event,
6481                                            NULL, NULL);
6482         if (IS_ERR(child_event))
6483                 return child_event;
6484         get_ctx(child_ctx);
6485
6486         /*
6487          * Make the child state follow the state of the parent event,
6488          * not its attr.disabled bit.  We hold the parent's mutex,
6489          * so we won't race with perf_event_{en, dis}able_family.
6490          */
6491         if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
6492                 child_event->state = PERF_EVENT_STATE_INACTIVE;
6493         else
6494                 child_event->state = PERF_EVENT_STATE_OFF;
6495
6496         if (parent_event->attr.freq) {
6497                 u64 sample_period = parent_event->hw.sample_period;
6498                 struct hw_perf_event *hwc = &child_event->hw;
6499
6500                 hwc->sample_period = sample_period;
6501                 hwc->last_period   = sample_period;
6502
6503                 local64_set(&hwc->period_left, sample_period);
6504         }
6505
6506         child_event->ctx = child_ctx;
6507         child_event->overflow_handler = parent_event->overflow_handler;
6508         child_event->overflow_handler_context
6509                 = parent_event->overflow_handler_context;
6510
6511         /*
6512          * Precalculate sample_data sizes
6513          */
6514         perf_event__header_size(child_event);
6515         perf_event__id_header_size(child_event);
6516
6517         /*
6518          * Link it up in the child's context:
6519          */
6520         raw_spin_lock_irqsave(&child_ctx->lock, flags);
6521         add_event_to_ctx(child_event, child_ctx);
6522         raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
6523
6524         /*
6525          * Get a reference to the parent filp - we will fput it
6526          * when the child event exits. This is safe to do because
6527          * we are in the parent and we know that the filp still
6528          * exists and has a nonzero count:
6529          */
6530         atomic_long_inc(&parent_event->filp->f_count);
6531
6532         /*
6533          * Link this into the parent event's child list
6534          */
6535         WARN_ON_ONCE(parent_event->ctx->parent_ctx);
6536         mutex_lock(&parent_event->child_mutex);
6537         list_add_tail(&child_event->child_list, &parent_event->child_list);
6538         mutex_unlock(&parent_event->child_mutex);
6539
6540         return child_event;
6541 }
6542
6543 static int inherit_group(struct perf_event *parent_event,
6544               struct task_struct *parent,
6545               struct perf_event_context *parent_ctx,
6546               struct task_struct *child,
6547               struct perf_event_context *child_ctx)
6548 {
6549         struct perf_event *leader;
6550         struct perf_event *sub;
6551         struct perf_event *child_ctr;
6552
6553         leader = inherit_event(parent_event, parent, parent_ctx,
6554                                  child, NULL, child_ctx);
6555         if (IS_ERR(leader))
6556                 return PTR_ERR(leader);
6557         list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
6558                 child_ctr = inherit_event(sub, parent, parent_ctx,
6559                                             child, leader, child_ctx);
6560                 if (IS_ERR(child_ctr))
6561                         return PTR_ERR(child_ctr);
6562         }
6563         return 0;
6564 }
6565
6566 static int
6567 inherit_task_group(struct perf_event *event, struct task_struct *parent,
6568                    struct perf_event_context *parent_ctx,
6569                    struct task_struct *child, int ctxn,
6570                    int *inherited_all)
6571 {
6572         int ret;
6573         struct perf_event_context *child_ctx;
6574
6575         if (!event->attr.inherit) {
6576                 *inherited_all = 0;
6577                 return 0;
6578         }
6579
6580         child_ctx = child->perf_event_ctxp[ctxn];
6581         if (!child_ctx) {
6582                 /*
6583                  * This is executed from the parent task context, so
6584                  * inherit events that have been marked for cloning.
6585                  * First allocate and initialize a context for the
6586                  * child.
6587                  */
6588
6589                 child_ctx = alloc_perf_context(event->pmu, child);
6590                 if (!child_ctx)
6591                         return -ENOMEM;
6592
6593                 child->perf_event_ctxp[ctxn] = child_ctx;
6594         }
6595
6596         ret = inherit_group(event, parent, parent_ctx,
6597                             child, child_ctx);
6598
6599         if (ret)
6600                 *inherited_all = 0;
6601
6602         return ret;
6603 }
6604
6605 /*
6606  * Initialize the perf_event context in task_struct
6607  */
6608 int perf_event_init_context(struct task_struct *child, int ctxn)
6609 {
6610         struct perf_event_context *child_ctx, *parent_ctx;
6611         struct perf_event_context *cloned_ctx;
6612         struct perf_event *event;
6613         struct task_struct *parent = current;
6614         int inherited_all = 1;
6615         unsigned long flags;
6616         int ret = 0;
6617
6618         if (likely(!parent->perf_event_ctxp[ctxn]))
6619                 return 0;
6620
6621         /*
6622          * If the parent's context is a clone, pin it so it won't get
6623          * swapped under us.
6624          */
6625         parent_ctx = perf_pin_task_context(parent, ctxn);
6626
6627         /*
6628          * No need to check if parent_ctx != NULL here; since we saw
6629          * it non-NULL earlier, the only reason for it to become NULL
6630          * is if we exit, and since we're currently in the middle of
6631          * a fork we can't be exiting at the same time.
6632          */
6633
6634         /*
6635          * Lock the parent list. No need to lock the child - not PID
6636          * hashed yet and not running, so nobody can access it.
6637          */
6638         mutex_lock(&parent_ctx->mutex);
6639
6640         /*
6641          * We dont have to disable NMIs - we are only looking at
6642          * the list, not manipulating it:
6643          */
6644         list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
6645                 ret = inherit_task_group(event, parent, parent_ctx,
6646                                          child, ctxn, &inherited_all);
6647                 if (ret)
6648                         break;
6649         }
6650
6651         /*
6652          * We can't hold ctx->lock when iterating the ->flexible_group list due
6653          * to allocations, but we need to prevent rotation because
6654          * rotate_ctx() will change the list from interrupt context.
6655          */
6656         raw_spin_lock_irqsave(&parent_ctx->lock, flags);
6657         parent_ctx->rotate_disable = 1;
6658         raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
6659
6660         list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
6661                 ret = inherit_task_group(event, parent, parent_ctx,
6662                                          child, ctxn, &inherited_all);
6663                 if (ret)
6664                         break;
6665         }
6666
6667         raw_spin_lock_irqsave(&parent_ctx->lock, flags);
6668         parent_ctx->rotate_disable = 0;
6669
6670         child_ctx = child->perf_event_ctxp[ctxn];
6671
6672         if (child_ctx && inherited_all) {
6673                 /*
6674                  * Mark the child context as a clone of the parent
6675                  * context, or of whatever the parent is a clone of.
6676                  *
6677                  * Note that if the parent is a clone, the holding of
6678                  * parent_ctx->lock avoids it from being uncloned.
6679                  */
6680                 cloned_ctx = parent_ctx->parent_ctx;
6681                 if (cloned_ctx) {
6682                         child_ctx->parent_ctx = cloned_ctx;
6683                         child_ctx->parent_gen = parent_ctx->parent_gen;
6684                 } else {
6685                         child_ctx->parent_ctx = parent_ctx;
6686                         child_ctx->parent_gen = parent_ctx->generation;
6687                 }
6688                 get_ctx(child_ctx->parent_ctx);
6689         }
6690
6691         raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
6692         mutex_unlock(&parent_ctx->mutex);
6693
6694         perf_unpin_context(parent_ctx);
6695         put_ctx(parent_ctx);
6696
6697         return ret;
6698 }
6699
6700 /*
6701  * Initialize the perf_event context in task_struct
6702  */
6703 int perf_event_init_task(struct task_struct *child)
6704 {
6705         int ctxn, ret;
6706
6707         memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
6708         mutex_init(&child->perf_event_mutex);
6709         INIT_LIST_HEAD(&child->perf_event_list);
6710
6711         for_each_task_context_nr(ctxn) {
6712                 ret = perf_event_init_context(child, ctxn);
6713                 if (ret)
6714                         return ret;
6715         }
6716
6717         return 0;
6718 }
6719
6720 static void __init perf_event_init_all_cpus(void)
6721 {
6722         struct swevent_htable *swhash;
6723         int cpu;
6724
6725         for_each_possible_cpu(cpu) {
6726                 swhash = &per_cpu(swevent_htable, cpu);
6727                 mutex_init(&swhash->hlist_mutex);
6728                 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
6729         }
6730 }
6731
6732 static void __cpuinit perf_event_init_cpu(int cpu)
6733 {
6734         struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
6735
6736         mutex_lock(&swhash->hlist_mutex);
6737         if (swhash->hlist_refcount > 0) {
6738                 struct swevent_hlist *hlist;
6739
6740                 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
6741                 WARN_ON(!hlist);
6742                 rcu_assign_pointer(swhash->swevent_hlist, hlist);
6743         }
6744         mutex_unlock(&swhash->hlist_mutex);
6745 }
6746
6747 #if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
6748 static void perf_pmu_rotate_stop(struct pmu *pmu)
6749 {
6750         struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
6751
6752         WARN_ON(!irqs_disabled());
6753
6754         list_del_init(&cpuctx->rotation_list);
6755 }
6756
6757 static void __perf_event_exit_context(void *__info)
6758 {
6759         struct perf_event_context *ctx = __info;
6760         struct perf_event *event, *tmp;
6761
6762         perf_pmu_rotate_stop(ctx->pmu);
6763
6764         list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
6765                 __perf_remove_from_context(event);
6766         list_for_each_entry_safe(event, tmp, &ctx->flexible_groups, group_entry)
6767                 __perf_remove_from_context(event);
6768 }
6769
6770 static void perf_event_exit_cpu_context(int cpu)
6771 {
6772         struct perf_event_context *ctx;
6773         struct pmu *pmu;
6774         int idx;
6775
6776         idx = srcu_read_lock(&pmus_srcu);
6777         list_for_each_entry_rcu(pmu, &pmus, entry) {
6778                 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
6779
6780                 mutex_lock(&ctx->mutex);
6781                 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
6782                 mutex_unlock(&ctx->mutex);
6783         }
6784         srcu_read_unlock(&pmus_srcu, idx);
6785 }
6786
6787 static void perf_event_exit_cpu(int cpu)
6788 {
6789         struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
6790
6791         mutex_lock(&swhash->hlist_mutex);
6792         swevent_hlist_release(swhash);
6793         mutex_unlock(&swhash->hlist_mutex);
6794
6795         perf_event_exit_cpu_context(cpu);
6796 }
6797 #else
6798 static inline void perf_event_exit_cpu(int cpu) { }
6799 #endif
6800
6801 static int
6802 perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
6803 {
6804         int cpu;
6805
6806         for_each_online_cpu(cpu)
6807                 perf_event_exit_cpu(cpu);
6808
6809         return NOTIFY_OK;
6810 }
6811
6812 /*
6813  * Run the perf reboot notifier at the very last possible moment so that
6814  * the generic watchdog code runs as long as possible.
6815  */
6816 static struct notifier_block perf_reboot_notifier = {
6817         .notifier_call = perf_reboot,
6818         .priority = INT_MIN,
6819 };
6820
6821 static int __cpuinit
6822 perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
6823 {
6824         unsigned int cpu = (long)hcpu;
6825
6826         switch (action & ~CPU_TASKS_FROZEN) {
6827
6828         case CPU_UP_PREPARE:
6829         case CPU_DOWN_FAILED:
6830                 perf_event_init_cpu(cpu);
6831                 break;
6832
6833         case CPU_UP_CANCELED:
6834         case CPU_DOWN_PREPARE:
6835                 perf_event_exit_cpu(cpu);
6836                 break;
6837
6838         default:
6839                 break;
6840         }
6841
6842         return NOTIFY_OK;
6843 }
6844
6845 void __init perf_event_init(void)
6846 {
6847         int ret;
6848
6849         idr_init(&pmu_idr);
6850
6851         perf_event_init_all_cpus();
6852         init_srcu_struct(&pmus_srcu);
6853         perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
6854         perf_pmu_register(&perf_cpu_clock, NULL, -1);
6855         perf_pmu_register(&perf_task_clock, NULL, -1);
6856         perf_tp_register();
6857         perf_cpu_notifier(perf_cpu_notify);
6858         register_reboot_notifier(&perf_reboot_notifier);
6859
6860         ret = init_hw_breakpoint();
6861         WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
6862 }
6863
6864 static int __init perf_event_sysfs_init(void)
6865 {
6866         struct pmu *pmu;
6867         int ret;
6868
6869         mutex_lock(&pmus_lock);
6870
6871         ret = bus_register(&pmu_bus);
6872         if (ret)
6873                 goto unlock;
6874
6875         list_for_each_entry(pmu, &pmus, entry) {
6876                 if (!pmu->name || pmu->type < 0)
6877                         continue;
6878
6879                 ret = pmu_dev_alloc(pmu);
6880                 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
6881         }
6882         pmu_bus_running = 1;
6883         ret = 0;
6884
6885 unlock:
6886         mutex_unlock(&pmus_lock);
6887
6888         return ret;
6889 }
6890 device_initcall(perf_event_sysfs_init);
6891
6892 #ifdef CONFIG_CGROUP_PERF
6893 static struct cgroup_subsys_state *perf_cgroup_create(
6894         struct cgroup_subsys *ss, struct cgroup *cont)
6895 {
6896         struct perf_cgroup *jc;
6897
6898         jc = kzalloc(sizeof(*jc), GFP_KERNEL);
6899         if (!jc)
6900                 return ERR_PTR(-ENOMEM);
6901
6902         jc->info = alloc_percpu(struct perf_cgroup_info);
6903         if (!jc->info) {
6904                 kfree(jc);
6905                 return ERR_PTR(-ENOMEM);
6906         }
6907
6908         return &jc->css;
6909 }
6910
6911 static void perf_cgroup_destroy(struct cgroup_subsys *ss,
6912                                 struct cgroup *cont)
6913 {
6914         struct perf_cgroup *jc;
6915         jc = container_of(cgroup_subsys_state(cont, perf_subsys_id),
6916                           struct perf_cgroup, css);
6917         free_percpu(jc->info);
6918         kfree(jc);
6919 }
6920
6921 static int __perf_cgroup_move(void *info)
6922 {
6923         struct task_struct *task = info;
6924         perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
6925         return 0;
6926 }
6927
6928 static void
6929 perf_cgroup_attach_task(struct cgroup *cgrp, struct task_struct *task)
6930 {
6931         task_function_call(task, __perf_cgroup_move, task);
6932 }
6933
6934 static void perf_cgroup_exit(struct cgroup_subsys *ss, struct cgroup *cgrp,
6935                 struct cgroup *old_cgrp, struct task_struct *task)
6936 {
6937         /*
6938          * cgroup_exit() is called in the copy_process() failure path.
6939          * Ignore this case since the task hasn't ran yet, this avoids
6940          * trying to poke a half freed task state from generic code.
6941          */
6942         if (!(task->flags & PF_EXITING))
6943                 return;
6944
6945         perf_cgroup_attach_task(cgrp, task);
6946 }
6947
6948 struct cgroup_subsys perf_subsys = {
6949         .name           = "perf_event",
6950         .subsys_id      = perf_subsys_id,
6951         .create         = perf_cgroup_create,
6952         .destroy        = perf_cgroup_destroy,
6953         .exit           = perf_cgroup_exit,
6954         .attach_task    = perf_cgroup_attach_task,
6955 };
6956 #endif /* CONFIG_CGROUP_PERF */