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