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