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