ipv4: initialize fib_trie prior to register_netdev_notifier call.
[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_REALCREDS))
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 static void perf_output_read_group(struct perf_output_handle *handle,
4244                             struct perf_event *event,
4245                             u64 enabled, u64 running)
4246 {
4247         struct perf_event *leader = event->group_leader, *sub;
4248         u64 read_format = event->attr.read_format;
4249         u64 values[5];
4250         int n = 0;
4251
4252         values[n++] = 1 + leader->nr_siblings;
4253
4254         if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
4255                 values[n++] = enabled;
4256
4257         if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
4258                 values[n++] = running;
4259
4260         if (leader != event)
4261                 leader->pmu->read(leader);
4262
4263         values[n++] = perf_event_count(leader);
4264         if (read_format & PERF_FORMAT_ID)
4265                 values[n++] = primary_event_id(leader);
4266
4267         __output_copy(handle, values, n * sizeof(u64));
4268
4269         list_for_each_entry(sub, &leader->sibling_list, group_entry) {
4270                 n = 0;
4271
4272                 if (sub != event)
4273                         sub->pmu->read(sub);
4274
4275                 values[n++] = perf_event_count(sub);
4276                 if (read_format & PERF_FORMAT_ID)
4277                         values[n++] = primary_event_id(sub);
4278
4279                 __output_copy(handle, values, n * sizeof(u64));
4280         }
4281 }
4282
4283 #define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
4284                                  PERF_FORMAT_TOTAL_TIME_RUNNING)
4285
4286 /*
4287  * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
4288  *
4289  * The problem is that its both hard and excessively expensive to iterate the
4290  * child list, not to mention that its impossible to IPI the children running
4291  * on another CPU, from interrupt/NMI context.
4292  */
4293 static void perf_output_read(struct perf_output_handle *handle,
4294                              struct perf_event *event)
4295 {
4296         u64 enabled = 0, running = 0;
4297         u64 read_format = event->attr.read_format;
4298
4299         /*
4300          * compute total_time_enabled, total_time_running
4301          * based on snapshot values taken when the event
4302          * was last scheduled in.
4303          *
4304          * we cannot simply called update_context_time()
4305          * because of locking issue as we are called in
4306          * NMI context
4307          */
4308         if (read_format & PERF_FORMAT_TOTAL_TIMES)
4309                 calc_timer_values(event, &enabled, &running);
4310
4311         if (event->attr.read_format & PERF_FORMAT_GROUP)
4312                 perf_output_read_group(handle, event, enabled, running);
4313         else
4314                 perf_output_read_one(handle, event, enabled, running);
4315 }
4316
4317 void perf_output_sample(struct perf_output_handle *handle,
4318                         struct perf_event_header *header,
4319                         struct perf_sample_data *data,
4320                         struct perf_event *event)
4321 {
4322         u64 sample_type = data->type;
4323
4324         perf_output_put(handle, *header);
4325
4326         if (sample_type & PERF_SAMPLE_IP)
4327                 perf_output_put(handle, data->ip);
4328
4329         if (sample_type & PERF_SAMPLE_TID)
4330                 perf_output_put(handle, data->tid_entry);
4331
4332         if (sample_type & PERF_SAMPLE_TIME)
4333                 perf_output_put(handle, data->time);
4334
4335         if (sample_type & PERF_SAMPLE_ADDR)
4336                 perf_output_put(handle, data->addr);
4337
4338         if (sample_type & PERF_SAMPLE_ID)
4339                 perf_output_put(handle, data->id);
4340
4341         if (sample_type & PERF_SAMPLE_STREAM_ID)
4342                 perf_output_put(handle, data->stream_id);
4343
4344         if (sample_type & PERF_SAMPLE_CPU)
4345                 perf_output_put(handle, data->cpu_entry);
4346
4347         if (sample_type & PERF_SAMPLE_PERIOD)
4348                 perf_output_put(handle, data->period);
4349
4350         if (sample_type & PERF_SAMPLE_READ)
4351                 perf_output_read(handle, event);
4352
4353         if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4354                 if (data->callchain) {
4355                         int size = 1;
4356
4357                         if (data->callchain)
4358                                 size += data->callchain->nr;
4359
4360                         size *= sizeof(u64);
4361
4362                         __output_copy(handle, data->callchain, size);
4363                 } else {
4364                         u64 nr = 0;
4365                         perf_output_put(handle, nr);
4366                 }
4367         }
4368
4369         if (sample_type & PERF_SAMPLE_RAW) {
4370                 if (data->raw) {
4371                         perf_output_put(handle, data->raw->size);
4372                         __output_copy(handle, data->raw->data,
4373                                            data->raw->size);
4374                 } else {
4375                         struct {
4376                                 u32     size;
4377                                 u32     data;
4378                         } raw = {
4379                                 .size = sizeof(u32),
4380                                 .data = 0,
4381                         };
4382                         perf_output_put(handle, raw);
4383                 }
4384         }
4385
4386         if (!event->attr.watermark) {
4387                 int wakeup_events = event->attr.wakeup_events;
4388
4389                 if (wakeup_events) {
4390                         struct ring_buffer *rb = handle->rb;
4391                         int events = local_inc_return(&rb->events);
4392
4393                         if (events >= wakeup_events) {
4394                                 local_sub(wakeup_events, &rb->events);
4395                                 local_inc(&rb->wakeup);
4396                         }
4397                 }
4398         }
4399 }
4400
4401 void perf_prepare_sample(struct perf_event_header *header,
4402                          struct perf_sample_data *data,
4403                          struct perf_event *event,
4404                          struct pt_regs *regs)
4405 {
4406         u64 sample_type = event->attr.sample_type;
4407
4408         header->type = PERF_RECORD_SAMPLE;
4409         header->size = sizeof(*header) + event->header_size;
4410
4411         header->misc = 0;
4412         header->misc |= perf_misc_flags(regs);
4413
4414         __perf_event_header__init_id(header, data, event);
4415
4416         if (sample_type & PERF_SAMPLE_IP)
4417                 data->ip = perf_instruction_pointer(regs);
4418
4419         if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4420                 int size = 1;
4421
4422                 data->callchain = perf_callchain(regs);
4423
4424                 if (data->callchain)
4425                         size += data->callchain->nr;
4426
4427                 header->size += size * sizeof(u64);
4428         }
4429
4430         if (sample_type & PERF_SAMPLE_RAW) {
4431                 int size = sizeof(u32);
4432
4433                 if (data->raw)
4434                         size += data->raw->size;
4435                 else
4436                         size += sizeof(u32);
4437
4438                 WARN_ON_ONCE(size & (sizeof(u64)-1));
4439                 header->size += size;
4440         }
4441 }
4442
4443 static void perf_event_output(struct perf_event *event,
4444                                 struct perf_sample_data *data,
4445                                 struct pt_regs *regs)
4446 {
4447         struct perf_output_handle handle;
4448         struct perf_event_header header;
4449
4450         /* protect the callchain buffers */
4451         rcu_read_lock();
4452
4453         perf_prepare_sample(&header, data, event, regs);
4454
4455         if (perf_output_begin(&handle, event, header.size))
4456                 goto exit;
4457
4458         perf_output_sample(&handle, &header, data, event);
4459
4460         perf_output_end(&handle);
4461
4462 exit:
4463         rcu_read_unlock();
4464 }
4465
4466 /*
4467  * read event_id
4468  */
4469
4470 struct perf_read_event {
4471         struct perf_event_header        header;
4472
4473         u32                             pid;
4474         u32                             tid;
4475 };
4476
4477 static void
4478 perf_event_read_event(struct perf_event *event,
4479                         struct task_struct *task)
4480 {
4481         struct perf_output_handle handle;
4482         struct perf_sample_data sample;
4483         struct perf_read_event read_event = {
4484                 .header = {
4485                         .type = PERF_RECORD_READ,
4486                         .misc = 0,
4487                         .size = sizeof(read_event) + event->read_size,
4488                 },
4489                 .pid = perf_event_pid(event, task),
4490                 .tid = perf_event_tid(event, task),
4491         };
4492         int ret;
4493
4494         perf_event_header__init_id(&read_event.header, &sample, event);
4495         ret = perf_output_begin(&handle, event, read_event.header.size);
4496         if (ret)
4497                 return;
4498
4499         perf_output_put(&handle, read_event);
4500         perf_output_read(&handle, event);
4501         perf_event__output_id_sample(event, &handle, &sample);
4502
4503         perf_output_end(&handle);
4504 }
4505
4506 /*
4507  * task tracking -- fork/exit
4508  *
4509  * enabled by: attr.comm | attr.mmap | attr.mmap_data | attr.task
4510  */
4511
4512 struct perf_task_event {
4513         struct task_struct              *task;
4514         struct perf_event_context       *task_ctx;
4515
4516         struct {
4517                 struct perf_event_header        header;
4518
4519                 u32                             pid;
4520                 u32                             ppid;
4521                 u32                             tid;
4522                 u32                             ptid;
4523                 u64                             time;
4524         } event_id;
4525 };
4526
4527 static void perf_event_task_output(struct perf_event *event,
4528                                      struct perf_task_event *task_event)
4529 {
4530         struct perf_output_handle handle;
4531         struct perf_sample_data sample;
4532         struct task_struct *task = task_event->task;
4533         int ret, size = task_event->event_id.header.size;
4534
4535         perf_event_header__init_id(&task_event->event_id.header, &sample, event);
4536
4537         ret = perf_output_begin(&handle, event,
4538                                 task_event->event_id.header.size);
4539         if (ret)
4540                 goto out;
4541
4542         task_event->event_id.pid = perf_event_pid(event, task);
4543         task_event->event_id.ppid = perf_event_pid(event, current);
4544
4545         task_event->event_id.tid = perf_event_tid(event, task);
4546         task_event->event_id.ptid = perf_event_tid(event, current);
4547
4548         perf_output_put(&handle, task_event->event_id);
4549
4550         perf_event__output_id_sample(event, &handle, &sample);
4551
4552         perf_output_end(&handle);
4553 out:
4554         task_event->event_id.header.size = size;
4555 }
4556
4557 static int perf_event_task_match(struct perf_event *event)
4558 {
4559         if (event->state < PERF_EVENT_STATE_INACTIVE)
4560                 return 0;
4561
4562         if (!event_filter_match(event))
4563                 return 0;
4564
4565         if (event->attr.comm || event->attr.mmap ||
4566             event->attr.mmap_data || event->attr.task)
4567                 return 1;
4568
4569         return 0;
4570 }
4571
4572 static void perf_event_task_ctx(struct perf_event_context *ctx,
4573                                   struct perf_task_event *task_event)
4574 {
4575         struct perf_event *event;
4576
4577         list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4578                 if (perf_event_task_match(event))
4579                         perf_event_task_output(event, task_event);
4580         }
4581 }
4582
4583 static void perf_event_task_event(struct perf_task_event *task_event)
4584 {
4585         struct perf_cpu_context *cpuctx;
4586         struct perf_event_context *ctx;
4587         struct pmu *pmu;
4588         int ctxn;
4589
4590         rcu_read_lock();
4591         list_for_each_entry_rcu(pmu, &pmus, entry) {
4592                 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
4593                 if (cpuctx->unique_pmu != pmu)
4594                         goto next;
4595                 perf_event_task_ctx(&cpuctx->ctx, task_event);
4596
4597                 ctx = task_event->task_ctx;
4598                 if (!ctx) {
4599                         ctxn = pmu->task_ctx_nr;
4600                         if (ctxn < 0)
4601                                 goto next;
4602                         ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4603                 }
4604                 if (ctx)
4605                         perf_event_task_ctx(ctx, task_event);
4606 next:
4607                 put_cpu_ptr(pmu->pmu_cpu_context);
4608         }
4609         rcu_read_unlock();
4610 }
4611
4612 static void perf_event_task(struct task_struct *task,
4613                               struct perf_event_context *task_ctx,
4614                               int new)
4615 {
4616         struct perf_task_event task_event;
4617
4618         if (!atomic_read(&nr_comm_events) &&
4619             !atomic_read(&nr_mmap_events) &&
4620             !atomic_read(&nr_task_events))
4621                 return;
4622
4623         task_event = (struct perf_task_event){
4624                 .task     = task,
4625                 .task_ctx = task_ctx,
4626                 .event_id    = {
4627                         .header = {
4628                                 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
4629                                 .misc = 0,
4630                                 .size = sizeof(task_event.event_id),
4631                         },
4632                         /* .pid  */
4633                         /* .ppid */
4634                         /* .tid  */
4635                         /* .ptid */
4636                         .time = perf_clock(),
4637                 },
4638         };
4639
4640         perf_event_task_event(&task_event);
4641 }
4642
4643 void perf_event_fork(struct task_struct *task)
4644 {
4645         perf_event_task(task, NULL, 1);
4646 }
4647
4648 /*
4649  * comm tracking
4650  */
4651
4652 struct perf_comm_event {
4653         struct task_struct      *task;
4654         char                    *comm;
4655         int                     comm_size;
4656
4657         struct {
4658                 struct perf_event_header        header;
4659
4660                 u32                             pid;
4661                 u32                             tid;
4662         } event_id;
4663 };
4664
4665 static void perf_event_comm_output(struct perf_event *event,
4666                                      struct perf_comm_event *comm_event)
4667 {
4668         struct perf_output_handle handle;
4669         struct perf_sample_data sample;
4670         int size = comm_event->event_id.header.size;
4671         int ret;
4672
4673         perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
4674         ret = perf_output_begin(&handle, event,
4675                                 comm_event->event_id.header.size);
4676
4677         if (ret)
4678                 goto out;
4679
4680         comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
4681         comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
4682
4683         perf_output_put(&handle, comm_event->event_id);
4684         __output_copy(&handle, comm_event->comm,
4685                                    comm_event->comm_size);
4686
4687         perf_event__output_id_sample(event, &handle, &sample);
4688
4689         perf_output_end(&handle);
4690 out:
4691         comm_event->event_id.header.size = size;
4692 }
4693
4694 static int perf_event_comm_match(struct perf_event *event)
4695 {
4696         if (event->state < PERF_EVENT_STATE_INACTIVE)
4697                 return 0;
4698
4699         if (!event_filter_match(event))
4700                 return 0;
4701
4702         if (event->attr.comm)
4703                 return 1;
4704
4705         return 0;
4706 }
4707
4708 static void perf_event_comm_ctx(struct perf_event_context *ctx,
4709                                   struct perf_comm_event *comm_event)
4710 {
4711         struct perf_event *event;
4712
4713         list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4714                 if (perf_event_comm_match(event))
4715                         perf_event_comm_output(event, comm_event);
4716         }
4717 }
4718
4719 static void perf_event_comm_event(struct perf_comm_event *comm_event)
4720 {
4721         struct perf_cpu_context *cpuctx;
4722         struct perf_event_context *ctx;
4723         char comm[TASK_COMM_LEN];
4724         unsigned int size;
4725         struct pmu *pmu;
4726         int ctxn;
4727
4728         memset(comm, 0, sizeof(comm));
4729         strlcpy(comm, comm_event->task->comm, sizeof(comm));
4730         size = ALIGN(strlen(comm)+1, sizeof(u64));
4731
4732         comm_event->comm = comm;
4733         comm_event->comm_size = size;
4734
4735         comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
4736         rcu_read_lock();
4737         list_for_each_entry_rcu(pmu, &pmus, entry) {
4738                 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
4739                 if (cpuctx->unique_pmu != pmu)
4740                         goto next;
4741                 perf_event_comm_ctx(&cpuctx->ctx, comm_event);
4742
4743                 ctxn = pmu->task_ctx_nr;
4744                 if (ctxn < 0)
4745                         goto next;
4746
4747                 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4748                 if (ctx)
4749                         perf_event_comm_ctx(ctx, comm_event);
4750 next:
4751                 put_cpu_ptr(pmu->pmu_cpu_context);
4752         }
4753         rcu_read_unlock();
4754 }
4755
4756 void perf_event_comm(struct task_struct *task)
4757 {
4758         struct perf_comm_event comm_event;
4759         struct perf_event_context *ctx;
4760         int ctxn;
4761
4762         for_each_task_context_nr(ctxn) {
4763                 ctx = task->perf_event_ctxp[ctxn];
4764                 if (!ctx)
4765                         continue;
4766
4767                 perf_event_enable_on_exec(ctx);
4768         }
4769
4770         if (!atomic_read(&nr_comm_events))
4771                 return;
4772
4773         comm_event = (struct perf_comm_event){
4774                 .task   = task,
4775                 /* .comm      */
4776                 /* .comm_size */
4777                 .event_id  = {
4778                         .header = {
4779                                 .type = PERF_RECORD_COMM,
4780                                 .misc = 0,
4781                                 /* .size */
4782                         },
4783                         /* .pid */
4784                         /* .tid */
4785                 },
4786         };
4787
4788         perf_event_comm_event(&comm_event);
4789 }
4790
4791 /*
4792  * mmap tracking
4793  */
4794
4795 struct perf_mmap_event {
4796         struct vm_area_struct   *vma;
4797
4798         const char              *file_name;
4799         int                     file_size;
4800
4801         struct {
4802                 struct perf_event_header        header;
4803
4804                 u32                             pid;
4805                 u32                             tid;
4806                 u64                             start;
4807                 u64                             len;
4808                 u64                             pgoff;
4809         } event_id;
4810 };
4811
4812 static void perf_event_mmap_output(struct perf_event *event,
4813                                      struct perf_mmap_event *mmap_event)
4814 {
4815         struct perf_output_handle handle;
4816         struct perf_sample_data sample;
4817         int size = mmap_event->event_id.header.size;
4818         int ret;
4819
4820         perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
4821         ret = perf_output_begin(&handle, event,
4822                                 mmap_event->event_id.header.size);
4823         if (ret)
4824                 goto out;
4825
4826         mmap_event->event_id.pid = perf_event_pid(event, current);
4827         mmap_event->event_id.tid = perf_event_tid(event, current);
4828
4829         perf_output_put(&handle, mmap_event->event_id);
4830         __output_copy(&handle, mmap_event->file_name,
4831                                    mmap_event->file_size);
4832
4833         perf_event__output_id_sample(event, &handle, &sample);
4834
4835         perf_output_end(&handle);
4836 out:
4837         mmap_event->event_id.header.size = size;
4838 }
4839
4840 static int perf_event_mmap_match(struct perf_event *event,
4841                                    struct perf_mmap_event *mmap_event,
4842                                    int executable)
4843 {
4844         if (event->state < PERF_EVENT_STATE_INACTIVE)
4845                 return 0;
4846
4847         if (!event_filter_match(event))
4848                 return 0;
4849
4850         if ((!executable && event->attr.mmap_data) ||
4851             (executable && event->attr.mmap))
4852                 return 1;
4853
4854         return 0;
4855 }
4856
4857 static void perf_event_mmap_ctx(struct perf_event_context *ctx,
4858                                   struct perf_mmap_event *mmap_event,
4859                                   int executable)
4860 {
4861         struct perf_event *event;
4862
4863         list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4864                 if (perf_event_mmap_match(event, mmap_event, executable))
4865                         perf_event_mmap_output(event, mmap_event);
4866         }
4867 }
4868
4869 static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
4870 {
4871         struct perf_cpu_context *cpuctx;
4872         struct perf_event_context *ctx;
4873         struct vm_area_struct *vma = mmap_event->vma;
4874         struct file *file = vma->vm_file;
4875         unsigned int size;
4876         char tmp[16];
4877         char *buf = NULL;
4878         const char *name;
4879         struct pmu *pmu;
4880         int ctxn;
4881
4882         memset(tmp, 0, sizeof(tmp));
4883
4884         if (file) {
4885                 /*
4886                  * d_path works from the end of the rb backwards, so we
4887                  * need to add enough zero bytes after the string to handle
4888                  * the 64bit alignment we do later.
4889                  */
4890                 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
4891                 if (!buf) {
4892                         name = strncpy(tmp, "//enomem", sizeof(tmp));
4893                         goto got_name;
4894                 }
4895                 name = d_path(&file->f_path, buf, PATH_MAX);
4896                 if (IS_ERR(name)) {
4897                         name = strncpy(tmp, "//toolong", sizeof(tmp));
4898                         goto got_name;
4899                 }
4900         } else {
4901                 if (arch_vma_name(mmap_event->vma)) {
4902                         name = strncpy(tmp, arch_vma_name(mmap_event->vma),
4903                                        sizeof(tmp));
4904                         goto got_name;
4905                 }
4906
4907                 if (!vma->vm_mm) {
4908                         name = strncpy(tmp, "[vdso]", sizeof(tmp));
4909                         goto got_name;
4910                 } else if (vma->vm_start <= vma->vm_mm->start_brk &&
4911                                 vma->vm_end >= vma->vm_mm->brk) {
4912                         name = strncpy(tmp, "[heap]", sizeof(tmp));
4913                         goto got_name;
4914                 } else if (vma->vm_start <= vma->vm_mm->start_stack &&
4915                                 vma->vm_end >= vma->vm_mm->start_stack) {
4916                         name = strncpy(tmp, "[stack]", sizeof(tmp));
4917                         goto got_name;
4918                 }
4919
4920                 name = strncpy(tmp, "//anon", sizeof(tmp));
4921                 goto got_name;
4922         }
4923
4924 got_name:
4925         size = ALIGN(strlen(name)+1, sizeof(u64));
4926
4927         mmap_event->file_name = name;
4928         mmap_event->file_size = size;
4929
4930         mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
4931
4932         rcu_read_lock();
4933         list_for_each_entry_rcu(pmu, &pmus, entry) {
4934                 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
4935                 if (cpuctx->unique_pmu != pmu)
4936                         goto next;
4937                 perf_event_mmap_ctx(&cpuctx->ctx, mmap_event,
4938                                         vma->vm_flags & VM_EXEC);
4939
4940                 ctxn = pmu->task_ctx_nr;
4941                 if (ctxn < 0)
4942                         goto next;
4943
4944                 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4945                 if (ctx) {
4946                         perf_event_mmap_ctx(ctx, mmap_event,
4947                                         vma->vm_flags & VM_EXEC);
4948                 }
4949 next:
4950                 put_cpu_ptr(pmu->pmu_cpu_context);
4951         }
4952         rcu_read_unlock();
4953
4954         kfree(buf);
4955 }
4956
4957 void perf_event_mmap(struct vm_area_struct *vma)
4958 {
4959         struct perf_mmap_event mmap_event;
4960
4961         if (!atomic_read(&nr_mmap_events))
4962                 return;
4963
4964         mmap_event = (struct perf_mmap_event){
4965                 .vma    = vma,
4966                 /* .file_name */
4967                 /* .file_size */
4968                 .event_id  = {
4969                         .header = {
4970                                 .type = PERF_RECORD_MMAP,
4971                                 .misc = PERF_RECORD_MISC_USER,
4972                                 /* .size */
4973                         },
4974                         /* .pid */
4975                         /* .tid */
4976                         .start  = vma->vm_start,
4977                         .len    = vma->vm_end - vma->vm_start,
4978                         .pgoff  = (u64)vma->vm_pgoff << PAGE_SHIFT,
4979                 },
4980         };
4981
4982         perf_event_mmap_event(&mmap_event);
4983 }
4984
4985 /*
4986  * IRQ throttle logging
4987  */
4988
4989 static void perf_log_throttle(struct perf_event *event, int enable)
4990 {
4991         struct perf_output_handle handle;
4992         struct perf_sample_data sample;
4993         int ret;
4994
4995         struct {
4996                 struct perf_event_header        header;
4997                 u64                             time;
4998                 u64                             id;
4999                 u64                             stream_id;
5000         } throttle_event = {
5001                 .header = {
5002                         .type = PERF_RECORD_THROTTLE,
5003                         .misc = 0,
5004                         .size = sizeof(throttle_event),
5005                 },
5006                 .time           = perf_clock(),
5007                 .id             = primary_event_id(event),
5008                 .stream_id      = event->id,
5009         };
5010
5011         if (enable)
5012                 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
5013
5014         perf_event_header__init_id(&throttle_event.header, &sample, event);
5015
5016         ret = perf_output_begin(&handle, event,
5017                                 throttle_event.header.size);
5018         if (ret)
5019                 return;
5020
5021         perf_output_put(&handle, throttle_event);
5022         perf_event__output_id_sample(event, &handle, &sample);
5023         perf_output_end(&handle);
5024 }
5025
5026 /*
5027  * Generic event overflow handling, sampling.
5028  */
5029
5030 static int __perf_event_overflow(struct perf_event *event,
5031                                    int throttle, struct perf_sample_data *data,
5032                                    struct pt_regs *regs)
5033 {
5034         int events = atomic_read(&event->event_limit);
5035         struct hw_perf_event *hwc = &event->hw;
5036         int ret = 0;
5037
5038         /*
5039          * Non-sampling counters might still use the PMI to fold short
5040          * hardware counters, ignore those.
5041          */
5042         if (unlikely(!is_sampling_event(event)))
5043                 return 0;
5044
5045         if (unlikely(hwc->interrupts >= max_samples_per_tick)) {
5046                 if (throttle) {
5047                         hwc->interrupts = MAX_INTERRUPTS;
5048                         perf_log_throttle(event, 0);
5049                         ret = 1;
5050                 }
5051         } else
5052                 hwc->interrupts++;
5053
5054         if (event->attr.freq) {
5055                 u64 now = perf_clock();
5056                 s64 delta = now - hwc->freq_time_stamp;
5057
5058                 hwc->freq_time_stamp = now;
5059
5060                 if (delta > 0 && delta < 2*TICK_NSEC)
5061                         perf_adjust_period(event, delta, hwc->last_period);
5062         }
5063
5064         /*
5065          * XXX event_limit might not quite work as expected on inherited
5066          * events
5067          */
5068
5069         event->pending_kill = POLL_IN;
5070         if (events && atomic_dec_and_test(&event->event_limit)) {
5071                 ret = 1;
5072                 event->pending_kill = POLL_HUP;
5073                 event->pending_disable = 1;
5074                 irq_work_queue(&event->pending);
5075         }
5076
5077         if (event->overflow_handler)
5078                 event->overflow_handler(event, data, regs);
5079         else
5080                 perf_event_output(event, data, regs);
5081
5082         if (*perf_event_fasync(event) && event->pending_kill) {
5083                 event->pending_wakeup = 1;
5084                 irq_work_queue(&event->pending);
5085         }
5086
5087         return ret;
5088 }
5089
5090 int perf_event_overflow(struct perf_event *event,
5091                           struct perf_sample_data *data,
5092                           struct pt_regs *regs)
5093 {
5094         return __perf_event_overflow(event, 1, data, regs);
5095 }
5096
5097 /*
5098  * Generic software event infrastructure
5099  */
5100
5101 struct swevent_htable {
5102         struct swevent_hlist            *swevent_hlist;
5103         struct mutex                    hlist_mutex;
5104         int                             hlist_refcount;
5105
5106         /* Recursion avoidance in each contexts */
5107         int                             recursion[PERF_NR_CONTEXTS];
5108 };
5109
5110 static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
5111
5112 /*
5113  * We directly increment event->count and keep a second value in
5114  * event->hw.period_left to count intervals. This period event
5115  * is kept in the range [-sample_period, 0] so that we can use the
5116  * sign as trigger.
5117  */
5118
5119 static u64 perf_swevent_set_period(struct perf_event *event)
5120 {
5121         struct hw_perf_event *hwc = &event->hw;
5122         u64 period = hwc->last_period;
5123         u64 nr, offset;
5124         s64 old, val;
5125
5126         hwc->last_period = hwc->sample_period;
5127
5128 again:
5129         old = val = local64_read(&hwc->period_left);
5130         if (val < 0)
5131                 return 0;
5132
5133         nr = div64_u64(period + val, period);
5134         offset = nr * period;
5135         val -= offset;
5136         if (local64_cmpxchg(&hwc->period_left, old, val) != old)
5137                 goto again;
5138
5139         return nr;
5140 }
5141
5142 static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
5143                                     struct perf_sample_data *data,
5144                                     struct pt_regs *regs)
5145 {
5146         struct hw_perf_event *hwc = &event->hw;
5147         int throttle = 0;
5148
5149         data->period = event->hw.last_period;
5150         if (!overflow)
5151                 overflow = perf_swevent_set_period(event);
5152
5153         if (hwc->interrupts == MAX_INTERRUPTS)
5154                 return;
5155
5156         for (; overflow; overflow--) {
5157                 if (__perf_event_overflow(event, throttle,
5158                                             data, regs)) {
5159                         /*
5160                          * We inhibit the overflow from happening when
5161                          * hwc->interrupts == MAX_INTERRUPTS.
5162                          */
5163                         break;
5164                 }
5165                 throttle = 1;
5166         }
5167 }
5168
5169 static void perf_swevent_event(struct perf_event *event, u64 nr,
5170                                struct perf_sample_data *data,
5171                                struct pt_regs *regs)
5172 {
5173         struct hw_perf_event *hwc = &event->hw;
5174
5175         local64_add(nr, &event->count);
5176
5177         if (!regs)
5178                 return;
5179
5180         if (!is_sampling_event(event))
5181                 return;
5182
5183         if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
5184                 return perf_swevent_overflow(event, 1, data, regs);
5185
5186         if (local64_add_negative(nr, &hwc->period_left))
5187                 return;
5188
5189         perf_swevent_overflow(event, 0, data, regs);
5190 }
5191
5192 static int perf_exclude_event(struct perf_event *event,
5193                               struct pt_regs *regs)
5194 {
5195         if (event->hw.state & PERF_HES_STOPPED)
5196                 return 1;
5197
5198         if (regs) {
5199                 if (event->attr.exclude_user && user_mode(regs))
5200                         return 1;
5201
5202                 if (event->attr.exclude_kernel && !user_mode(regs))
5203                         return 1;
5204         }
5205
5206         return 0;
5207 }
5208
5209 static int perf_swevent_match(struct perf_event *event,
5210                                 enum perf_type_id type,
5211                                 u32 event_id,
5212                                 struct perf_sample_data *data,
5213                                 struct pt_regs *regs)
5214 {
5215         if (event->attr.type != type)
5216                 return 0;
5217
5218         if (event->attr.config != event_id)
5219                 return 0;
5220
5221         if (perf_exclude_event(event, regs))
5222                 return 0;
5223
5224         return 1;
5225 }
5226
5227 static inline u64 swevent_hash(u64 type, u32 event_id)
5228 {
5229         u64 val = event_id | (type << 32);
5230
5231         return hash_64(val, SWEVENT_HLIST_BITS);
5232 }
5233
5234 static inline struct hlist_head *
5235 __find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
5236 {
5237         u64 hash = swevent_hash(type, event_id);
5238
5239         return &hlist->heads[hash];
5240 }
5241
5242 /* For the read side: events when they trigger */
5243 static inline struct hlist_head *
5244 find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
5245 {
5246         struct swevent_hlist *hlist;
5247
5248         hlist = rcu_dereference(swhash->swevent_hlist);
5249         if (!hlist)
5250                 return NULL;
5251
5252         return __find_swevent_head(hlist, type, event_id);
5253 }
5254
5255 /* For the event head insertion and removal in the hlist */
5256 static inline struct hlist_head *
5257 find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
5258 {
5259         struct swevent_hlist *hlist;
5260         u32 event_id = event->attr.config;
5261         u64 type = event->attr.type;
5262
5263         /*
5264          * Event scheduling is always serialized against hlist allocation
5265          * and release. Which makes the protected version suitable here.
5266          * The context lock guarantees that.
5267          */
5268         hlist = rcu_dereference_protected(swhash->swevent_hlist,
5269                                           lockdep_is_held(&event->ctx->lock));
5270         if (!hlist)
5271                 return NULL;
5272
5273         return __find_swevent_head(hlist, type, event_id);
5274 }
5275
5276 static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
5277                                     u64 nr,
5278                                     struct perf_sample_data *data,
5279                                     struct pt_regs *regs)
5280 {
5281         struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
5282         struct perf_event *event;
5283         struct hlist_node *node;
5284         struct hlist_head *head;
5285
5286         rcu_read_lock();
5287         head = find_swevent_head_rcu(swhash, type, event_id);
5288         if (!head)
5289                 goto end;
5290
5291         hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
5292                 if (perf_swevent_match(event, type, event_id, data, regs))
5293                         perf_swevent_event(event, nr, data, regs);
5294         }
5295 end:
5296         rcu_read_unlock();
5297 }
5298
5299 int perf_swevent_get_recursion_context(void)
5300 {
5301         struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
5302
5303         return get_recursion_context(swhash->recursion);
5304 }
5305 EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
5306
5307 inline void perf_swevent_put_recursion_context(int rctx)
5308 {
5309         struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
5310
5311         put_recursion_context(swhash->recursion, rctx);
5312 }
5313
5314 void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
5315 {
5316         struct perf_sample_data data;
5317         int rctx;
5318
5319         preempt_disable_notrace();
5320         rctx = perf_swevent_get_recursion_context();
5321         if (rctx < 0)
5322                 return;
5323
5324         perf_sample_data_init(&data, addr);
5325
5326         do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
5327
5328         perf_swevent_put_recursion_context(rctx);
5329         preempt_enable_notrace();
5330 }
5331
5332 static void perf_swevent_read(struct perf_event *event)
5333 {
5334 }
5335
5336 static int perf_swevent_add(struct perf_event *event, int flags)
5337 {
5338         struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
5339         struct hw_perf_event *hwc = &event->hw;
5340         struct hlist_head *head;
5341
5342         if (is_sampling_event(event)) {
5343                 hwc->last_period = hwc->sample_period;
5344                 perf_swevent_set_period(event);
5345         }
5346
5347         hwc->state = !(flags & PERF_EF_START);
5348
5349         head = find_swevent_head(swhash, event);
5350         if (WARN_ON_ONCE(!head))
5351                 return -EINVAL;
5352
5353         hlist_add_head_rcu(&event->hlist_entry, head);
5354
5355         return 0;
5356 }
5357
5358 static void perf_swevent_del(struct perf_event *event, int flags)
5359 {
5360         hlist_del_rcu(&event->hlist_entry);
5361 }
5362
5363 static void perf_swevent_start(struct perf_event *event, int flags)
5364 {
5365         event->hw.state = 0;
5366 }
5367
5368 static void perf_swevent_stop(struct perf_event *event, int flags)
5369 {
5370         event->hw.state = PERF_HES_STOPPED;
5371 }
5372
5373 /* Deref the hlist from the update side */
5374 static inline struct swevent_hlist *
5375 swevent_hlist_deref(struct swevent_htable *swhash)
5376 {
5377         return rcu_dereference_protected(swhash->swevent_hlist,
5378                                          lockdep_is_held(&swhash->hlist_mutex));
5379 }
5380
5381 static void swevent_hlist_release(struct swevent_htable *swhash)
5382 {
5383         struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
5384
5385         if (!hlist)
5386                 return;
5387
5388         rcu_assign_pointer(swhash->swevent_hlist, NULL);
5389         kfree_rcu(hlist, rcu_head);
5390 }
5391
5392 static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
5393 {
5394         struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
5395
5396         mutex_lock(&swhash->hlist_mutex);
5397
5398         if (!--swhash->hlist_refcount)
5399                 swevent_hlist_release(swhash);
5400
5401         mutex_unlock(&swhash->hlist_mutex);
5402 }
5403
5404 static void swevent_hlist_put(struct perf_event *event)
5405 {
5406         int cpu;
5407
5408         if (event->cpu != -1) {
5409                 swevent_hlist_put_cpu(event, event->cpu);
5410                 return;
5411         }
5412
5413         for_each_possible_cpu(cpu)
5414                 swevent_hlist_put_cpu(event, cpu);
5415 }
5416
5417 static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
5418 {
5419         struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
5420         int err = 0;
5421
5422         mutex_lock(&swhash->hlist_mutex);
5423         if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
5424                 struct swevent_hlist *hlist;
5425
5426                 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
5427                 if (!hlist) {
5428                         err = -ENOMEM;
5429                         goto exit;
5430                 }
5431                 rcu_assign_pointer(swhash->swevent_hlist, hlist);
5432         }
5433         swhash->hlist_refcount++;
5434 exit:
5435         mutex_unlock(&swhash->hlist_mutex);
5436
5437         return err;
5438 }
5439
5440 static int swevent_hlist_get(struct perf_event *event)
5441 {
5442         int err;
5443         int cpu, failed_cpu;
5444
5445         if (event->cpu != -1)
5446                 return swevent_hlist_get_cpu(event, event->cpu);
5447
5448         get_online_cpus();
5449         for_each_possible_cpu(cpu) {
5450                 err = swevent_hlist_get_cpu(event, cpu);
5451                 if (err) {
5452                         failed_cpu = cpu;
5453                         goto fail;
5454                 }
5455         }
5456         put_online_cpus();
5457
5458         return 0;
5459 fail:
5460         for_each_possible_cpu(cpu) {
5461                 if (cpu == failed_cpu)
5462                         break;
5463                 swevent_hlist_put_cpu(event, cpu);
5464         }
5465
5466         put_online_cpus();
5467         return err;
5468 }
5469
5470 struct jump_label_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
5471
5472 static void sw_perf_event_destroy(struct perf_event *event)
5473 {
5474         u64 event_id = event->attr.config;
5475
5476         WARN_ON(event->parent);
5477
5478         jump_label_dec(&perf_swevent_enabled[event_id]);
5479         swevent_hlist_put(event);
5480 }
5481
5482 static int perf_swevent_init(struct perf_event *event)
5483 {
5484         u64 event_id = event->attr.config;
5485
5486         if (event->attr.type != PERF_TYPE_SOFTWARE)
5487                 return -ENOENT;
5488
5489         switch (event_id) {
5490         case PERF_COUNT_SW_CPU_CLOCK:
5491         case PERF_COUNT_SW_TASK_CLOCK:
5492                 return -ENOENT;
5493
5494         default:
5495                 break;
5496         }
5497
5498         if (event_id >= PERF_COUNT_SW_MAX)
5499                 return -ENOENT;
5500
5501         if (!event->parent) {
5502                 int err;
5503
5504                 err = swevent_hlist_get(event);
5505                 if (err)
5506                         return err;
5507
5508                 jump_label_inc(&perf_swevent_enabled[event_id]);
5509                 event->destroy = sw_perf_event_destroy;
5510         }
5511
5512         return 0;
5513 }
5514
5515 static struct pmu perf_swevent = {
5516         .task_ctx_nr    = perf_sw_context,
5517
5518         .event_init     = perf_swevent_init,
5519         .add            = perf_swevent_add,
5520         .del            = perf_swevent_del,
5521         .start          = perf_swevent_start,
5522         .stop           = perf_swevent_stop,
5523         .read           = perf_swevent_read,
5524 };
5525
5526 #ifdef CONFIG_EVENT_TRACING
5527
5528 static int perf_tp_filter_match(struct perf_event *event,
5529                                 struct perf_sample_data *data)
5530 {
5531         void *record = data->raw->data;
5532
5533         /* only top level events have filters set */
5534         if (event->parent)
5535                 event = event->parent;
5536
5537         if (likely(!event->filter) || filter_match_preds(event->filter, record))
5538                 return 1;
5539         return 0;
5540 }
5541
5542 static int perf_tp_event_match(struct perf_event *event,
5543                                 struct perf_sample_data *data,
5544                                 struct pt_regs *regs)
5545 {
5546         if (event->hw.state & PERF_HES_STOPPED)
5547                 return 0;
5548         /*
5549          * All tracepoints are from kernel-space.
5550          */
5551         if (event->attr.exclude_kernel)
5552                 return 0;
5553
5554         if (!perf_tp_filter_match(event, data))
5555                 return 0;
5556
5557         return 1;
5558 }
5559
5560 void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
5561                    struct pt_regs *regs, struct hlist_head *head, int rctx)
5562 {
5563         struct perf_sample_data data;
5564         struct perf_event *event;
5565         struct hlist_node *node;
5566
5567         struct perf_raw_record raw = {
5568                 .size = entry_size,
5569                 .data = record,
5570         };
5571
5572         perf_sample_data_init(&data, addr);
5573         data.raw = &raw;
5574
5575         hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
5576                 if (perf_tp_event_match(event, &data, regs))
5577                         perf_swevent_event(event, count, &data, regs);
5578         }
5579
5580         perf_swevent_put_recursion_context(rctx);
5581 }
5582 EXPORT_SYMBOL_GPL(perf_tp_event);
5583
5584 static void tp_perf_event_destroy(struct perf_event *event)
5585 {
5586         perf_trace_destroy(event);
5587 }
5588
5589 static int perf_tp_event_init(struct perf_event *event)
5590 {
5591         int err;
5592
5593         if (event->attr.type != PERF_TYPE_TRACEPOINT)
5594                 return -ENOENT;
5595
5596         err = perf_trace_init(event);
5597         if (err)
5598                 return err;
5599
5600         event->destroy = tp_perf_event_destroy;
5601
5602         return 0;
5603 }
5604
5605 static struct pmu perf_tracepoint = {
5606         .task_ctx_nr    = perf_sw_context,
5607
5608         .event_init     = perf_tp_event_init,
5609         .add            = perf_trace_add,
5610         .del            = perf_trace_del,
5611         .start          = perf_swevent_start,
5612         .stop           = perf_swevent_stop,
5613         .read           = perf_swevent_read,
5614 };
5615
5616 static inline void perf_tp_register(void)
5617 {
5618         perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
5619 }
5620
5621 static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5622 {
5623         char *filter_str;
5624         int ret;
5625
5626         if (event->attr.type != PERF_TYPE_TRACEPOINT)
5627                 return -EINVAL;
5628
5629         filter_str = strndup_user(arg, PAGE_SIZE);
5630         if (IS_ERR(filter_str))
5631                 return PTR_ERR(filter_str);
5632
5633         ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
5634
5635         kfree(filter_str);
5636         return ret;
5637 }
5638
5639 static void perf_event_free_filter(struct perf_event *event)
5640 {
5641         ftrace_profile_free_filter(event);
5642 }
5643
5644 #else
5645
5646 static inline void perf_tp_register(void)
5647 {
5648 }
5649
5650 static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5651 {
5652         return -ENOENT;
5653 }
5654
5655 static void perf_event_free_filter(struct perf_event *event)
5656 {
5657 }
5658
5659 #endif /* CONFIG_EVENT_TRACING */
5660
5661 #ifdef CONFIG_HAVE_HW_BREAKPOINT
5662 void perf_bp_event(struct perf_event *bp, void *data)
5663 {
5664         struct perf_sample_data sample;
5665         struct pt_regs *regs = data;
5666
5667         perf_sample_data_init(&sample, bp->attr.bp_addr);
5668
5669         if (!bp->hw.state && !perf_exclude_event(bp, regs))
5670                 perf_swevent_event(bp, 1, &sample, regs);
5671 }
5672 #endif
5673
5674 /*
5675  * hrtimer based swevent callback
5676  */
5677
5678 static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
5679 {
5680         enum hrtimer_restart ret = HRTIMER_RESTART;
5681         struct perf_sample_data data;
5682         struct pt_regs *regs;
5683         struct perf_event *event;
5684         u64 period;
5685
5686         event = container_of(hrtimer, struct perf_event, hw.hrtimer);
5687
5688         if (event->state != PERF_EVENT_STATE_ACTIVE)
5689                 return HRTIMER_NORESTART;
5690
5691         event->pmu->read(event);
5692
5693         perf_sample_data_init(&data, 0);
5694         data.period = event->hw.last_period;
5695         regs = get_irq_regs();
5696
5697         if (regs && !perf_exclude_event(event, regs)) {
5698                 if (!(event->attr.exclude_idle && current->pid == 0))
5699                         if (perf_event_overflow(event, &data, regs))
5700                                 ret = HRTIMER_NORESTART;
5701         }
5702
5703         period = max_t(u64, 10000, event->hw.sample_period);
5704         hrtimer_forward_now(hrtimer, ns_to_ktime(period));
5705
5706         return ret;
5707 }
5708
5709 static void perf_swevent_start_hrtimer(struct perf_event *event)
5710 {
5711         struct hw_perf_event *hwc = &event->hw;
5712         s64 period;
5713
5714         if (!is_sampling_event(event))
5715                 return;
5716
5717         period = local64_read(&hwc->period_left);
5718         if (period) {
5719                 if (period < 0)
5720                         period = 10000;
5721
5722                 local64_set(&hwc->period_left, 0);
5723         } else {
5724                 period = max_t(u64, 10000, hwc->sample_period);
5725         }
5726         __hrtimer_start_range_ns(&hwc->hrtimer,
5727                                 ns_to_ktime(period), 0,
5728                                 HRTIMER_MODE_REL_PINNED, 0);
5729 }
5730
5731 static void perf_swevent_cancel_hrtimer(struct perf_event *event)
5732 {
5733         struct hw_perf_event *hwc = &event->hw;
5734
5735         if (is_sampling_event(event)) {
5736                 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
5737                 local64_set(&hwc->period_left, ktime_to_ns(remaining));
5738
5739                 hrtimer_cancel(&hwc->hrtimer);
5740         }
5741 }
5742
5743 static void perf_swevent_init_hrtimer(struct perf_event *event)
5744 {
5745         struct hw_perf_event *hwc = &event->hw;
5746
5747         if (!is_sampling_event(event))
5748                 return;
5749
5750         hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
5751         hwc->hrtimer.function = perf_swevent_hrtimer;
5752
5753         /*
5754          * Since hrtimers have a fixed rate, we can do a static freq->period
5755          * mapping and avoid the whole period adjust feedback stuff.
5756          */
5757         if (event->attr.freq) {
5758                 long freq = event->attr.sample_freq;
5759
5760                 event->attr.sample_period = NSEC_PER_SEC / freq;
5761                 hwc->sample_period = event->attr.sample_period;
5762                 local64_set(&hwc->period_left, hwc->sample_period);
5763                 event->attr.freq = 0;
5764         }
5765 }
5766
5767 /*
5768  * Software event: cpu wall time clock
5769  */
5770
5771 static void cpu_clock_event_update(struct perf_event *event)
5772 {
5773         s64 prev;
5774         u64 now;
5775
5776         now = local_clock();
5777         prev = local64_xchg(&event->hw.prev_count, now);
5778         local64_add(now - prev, &event->count);
5779 }
5780
5781 static void cpu_clock_event_start(struct perf_event *event, int flags)
5782 {
5783         local64_set(&event->hw.prev_count, local_clock());
5784         perf_swevent_start_hrtimer(event);
5785 }
5786
5787 static void cpu_clock_event_stop(struct perf_event *event, int flags)
5788 {
5789         perf_swevent_cancel_hrtimer(event);
5790         cpu_clock_event_update(event);
5791 }
5792
5793 static int cpu_clock_event_add(struct perf_event *event, int flags)
5794 {
5795         if (flags & PERF_EF_START)
5796                 cpu_clock_event_start(event, flags);
5797
5798         return 0;
5799 }
5800
5801 static void cpu_clock_event_del(struct perf_event *event, int flags)
5802 {
5803         cpu_clock_event_stop(event, flags);
5804 }
5805
5806 static void cpu_clock_event_read(struct perf_event *event)
5807 {
5808         cpu_clock_event_update(event);
5809 }
5810
5811 static int cpu_clock_event_init(struct perf_event *event)
5812 {
5813         if (event->attr.type != PERF_TYPE_SOFTWARE)
5814                 return -ENOENT;
5815
5816         if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
5817                 return -ENOENT;
5818
5819         perf_swevent_init_hrtimer(event);
5820
5821         return 0;
5822 }
5823
5824 static struct pmu perf_cpu_clock = {
5825         .task_ctx_nr    = perf_sw_context,
5826
5827         .event_init     = cpu_clock_event_init,
5828         .add            = cpu_clock_event_add,
5829         .del            = cpu_clock_event_del,
5830         .start          = cpu_clock_event_start,
5831         .stop           = cpu_clock_event_stop,
5832         .read           = cpu_clock_event_read,
5833 };
5834
5835 /*
5836  * Software event: task time clock
5837  */
5838
5839 static void task_clock_event_update(struct perf_event *event, u64 now)
5840 {
5841         u64 prev;
5842         s64 delta;
5843
5844         prev = local64_xchg(&event->hw.prev_count, now);
5845         delta = now - prev;
5846         local64_add(delta, &event->count);
5847 }
5848
5849 static void task_clock_event_start(struct perf_event *event, int flags)
5850 {
5851         local64_set(&event->hw.prev_count, event->ctx->time);
5852         perf_swevent_start_hrtimer(event);
5853 }
5854
5855 static void task_clock_event_stop(struct perf_event *event, int flags)
5856 {
5857         perf_swevent_cancel_hrtimer(event);
5858         task_clock_event_update(event, event->ctx->time);
5859 }
5860
5861 static int task_clock_event_add(struct perf_event *event, int flags)
5862 {
5863         if (flags & PERF_EF_START)
5864                 task_clock_event_start(event, flags);
5865
5866         return 0;
5867 }
5868
5869 static void task_clock_event_del(struct perf_event *event, int flags)
5870 {
5871         task_clock_event_stop(event, PERF_EF_UPDATE);
5872 }
5873
5874 static void task_clock_event_read(struct perf_event *event)
5875 {
5876         u64 now = perf_clock();
5877         u64 delta = now - event->ctx->timestamp;
5878         u64 time = event->ctx->time + delta;
5879
5880         task_clock_event_update(event, time);
5881 }
5882
5883 static int task_clock_event_init(struct perf_event *event)
5884 {
5885         if (event->attr.type != PERF_TYPE_SOFTWARE)
5886                 return -ENOENT;
5887
5888         if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
5889                 return -ENOENT;
5890
5891         perf_swevent_init_hrtimer(event);
5892
5893         return 0;
5894 }
5895
5896 static struct pmu perf_task_clock = {
5897         .task_ctx_nr    = perf_sw_context,
5898
5899         .event_init     = task_clock_event_init,
5900         .add            = task_clock_event_add,
5901         .del            = task_clock_event_del,
5902         .start          = task_clock_event_start,
5903         .stop           = task_clock_event_stop,
5904         .read           = task_clock_event_read,
5905 };
5906
5907 static void perf_pmu_nop_void(struct pmu *pmu)
5908 {
5909 }
5910
5911 static int perf_pmu_nop_int(struct pmu *pmu)
5912 {
5913         return 0;
5914 }
5915
5916 static void perf_pmu_start_txn(struct pmu *pmu)
5917 {
5918         perf_pmu_disable(pmu);
5919 }
5920
5921 static int perf_pmu_commit_txn(struct pmu *pmu)
5922 {
5923         perf_pmu_enable(pmu);
5924         return 0;
5925 }
5926
5927 static void perf_pmu_cancel_txn(struct pmu *pmu)
5928 {
5929         perf_pmu_enable(pmu);
5930 }
5931
5932 /*
5933  * Ensures all contexts with the same task_ctx_nr have the same
5934  * pmu_cpu_context too.
5935  */
5936 static void *find_pmu_context(int ctxn)
5937 {
5938         struct pmu *pmu;
5939
5940         if (ctxn < 0)
5941                 return NULL;
5942
5943         list_for_each_entry(pmu, &pmus, entry) {
5944                 if (pmu->task_ctx_nr == ctxn)
5945                         return pmu->pmu_cpu_context;
5946         }
5947
5948         return NULL;
5949 }
5950
5951 static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
5952 {
5953         int cpu;
5954
5955         for_each_possible_cpu(cpu) {
5956                 struct perf_cpu_context *cpuctx;
5957
5958                 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
5959
5960                 if (cpuctx->unique_pmu == old_pmu)
5961                         cpuctx->unique_pmu = pmu;
5962         }
5963 }
5964
5965 static void free_pmu_context(struct pmu *pmu)
5966 {
5967         struct pmu *i;
5968
5969         mutex_lock(&pmus_lock);
5970         /*
5971          * Like a real lame refcount.
5972          */
5973         list_for_each_entry(i, &pmus, entry) {
5974                 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
5975                         update_pmu_context(i, pmu);
5976                         goto out;
5977                 }
5978         }
5979
5980         free_percpu(pmu->pmu_cpu_context);
5981 out:
5982         mutex_unlock(&pmus_lock);
5983 }
5984 static struct idr pmu_idr;
5985
5986 static ssize_t
5987 type_show(struct device *dev, struct device_attribute *attr, char *page)
5988 {
5989         struct pmu *pmu = dev_get_drvdata(dev);
5990
5991         return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
5992 }
5993
5994 static struct device_attribute pmu_dev_attrs[] = {
5995        __ATTR_RO(type),
5996        __ATTR_NULL,
5997 };
5998
5999 static int pmu_bus_running;
6000 static struct bus_type pmu_bus = {
6001         .name           = "event_source",
6002         .dev_attrs      = pmu_dev_attrs,
6003 };
6004
6005 static void pmu_dev_release(struct device *dev)
6006 {
6007         kfree(dev);
6008 }
6009
6010 static int pmu_dev_alloc(struct pmu *pmu)
6011 {
6012         int ret = -ENOMEM;
6013
6014         pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
6015         if (!pmu->dev)
6016                 goto out;
6017
6018         device_initialize(pmu->dev);
6019         ret = dev_set_name(pmu->dev, "%s", pmu->name);
6020         if (ret)
6021                 goto free_dev;
6022
6023         dev_set_drvdata(pmu->dev, pmu);
6024         pmu->dev->bus = &pmu_bus;
6025         pmu->dev->release = pmu_dev_release;
6026         ret = device_add(pmu->dev);
6027         if (ret)
6028                 goto free_dev;
6029
6030 out:
6031         return ret;
6032
6033 free_dev:
6034         put_device(pmu->dev);
6035         goto out;
6036 }
6037
6038 static struct lock_class_key cpuctx_mutex;
6039 static struct lock_class_key cpuctx_lock;
6040
6041 int perf_pmu_register(struct pmu *pmu, char *name, int type)
6042 {
6043         int cpu, ret;
6044
6045         mutex_lock(&pmus_lock);
6046         ret = -ENOMEM;
6047         pmu->pmu_disable_count = alloc_percpu(int);
6048         if (!pmu->pmu_disable_count)
6049                 goto unlock;
6050
6051         pmu->type = -1;
6052         if (!name)
6053                 goto skip_type;
6054         pmu->name = name;
6055
6056         if (type < 0) {
6057                 int err = idr_pre_get(&pmu_idr, GFP_KERNEL);
6058                 if (!err)
6059                         goto free_pdc;
6060
6061                 err = idr_get_new_above(&pmu_idr, pmu, PERF_TYPE_MAX, &type);
6062                 if (err) {
6063                         ret = err;
6064                         goto free_pdc;
6065                 }
6066         }
6067         pmu->type = type;
6068
6069         if (pmu_bus_running) {
6070                 ret = pmu_dev_alloc(pmu);
6071                 if (ret)
6072                         goto free_idr;
6073         }
6074
6075 skip_type:
6076         pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
6077         if (pmu->pmu_cpu_context)
6078                 goto got_cpu_context;
6079
6080         ret = -ENOMEM;
6081         pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
6082         if (!pmu->pmu_cpu_context)
6083                 goto free_dev;
6084
6085         for_each_possible_cpu(cpu) {
6086                 struct perf_cpu_context *cpuctx;
6087
6088                 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6089                 __perf_event_init_context(&cpuctx->ctx);
6090                 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
6091                 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
6092                 cpuctx->ctx.type = cpu_context;
6093                 cpuctx->ctx.pmu = pmu;
6094                 cpuctx->jiffies_interval = 1;
6095                 INIT_LIST_HEAD(&cpuctx->rotation_list);
6096                 cpuctx->unique_pmu = pmu;
6097         }
6098
6099 got_cpu_context:
6100         if (!pmu->start_txn) {
6101                 if (pmu->pmu_enable) {
6102                         /*
6103                          * If we have pmu_enable/pmu_disable calls, install
6104                          * transaction stubs that use that to try and batch
6105                          * hardware accesses.
6106                          */
6107                         pmu->start_txn  = perf_pmu_start_txn;
6108                         pmu->commit_txn = perf_pmu_commit_txn;
6109                         pmu->cancel_txn = perf_pmu_cancel_txn;
6110                 } else {
6111                         pmu->start_txn  = perf_pmu_nop_void;
6112                         pmu->commit_txn = perf_pmu_nop_int;
6113                         pmu->cancel_txn = perf_pmu_nop_void;
6114                 }
6115         }
6116
6117         if (!pmu->pmu_enable) {
6118                 pmu->pmu_enable  = perf_pmu_nop_void;
6119                 pmu->pmu_disable = perf_pmu_nop_void;
6120         }
6121
6122         list_add_rcu(&pmu->entry, &pmus);
6123         ret = 0;
6124 unlock:
6125         mutex_unlock(&pmus_lock);
6126
6127         return ret;
6128
6129 free_dev:
6130         device_del(pmu->dev);
6131         put_device(pmu->dev);
6132
6133 free_idr:
6134         if (pmu->type >= PERF_TYPE_MAX)
6135                 idr_remove(&pmu_idr, pmu->type);
6136
6137 free_pdc:
6138         free_percpu(pmu->pmu_disable_count);
6139         goto unlock;
6140 }
6141
6142 void perf_pmu_unregister(struct pmu *pmu)
6143 {
6144         mutex_lock(&pmus_lock);
6145         list_del_rcu(&pmu->entry);
6146         mutex_unlock(&pmus_lock);
6147
6148         /*
6149          * We dereference the pmu list under both SRCU and regular RCU, so
6150          * synchronize against both of those.
6151          */
6152         synchronize_srcu(&pmus_srcu);
6153         synchronize_rcu();
6154
6155         free_percpu(pmu->pmu_disable_count);
6156         if (pmu->type >= PERF_TYPE_MAX)
6157                 idr_remove(&pmu_idr, pmu->type);
6158         device_del(pmu->dev);
6159         put_device(pmu->dev);
6160         free_pmu_context(pmu);
6161 }
6162
6163 struct pmu *perf_init_event(struct perf_event *event)
6164 {
6165         struct pmu *pmu = NULL;
6166         int idx;
6167         int ret;
6168
6169         idx = srcu_read_lock(&pmus_srcu);
6170
6171         rcu_read_lock();
6172         pmu = idr_find(&pmu_idr, event->attr.type);
6173         rcu_read_unlock();
6174         if (pmu) {
6175                 event->pmu = pmu;
6176                 ret = pmu->event_init(event);
6177                 if (ret)
6178                         pmu = ERR_PTR(ret);
6179                 goto unlock;
6180         }
6181
6182         list_for_each_entry_rcu(pmu, &pmus, entry) {
6183                 event->pmu = pmu;
6184                 ret = pmu->event_init(event);
6185                 if (!ret)
6186                         goto unlock;
6187
6188                 if (ret != -ENOENT) {
6189                         pmu = ERR_PTR(ret);
6190                         goto unlock;
6191                 }
6192         }
6193         pmu = ERR_PTR(-ENOENT);
6194 unlock:
6195         srcu_read_unlock(&pmus_srcu, idx);
6196
6197         return pmu;
6198 }
6199
6200 /*
6201  * Allocate and initialize a event structure
6202  */
6203 static struct perf_event *
6204 perf_event_alloc(struct perf_event_attr *attr, int cpu,
6205                  struct task_struct *task,
6206                  struct perf_event *group_leader,
6207                  struct perf_event *parent_event,
6208                  perf_overflow_handler_t overflow_handler,
6209                  void *context)
6210 {
6211         struct pmu *pmu;
6212         struct perf_event *event;
6213         struct hw_perf_event *hwc;
6214         long err;
6215
6216         if ((unsigned)cpu >= nr_cpu_ids) {
6217                 if (!task || cpu != -1)
6218                         return ERR_PTR(-EINVAL);
6219         }
6220
6221         event = kzalloc(sizeof(*event), GFP_KERNEL);
6222         if (!event)
6223                 return ERR_PTR(-ENOMEM);
6224
6225         /*
6226          * Single events are their own group leaders, with an
6227          * empty sibling list:
6228          */
6229         if (!group_leader)
6230                 group_leader = event;
6231
6232         mutex_init(&event->child_mutex);
6233         INIT_LIST_HEAD(&event->child_list);
6234
6235         INIT_LIST_HEAD(&event->group_entry);
6236         INIT_LIST_HEAD(&event->event_entry);
6237         INIT_LIST_HEAD(&event->sibling_list);
6238         INIT_LIST_HEAD(&event->rb_entry);
6239
6240         init_waitqueue_head(&event->waitq);
6241         init_irq_work(&event->pending, perf_pending_event);
6242
6243         mutex_init(&event->mmap_mutex);
6244
6245         atomic_long_set(&event->refcount, 1);
6246         event->cpu              = cpu;
6247         event->attr             = *attr;
6248         event->group_leader     = group_leader;
6249         event->pmu              = NULL;
6250         event->oncpu            = -1;
6251
6252         event->parent           = parent_event;
6253
6254         event->ns               = get_pid_ns(current->nsproxy->pid_ns);
6255         event->id               = atomic64_inc_return(&perf_event_id);
6256
6257         event->state            = PERF_EVENT_STATE_INACTIVE;
6258
6259         if (task) {
6260                 event->attach_state = PERF_ATTACH_TASK;
6261 #ifdef CONFIG_HAVE_HW_BREAKPOINT
6262                 /*
6263                  * hw_breakpoint is a bit difficult here..
6264                  */
6265                 if (attr->type == PERF_TYPE_BREAKPOINT)
6266                         event->hw.bp_target = task;
6267 #endif
6268         }
6269
6270         if (!overflow_handler && parent_event) {
6271                 overflow_handler = parent_event->overflow_handler;
6272                 context = parent_event->overflow_handler_context;
6273         }
6274
6275         event->overflow_handler = overflow_handler;
6276         event->overflow_handler_context = context;
6277
6278         perf_event__state_init(event);
6279
6280         pmu = NULL;
6281
6282         hwc = &event->hw;
6283         hwc->sample_period = attr->sample_period;
6284         if (attr->freq && attr->sample_freq)
6285                 hwc->sample_period = 1;
6286         hwc->last_period = hwc->sample_period;
6287
6288         local64_set(&hwc->period_left, hwc->sample_period);
6289
6290         /*
6291          * We currently do not support PERF_SAMPLE_READ on inherited events.
6292          * See perf_output_read().
6293          */
6294         if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
6295                 goto done;
6296
6297         pmu = perf_init_event(event);
6298
6299 done:
6300         err = 0;
6301         if (!pmu)
6302                 err = -EINVAL;
6303         else if (IS_ERR(pmu))
6304                 err = PTR_ERR(pmu);
6305
6306         if (err) {
6307                 if (event->ns)
6308                         put_pid_ns(event->ns);
6309                 kfree(event);
6310                 return ERR_PTR(err);
6311         }
6312
6313         if (!event->parent) {
6314                 if (event->attach_state & PERF_ATTACH_TASK)
6315                         jump_label_inc(&perf_sched_events);
6316                 if (event->attr.mmap || event->attr.mmap_data)
6317                         atomic_inc(&nr_mmap_events);
6318                 if (event->attr.comm)
6319                         atomic_inc(&nr_comm_events);
6320                 if (event->attr.task)
6321                         atomic_inc(&nr_task_events);
6322                 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
6323                         err = get_callchain_buffers();
6324                         if (err) {
6325                                 free_event(event);
6326                                 return ERR_PTR(err);
6327                         }
6328                 }
6329         }
6330
6331         return event;
6332 }
6333
6334 static int perf_copy_attr(struct perf_event_attr __user *uattr,
6335                           struct perf_event_attr *attr)
6336 {
6337         u32 size;
6338         int ret;
6339
6340         if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
6341                 return -EFAULT;
6342
6343         /*
6344          * zero the full structure, so that a short copy will be nice.
6345          */
6346         memset(attr, 0, sizeof(*attr));
6347
6348         ret = get_user(size, &uattr->size);
6349         if (ret)
6350                 return ret;
6351
6352         if (size > PAGE_SIZE)   /* silly large */
6353                 goto err_size;
6354
6355         if (!size)              /* abi compat */
6356                 size = PERF_ATTR_SIZE_VER0;
6357
6358         if (size < PERF_ATTR_SIZE_VER0)
6359                 goto err_size;
6360
6361         /*
6362          * If we're handed a bigger struct than we know of,
6363          * ensure all the unknown bits are 0 - i.e. new
6364          * user-space does not rely on any kernel feature
6365          * extensions we dont know about yet.
6366          */
6367         if (size > sizeof(*attr)) {
6368                 unsigned char __user *addr;
6369                 unsigned char __user *end;
6370                 unsigned char val;
6371
6372                 addr = (void __user *)uattr + sizeof(*attr);
6373                 end  = (void __user *)uattr + size;
6374
6375                 for (; addr < end; addr++) {
6376                         ret = get_user(val, addr);
6377                         if (ret)
6378                                 return ret;
6379                         if (val)
6380                                 goto err_size;
6381                 }
6382                 size = sizeof(*attr);
6383         }
6384
6385         ret = copy_from_user(attr, uattr, size);
6386         if (ret)
6387                 return -EFAULT;
6388
6389         if (attr->__reserved_1)
6390                 return -EINVAL;
6391
6392         if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
6393                 return -EINVAL;
6394
6395         if (attr->read_format & ~(PERF_FORMAT_MAX-1))
6396                 return -EINVAL;
6397
6398 out:
6399         return ret;
6400
6401 err_size:
6402         put_user(sizeof(*attr), &uattr->size);
6403         ret = -E2BIG;
6404         goto out;
6405 }
6406
6407 static int
6408 perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
6409 {
6410         struct ring_buffer *rb = NULL, *old_rb = NULL;
6411         int ret = -EINVAL;
6412
6413         if (!output_event)
6414                 goto set;
6415
6416         /* don't allow circular references */
6417         if (event == output_event)
6418                 goto out;
6419
6420         /*
6421          * Don't allow cross-cpu buffers
6422          */
6423         if (output_event->cpu != event->cpu)
6424                 goto out;
6425
6426         /*
6427          * If its not a per-cpu rb, it must be the same task.
6428          */
6429         if (output_event->cpu == -1 && output_event->ctx != event->ctx)
6430                 goto out;
6431
6432 set:
6433         mutex_lock(&event->mmap_mutex);
6434         /* Can't redirect output if we've got an active mmap() */
6435         if (atomic_read(&event->mmap_count))
6436                 goto unlock;
6437
6438         old_rb = event->rb;
6439
6440         if (output_event) {
6441                 /* get the rb we want to redirect to */
6442                 rb = ring_buffer_get(output_event);
6443                 if (!rb)
6444                         goto unlock;
6445         }
6446
6447         if (old_rb)
6448                 ring_buffer_detach(event, old_rb);
6449
6450         if (rb)
6451                 ring_buffer_attach(event, rb);
6452
6453         rcu_assign_pointer(event->rb, rb);
6454
6455         if (old_rb) {
6456                 ring_buffer_put(old_rb);
6457                 /*
6458                  * Since we detached before setting the new rb, so that we
6459                  * could attach the new rb, we could have missed a wakeup.
6460                  * Provide it now.
6461                  */
6462                 wake_up_all(&event->waitq);
6463         }
6464
6465         ret = 0;
6466 unlock:
6467         mutex_unlock(&event->mmap_mutex);
6468
6469 out:
6470         return ret;
6471 }
6472
6473 static void mutex_lock_double(struct mutex *a, struct mutex *b)
6474 {
6475         if (b < a)
6476                 swap(a, b);
6477
6478         mutex_lock(a);
6479         mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
6480 }
6481
6482 /*
6483  * Variation on perf_event_ctx_lock_nested(), except we take two context
6484  * mutexes.
6485  */
6486 static struct perf_event_context *
6487 __perf_event_ctx_lock_double(struct perf_event *group_leader,
6488                              struct perf_event_context *ctx)
6489 {
6490         struct perf_event_context *gctx;
6491
6492 again:
6493         rcu_read_lock();
6494         gctx = ACCESS_ONCE(group_leader->ctx);
6495         if (!atomic_inc_not_zero(&gctx->refcount)) {
6496                 rcu_read_unlock();
6497                 goto again;
6498         }
6499         rcu_read_unlock();
6500
6501         mutex_lock_double(&gctx->mutex, &ctx->mutex);
6502
6503         if (group_leader->ctx != gctx) {
6504                 mutex_unlock(&ctx->mutex);
6505                 mutex_unlock(&gctx->mutex);
6506                 put_ctx(gctx);
6507                 goto again;
6508         }
6509
6510         return gctx;
6511 }
6512
6513 /**
6514  * sys_perf_event_open - open a performance event, associate it to a task/cpu
6515  *
6516  * @attr_uptr:  event_id type attributes for monitoring/sampling
6517  * @pid:                target pid
6518  * @cpu:                target cpu
6519  * @group_fd:           group leader event fd
6520  */
6521 SYSCALL_DEFINE5(perf_event_open,
6522                 struct perf_event_attr __user *, attr_uptr,
6523                 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
6524 {
6525         struct perf_event *group_leader = NULL, *output_event = NULL;
6526         struct perf_event *event, *sibling;
6527         struct perf_event_attr attr;
6528         struct perf_event_context *ctx, *uninitialized_var(gctx);
6529         struct file *event_file = NULL;
6530         struct file *group_file = NULL;
6531         struct task_struct *task = NULL;
6532         struct pmu *pmu;
6533         int event_fd;
6534         int move_group = 0;
6535         int fput_needed = 0;
6536         int err;
6537
6538         /* for future expandability... */
6539         if (flags & ~PERF_FLAG_ALL)
6540                 return -EINVAL;
6541
6542         err = perf_copy_attr(attr_uptr, &attr);
6543         if (err)
6544                 return err;
6545
6546         if (!attr.exclude_kernel) {
6547                 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6548                         return -EACCES;
6549         }
6550
6551         if (attr.freq) {
6552                 if (attr.sample_freq > sysctl_perf_event_sample_rate)
6553                         return -EINVAL;
6554         } else {
6555                 if (attr.sample_period & (1ULL << 63))
6556                         return -EINVAL;
6557         }
6558
6559         /*
6560          * In cgroup mode, the pid argument is used to pass the fd
6561          * opened to the cgroup directory in cgroupfs. The cpu argument
6562          * designates the cpu on which to monitor threads from that
6563          * cgroup.
6564          */
6565         if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
6566                 return -EINVAL;
6567
6568         event_fd = get_unused_fd_flags(O_RDWR);
6569         if (event_fd < 0)
6570                 return event_fd;
6571
6572         if (group_fd != -1) {
6573                 group_file = perf_fget_light(group_fd, &fput_needed);
6574                 if (IS_ERR(group_file)) {
6575                         err = PTR_ERR(group_file);
6576                         goto err_fd;
6577                 }
6578                 group_leader = group_file->private_data;
6579                 if (flags & PERF_FLAG_FD_OUTPUT)
6580                         output_event = group_leader;
6581                 if (flags & PERF_FLAG_FD_NO_GROUP)
6582                         group_leader = NULL;
6583         }
6584
6585         if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
6586                 task = find_lively_task_by_vpid(pid);
6587                 if (IS_ERR(task)) {
6588                         err = PTR_ERR(task);
6589                         goto err_group_fd;
6590                 }
6591         }
6592
6593         event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
6594                                  NULL, NULL);
6595         if (IS_ERR(event)) {
6596                 err = PTR_ERR(event);
6597                 goto err_task;
6598         }
6599
6600         if (flags & PERF_FLAG_PID_CGROUP) {
6601                 err = perf_cgroup_connect(pid, event, &attr, group_leader);
6602                 if (err)
6603                         goto err_alloc;
6604                 /*
6605                  * one more event:
6606                  * - that has cgroup constraint on event->cpu
6607                  * - that may need work on context switch
6608                  */
6609                 atomic_inc(&per_cpu(perf_cgroup_events, event->cpu));
6610                 jump_label_inc(&perf_sched_events);
6611         }
6612
6613         /*
6614          * Special case software events and allow them to be part of
6615          * any hardware group.
6616          */
6617         pmu = event->pmu;
6618
6619         if (group_leader &&
6620             (is_software_event(event) != is_software_event(group_leader))) {
6621                 if (is_software_event(event)) {
6622                         /*
6623                          * If event and group_leader are not both a software
6624                          * event, and event is, then group leader is not.
6625                          *
6626                          * Allow the addition of software events to !software
6627                          * groups, this is safe because software events never
6628                          * fail to schedule.
6629                          */
6630                         pmu = group_leader->pmu;
6631                 } else if (is_software_event(group_leader) &&
6632                            (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
6633                         /*
6634                          * In case the group is a pure software group, and we
6635                          * try to add a hardware event, move the whole group to
6636                          * the hardware context.
6637                          */
6638                         move_group = 1;
6639                 }
6640         }
6641
6642         /*
6643          * Get the target context (task or percpu):
6644          */
6645         ctx = find_get_context(pmu, task, cpu);
6646         if (IS_ERR(ctx)) {
6647                 err = PTR_ERR(ctx);
6648                 goto err_alloc;
6649         }
6650
6651         if (task) {
6652                 put_task_struct(task);
6653                 task = NULL;
6654         }
6655
6656         /*
6657          * Look up the group leader (we will attach this event to it):
6658          */
6659         if (group_leader) {
6660                 err = -EINVAL;
6661
6662                 /*
6663                  * Do not allow a recursive hierarchy (this new sibling
6664                  * becoming part of another group-sibling):
6665                  */
6666                 if (group_leader->group_leader != group_leader)
6667                         goto err_context;
6668                 /*
6669                  * Do not allow to attach to a group in a different
6670                  * task or CPU context:
6671                  */
6672                 if (move_group) {
6673                         if (group_leader->ctx->type != ctx->type)
6674                                 goto err_context;
6675                 } else {
6676                         if (group_leader->ctx != ctx)
6677                                 goto err_context;
6678                 }
6679
6680                 /*
6681                  * Only a group leader can be exclusive or pinned
6682                  */
6683                 if (attr.exclusive || attr.pinned)
6684                         goto err_context;
6685         }
6686
6687         if (output_event) {
6688                 err = perf_event_set_output(event, output_event);
6689                 if (err)
6690                         goto err_context;
6691         }
6692
6693         event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
6694         if (IS_ERR(event_file)) {
6695                 err = PTR_ERR(event_file);
6696                 goto err_context;
6697         }
6698
6699         if (move_group) {
6700                 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
6701
6702                 /*
6703                  * Check if we raced against another sys_perf_event_open() call
6704                  * moving the software group underneath us.
6705                  */
6706                 if (!(group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
6707                         /*
6708                          * If someone moved the group out from under us, check
6709                          * if this new event wound up on the same ctx, if so
6710                          * its the regular !move_group case, otherwise fail.
6711                          */
6712                         if (gctx != ctx) {
6713                                 err = -EINVAL;
6714                                 goto err_locked;
6715                         } else {
6716                                 perf_event_ctx_unlock(group_leader, gctx);
6717                                 move_group = 0;
6718                         }
6719                 }
6720
6721                 /*
6722                  * See perf_event_ctx_lock() for comments on the details
6723                  * of swizzling perf_event::ctx.
6724                  */
6725                 perf_remove_from_context(group_leader, false);
6726
6727                 /*
6728                  * Removing from the context ends up with disabled
6729                  * event. What we want here is event in the initial
6730                  * startup state, ready to be add into new context.
6731                  */
6732                 perf_event__state_init(group_leader);
6733                 list_for_each_entry(sibling, &group_leader->sibling_list,
6734                                     group_entry) {
6735                         perf_remove_from_context(sibling, false);
6736                         perf_event__state_init(sibling);
6737                         put_ctx(gctx);
6738                 }
6739         } else {
6740                 mutex_lock(&ctx->mutex);
6741         }
6742
6743         WARN_ON_ONCE(ctx->parent_ctx);
6744
6745         if (move_group) {
6746                 /*
6747                  * Wait for everybody to stop referencing the events through
6748                  * the old lists, before installing it on new lists.
6749                  */
6750                 synchronize_rcu();
6751
6752                 perf_install_in_context(ctx, group_leader, cpu);
6753                 get_ctx(ctx);
6754                 list_for_each_entry(sibling, &group_leader->sibling_list,
6755                                     group_entry) {
6756                         perf_install_in_context(ctx, sibling, cpu);
6757                         get_ctx(ctx);
6758                 }
6759         }
6760
6761         perf_install_in_context(ctx, event, cpu);
6762         ++ctx->generation;
6763         perf_unpin_context(ctx);
6764
6765         if (move_group) {
6766                 perf_event_ctx_unlock(group_leader, gctx);
6767                 put_ctx(gctx);
6768         }
6769         mutex_unlock(&ctx->mutex);
6770
6771         event->owner = current;
6772
6773         mutex_lock(&current->perf_event_mutex);
6774         list_add_tail(&event->owner_entry, &current->perf_event_list);
6775         mutex_unlock(&current->perf_event_mutex);
6776
6777         /*
6778          * Precalculate sample_data sizes
6779          */
6780         perf_event__header_size(event);
6781         perf_event__id_header_size(event);
6782
6783         /*
6784          * Drop the reference on the group_event after placing the
6785          * new event on the sibling_list. This ensures destruction
6786          * of the group leader will find the pointer to itself in
6787          * perf_group_detach().
6788          */
6789         fput_light(group_file, fput_needed);
6790         fd_install(event_fd, event_file);
6791         return event_fd;
6792
6793 err_locked:
6794         if (move_group)
6795                 perf_event_ctx_unlock(group_leader, gctx);
6796         mutex_unlock(&ctx->mutex);
6797         fput(event_file);
6798 err_context:
6799         perf_unpin_context(ctx);
6800         put_ctx(ctx);
6801 err_alloc:
6802         /*
6803          * If event_file is set, the fput() above will have called ->release()
6804          * and that will take care of freeing the event.
6805          */
6806         if (!event_file)
6807                 free_event(event);
6808 err_task:
6809         if (task)
6810                 put_task_struct(task);
6811 err_group_fd:
6812         fput_light(group_file, fput_needed);
6813 err_fd:
6814         put_unused_fd(event_fd);
6815         return err;
6816 }
6817
6818 /**
6819  * perf_event_create_kernel_counter
6820  *
6821  * @attr: attributes of the counter to create
6822  * @cpu: cpu in which the counter is bound
6823  * @task: task to profile (NULL for percpu)
6824  */
6825 struct perf_event *
6826 perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
6827                                  struct task_struct *task,
6828                                  perf_overflow_handler_t overflow_handler,
6829                                  void *context)
6830 {
6831         struct perf_event_context *ctx;
6832         struct perf_event *event;
6833         int err;
6834
6835         /*
6836          * Get the target context (task or percpu):
6837          */
6838
6839         event = perf_event_alloc(attr, cpu, task, NULL, NULL,
6840                                  overflow_handler, context);
6841         if (IS_ERR(event)) {
6842                 err = PTR_ERR(event);
6843                 goto err;
6844         }
6845
6846         ctx = find_get_context(event->pmu, task, cpu);
6847         if (IS_ERR(ctx)) {
6848                 err = PTR_ERR(ctx);
6849                 goto err_free;
6850         }
6851
6852         WARN_ON_ONCE(ctx->parent_ctx);
6853         mutex_lock(&ctx->mutex);
6854         perf_install_in_context(ctx, event, cpu);
6855         ++ctx->generation;
6856         perf_unpin_context(ctx);
6857         mutex_unlock(&ctx->mutex);
6858
6859         return event;
6860
6861 err_free:
6862         free_event(event);
6863 err:
6864         return ERR_PTR(err);
6865 }
6866 EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
6867
6868 static void sync_child_event(struct perf_event *child_event,
6869                                struct task_struct *child)
6870 {
6871         struct perf_event *parent_event = child_event->parent;
6872         u64 child_val;
6873
6874         if (child_event->attr.inherit_stat)
6875                 perf_event_read_event(child_event, child);
6876
6877         child_val = perf_event_count(child_event);
6878
6879         /*
6880          * Add back the child's count to the parent's count:
6881          */
6882         atomic64_add(child_val, &parent_event->child_count);
6883         atomic64_add(child_event->total_time_enabled,
6884                      &parent_event->child_total_time_enabled);
6885         atomic64_add(child_event->total_time_running,
6886                      &parent_event->child_total_time_running);
6887
6888         /*
6889          * Remove this event from the parent's list
6890          */
6891         WARN_ON_ONCE(parent_event->ctx->parent_ctx);
6892         mutex_lock(&parent_event->child_mutex);
6893         list_del_init(&child_event->child_list);
6894         mutex_unlock(&parent_event->child_mutex);
6895
6896         /*
6897          * Release the parent event, if this was the last
6898          * reference to it.
6899          */
6900         put_event(parent_event);
6901 }
6902
6903 static void
6904 __perf_event_exit_task(struct perf_event *child_event,
6905                          struct perf_event_context *child_ctx,
6906                          struct task_struct *child)
6907 {
6908         perf_remove_from_context(child_event, !!child_event->parent);
6909
6910         /*
6911          * It can happen that the parent exits first, and has events
6912          * that are still around due to the child reference. These
6913          * events need to be zapped.
6914          */
6915         if (child_event->parent) {
6916                 sync_child_event(child_event, child);
6917                 free_event(child_event);
6918         }
6919 }
6920
6921 static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
6922 {
6923         struct perf_event *child_event, *tmp;
6924         struct perf_event_context *child_ctx;
6925         unsigned long flags;
6926
6927         if (likely(!child->perf_event_ctxp[ctxn])) {
6928                 perf_event_task(child, NULL, 0);
6929                 return;
6930         }
6931
6932         local_irq_save(flags);
6933         /*
6934          * We can't reschedule here because interrupts are disabled,
6935          * and either child is current or it is a task that can't be
6936          * scheduled, so we are now safe from rescheduling changing
6937          * our context.
6938          */
6939         child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
6940
6941         /*
6942          * Take the context lock here so that if find_get_context is
6943          * reading child->perf_event_ctxp, we wait until it has
6944          * incremented the context's refcount before we do put_ctx below.
6945          */
6946         raw_spin_lock(&child_ctx->lock);
6947         task_ctx_sched_out(child_ctx);
6948         child->perf_event_ctxp[ctxn] = NULL;
6949         /*
6950          * If this context is a clone; unclone it so it can't get
6951          * swapped to another process while we're removing all
6952          * the events from it.
6953          */
6954         unclone_ctx(child_ctx);
6955         update_context_time(child_ctx);
6956         raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
6957
6958         /*
6959          * Report the task dead after unscheduling the events so that we
6960          * won't get any samples after PERF_RECORD_EXIT. We can however still
6961          * get a few PERF_RECORD_READ events.
6962          */
6963         perf_event_task(child, child_ctx, 0);
6964
6965         /*
6966          * We can recurse on the same lock type through:
6967          *
6968          *   __perf_event_exit_task()
6969          *     sync_child_event()
6970          *       put_event()
6971          *         mutex_lock(&ctx->mutex)
6972          *
6973          * But since its the parent context it won't be the same instance.
6974          */
6975         mutex_lock(&child_ctx->mutex);
6976
6977 again:
6978         list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
6979                                  group_entry)
6980                 __perf_event_exit_task(child_event, child_ctx, child);
6981
6982         list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
6983                                  group_entry)
6984                 __perf_event_exit_task(child_event, child_ctx, child);
6985
6986         /*
6987          * If the last event was a group event, it will have appended all
6988          * its siblings to the list, but we obtained 'tmp' before that which
6989          * will still point to the list head terminating the iteration.
6990          */
6991         if (!list_empty(&child_ctx->pinned_groups) ||
6992             !list_empty(&child_ctx->flexible_groups))
6993                 goto again;
6994
6995         mutex_unlock(&child_ctx->mutex);
6996
6997         put_ctx(child_ctx);
6998 }
6999
7000 /*
7001  * When a child task exits, feed back event values to parent events.
7002  */
7003 void perf_event_exit_task(struct task_struct *child)
7004 {
7005         struct perf_event *event, *tmp;
7006         int ctxn;
7007
7008         mutex_lock(&child->perf_event_mutex);
7009         list_for_each_entry_safe(event, tmp, &child->perf_event_list,
7010                                  owner_entry) {
7011                 list_del_init(&event->owner_entry);
7012
7013                 /*
7014                  * Ensure the list deletion is visible before we clear
7015                  * the owner, closes a race against perf_release() where
7016                  * we need to serialize on the owner->perf_event_mutex.
7017                  */
7018                 smp_wmb();
7019                 event->owner = NULL;
7020         }
7021         mutex_unlock(&child->perf_event_mutex);
7022
7023         for_each_task_context_nr(ctxn)
7024                 perf_event_exit_task_context(child, ctxn);
7025 }
7026
7027 static void perf_free_event(struct perf_event *event,
7028                             struct perf_event_context *ctx)
7029 {
7030         struct perf_event *parent = event->parent;
7031
7032         if (WARN_ON_ONCE(!parent))
7033                 return;
7034
7035         mutex_lock(&parent->child_mutex);
7036         list_del_init(&event->child_list);
7037         mutex_unlock(&parent->child_mutex);
7038
7039         put_event(parent);
7040
7041         perf_group_detach(event);
7042         list_del_event(event, ctx);
7043         free_event(event);
7044 }
7045
7046 /*
7047  * free an unexposed, unused context as created by inheritance by
7048  * perf_event_init_task below, used by fork() in case of fail.
7049  */
7050 void perf_event_free_task(struct task_struct *task)
7051 {
7052         struct perf_event_context *ctx;
7053         struct perf_event *event, *tmp;
7054         int ctxn;
7055
7056         for_each_task_context_nr(ctxn) {
7057                 ctx = task->perf_event_ctxp[ctxn];
7058                 if (!ctx)
7059                         continue;
7060
7061                 mutex_lock(&ctx->mutex);
7062 again:
7063                 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
7064                                 group_entry)
7065                         perf_free_event(event, ctx);
7066
7067                 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
7068                                 group_entry)
7069                         perf_free_event(event, ctx);
7070
7071                 if (!list_empty(&ctx->pinned_groups) ||
7072                                 !list_empty(&ctx->flexible_groups))
7073                         goto again;
7074
7075                 mutex_unlock(&ctx->mutex);
7076
7077                 put_ctx(ctx);
7078         }
7079 }
7080
7081 void perf_event_delayed_put(struct task_struct *task)
7082 {
7083         int ctxn;
7084
7085         for_each_task_context_nr(ctxn)
7086                 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
7087 }
7088
7089 /*
7090  * inherit a event from parent task to child task:
7091  */
7092 static struct perf_event *
7093 inherit_event(struct perf_event *parent_event,
7094               struct task_struct *parent,
7095               struct perf_event_context *parent_ctx,
7096               struct task_struct *child,
7097               struct perf_event *group_leader,
7098               struct perf_event_context *child_ctx)
7099 {
7100         struct perf_event *child_event;
7101         unsigned long flags;
7102
7103         /*
7104          * Instead of creating recursive hierarchies of events,
7105          * we link inherited events back to the original parent,
7106          * which has a filp for sure, which we use as the reference
7107          * count:
7108          */
7109         if (parent_event->parent)
7110                 parent_event = parent_event->parent;
7111
7112         child_event = perf_event_alloc(&parent_event->attr,
7113                                            parent_event->cpu,
7114                                            child,
7115                                            group_leader, parent_event,
7116                                            NULL, NULL);
7117         if (IS_ERR(child_event))
7118                 return child_event;
7119
7120         if (!atomic_long_inc_not_zero(&parent_event->refcount)) {
7121                 free_event(child_event);
7122                 return NULL;
7123         }
7124
7125         get_ctx(child_ctx);
7126
7127         /*
7128          * Make the child state follow the state of the parent event,
7129          * not its attr.disabled bit.  We hold the parent's mutex,
7130          * so we won't race with perf_event_{en, dis}able_family.
7131          */
7132         if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
7133                 child_event->state = PERF_EVENT_STATE_INACTIVE;
7134         else
7135                 child_event->state = PERF_EVENT_STATE_OFF;
7136
7137         if (parent_event->attr.freq) {
7138                 u64 sample_period = parent_event->hw.sample_period;
7139                 struct hw_perf_event *hwc = &child_event->hw;
7140
7141                 hwc->sample_period = sample_period;
7142                 hwc->last_period   = sample_period;
7143
7144                 local64_set(&hwc->period_left, sample_period);
7145         }
7146
7147         child_event->ctx = child_ctx;
7148         child_event->overflow_handler = parent_event->overflow_handler;
7149         child_event->overflow_handler_context
7150                 = parent_event->overflow_handler_context;
7151
7152         /*
7153          * Precalculate sample_data sizes
7154          */
7155         perf_event__header_size(child_event);
7156         perf_event__id_header_size(child_event);
7157
7158         /*
7159          * Link it up in the child's context:
7160          */
7161         raw_spin_lock_irqsave(&child_ctx->lock, flags);
7162         add_event_to_ctx(child_event, child_ctx);
7163         raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
7164
7165         /*
7166          * Link this into the parent event's child list
7167          */
7168         WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7169         mutex_lock(&parent_event->child_mutex);
7170         list_add_tail(&child_event->child_list, &parent_event->child_list);
7171         mutex_unlock(&parent_event->child_mutex);
7172
7173         return child_event;
7174 }
7175
7176 static int inherit_group(struct perf_event *parent_event,
7177               struct task_struct *parent,
7178               struct perf_event_context *parent_ctx,
7179               struct task_struct *child,
7180               struct perf_event_context *child_ctx)
7181 {
7182         struct perf_event *leader;
7183         struct perf_event *sub;
7184         struct perf_event *child_ctr;
7185
7186         leader = inherit_event(parent_event, parent, parent_ctx,
7187                                  child, NULL, child_ctx);
7188         if (IS_ERR(leader))
7189                 return PTR_ERR(leader);
7190         list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
7191                 child_ctr = inherit_event(sub, parent, parent_ctx,
7192                                             child, leader, child_ctx);
7193                 if (IS_ERR(child_ctr))
7194                         return PTR_ERR(child_ctr);
7195         }
7196         return 0;
7197 }
7198
7199 static int
7200 inherit_task_group(struct perf_event *event, struct task_struct *parent,
7201                    struct perf_event_context *parent_ctx,
7202                    struct task_struct *child, int ctxn,
7203                    int *inherited_all)
7204 {
7205         int ret;
7206         struct perf_event_context *child_ctx;
7207
7208         if (!event->attr.inherit) {
7209                 *inherited_all = 0;
7210                 return 0;
7211         }
7212
7213         child_ctx = child->perf_event_ctxp[ctxn];
7214         if (!child_ctx) {
7215                 /*
7216                  * This is executed from the parent task context, so
7217                  * inherit events that have been marked for cloning.
7218                  * First allocate and initialize a context for the
7219                  * child.
7220                  */
7221
7222                 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
7223                 if (!child_ctx)
7224                         return -ENOMEM;
7225
7226                 child->perf_event_ctxp[ctxn] = child_ctx;
7227         }
7228
7229         ret = inherit_group(event, parent, parent_ctx,
7230                             child, child_ctx);
7231
7232         if (ret)
7233                 *inherited_all = 0;
7234
7235         return ret;
7236 }
7237
7238 /*
7239  * Initialize the perf_event context in task_struct
7240  */
7241 int perf_event_init_context(struct task_struct *child, int ctxn)
7242 {
7243         struct perf_event_context *child_ctx, *parent_ctx;
7244         struct perf_event_context *cloned_ctx;
7245         struct perf_event *event;
7246         struct task_struct *parent = current;
7247         int inherited_all = 1;
7248         unsigned long flags;
7249         int ret = 0;
7250
7251         if (likely(!parent->perf_event_ctxp[ctxn]))
7252                 return 0;
7253
7254         /*
7255          * If the parent's context is a clone, pin it so it won't get
7256          * swapped under us.
7257          */
7258         parent_ctx = perf_pin_task_context(parent, ctxn);
7259
7260         /*
7261          * No need to check if parent_ctx != NULL here; since we saw
7262          * it non-NULL earlier, the only reason for it to become NULL
7263          * is if we exit, and since we're currently in the middle of
7264          * a fork we can't be exiting at the same time.
7265          */
7266
7267         /*
7268          * Lock the parent list. No need to lock the child - not PID
7269          * hashed yet and not running, so nobody can access it.
7270          */
7271         mutex_lock(&parent_ctx->mutex);
7272
7273         /*
7274          * We dont have to disable NMIs - we are only looking at
7275          * the list, not manipulating it:
7276          */
7277         list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
7278                 ret = inherit_task_group(event, parent, parent_ctx,
7279                                          child, ctxn, &inherited_all);
7280                 if (ret)
7281                         goto out_unlock;
7282         }
7283
7284         /*
7285          * We can't hold ctx->lock when iterating the ->flexible_group list due
7286          * to allocations, but we need to prevent rotation because
7287          * rotate_ctx() will change the list from interrupt context.
7288          */
7289         raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7290         parent_ctx->rotate_disable = 1;
7291         raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
7292
7293         list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
7294                 ret = inherit_task_group(event, parent, parent_ctx,
7295                                          child, ctxn, &inherited_all);
7296                 if (ret)
7297                         goto out_unlock;
7298         }
7299
7300         raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7301         parent_ctx->rotate_disable = 0;
7302
7303         child_ctx = child->perf_event_ctxp[ctxn];
7304
7305         if (child_ctx && inherited_all) {
7306                 /*
7307                  * Mark the child context as a clone of the parent
7308                  * context, or of whatever the parent is a clone of.
7309                  *
7310                  * Note that if the parent is a clone, the holding of
7311                  * parent_ctx->lock avoids it from being uncloned.
7312                  */
7313                 cloned_ctx = parent_ctx->parent_ctx;
7314                 if (cloned_ctx) {
7315                         child_ctx->parent_ctx = cloned_ctx;
7316                         child_ctx->parent_gen = parent_ctx->parent_gen;
7317                 } else {
7318                         child_ctx->parent_ctx = parent_ctx;
7319                         child_ctx->parent_gen = parent_ctx->generation;
7320                 }
7321                 get_ctx(child_ctx->parent_ctx);
7322         }
7323
7324         raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
7325 out_unlock:
7326         mutex_unlock(&parent_ctx->mutex);
7327
7328         perf_unpin_context(parent_ctx);
7329         put_ctx(parent_ctx);
7330
7331         return ret;
7332 }
7333
7334 /*
7335  * Initialize the perf_event context in task_struct
7336  */
7337 int perf_event_init_task(struct task_struct *child)
7338 {
7339         int ctxn, ret;
7340
7341         memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
7342         mutex_init(&child->perf_event_mutex);
7343         INIT_LIST_HEAD(&child->perf_event_list);
7344
7345         for_each_task_context_nr(ctxn) {
7346                 ret = perf_event_init_context(child, ctxn);
7347                 if (ret) {
7348                         perf_event_free_task(child);
7349                         return ret;
7350                 }
7351         }
7352
7353         return 0;
7354 }
7355
7356 static void __init perf_event_init_all_cpus(void)
7357 {
7358         struct swevent_htable *swhash;
7359         int cpu;
7360
7361         for_each_possible_cpu(cpu) {
7362                 swhash = &per_cpu(swevent_htable, cpu);
7363                 mutex_init(&swhash->hlist_mutex);
7364                 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
7365         }
7366 }
7367
7368 static void __cpuinit perf_event_init_cpu(int cpu)
7369 {
7370         struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
7371
7372         mutex_lock(&swhash->hlist_mutex);
7373         if (swhash->hlist_refcount > 0) {
7374                 struct swevent_hlist *hlist;
7375
7376                 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
7377                 WARN_ON(!hlist);
7378                 rcu_assign_pointer(swhash->swevent_hlist, hlist);
7379         }
7380         mutex_unlock(&swhash->hlist_mutex);
7381 }
7382
7383 #if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
7384 static void perf_pmu_rotate_stop(struct pmu *pmu)
7385 {
7386         struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
7387
7388         WARN_ON(!irqs_disabled());
7389
7390         list_del_init(&cpuctx->rotation_list);
7391 }
7392
7393 static void __perf_event_exit_context(void *__info)
7394 {
7395         struct remove_event re = { .detach_group = false };
7396         struct perf_event_context *ctx = __info;
7397
7398         perf_pmu_rotate_stop(ctx->pmu);
7399
7400         rcu_read_lock();
7401         list_for_each_entry_rcu(re.event, &ctx->event_list, event_entry)
7402                 __perf_remove_from_context(&re);
7403         rcu_read_unlock();
7404 }
7405
7406 static void perf_event_exit_cpu_context(int cpu)
7407 {
7408         struct perf_event_context *ctx;
7409         struct pmu *pmu;
7410         int idx;
7411
7412         idx = srcu_read_lock(&pmus_srcu);
7413         list_for_each_entry_rcu(pmu, &pmus, entry) {
7414                 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
7415
7416                 mutex_lock(&ctx->mutex);
7417                 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
7418                 mutex_unlock(&ctx->mutex);
7419         }
7420         srcu_read_unlock(&pmus_srcu, idx);
7421 }
7422
7423 static void perf_event_exit_cpu(int cpu)
7424 {
7425         perf_event_exit_cpu_context(cpu);
7426 }
7427 #else
7428 static inline void perf_event_exit_cpu(int cpu) { }
7429 #endif
7430
7431 static int
7432 perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
7433 {
7434         int cpu;
7435
7436         for_each_online_cpu(cpu)
7437                 perf_event_exit_cpu(cpu);
7438
7439         return NOTIFY_OK;
7440 }
7441
7442 /*
7443  * Run the perf reboot notifier at the very last possible moment so that
7444  * the generic watchdog code runs as long as possible.
7445  */
7446 static struct notifier_block perf_reboot_notifier = {
7447         .notifier_call = perf_reboot,
7448         .priority = INT_MIN,
7449 };
7450
7451 static int __cpuinit
7452 perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
7453 {
7454         unsigned int cpu = (long)hcpu;
7455
7456         switch (action & ~CPU_TASKS_FROZEN) {
7457
7458         case CPU_UP_PREPARE:
7459         case CPU_DOWN_FAILED:
7460                 perf_event_init_cpu(cpu);
7461                 break;
7462
7463         case CPU_UP_CANCELED:
7464         case CPU_DOWN_PREPARE:
7465                 perf_event_exit_cpu(cpu);
7466                 break;
7467
7468         default:
7469                 break;
7470         }
7471
7472         return NOTIFY_OK;
7473 }
7474
7475 void __init perf_event_init(void)
7476 {
7477         int ret;
7478
7479         idr_init(&pmu_idr);
7480
7481         perf_event_init_all_cpus();
7482         init_srcu_struct(&pmus_srcu);
7483         perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
7484         perf_pmu_register(&perf_cpu_clock, NULL, -1);
7485         perf_pmu_register(&perf_task_clock, NULL, -1);
7486         perf_tp_register();
7487         perf_cpu_notifier(perf_cpu_notify);
7488         register_reboot_notifier(&perf_reboot_notifier);
7489
7490         ret = init_hw_breakpoint();
7491         WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
7492 }
7493
7494 static int __init perf_event_sysfs_init(void)
7495 {
7496         struct pmu *pmu;
7497         int ret;
7498
7499         mutex_lock(&pmus_lock);
7500
7501         ret = bus_register(&pmu_bus);
7502         if (ret)
7503                 goto unlock;
7504
7505         list_for_each_entry(pmu, &pmus, entry) {
7506                 if (!pmu->name || pmu->type < 0)
7507                         continue;
7508
7509                 ret = pmu_dev_alloc(pmu);
7510                 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
7511         }
7512         pmu_bus_running = 1;
7513         ret = 0;
7514
7515 unlock:
7516         mutex_unlock(&pmus_lock);
7517
7518         return ret;
7519 }
7520 device_initcall(perf_event_sysfs_init);
7521
7522 #ifdef CONFIG_CGROUP_PERF
7523 static struct cgroup_subsys_state *perf_cgroup_create(
7524         struct cgroup_subsys *ss, struct cgroup *cont)
7525 {
7526         struct perf_cgroup *jc;
7527
7528         jc = kzalloc(sizeof(*jc), GFP_KERNEL);
7529         if (!jc)
7530                 return ERR_PTR(-ENOMEM);
7531
7532         jc->info = alloc_percpu(struct perf_cgroup_info);
7533         if (!jc->info) {
7534                 kfree(jc);
7535                 return ERR_PTR(-ENOMEM);
7536         }
7537
7538         return &jc->css;
7539 }
7540
7541 static void perf_cgroup_destroy(struct cgroup_subsys *ss,
7542                                 struct cgroup *cont)
7543 {
7544         struct perf_cgroup *jc;
7545         jc = container_of(cgroup_subsys_state(cont, perf_subsys_id),
7546                           struct perf_cgroup, css);
7547         free_percpu(jc->info);
7548         kfree(jc);
7549 }
7550
7551 static int __perf_cgroup_move(void *info)
7552 {
7553         struct task_struct *task = info;
7554         perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
7555         return 0;
7556 }
7557
7558 static void
7559 perf_cgroup_attach_task(struct cgroup *cgrp, struct task_struct *task)
7560 {
7561         task_function_call(task, __perf_cgroup_move, task);
7562 }
7563
7564 static void perf_cgroup_exit(struct cgroup_subsys *ss, struct cgroup *cgrp,
7565                 struct cgroup *old_cgrp, struct task_struct *task)
7566 {
7567         /*
7568          * cgroup_exit() is called in the copy_process() failure path.
7569          * Ignore this case since the task hasn't ran yet, this avoids
7570          * trying to poke a half freed task state from generic code.
7571          */
7572         if (!(task->flags & PF_EXITING))
7573                 return;
7574
7575         perf_cgroup_attach_task(cgrp, task);
7576 }
7577
7578 struct cgroup_subsys perf_subsys = {
7579         .name           = "perf_event",
7580         .subsys_id      = perf_subsys_id,
7581         .create         = perf_cgroup_create,
7582         .destroy        = perf_cgroup_destroy,
7583         .exit           = perf_cgroup_exit,
7584         .attach_task    = perf_cgroup_attach_task,
7585 };
7586 #endif /* CONFIG_CGROUP_PERF */