ARM64: dts: rk3399-evb: add gsl3673 node for rk3399-evb
[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
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/cgroup.h>
38 #include <linux/perf_event.h>
39 #include <linux/trace_events.h>
40 #include <linux/hw_breakpoint.h>
41 #include <linux/mm_types.h>
42 #include <linux/module.h>
43 #include <linux/mman.h>
44 #include <linux/compat.h>
45 #include <linux/bpf.h>
46 #include <linux/filter.h>
47
48 #include "internal.h"
49
50 #include <asm/irq_regs.h>
51
52 static struct workqueue_struct *perf_wq;
53
54 typedef int (*remote_function_f)(void *);
55
56 struct remote_function_call {
57         struct task_struct      *p;
58         remote_function_f       func;
59         void                    *info;
60         int                     ret;
61 };
62
63 static void remote_function(void *data)
64 {
65         struct remote_function_call *tfc = data;
66         struct task_struct *p = tfc->p;
67
68         if (p) {
69                 tfc->ret = -EAGAIN;
70                 if (task_cpu(p) != smp_processor_id() || !task_curr(p))
71                         return;
72         }
73
74         tfc->ret = tfc->func(tfc->info);
75 }
76
77 /**
78  * task_function_call - call a function on the cpu on which a task runs
79  * @p:          the task to evaluate
80  * @func:       the function to be called
81  * @info:       the function call argument
82  *
83  * Calls the function @func when the task is currently running. This might
84  * be on the current CPU, which just calls the function directly
85  *
86  * returns: @func return value, or
87  *          -ESRCH  - when the process isn't running
88  *          -EAGAIN - when the process moved away
89  */
90 static int
91 task_function_call(struct task_struct *p, remote_function_f func, void *info)
92 {
93         struct remote_function_call data = {
94                 .p      = p,
95                 .func   = func,
96                 .info   = info,
97                 .ret    = -ESRCH, /* No such (running) process */
98         };
99
100         if (task_curr(p))
101                 smp_call_function_single(task_cpu(p), remote_function, &data, 1);
102
103         return data.ret;
104 }
105
106 /**
107  * cpu_function_call - call a function on the cpu
108  * @func:       the function to be called
109  * @info:       the function call argument
110  *
111  * Calls the function @func on the remote cpu.
112  *
113  * returns: @func return value or -ENXIO when the cpu is offline
114  */
115 static int cpu_function_call(int cpu, remote_function_f func, void *info)
116 {
117         struct remote_function_call data = {
118                 .p      = NULL,
119                 .func   = func,
120                 .info   = info,
121                 .ret    = -ENXIO, /* No such CPU */
122         };
123
124         smp_call_function_single(cpu, remote_function, &data, 1);
125
126         return data.ret;
127 }
128
129 #define EVENT_OWNER_KERNEL ((void *) -1)
130
131 static bool is_kernel_event(struct perf_event *event)
132 {
133         return event->owner == EVENT_OWNER_KERNEL;
134 }
135
136 #define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
137                        PERF_FLAG_FD_OUTPUT  |\
138                        PERF_FLAG_PID_CGROUP |\
139                        PERF_FLAG_FD_CLOEXEC)
140
141 /*
142  * branch priv levels that need permission checks
143  */
144 #define PERF_SAMPLE_BRANCH_PERM_PLM \
145         (PERF_SAMPLE_BRANCH_KERNEL |\
146          PERF_SAMPLE_BRANCH_HV)
147
148 enum event_type_t {
149         EVENT_FLEXIBLE = 0x1,
150         EVENT_PINNED = 0x2,
151         EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
152 };
153
154 /*
155  * perf_sched_events : >0 events exist
156  * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
157  */
158 struct static_key_deferred perf_sched_events __read_mostly;
159 static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
160 static DEFINE_PER_CPU(int, perf_sched_cb_usages);
161
162 static atomic_t nr_mmap_events __read_mostly;
163 static atomic_t nr_comm_events __read_mostly;
164 static atomic_t nr_task_events __read_mostly;
165 static atomic_t nr_freq_events __read_mostly;
166 static atomic_t nr_switch_events __read_mostly;
167
168 static LIST_HEAD(pmus);
169 static DEFINE_MUTEX(pmus_lock);
170 static struct srcu_struct pmus_srcu;
171
172 /*
173  * perf event paranoia level:
174  *  -1 - not paranoid at all
175  *   0 - disallow raw tracepoint access for unpriv
176  *   1 - disallow cpu events for unpriv
177  *   2 - disallow kernel profiling for unpriv
178  *   3 - disallow all unpriv perf event use
179  */
180 #ifdef CONFIG_SECURITY_PERF_EVENTS_RESTRICT
181 int sysctl_perf_event_paranoid __read_mostly = 3;
182 #else
183 int sysctl_perf_event_paranoid __read_mostly = 1;
184 #endif
185
186 /* Minimum for 512 kiB + 1 user control page */
187 int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
188
189 /*
190  * max perf event sample rate
191  */
192 #define DEFAULT_MAX_SAMPLE_RATE         100000
193 #define DEFAULT_SAMPLE_PERIOD_NS        (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
194 #define DEFAULT_CPU_TIME_MAX_PERCENT    25
195
196 int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
197
198 static int max_samples_per_tick __read_mostly   = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
199 static int perf_sample_period_ns __read_mostly  = DEFAULT_SAMPLE_PERIOD_NS;
200
201 static int perf_sample_allowed_ns __read_mostly =
202         DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
203
204 static void update_perf_cpu_limits(void)
205 {
206         u64 tmp = perf_sample_period_ns;
207
208         tmp *= sysctl_perf_cpu_time_max_percent;
209         do_div(tmp, 100);
210         ACCESS_ONCE(perf_sample_allowed_ns) = tmp;
211 }
212
213 static int perf_rotate_context(struct perf_cpu_context *cpuctx);
214
215 int perf_proc_update_handler(struct ctl_table *table, int write,
216                 void __user *buffer, size_t *lenp,
217                 loff_t *ppos)
218 {
219         int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
220
221         if (ret || !write)
222                 return ret;
223
224         max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
225         perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
226         update_perf_cpu_limits();
227
228         return 0;
229 }
230
231 int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
232
233 int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
234                                 void __user *buffer, size_t *lenp,
235                                 loff_t *ppos)
236 {
237         int ret = proc_dointvec(table, write, buffer, lenp, ppos);
238
239         if (ret || !write)
240                 return ret;
241
242         update_perf_cpu_limits();
243
244         return 0;
245 }
246
247 /*
248  * perf samples are done in some very critical code paths (NMIs).
249  * If they take too much CPU time, the system can lock up and not
250  * get any real work done.  This will drop the sample rate when
251  * we detect that events are taking too long.
252  */
253 #define NR_ACCUMULATED_SAMPLES 128
254 static DEFINE_PER_CPU(u64, running_sample_length);
255
256 static void perf_duration_warn(struct irq_work *w)
257 {
258         u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
259         u64 avg_local_sample_len;
260         u64 local_samples_len;
261
262         local_samples_len = __this_cpu_read(running_sample_length);
263         avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
264
265         printk_ratelimited(KERN_WARNING
266                         "perf interrupt took too long (%lld > %lld), lowering "
267                         "kernel.perf_event_max_sample_rate to %d\n",
268                         avg_local_sample_len, allowed_ns >> 1,
269                         sysctl_perf_event_sample_rate);
270 }
271
272 static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
273
274 void perf_sample_event_took(u64 sample_len_ns)
275 {
276         u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
277         u64 avg_local_sample_len;
278         u64 local_samples_len;
279
280         if (allowed_ns == 0)
281                 return;
282
283         /* decay the counter by 1 average sample */
284         local_samples_len = __this_cpu_read(running_sample_length);
285         local_samples_len -= local_samples_len/NR_ACCUMULATED_SAMPLES;
286         local_samples_len += sample_len_ns;
287         __this_cpu_write(running_sample_length, local_samples_len);
288
289         /*
290          * note: this will be biased artifically low until we have
291          * seen NR_ACCUMULATED_SAMPLES.  Doing it this way keeps us
292          * from having to maintain a count.
293          */
294         avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
295
296         if (avg_local_sample_len <= allowed_ns)
297                 return;
298
299         if (max_samples_per_tick <= 1)
300                 return;
301
302         max_samples_per_tick = DIV_ROUND_UP(max_samples_per_tick, 2);
303         sysctl_perf_event_sample_rate = max_samples_per_tick * HZ;
304         perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
305
306         update_perf_cpu_limits();
307
308         if (!irq_work_queue(&perf_duration_work)) {
309                 early_printk("perf interrupt took too long (%lld > %lld), lowering "
310                              "kernel.perf_event_max_sample_rate to %d\n",
311                              avg_local_sample_len, allowed_ns >> 1,
312                              sysctl_perf_event_sample_rate);
313         }
314 }
315
316 static atomic64_t perf_event_id;
317
318 static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
319                               enum event_type_t event_type);
320
321 static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
322                              enum event_type_t event_type,
323                              struct task_struct *task);
324
325 static void update_context_time(struct perf_event_context *ctx);
326 static u64 perf_event_time(struct perf_event *event);
327
328 void __weak perf_event_print_debug(void)        { }
329
330 extern __weak const char *perf_pmu_name(void)
331 {
332         return "pmu";
333 }
334
335 static inline u64 perf_clock(void)
336 {
337         return local_clock();
338 }
339
340 static inline u64 perf_event_clock(struct perf_event *event)
341 {
342         return event->clock();
343 }
344
345 static inline struct perf_cpu_context *
346 __get_cpu_context(struct perf_event_context *ctx)
347 {
348         return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
349 }
350
351 static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
352                           struct perf_event_context *ctx)
353 {
354         raw_spin_lock(&cpuctx->ctx.lock);
355         if (ctx)
356                 raw_spin_lock(&ctx->lock);
357 }
358
359 static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
360                             struct perf_event_context *ctx)
361 {
362         if (ctx)
363                 raw_spin_unlock(&ctx->lock);
364         raw_spin_unlock(&cpuctx->ctx.lock);
365 }
366
367 #ifdef CONFIG_CGROUP_PERF
368
369 static inline bool
370 perf_cgroup_match(struct perf_event *event)
371 {
372         struct perf_event_context *ctx = event->ctx;
373         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
374
375         /* @event doesn't care about cgroup */
376         if (!event->cgrp)
377                 return true;
378
379         /* wants specific cgroup scope but @cpuctx isn't associated with any */
380         if (!cpuctx->cgrp)
381                 return false;
382
383         /*
384          * Cgroup scoping is recursive.  An event enabled for a cgroup is
385          * also enabled for all its descendant cgroups.  If @cpuctx's
386          * cgroup is a descendant of @event's (the test covers identity
387          * case), it's a match.
388          */
389         return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
390                                     event->cgrp->css.cgroup);
391 }
392
393 static inline void perf_detach_cgroup(struct perf_event *event)
394 {
395         css_put(&event->cgrp->css);
396         event->cgrp = NULL;
397 }
398
399 static inline int is_cgroup_event(struct perf_event *event)
400 {
401         return event->cgrp != NULL;
402 }
403
404 static inline u64 perf_cgroup_event_time(struct perf_event *event)
405 {
406         struct perf_cgroup_info *t;
407
408         t = per_cpu_ptr(event->cgrp->info, event->cpu);
409         return t->time;
410 }
411
412 static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
413 {
414         struct perf_cgroup_info *info;
415         u64 now;
416
417         now = perf_clock();
418
419         info = this_cpu_ptr(cgrp->info);
420
421         info->time += now - info->timestamp;
422         info->timestamp = now;
423 }
424
425 static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
426 {
427         struct perf_cgroup *cgrp_out = cpuctx->cgrp;
428         if (cgrp_out)
429                 __update_cgrp_time(cgrp_out);
430 }
431
432 static inline void update_cgrp_time_from_event(struct perf_event *event)
433 {
434         struct perf_cgroup *cgrp;
435
436         /*
437          * ensure we access cgroup data only when needed and
438          * when we know the cgroup is pinned (css_get)
439          */
440         if (!is_cgroup_event(event))
441                 return;
442
443         cgrp = perf_cgroup_from_task(current, event->ctx);
444         /*
445          * Do not update time when cgroup is not active
446          */
447         if (cgrp == event->cgrp)
448                 __update_cgrp_time(event->cgrp);
449 }
450
451 static inline void
452 perf_cgroup_set_timestamp(struct task_struct *task,
453                           struct perf_event_context *ctx)
454 {
455         struct perf_cgroup *cgrp;
456         struct perf_cgroup_info *info;
457
458         /*
459          * ctx->lock held by caller
460          * ensure we do not access cgroup data
461          * unless we have the cgroup pinned (css_get)
462          */
463         if (!task || !ctx->nr_cgroups)
464                 return;
465
466         cgrp = perf_cgroup_from_task(task, ctx);
467         info = this_cpu_ptr(cgrp->info);
468         info->timestamp = ctx->timestamp;
469 }
470
471 #define PERF_CGROUP_SWOUT       0x1 /* cgroup switch out every event */
472 #define PERF_CGROUP_SWIN        0x2 /* cgroup switch in events based on task */
473
474 /*
475  * reschedule events based on the cgroup constraint of task.
476  *
477  * mode SWOUT : schedule out everything
478  * mode SWIN : schedule in based on cgroup for next
479  */
480 static void perf_cgroup_switch(struct task_struct *task, int mode)
481 {
482         struct perf_cpu_context *cpuctx;
483         struct pmu *pmu;
484         unsigned long flags;
485
486         /*
487          * disable interrupts to avoid geting nr_cgroup
488          * changes via __perf_event_disable(). Also
489          * avoids preemption.
490          */
491         local_irq_save(flags);
492
493         /*
494          * we reschedule only in the presence of cgroup
495          * constrained events.
496          */
497
498         list_for_each_entry_rcu(pmu, &pmus, entry) {
499                 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
500                 if (cpuctx->unique_pmu != pmu)
501                         continue; /* ensure we process each cpuctx once */
502
503                 /*
504                  * perf_cgroup_events says at least one
505                  * context on this CPU has cgroup events.
506                  *
507                  * ctx->nr_cgroups reports the number of cgroup
508                  * events for a context.
509                  */
510                 if (cpuctx->ctx.nr_cgroups > 0) {
511                         perf_ctx_lock(cpuctx, cpuctx->task_ctx);
512                         perf_pmu_disable(cpuctx->ctx.pmu);
513
514                         if (mode & PERF_CGROUP_SWOUT) {
515                                 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
516                                 /*
517                                  * must not be done before ctxswout due
518                                  * to event_filter_match() in event_sched_out()
519                                  */
520                                 cpuctx->cgrp = NULL;
521                         }
522
523                         if (mode & PERF_CGROUP_SWIN) {
524                                 WARN_ON_ONCE(cpuctx->cgrp);
525                                 /*
526                                  * set cgrp before ctxsw in to allow
527                                  * event_filter_match() to not have to pass
528                                  * task around
529                                  * we pass the cpuctx->ctx to perf_cgroup_from_task()
530                                  * because cgorup events are only per-cpu
531                                  */
532                                 cpuctx->cgrp = perf_cgroup_from_task(task, &cpuctx->ctx);
533                                 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
534                         }
535                         perf_pmu_enable(cpuctx->ctx.pmu);
536                         perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
537                 }
538         }
539
540         local_irq_restore(flags);
541 }
542
543 static inline void perf_cgroup_sched_out(struct task_struct *task,
544                                          struct task_struct *next)
545 {
546         struct perf_cgroup *cgrp1;
547         struct perf_cgroup *cgrp2 = NULL;
548
549         rcu_read_lock();
550         /*
551          * we come here when we know perf_cgroup_events > 0
552          * we do not need to pass the ctx here because we know
553          * we are holding the rcu lock
554          */
555         cgrp1 = perf_cgroup_from_task(task, NULL);
556
557         /*
558          * next is NULL when called from perf_event_enable_on_exec()
559          * that will systematically cause a cgroup_switch()
560          */
561         if (next)
562                 cgrp2 = perf_cgroup_from_task(next, NULL);
563
564         /*
565          * only schedule out current cgroup events if we know
566          * that we are switching to a different cgroup. Otherwise,
567          * do no touch the cgroup events.
568          */
569         if (cgrp1 != cgrp2)
570                 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
571
572         rcu_read_unlock();
573 }
574
575 static inline void perf_cgroup_sched_in(struct task_struct *prev,
576                                         struct task_struct *task)
577 {
578         struct perf_cgroup *cgrp1;
579         struct perf_cgroup *cgrp2 = NULL;
580
581         rcu_read_lock();
582         /*
583          * we come here when we know perf_cgroup_events > 0
584          * we do not need to pass the ctx here because we know
585          * we are holding the rcu lock
586          */
587         cgrp1 = perf_cgroup_from_task(task, NULL);
588
589         /* prev can never be NULL */
590         cgrp2 = perf_cgroup_from_task(prev, NULL);
591
592         /*
593          * only need to schedule in cgroup events if we are changing
594          * cgroup during ctxsw. Cgroup events were not scheduled
595          * out of ctxsw out if that was not the case.
596          */
597         if (cgrp1 != cgrp2)
598                 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
599
600         rcu_read_unlock();
601 }
602
603 static inline int perf_cgroup_connect(int fd, struct perf_event *event,
604                                       struct perf_event_attr *attr,
605                                       struct perf_event *group_leader)
606 {
607         struct perf_cgroup *cgrp;
608         struct cgroup_subsys_state *css;
609         struct fd f = fdget(fd);
610         int ret = 0;
611
612         if (!f.file)
613                 return -EBADF;
614
615         css = css_tryget_online_from_dir(f.file->f_path.dentry,
616                                          &perf_event_cgrp_subsys);
617         if (IS_ERR(css)) {
618                 ret = PTR_ERR(css);
619                 goto out;
620         }
621
622         cgrp = container_of(css, struct perf_cgroup, css);
623         event->cgrp = cgrp;
624
625         /*
626          * all events in a group must monitor
627          * the same cgroup because a task belongs
628          * to only one perf cgroup at a time
629          */
630         if (group_leader && group_leader->cgrp != cgrp) {
631                 perf_detach_cgroup(event);
632                 ret = -EINVAL;
633         }
634 out:
635         fdput(f);
636         return ret;
637 }
638
639 static inline void
640 perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
641 {
642         struct perf_cgroup_info *t;
643         t = per_cpu_ptr(event->cgrp->info, event->cpu);
644         event->shadow_ctx_time = now - t->timestamp;
645 }
646
647 static inline void
648 perf_cgroup_defer_enabled(struct perf_event *event)
649 {
650         /*
651          * when the current task's perf cgroup does not match
652          * the event's, we need to remember to call the
653          * perf_mark_enable() function the first time a task with
654          * a matching perf cgroup is scheduled in.
655          */
656         if (is_cgroup_event(event) && !perf_cgroup_match(event))
657                 event->cgrp_defer_enabled = 1;
658 }
659
660 static inline void
661 perf_cgroup_mark_enabled(struct perf_event *event,
662                          struct perf_event_context *ctx)
663 {
664         struct perf_event *sub;
665         u64 tstamp = perf_event_time(event);
666
667         if (!event->cgrp_defer_enabled)
668                 return;
669
670         event->cgrp_defer_enabled = 0;
671
672         event->tstamp_enabled = tstamp - event->total_time_enabled;
673         list_for_each_entry(sub, &event->sibling_list, group_entry) {
674                 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
675                         sub->tstamp_enabled = tstamp - sub->total_time_enabled;
676                         sub->cgrp_defer_enabled = 0;
677                 }
678         }
679 }
680 #else /* !CONFIG_CGROUP_PERF */
681
682 static inline bool
683 perf_cgroup_match(struct perf_event *event)
684 {
685         return true;
686 }
687
688 static inline void perf_detach_cgroup(struct perf_event *event)
689 {}
690
691 static inline int is_cgroup_event(struct perf_event *event)
692 {
693         return 0;
694 }
695
696 static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
697 {
698         return 0;
699 }
700
701 static inline void update_cgrp_time_from_event(struct perf_event *event)
702 {
703 }
704
705 static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
706 {
707 }
708
709 static inline void perf_cgroup_sched_out(struct task_struct *task,
710                                          struct task_struct *next)
711 {
712 }
713
714 static inline void perf_cgroup_sched_in(struct task_struct *prev,
715                                         struct task_struct *task)
716 {
717 }
718
719 static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
720                                       struct perf_event_attr *attr,
721                                       struct perf_event *group_leader)
722 {
723         return -EINVAL;
724 }
725
726 static inline void
727 perf_cgroup_set_timestamp(struct task_struct *task,
728                           struct perf_event_context *ctx)
729 {
730 }
731
732 void
733 perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
734 {
735 }
736
737 static inline void
738 perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
739 {
740 }
741
742 static inline u64 perf_cgroup_event_time(struct perf_event *event)
743 {
744         return 0;
745 }
746
747 static inline void
748 perf_cgroup_defer_enabled(struct perf_event *event)
749 {
750 }
751
752 static inline void
753 perf_cgroup_mark_enabled(struct perf_event *event,
754                          struct perf_event_context *ctx)
755 {
756 }
757 #endif
758
759 /*
760  * set default to be dependent on timer tick just
761  * like original code
762  */
763 #define PERF_CPU_HRTIMER (1000 / HZ)
764 /*
765  * function must be called with interrupts disbled
766  */
767 static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
768 {
769         struct perf_cpu_context *cpuctx;
770         int rotations = 0;
771
772         WARN_ON(!irqs_disabled());
773
774         cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
775         rotations = perf_rotate_context(cpuctx);
776
777         raw_spin_lock(&cpuctx->hrtimer_lock);
778         if (rotations)
779                 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
780         else
781                 cpuctx->hrtimer_active = 0;
782         raw_spin_unlock(&cpuctx->hrtimer_lock);
783
784         return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
785 }
786
787 static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
788 {
789         struct hrtimer *timer = &cpuctx->hrtimer;
790         struct pmu *pmu = cpuctx->ctx.pmu;
791         u64 interval;
792
793         /* no multiplexing needed for SW PMU */
794         if (pmu->task_ctx_nr == perf_sw_context)
795                 return;
796
797         /*
798          * check default is sane, if not set then force to
799          * default interval (1/tick)
800          */
801         interval = pmu->hrtimer_interval_ms;
802         if (interval < 1)
803                 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
804
805         cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
806
807         raw_spin_lock_init(&cpuctx->hrtimer_lock);
808         hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
809         timer->function = perf_mux_hrtimer_handler;
810 }
811
812 static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
813 {
814         struct hrtimer *timer = &cpuctx->hrtimer;
815         struct pmu *pmu = cpuctx->ctx.pmu;
816         unsigned long flags;
817
818         /* not for SW PMU */
819         if (pmu->task_ctx_nr == perf_sw_context)
820                 return 0;
821
822         raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
823         if (!cpuctx->hrtimer_active) {
824                 cpuctx->hrtimer_active = 1;
825                 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
826                 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
827         }
828         raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
829
830         return 0;
831 }
832
833 void perf_pmu_disable(struct pmu *pmu)
834 {
835         int *count = this_cpu_ptr(pmu->pmu_disable_count);
836         if (!(*count)++)
837                 pmu->pmu_disable(pmu);
838 }
839
840 void perf_pmu_enable(struct pmu *pmu)
841 {
842         int *count = this_cpu_ptr(pmu->pmu_disable_count);
843         if (!--(*count))
844                 pmu->pmu_enable(pmu);
845 }
846
847 static DEFINE_PER_CPU(struct list_head, active_ctx_list);
848
849 /*
850  * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
851  * perf_event_task_tick() are fully serialized because they're strictly cpu
852  * affine and perf_event_ctx{activate,deactivate} are called with IRQs
853  * disabled, while perf_event_task_tick is called from IRQ context.
854  */
855 static void perf_event_ctx_activate(struct perf_event_context *ctx)
856 {
857         struct list_head *head = this_cpu_ptr(&active_ctx_list);
858
859         WARN_ON(!irqs_disabled());
860
861         WARN_ON(!list_empty(&ctx->active_ctx_list));
862
863         list_add(&ctx->active_ctx_list, head);
864 }
865
866 static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
867 {
868         WARN_ON(!irqs_disabled());
869
870         WARN_ON(list_empty(&ctx->active_ctx_list));
871
872         list_del_init(&ctx->active_ctx_list);
873 }
874
875 static void get_ctx(struct perf_event_context *ctx)
876 {
877         WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
878 }
879
880 static void free_ctx(struct rcu_head *head)
881 {
882         struct perf_event_context *ctx;
883
884         ctx = container_of(head, struct perf_event_context, rcu_head);
885         kfree(ctx->task_ctx_data);
886         kfree(ctx);
887 }
888
889 static void put_ctx(struct perf_event_context *ctx)
890 {
891         if (atomic_dec_and_test(&ctx->refcount)) {
892                 if (ctx->parent_ctx)
893                         put_ctx(ctx->parent_ctx);
894                 if (ctx->task)
895                         put_task_struct(ctx->task);
896                 call_rcu(&ctx->rcu_head, free_ctx);
897         }
898 }
899
900 /*
901  * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
902  * perf_pmu_migrate_context() we need some magic.
903  *
904  * Those places that change perf_event::ctx will hold both
905  * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
906  *
907  * Lock ordering is by mutex address. There are two other sites where
908  * perf_event_context::mutex nests and those are:
909  *
910  *  - perf_event_exit_task_context()    [ child , 0 ]
911  *      __perf_event_exit_task()
912  *        sync_child_event()
913  *          put_event()                 [ parent, 1 ]
914  *
915  *  - perf_event_init_context()         [ parent, 0 ]
916  *      inherit_task_group()
917  *        inherit_group()
918  *          inherit_event()
919  *            perf_event_alloc()
920  *              perf_init_event()
921  *                perf_try_init_event() [ child , 1 ]
922  *
923  * While it appears there is an obvious deadlock here -- the parent and child
924  * nesting levels are inverted between the two. This is in fact safe because
925  * life-time rules separate them. That is an exiting task cannot fork, and a
926  * spawning task cannot (yet) exit.
927  *
928  * But remember that that these are parent<->child context relations, and
929  * migration does not affect children, therefore these two orderings should not
930  * interact.
931  *
932  * The change in perf_event::ctx does not affect children (as claimed above)
933  * because the sys_perf_event_open() case will install a new event and break
934  * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
935  * concerned with cpuctx and that doesn't have children.
936  *
937  * The places that change perf_event::ctx will issue:
938  *
939  *   perf_remove_from_context();
940  *   synchronize_rcu();
941  *   perf_install_in_context();
942  *
943  * to affect the change. The remove_from_context() + synchronize_rcu() should
944  * quiesce the event, after which we can install it in the new location. This
945  * means that only external vectors (perf_fops, prctl) can perturb the event
946  * while in transit. Therefore all such accessors should also acquire
947  * perf_event_context::mutex to serialize against this.
948  *
949  * However; because event->ctx can change while we're waiting to acquire
950  * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
951  * function.
952  *
953  * Lock order:
954  *    cred_guard_mutex
955  *      task_struct::perf_event_mutex
956  *        perf_event_context::mutex
957  *          perf_event_context::lock
958  *          perf_event::child_mutex;
959  *          perf_event::mmap_mutex
960  *          mmap_sem
961  */
962 static struct perf_event_context *
963 perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
964 {
965         struct perf_event_context *ctx;
966
967 again:
968         rcu_read_lock();
969         ctx = ACCESS_ONCE(event->ctx);
970         if (!atomic_inc_not_zero(&ctx->refcount)) {
971                 rcu_read_unlock();
972                 goto again;
973         }
974         rcu_read_unlock();
975
976         mutex_lock_nested(&ctx->mutex, nesting);
977         if (event->ctx != ctx) {
978                 mutex_unlock(&ctx->mutex);
979                 put_ctx(ctx);
980                 goto again;
981         }
982
983         return ctx;
984 }
985
986 static inline struct perf_event_context *
987 perf_event_ctx_lock(struct perf_event *event)
988 {
989         return perf_event_ctx_lock_nested(event, 0);
990 }
991
992 static void perf_event_ctx_unlock(struct perf_event *event,
993                                   struct perf_event_context *ctx)
994 {
995         mutex_unlock(&ctx->mutex);
996         put_ctx(ctx);
997 }
998
999 /*
1000  * This must be done under the ctx->lock, such as to serialize against
1001  * context_equiv(), therefore we cannot call put_ctx() since that might end up
1002  * calling scheduler related locks and ctx->lock nests inside those.
1003  */
1004 static __must_check struct perf_event_context *
1005 unclone_ctx(struct perf_event_context *ctx)
1006 {
1007         struct perf_event_context *parent_ctx = ctx->parent_ctx;
1008
1009         lockdep_assert_held(&ctx->lock);
1010
1011         if (parent_ctx)
1012                 ctx->parent_ctx = NULL;
1013         ctx->generation++;
1014
1015         return parent_ctx;
1016 }
1017
1018 static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1019 {
1020         /*
1021          * only top level events have the pid namespace they were created in
1022          */
1023         if (event->parent)
1024                 event = event->parent;
1025
1026         return task_tgid_nr_ns(p, event->ns);
1027 }
1028
1029 static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1030 {
1031         /*
1032          * only top level events have the pid namespace they were created in
1033          */
1034         if (event->parent)
1035                 event = event->parent;
1036
1037         return task_pid_nr_ns(p, event->ns);
1038 }
1039
1040 /*
1041  * If we inherit events we want to return the parent event id
1042  * to userspace.
1043  */
1044 static u64 primary_event_id(struct perf_event *event)
1045 {
1046         u64 id = event->id;
1047
1048         if (event->parent)
1049                 id = event->parent->id;
1050
1051         return id;
1052 }
1053
1054 /*
1055  * Get the perf_event_context for a task and lock it.
1056  * This has to cope with with the fact that until it is locked,
1057  * the context could get moved to another task.
1058  */
1059 static struct perf_event_context *
1060 perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
1061 {
1062         struct perf_event_context *ctx;
1063
1064 retry:
1065         /*
1066          * One of the few rules of preemptible RCU is that one cannot do
1067          * rcu_read_unlock() while holding a scheduler (or nested) lock when
1068          * part of the read side critical section was irqs-enabled -- see
1069          * rcu_read_unlock_special().
1070          *
1071          * Since ctx->lock nests under rq->lock we must ensure the entire read
1072          * side critical section has interrupts disabled.
1073          */
1074         local_irq_save(*flags);
1075         rcu_read_lock();
1076         ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
1077         if (ctx) {
1078                 /*
1079                  * If this context is a clone of another, it might
1080                  * get swapped for another underneath us by
1081                  * perf_event_task_sched_out, though the
1082                  * rcu_read_lock() protects us from any context
1083                  * getting freed.  Lock the context and check if it
1084                  * got swapped before we could get the lock, and retry
1085                  * if so.  If we locked the right context, then it
1086                  * can't get swapped on us any more.
1087                  */
1088                 raw_spin_lock(&ctx->lock);
1089                 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
1090                         raw_spin_unlock(&ctx->lock);
1091                         rcu_read_unlock();
1092                         local_irq_restore(*flags);
1093                         goto retry;
1094                 }
1095
1096                 if (!atomic_inc_not_zero(&ctx->refcount)) {
1097                         raw_spin_unlock(&ctx->lock);
1098                         ctx = NULL;
1099                 }
1100         }
1101         rcu_read_unlock();
1102         if (!ctx)
1103                 local_irq_restore(*flags);
1104         return ctx;
1105 }
1106
1107 /*
1108  * Get the context for a task and increment its pin_count so it
1109  * can't get swapped to another task.  This also increments its
1110  * reference count so that the context can't get freed.
1111  */
1112 static struct perf_event_context *
1113 perf_pin_task_context(struct task_struct *task, int ctxn)
1114 {
1115         struct perf_event_context *ctx;
1116         unsigned long flags;
1117
1118         ctx = perf_lock_task_context(task, ctxn, &flags);
1119         if (ctx) {
1120                 ++ctx->pin_count;
1121                 raw_spin_unlock_irqrestore(&ctx->lock, flags);
1122         }
1123         return ctx;
1124 }
1125
1126 static void perf_unpin_context(struct perf_event_context *ctx)
1127 {
1128         unsigned long flags;
1129
1130         raw_spin_lock_irqsave(&ctx->lock, flags);
1131         --ctx->pin_count;
1132         raw_spin_unlock_irqrestore(&ctx->lock, flags);
1133 }
1134
1135 /*
1136  * Update the record of the current time in a context.
1137  */
1138 static void update_context_time(struct perf_event_context *ctx)
1139 {
1140         u64 now = perf_clock();
1141
1142         ctx->time += now - ctx->timestamp;
1143         ctx->timestamp = now;
1144 }
1145
1146 static u64 perf_event_time(struct perf_event *event)
1147 {
1148         struct perf_event_context *ctx = event->ctx;
1149
1150         if (is_cgroup_event(event))
1151                 return perf_cgroup_event_time(event);
1152
1153         return ctx ? ctx->time : 0;
1154 }
1155
1156 /*
1157  * Update the total_time_enabled and total_time_running fields for a event.
1158  * The caller of this function needs to hold the ctx->lock.
1159  */
1160 static void update_event_times(struct perf_event *event)
1161 {
1162         struct perf_event_context *ctx = event->ctx;
1163         u64 run_end;
1164
1165         if (event->state < PERF_EVENT_STATE_INACTIVE ||
1166             event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1167                 return;
1168         /*
1169          * in cgroup mode, time_enabled represents
1170          * the time the event was enabled AND active
1171          * tasks were in the monitored cgroup. This is
1172          * independent of the activity of the context as
1173          * there may be a mix of cgroup and non-cgroup events.
1174          *
1175          * That is why we treat cgroup events differently
1176          * here.
1177          */
1178         if (is_cgroup_event(event))
1179                 run_end = perf_cgroup_event_time(event);
1180         else if (ctx->is_active)
1181                 run_end = ctx->time;
1182         else
1183                 run_end = event->tstamp_stopped;
1184
1185         event->total_time_enabled = run_end - event->tstamp_enabled;
1186
1187         if (event->state == PERF_EVENT_STATE_INACTIVE)
1188                 run_end = event->tstamp_stopped;
1189         else
1190                 run_end = perf_event_time(event);
1191
1192         event->total_time_running = run_end - event->tstamp_running;
1193
1194 }
1195
1196 /*
1197  * Update total_time_enabled and total_time_running for all events in a group.
1198  */
1199 static void update_group_times(struct perf_event *leader)
1200 {
1201         struct perf_event *event;
1202
1203         update_event_times(leader);
1204         list_for_each_entry(event, &leader->sibling_list, group_entry)
1205                 update_event_times(event);
1206 }
1207
1208 static struct list_head *
1209 ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1210 {
1211         if (event->attr.pinned)
1212                 return &ctx->pinned_groups;
1213         else
1214                 return &ctx->flexible_groups;
1215 }
1216
1217 /*
1218  * Add a event from the lists for its context.
1219  * Must be called with ctx->mutex and ctx->lock held.
1220  */
1221 static void
1222 list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1223 {
1224         WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1225         event->attach_state |= PERF_ATTACH_CONTEXT;
1226
1227         /*
1228          * If we're a stand alone event or group leader, we go to the context
1229          * list, group events are kept attached to the group so that
1230          * perf_group_detach can, at all times, locate all siblings.
1231          */
1232         if (event->group_leader == event) {
1233                 struct list_head *list;
1234
1235                 if (is_software_event(event))
1236                         event->group_flags |= PERF_GROUP_SOFTWARE;
1237
1238                 list = ctx_group_list(event, ctx);
1239                 list_add_tail(&event->group_entry, list);
1240         }
1241
1242         if (is_cgroup_event(event))
1243                 ctx->nr_cgroups++;
1244
1245         list_add_rcu(&event->event_entry, &ctx->event_list);
1246         ctx->nr_events++;
1247         if (event->attr.inherit_stat)
1248                 ctx->nr_stat++;
1249
1250         ctx->generation++;
1251 }
1252
1253 /*
1254  * Initialize event state based on the perf_event_attr::disabled.
1255  */
1256 static inline void perf_event__state_init(struct perf_event *event)
1257 {
1258         event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1259                                               PERF_EVENT_STATE_INACTIVE;
1260 }
1261
1262 static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
1263 {
1264         int entry = sizeof(u64); /* value */
1265         int size = 0;
1266         int nr = 1;
1267
1268         if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1269                 size += sizeof(u64);
1270
1271         if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1272                 size += sizeof(u64);
1273
1274         if (event->attr.read_format & PERF_FORMAT_ID)
1275                 entry += sizeof(u64);
1276
1277         if (event->attr.read_format & PERF_FORMAT_GROUP) {
1278                 nr += nr_siblings;
1279                 size += sizeof(u64);
1280         }
1281
1282         size += entry * nr;
1283         event->read_size = size;
1284 }
1285
1286 static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
1287 {
1288         struct perf_sample_data *data;
1289         u16 size = 0;
1290
1291         if (sample_type & PERF_SAMPLE_IP)
1292                 size += sizeof(data->ip);
1293
1294         if (sample_type & PERF_SAMPLE_ADDR)
1295                 size += sizeof(data->addr);
1296
1297         if (sample_type & PERF_SAMPLE_PERIOD)
1298                 size += sizeof(data->period);
1299
1300         if (sample_type & PERF_SAMPLE_WEIGHT)
1301                 size += sizeof(data->weight);
1302
1303         if (sample_type & PERF_SAMPLE_READ)
1304                 size += event->read_size;
1305
1306         if (sample_type & PERF_SAMPLE_DATA_SRC)
1307                 size += sizeof(data->data_src.val);
1308
1309         if (sample_type & PERF_SAMPLE_TRANSACTION)
1310                 size += sizeof(data->txn);
1311
1312         event->header_size = size;
1313 }
1314
1315 /*
1316  * Called at perf_event creation and when events are attached/detached from a
1317  * group.
1318  */
1319 static void perf_event__header_size(struct perf_event *event)
1320 {
1321         __perf_event_read_size(event,
1322                                event->group_leader->nr_siblings);
1323         __perf_event_header_size(event, event->attr.sample_type);
1324 }
1325
1326 static void perf_event__id_header_size(struct perf_event *event)
1327 {
1328         struct perf_sample_data *data;
1329         u64 sample_type = event->attr.sample_type;
1330         u16 size = 0;
1331
1332         if (sample_type & PERF_SAMPLE_TID)
1333                 size += sizeof(data->tid_entry);
1334
1335         if (sample_type & PERF_SAMPLE_TIME)
1336                 size += sizeof(data->time);
1337
1338         if (sample_type & PERF_SAMPLE_IDENTIFIER)
1339                 size += sizeof(data->id);
1340
1341         if (sample_type & PERF_SAMPLE_ID)
1342                 size += sizeof(data->id);
1343
1344         if (sample_type & PERF_SAMPLE_STREAM_ID)
1345                 size += sizeof(data->stream_id);
1346
1347         if (sample_type & PERF_SAMPLE_CPU)
1348                 size += sizeof(data->cpu_entry);
1349
1350         event->id_header_size = size;
1351 }
1352
1353 static bool perf_event_validate_size(struct perf_event *event)
1354 {
1355         /*
1356          * The values computed here will be over-written when we actually
1357          * attach the event.
1358          */
1359         __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1360         __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1361         perf_event__id_header_size(event);
1362
1363         /*
1364          * Sum the lot; should not exceed the 64k limit we have on records.
1365          * Conservative limit to allow for callchains and other variable fields.
1366          */
1367         if (event->read_size + event->header_size +
1368             event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1369                 return false;
1370
1371         return true;
1372 }
1373
1374 static void perf_group_attach(struct perf_event *event)
1375 {
1376         struct perf_event *group_leader = event->group_leader, *pos;
1377
1378         /*
1379          * We can have double attach due to group movement in perf_event_open.
1380          */
1381         if (event->attach_state & PERF_ATTACH_GROUP)
1382                 return;
1383
1384         event->attach_state |= PERF_ATTACH_GROUP;
1385
1386         if (group_leader == event)
1387                 return;
1388
1389         WARN_ON_ONCE(group_leader->ctx != event->ctx);
1390
1391         if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1392                         !is_software_event(event))
1393                 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1394
1395         list_add_tail(&event->group_entry, &group_leader->sibling_list);
1396         group_leader->nr_siblings++;
1397
1398         perf_event__header_size(group_leader);
1399
1400         list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1401                 perf_event__header_size(pos);
1402 }
1403
1404 /*
1405  * Remove a event from the lists for its context.
1406  * Must be called with ctx->mutex and ctx->lock held.
1407  */
1408 static void
1409 list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1410 {
1411         struct perf_cpu_context *cpuctx;
1412
1413         WARN_ON_ONCE(event->ctx != ctx);
1414         lockdep_assert_held(&ctx->lock);
1415
1416         /*
1417          * We can have double detach due to exit/hot-unplug + close.
1418          */
1419         if (!(event->attach_state & PERF_ATTACH_CONTEXT))
1420                 return;
1421
1422         event->attach_state &= ~PERF_ATTACH_CONTEXT;
1423
1424         if (is_cgroup_event(event)) {
1425                 ctx->nr_cgroups--;
1426                 cpuctx = __get_cpu_context(ctx);
1427                 /*
1428                  * if there are no more cgroup events
1429                  * then cler cgrp to avoid stale pointer
1430                  * in update_cgrp_time_from_cpuctx()
1431                  */
1432                 if (!ctx->nr_cgroups)
1433                         cpuctx->cgrp = NULL;
1434         }
1435
1436         ctx->nr_events--;
1437         if (event->attr.inherit_stat)
1438                 ctx->nr_stat--;
1439
1440         list_del_rcu(&event->event_entry);
1441
1442         if (event->group_leader == event)
1443                 list_del_init(&event->group_entry);
1444
1445         update_group_times(event);
1446
1447         /*
1448          * If event was in error state, then keep it
1449          * that way, otherwise bogus counts will be
1450          * returned on read(). The only way to get out
1451          * of error state is by explicit re-enabling
1452          * of the event
1453          */
1454         if (event->state > PERF_EVENT_STATE_OFF)
1455                 event->state = PERF_EVENT_STATE_OFF;
1456
1457         ctx->generation++;
1458 }
1459
1460 static void perf_group_detach(struct perf_event *event)
1461 {
1462         struct perf_event *sibling, *tmp;
1463         struct list_head *list = NULL;
1464
1465         /*
1466          * We can have double detach due to exit/hot-unplug + close.
1467          */
1468         if (!(event->attach_state & PERF_ATTACH_GROUP))
1469                 return;
1470
1471         event->attach_state &= ~PERF_ATTACH_GROUP;
1472
1473         /*
1474          * If this is a sibling, remove it from its group.
1475          */
1476         if (event->group_leader != event) {
1477                 list_del_init(&event->group_entry);
1478                 event->group_leader->nr_siblings--;
1479                 goto out;
1480         }
1481
1482         if (!list_empty(&event->group_entry))
1483                 list = &event->group_entry;
1484
1485         /*
1486          * If this was a group event with sibling events then
1487          * upgrade the siblings to singleton events by adding them
1488          * to whatever list we are on.
1489          */
1490         list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
1491                 if (list)
1492                         list_move_tail(&sibling->group_entry, list);
1493                 sibling->group_leader = sibling;
1494
1495                 /* Inherit group flags from the previous leader */
1496                 sibling->group_flags = event->group_flags;
1497
1498                 WARN_ON_ONCE(sibling->ctx != event->ctx);
1499         }
1500
1501 out:
1502         perf_event__header_size(event->group_leader);
1503
1504         list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1505                 perf_event__header_size(tmp);
1506 }
1507
1508 /*
1509  * User event without the task.
1510  */
1511 static bool is_orphaned_event(struct perf_event *event)
1512 {
1513         return event && !is_kernel_event(event) && !event->owner;
1514 }
1515
1516 /*
1517  * Event has a parent but parent's task finished and it's
1518  * alive only because of children holding refference.
1519  */
1520 static bool is_orphaned_child(struct perf_event *event)
1521 {
1522         return is_orphaned_event(event->parent);
1523 }
1524
1525 static void orphans_remove_work(struct work_struct *work);
1526
1527 static void schedule_orphans_remove(struct perf_event_context *ctx)
1528 {
1529         if (!ctx->task || ctx->orphans_remove_sched || !perf_wq)
1530                 return;
1531
1532         if (queue_delayed_work(perf_wq, &ctx->orphans_remove, 1)) {
1533                 get_ctx(ctx);
1534                 ctx->orphans_remove_sched = true;
1535         }
1536 }
1537
1538 static int __init perf_workqueue_init(void)
1539 {
1540         perf_wq = create_singlethread_workqueue("perf");
1541         WARN(!perf_wq, "failed to create perf workqueue\n");
1542         return perf_wq ? 0 : -1;
1543 }
1544
1545 core_initcall(perf_workqueue_init);
1546
1547 static inline int pmu_filter_match(struct perf_event *event)
1548 {
1549         struct pmu *pmu = event->pmu;
1550         return pmu->filter_match ? pmu->filter_match(event) : 1;
1551 }
1552
1553 static inline int
1554 event_filter_match(struct perf_event *event)
1555 {
1556         return (event->cpu == -1 || event->cpu == smp_processor_id())
1557             && perf_cgroup_match(event) && pmu_filter_match(event);
1558 }
1559
1560 static void
1561 event_sched_out(struct perf_event *event,
1562                   struct perf_cpu_context *cpuctx,
1563                   struct perf_event_context *ctx)
1564 {
1565         u64 tstamp = perf_event_time(event);
1566         u64 delta;
1567
1568         WARN_ON_ONCE(event->ctx != ctx);
1569         lockdep_assert_held(&ctx->lock);
1570
1571         /*
1572          * An event which could not be activated because of
1573          * filter mismatch still needs to have its timings
1574          * maintained, otherwise bogus information is return
1575          * via read() for time_enabled, time_running:
1576          */
1577         if (event->state == PERF_EVENT_STATE_INACTIVE
1578             && !event_filter_match(event)) {
1579                 delta = tstamp - event->tstamp_stopped;
1580                 event->tstamp_running += delta;
1581                 event->tstamp_stopped = tstamp;
1582         }
1583
1584         if (event->state != PERF_EVENT_STATE_ACTIVE)
1585                 return;
1586
1587         perf_pmu_disable(event->pmu);
1588
1589         event->tstamp_stopped = tstamp;
1590         event->pmu->del(event, 0);
1591         event->oncpu = -1;
1592         event->state = PERF_EVENT_STATE_INACTIVE;
1593         if (event->pending_disable) {
1594                 event->pending_disable = 0;
1595                 event->state = PERF_EVENT_STATE_OFF;
1596         }
1597
1598         if (!is_software_event(event))
1599                 cpuctx->active_oncpu--;
1600         if (!--ctx->nr_active)
1601                 perf_event_ctx_deactivate(ctx);
1602         if (event->attr.freq && event->attr.sample_freq)
1603                 ctx->nr_freq--;
1604         if (event->attr.exclusive || !cpuctx->active_oncpu)
1605                 cpuctx->exclusive = 0;
1606
1607         if (is_orphaned_child(event))
1608                 schedule_orphans_remove(ctx);
1609
1610         perf_pmu_enable(event->pmu);
1611 }
1612
1613 static void
1614 group_sched_out(struct perf_event *group_event,
1615                 struct perf_cpu_context *cpuctx,
1616                 struct perf_event_context *ctx)
1617 {
1618         struct perf_event *event;
1619         int state = group_event->state;
1620
1621         event_sched_out(group_event, cpuctx, ctx);
1622
1623         /*
1624          * Schedule out siblings (if any):
1625          */
1626         list_for_each_entry(event, &group_event->sibling_list, group_entry)
1627                 event_sched_out(event, cpuctx, ctx);
1628
1629         if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
1630                 cpuctx->exclusive = 0;
1631 }
1632
1633 struct remove_event {
1634         struct perf_event *event;
1635         bool detach_group;
1636 };
1637
1638 /*
1639  * Cross CPU call to remove a performance event
1640  *
1641  * We disable the event on the hardware level first. After that we
1642  * remove it from the context list.
1643  */
1644 static int __perf_remove_from_context(void *info)
1645 {
1646         struct remove_event *re = info;
1647         struct perf_event *event = re->event;
1648         struct perf_event_context *ctx = event->ctx;
1649         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
1650
1651         raw_spin_lock(&ctx->lock);
1652         event_sched_out(event, cpuctx, ctx);
1653         if (re->detach_group)
1654                 perf_group_detach(event);
1655         list_del_event(event, ctx);
1656         if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1657                 ctx->is_active = 0;
1658                 cpuctx->task_ctx = NULL;
1659         }
1660         raw_spin_unlock(&ctx->lock);
1661
1662         return 0;
1663 }
1664
1665
1666 /*
1667  * Remove the event from a task's (or a CPU's) list of events.
1668  *
1669  * CPU events are removed with a smp call. For task events we only
1670  * call when the task is on a CPU.
1671  *
1672  * If event->ctx is a cloned context, callers must make sure that
1673  * every task struct that event->ctx->task could possibly point to
1674  * remains valid.  This is OK when called from perf_release since
1675  * that only calls us on the top-level context, which can't be a clone.
1676  * When called from perf_event_exit_task, it's OK because the
1677  * context has been detached from its task.
1678  */
1679 static void perf_remove_from_context(struct perf_event *event, bool detach_group)
1680 {
1681         struct perf_event_context *ctx = event->ctx;
1682         struct task_struct *task = ctx->task;
1683         struct remove_event re = {
1684                 .event = event,
1685                 .detach_group = detach_group,
1686         };
1687
1688         lockdep_assert_held(&ctx->mutex);
1689
1690         if (!task) {
1691                 /*
1692                  * Per cpu events are removed via an smp call. The removal can
1693                  * fail if the CPU is currently offline, but in that case we
1694                  * already called __perf_remove_from_context from
1695                  * perf_event_exit_cpu.
1696                  */
1697                 cpu_function_call(event->cpu, __perf_remove_from_context, &re);
1698                 return;
1699         }
1700
1701 retry:
1702         if (!task_function_call(task, __perf_remove_from_context, &re))
1703                 return;
1704
1705         raw_spin_lock_irq(&ctx->lock);
1706         /*
1707          * If we failed to find a running task, but find the context active now
1708          * that we've acquired the ctx->lock, retry.
1709          */
1710         if (ctx->is_active) {
1711                 raw_spin_unlock_irq(&ctx->lock);
1712                 /*
1713                  * Reload the task pointer, it might have been changed by
1714                  * a concurrent perf_event_context_sched_out().
1715                  */
1716                 task = ctx->task;
1717                 goto retry;
1718         }
1719
1720         /*
1721          * Since the task isn't running, its safe to remove the event, us
1722          * holding the ctx->lock ensures the task won't get scheduled in.
1723          */
1724         if (detach_group)
1725                 perf_group_detach(event);
1726         list_del_event(event, ctx);
1727         raw_spin_unlock_irq(&ctx->lock);
1728 }
1729
1730 /*
1731  * Cross CPU call to disable a performance event
1732  */
1733 int __perf_event_disable(void *info)
1734 {
1735         struct perf_event *event = info;
1736         struct perf_event_context *ctx = event->ctx;
1737         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
1738
1739         /*
1740          * If this is a per-task event, need to check whether this
1741          * event's task is the current task on this cpu.
1742          *
1743          * Can trigger due to concurrent perf_event_context_sched_out()
1744          * flipping contexts around.
1745          */
1746         if (ctx->task && cpuctx->task_ctx != ctx)
1747                 return -EINVAL;
1748
1749         raw_spin_lock(&ctx->lock);
1750
1751         /*
1752          * If the event is on, turn it off.
1753          * If it is in error state, leave it in error state.
1754          */
1755         if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1756                 update_context_time(ctx);
1757                 update_cgrp_time_from_event(event);
1758                 update_group_times(event);
1759                 if (event == event->group_leader)
1760                         group_sched_out(event, cpuctx, ctx);
1761                 else
1762                         event_sched_out(event, cpuctx, ctx);
1763                 event->state = PERF_EVENT_STATE_OFF;
1764         }
1765
1766         raw_spin_unlock(&ctx->lock);
1767
1768         return 0;
1769 }
1770
1771 /*
1772  * Disable a event.
1773  *
1774  * If event->ctx is a cloned context, callers must make sure that
1775  * every task struct that event->ctx->task could possibly point to
1776  * remains valid.  This condition is satisifed when called through
1777  * perf_event_for_each_child or perf_event_for_each because they
1778  * hold the top-level event's child_mutex, so any descendant that
1779  * goes to exit will block in sync_child_event.
1780  * When called from perf_pending_event it's OK because event->ctx
1781  * is the current context on this CPU and preemption is disabled,
1782  * hence we can't get into perf_event_task_sched_out for this context.
1783  */
1784 static void _perf_event_disable(struct perf_event *event)
1785 {
1786         struct perf_event_context *ctx = event->ctx;
1787         struct task_struct *task = ctx->task;
1788
1789         if (!task) {
1790                 /*
1791                  * Disable the event on the cpu that it's on
1792                  */
1793                 cpu_function_call(event->cpu, __perf_event_disable, event);
1794                 return;
1795         }
1796
1797 retry:
1798         if (!task_function_call(task, __perf_event_disable, event))
1799                 return;
1800
1801         raw_spin_lock_irq(&ctx->lock);
1802         /*
1803          * If the event is still active, we need to retry the cross-call.
1804          */
1805         if (event->state == PERF_EVENT_STATE_ACTIVE) {
1806                 raw_spin_unlock_irq(&ctx->lock);
1807                 /*
1808                  * Reload the task pointer, it might have been changed by
1809                  * a concurrent perf_event_context_sched_out().
1810                  */
1811                 task = ctx->task;
1812                 goto retry;
1813         }
1814
1815         /*
1816          * Since we have the lock this context can't be scheduled
1817          * in, so we can change the state safely.
1818          */
1819         if (event->state == PERF_EVENT_STATE_INACTIVE) {
1820                 update_group_times(event);
1821                 event->state = PERF_EVENT_STATE_OFF;
1822         }
1823         raw_spin_unlock_irq(&ctx->lock);
1824 }
1825
1826 /*
1827  * Strictly speaking kernel users cannot create groups and therefore this
1828  * interface does not need the perf_event_ctx_lock() magic.
1829  */
1830 void perf_event_disable(struct perf_event *event)
1831 {
1832         struct perf_event_context *ctx;
1833
1834         ctx = perf_event_ctx_lock(event);
1835         _perf_event_disable(event);
1836         perf_event_ctx_unlock(event, ctx);
1837 }
1838 EXPORT_SYMBOL_GPL(perf_event_disable);
1839
1840 static void perf_set_shadow_time(struct perf_event *event,
1841                                  struct perf_event_context *ctx,
1842                                  u64 tstamp)
1843 {
1844         /*
1845          * use the correct time source for the time snapshot
1846          *
1847          * We could get by without this by leveraging the
1848          * fact that to get to this function, the caller
1849          * has most likely already called update_context_time()
1850          * and update_cgrp_time_xx() and thus both timestamp
1851          * are identical (or very close). Given that tstamp is,
1852          * already adjusted for cgroup, we could say that:
1853          *    tstamp - ctx->timestamp
1854          * is equivalent to
1855          *    tstamp - cgrp->timestamp.
1856          *
1857          * Then, in perf_output_read(), the calculation would
1858          * work with no changes because:
1859          * - event is guaranteed scheduled in
1860          * - no scheduled out in between
1861          * - thus the timestamp would be the same
1862          *
1863          * But this is a bit hairy.
1864          *
1865          * So instead, we have an explicit cgroup call to remain
1866          * within the time time source all along. We believe it
1867          * is cleaner and simpler to understand.
1868          */
1869         if (is_cgroup_event(event))
1870                 perf_cgroup_set_shadow_time(event, tstamp);
1871         else
1872                 event->shadow_ctx_time = tstamp - ctx->timestamp;
1873 }
1874
1875 #define MAX_INTERRUPTS (~0ULL)
1876
1877 static void perf_log_throttle(struct perf_event *event, int enable);
1878 static void perf_log_itrace_start(struct perf_event *event);
1879
1880 static int
1881 event_sched_in(struct perf_event *event,
1882                  struct perf_cpu_context *cpuctx,
1883                  struct perf_event_context *ctx)
1884 {
1885         u64 tstamp = perf_event_time(event);
1886         int ret = 0;
1887
1888         lockdep_assert_held(&ctx->lock);
1889
1890         if (event->state <= PERF_EVENT_STATE_OFF)
1891                 return 0;
1892
1893         WRITE_ONCE(event->oncpu, smp_processor_id());
1894         /*
1895          * Order event::oncpu write to happen before the ACTIVE state
1896          * is visible.
1897          */
1898         smp_wmb();
1899         WRITE_ONCE(event->state, PERF_EVENT_STATE_ACTIVE);
1900
1901         /*
1902          * Unthrottle events, since we scheduled we might have missed several
1903          * ticks already, also for a heavily scheduling task there is little
1904          * guarantee it'll get a tick in a timely manner.
1905          */
1906         if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1907                 perf_log_throttle(event, 1);
1908                 event->hw.interrupts = 0;
1909         }
1910
1911         /*
1912          * The new state must be visible before we turn it on in the hardware:
1913          */
1914         smp_wmb();
1915
1916         perf_pmu_disable(event->pmu);
1917
1918         perf_set_shadow_time(event, ctx, tstamp);
1919
1920         perf_log_itrace_start(event);
1921
1922         if (event->pmu->add(event, PERF_EF_START)) {
1923                 event->state = PERF_EVENT_STATE_INACTIVE;
1924                 event->oncpu = -1;
1925                 ret = -EAGAIN;
1926                 goto out;
1927         }
1928
1929         event->tstamp_running += tstamp - event->tstamp_stopped;
1930
1931         if (!is_software_event(event))
1932                 cpuctx->active_oncpu++;
1933         if (!ctx->nr_active++)
1934                 perf_event_ctx_activate(ctx);
1935         if (event->attr.freq && event->attr.sample_freq)
1936                 ctx->nr_freq++;
1937
1938         if (event->attr.exclusive)
1939                 cpuctx->exclusive = 1;
1940
1941         if (is_orphaned_child(event))
1942                 schedule_orphans_remove(ctx);
1943
1944 out:
1945         perf_pmu_enable(event->pmu);
1946
1947         return ret;
1948 }
1949
1950 static int
1951 group_sched_in(struct perf_event *group_event,
1952                struct perf_cpu_context *cpuctx,
1953                struct perf_event_context *ctx)
1954 {
1955         struct perf_event *event, *partial_group = NULL;
1956         struct pmu *pmu = ctx->pmu;
1957         u64 now = ctx->time;
1958         bool simulate = false;
1959
1960         if (group_event->state == PERF_EVENT_STATE_OFF)
1961                 return 0;
1962
1963         pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
1964
1965         if (event_sched_in(group_event, cpuctx, ctx)) {
1966                 pmu->cancel_txn(pmu);
1967                 perf_mux_hrtimer_restart(cpuctx);
1968                 return -EAGAIN;
1969         }
1970
1971         /*
1972          * Schedule in siblings as one group (if any):
1973          */
1974         list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1975                 if (event_sched_in(event, cpuctx, ctx)) {
1976                         partial_group = event;
1977                         goto group_error;
1978                 }
1979         }
1980
1981         if (!pmu->commit_txn(pmu))
1982                 return 0;
1983
1984 group_error:
1985         /*
1986          * Groups can be scheduled in as one unit only, so undo any
1987          * partial group before returning:
1988          * The events up to the failed event are scheduled out normally,
1989          * tstamp_stopped will be updated.
1990          *
1991          * The failed events and the remaining siblings need to have
1992          * their timings updated as if they had gone thru event_sched_in()
1993          * and event_sched_out(). This is required to get consistent timings
1994          * across the group. This also takes care of the case where the group
1995          * could never be scheduled by ensuring tstamp_stopped is set to mark
1996          * the time the event was actually stopped, such that time delta
1997          * calculation in update_event_times() is correct.
1998          */
1999         list_for_each_entry(event, &group_event->sibling_list, group_entry) {
2000                 if (event == partial_group)
2001                         simulate = true;
2002
2003                 if (simulate) {
2004                         event->tstamp_running += now - event->tstamp_stopped;
2005                         event->tstamp_stopped = now;
2006                 } else {
2007                         event_sched_out(event, cpuctx, ctx);
2008                 }
2009         }
2010         event_sched_out(group_event, cpuctx, ctx);
2011
2012         pmu->cancel_txn(pmu);
2013
2014         perf_mux_hrtimer_restart(cpuctx);
2015
2016         return -EAGAIN;
2017 }
2018
2019 /*
2020  * Work out whether we can put this event group on the CPU now.
2021  */
2022 static int group_can_go_on(struct perf_event *event,
2023                            struct perf_cpu_context *cpuctx,
2024                            int can_add_hw)
2025 {
2026         /*
2027          * Groups consisting entirely of software events can always go on.
2028          */
2029         if (event->group_flags & PERF_GROUP_SOFTWARE)
2030                 return 1;
2031         /*
2032          * If an exclusive group is already on, no other hardware
2033          * events can go on.
2034          */
2035         if (cpuctx->exclusive)
2036                 return 0;
2037         /*
2038          * If this group is exclusive and there are already
2039          * events on the CPU, it can't go on.
2040          */
2041         if (event->attr.exclusive && cpuctx->active_oncpu)
2042                 return 0;
2043         /*
2044          * Otherwise, try to add it if all previous groups were able
2045          * to go on.
2046          */
2047         return can_add_hw;
2048 }
2049
2050 static void add_event_to_ctx(struct perf_event *event,
2051                                struct perf_event_context *ctx)
2052 {
2053         u64 tstamp = perf_event_time(event);
2054
2055         list_add_event(event, ctx);
2056         perf_group_attach(event);
2057         event->tstamp_enabled = tstamp;
2058         event->tstamp_running = tstamp;
2059         event->tstamp_stopped = tstamp;
2060 }
2061
2062 static void task_ctx_sched_out(struct perf_event_context *ctx);
2063 static void
2064 ctx_sched_in(struct perf_event_context *ctx,
2065              struct perf_cpu_context *cpuctx,
2066              enum event_type_t event_type,
2067              struct task_struct *task);
2068
2069 static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2070                                 struct perf_event_context *ctx,
2071                                 struct task_struct *task)
2072 {
2073         cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2074         if (ctx)
2075                 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2076         cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2077         if (ctx)
2078                 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2079 }
2080
2081 /*
2082  * Cross CPU call to install and enable a performance event
2083  *
2084  * Must be called with ctx->mutex held
2085  */
2086 static int  __perf_install_in_context(void *info)
2087 {
2088         struct perf_event *event = info;
2089         struct perf_event_context *ctx = event->ctx;
2090         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2091         struct perf_event_context *task_ctx = cpuctx->task_ctx;
2092         struct task_struct *task = current;
2093
2094         perf_ctx_lock(cpuctx, task_ctx);
2095         perf_pmu_disable(cpuctx->ctx.pmu);
2096
2097         /*
2098          * If there was an active task_ctx schedule it out.
2099          */
2100         if (task_ctx)
2101                 task_ctx_sched_out(task_ctx);
2102
2103         /*
2104          * If the context we're installing events in is not the
2105          * active task_ctx, flip them.
2106          */
2107         if (ctx->task && task_ctx != ctx) {
2108                 if (task_ctx)
2109                         raw_spin_unlock(&task_ctx->lock);
2110                 raw_spin_lock(&ctx->lock);
2111                 task_ctx = ctx;
2112         }
2113
2114         if (task_ctx) {
2115                 cpuctx->task_ctx = task_ctx;
2116                 task = task_ctx->task;
2117         }
2118
2119         cpu_ctx_sched_out(cpuctx, EVENT_ALL);
2120
2121         update_context_time(ctx);
2122         /*
2123          * update cgrp time only if current cgrp
2124          * matches event->cgrp. Must be done before
2125          * calling add_event_to_ctx()
2126          */
2127         update_cgrp_time_from_event(event);
2128
2129         add_event_to_ctx(event, ctx);
2130
2131         /*
2132          * Schedule everything back in
2133          */
2134         perf_event_sched_in(cpuctx, task_ctx, task);
2135
2136         perf_pmu_enable(cpuctx->ctx.pmu);
2137         perf_ctx_unlock(cpuctx, task_ctx);
2138
2139         return 0;
2140 }
2141
2142 /*
2143  * Attach a performance event to a context
2144  *
2145  * First we add the event to the list with the hardware enable bit
2146  * in event->hw_config cleared.
2147  *
2148  * If the event is attached to a task which is on a CPU we use a smp
2149  * call to enable it in the task context. The task might have been
2150  * scheduled away, but we check this in the smp call again.
2151  */
2152 static void
2153 perf_install_in_context(struct perf_event_context *ctx,
2154                         struct perf_event *event,
2155                         int cpu)
2156 {
2157         struct task_struct *task = ctx->task;
2158
2159         lockdep_assert_held(&ctx->mutex);
2160
2161         event->ctx = ctx;
2162         if (event->cpu != -1)
2163                 event->cpu = cpu;
2164
2165         if (!task) {
2166                 /*
2167                  * Per cpu events are installed via an smp call and
2168                  * the install is always successful.
2169                  */
2170                 cpu_function_call(cpu, __perf_install_in_context, event);
2171                 return;
2172         }
2173
2174 retry:
2175         if (!task_function_call(task, __perf_install_in_context, event))
2176                 return;
2177
2178         raw_spin_lock_irq(&ctx->lock);
2179         /*
2180          * If we failed to find a running task, but find the context active now
2181          * that we've acquired the ctx->lock, retry.
2182          */
2183         if (ctx->is_active) {
2184                 raw_spin_unlock_irq(&ctx->lock);
2185                 /*
2186                  * Reload the task pointer, it might have been changed by
2187                  * a concurrent perf_event_context_sched_out().
2188                  */
2189                 task = ctx->task;
2190                 goto retry;
2191         }
2192
2193         /*
2194          * Since the task isn't running, its safe to add the event, us holding
2195          * the ctx->lock ensures the task won't get scheduled in.
2196          */
2197         add_event_to_ctx(event, ctx);
2198         raw_spin_unlock_irq(&ctx->lock);
2199 }
2200
2201 /*
2202  * Put a event into inactive state and update time fields.
2203  * Enabling the leader of a group effectively enables all
2204  * the group members that aren't explicitly disabled, so we
2205  * have to update their ->tstamp_enabled also.
2206  * Note: this works for group members as well as group leaders
2207  * since the non-leader members' sibling_lists will be empty.
2208  */
2209 static void __perf_event_mark_enabled(struct perf_event *event)
2210 {
2211         struct perf_event *sub;
2212         u64 tstamp = perf_event_time(event);
2213
2214         event->state = PERF_EVENT_STATE_INACTIVE;
2215         event->tstamp_enabled = tstamp - event->total_time_enabled;
2216         list_for_each_entry(sub, &event->sibling_list, group_entry) {
2217                 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
2218                         sub->tstamp_enabled = tstamp - sub->total_time_enabled;
2219         }
2220 }
2221
2222 /*
2223  * Cross CPU call to enable a performance event
2224  */
2225 static int __perf_event_enable(void *info)
2226 {
2227         struct perf_event *event = info;
2228         struct perf_event_context *ctx = event->ctx;
2229         struct perf_event *leader = event->group_leader;
2230         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2231         int err;
2232
2233         /*
2234          * There's a time window between 'ctx->is_active' check
2235          * in perf_event_enable function and this place having:
2236          *   - IRQs on
2237          *   - ctx->lock unlocked
2238          *
2239          * where the task could be killed and 'ctx' deactivated
2240          * by perf_event_exit_task.
2241          */
2242         if (!ctx->is_active)
2243                 return -EINVAL;
2244
2245         raw_spin_lock(&ctx->lock);
2246         update_context_time(ctx);
2247
2248         if (event->state >= PERF_EVENT_STATE_INACTIVE)
2249                 goto unlock;
2250
2251         /*
2252          * set current task's cgroup time reference point
2253          */
2254         perf_cgroup_set_timestamp(current, ctx);
2255
2256         __perf_event_mark_enabled(event);
2257
2258         if (!event_filter_match(event)) {
2259                 if (is_cgroup_event(event))
2260                         perf_cgroup_defer_enabled(event);
2261                 goto unlock;
2262         }
2263
2264         /*
2265          * If the event is in a group and isn't the group leader,
2266          * then don't put it on unless the group is on.
2267          */
2268         if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
2269                 goto unlock;
2270
2271         if (!group_can_go_on(event, cpuctx, 1)) {
2272                 err = -EEXIST;
2273         } else {
2274                 if (event == leader)
2275                         err = group_sched_in(event, cpuctx, ctx);
2276                 else
2277                         err = event_sched_in(event, cpuctx, ctx);
2278         }
2279
2280         if (err) {
2281                 /*
2282                  * If this event can't go on and it's part of a
2283                  * group, then the whole group has to come off.
2284                  */
2285                 if (leader != event) {
2286                         group_sched_out(leader, cpuctx, ctx);
2287                         perf_mux_hrtimer_restart(cpuctx);
2288                 }
2289                 if (leader->attr.pinned) {
2290                         update_group_times(leader);
2291                         leader->state = PERF_EVENT_STATE_ERROR;
2292                 }
2293         }
2294
2295 unlock:
2296         raw_spin_unlock(&ctx->lock);
2297
2298         return 0;
2299 }
2300
2301 /*
2302  * Enable a event.
2303  *
2304  * If event->ctx is a cloned context, callers must make sure that
2305  * every task struct that event->ctx->task could possibly point to
2306  * remains valid.  This condition is satisfied when called through
2307  * perf_event_for_each_child or perf_event_for_each as described
2308  * for perf_event_disable.
2309  */
2310 static void _perf_event_enable(struct perf_event *event)
2311 {
2312         struct perf_event_context *ctx = event->ctx;
2313         struct task_struct *task = ctx->task;
2314
2315         if (!task) {
2316                 /*
2317                  * Enable the event on the cpu that it's on
2318                  */
2319                 cpu_function_call(event->cpu, __perf_event_enable, event);
2320                 return;
2321         }
2322
2323         raw_spin_lock_irq(&ctx->lock);
2324         if (event->state >= PERF_EVENT_STATE_INACTIVE)
2325                 goto out;
2326
2327         /*
2328          * If the event is in error state, clear that first.
2329          * That way, if we see the event in error state below, we
2330          * know that it has gone back into error state, as distinct
2331          * from the task having been scheduled away before the
2332          * cross-call arrived.
2333          */
2334         if (event->state == PERF_EVENT_STATE_ERROR)
2335                 event->state = PERF_EVENT_STATE_OFF;
2336
2337 retry:
2338         if (!ctx->is_active) {
2339                 __perf_event_mark_enabled(event);
2340                 goto out;
2341         }
2342
2343         raw_spin_unlock_irq(&ctx->lock);
2344
2345         if (!task_function_call(task, __perf_event_enable, event))
2346                 return;
2347
2348         raw_spin_lock_irq(&ctx->lock);
2349
2350         /*
2351          * If the context is active and the event is still off,
2352          * we need to retry the cross-call.
2353          */
2354         if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
2355                 /*
2356                  * task could have been flipped by a concurrent
2357                  * perf_event_context_sched_out()
2358                  */
2359                 task = ctx->task;
2360                 goto retry;
2361         }
2362
2363 out:
2364         raw_spin_unlock_irq(&ctx->lock);
2365 }
2366
2367 /*
2368  * See perf_event_disable();
2369  */
2370 void perf_event_enable(struct perf_event *event)
2371 {
2372         struct perf_event_context *ctx;
2373
2374         ctx = perf_event_ctx_lock(event);
2375         _perf_event_enable(event);
2376         perf_event_ctx_unlock(event, ctx);
2377 }
2378 EXPORT_SYMBOL_GPL(perf_event_enable);
2379
2380 static int __perf_event_stop(void *info)
2381 {
2382         struct perf_event *event = info;
2383
2384         /* for AUX events, our job is done if the event is already inactive */
2385         if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
2386                 return 0;
2387
2388         /* matches smp_wmb() in event_sched_in() */
2389         smp_rmb();
2390
2391         /*
2392          * There is a window with interrupts enabled before we get here,
2393          * so we need to check again lest we try to stop another CPU's event.
2394          */
2395         if (READ_ONCE(event->oncpu) != smp_processor_id())
2396                 return -EAGAIN;
2397
2398         event->pmu->stop(event, PERF_EF_UPDATE);
2399
2400         return 0;
2401 }
2402
2403 static int _perf_event_refresh(struct perf_event *event, int refresh)
2404 {
2405         /*
2406          * not supported on inherited events
2407          */
2408         if (event->attr.inherit || !is_sampling_event(event))
2409                 return -EINVAL;
2410
2411         atomic_add(refresh, &event->event_limit);
2412         _perf_event_enable(event);
2413
2414         return 0;
2415 }
2416
2417 /*
2418  * See perf_event_disable()
2419  */
2420 int perf_event_refresh(struct perf_event *event, int refresh)
2421 {
2422         struct perf_event_context *ctx;
2423         int ret;
2424
2425         ctx = perf_event_ctx_lock(event);
2426         ret = _perf_event_refresh(event, refresh);
2427         perf_event_ctx_unlock(event, ctx);
2428
2429         return ret;
2430 }
2431 EXPORT_SYMBOL_GPL(perf_event_refresh);
2432
2433 static void ctx_sched_out(struct perf_event_context *ctx,
2434                           struct perf_cpu_context *cpuctx,
2435                           enum event_type_t event_type)
2436 {
2437         struct perf_event *event;
2438         int is_active = ctx->is_active;
2439
2440         ctx->is_active &= ~event_type;
2441         if (likely(!ctx->nr_events))
2442                 return;
2443
2444         update_context_time(ctx);
2445         update_cgrp_time_from_cpuctx(cpuctx);
2446         if (!ctx->nr_active)
2447                 return;
2448
2449         perf_pmu_disable(ctx->pmu);
2450         if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
2451                 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2452                         group_sched_out(event, cpuctx, ctx);
2453         }
2454
2455         if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
2456                 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
2457                         group_sched_out(event, cpuctx, ctx);
2458         }
2459         perf_pmu_enable(ctx->pmu);
2460 }
2461
2462 /*
2463  * Test whether two contexts are equivalent, i.e. whether they have both been
2464  * cloned from the same version of the same context.
2465  *
2466  * Equivalence is measured using a generation number in the context that is
2467  * incremented on each modification to it; see unclone_ctx(), list_add_event()
2468  * and list_del_event().
2469  */
2470 static int context_equiv(struct perf_event_context *ctx1,
2471                          struct perf_event_context *ctx2)
2472 {
2473         lockdep_assert_held(&ctx1->lock);
2474         lockdep_assert_held(&ctx2->lock);
2475
2476         /* Pinning disables the swap optimization */
2477         if (ctx1->pin_count || ctx2->pin_count)
2478                 return 0;
2479
2480         /* If ctx1 is the parent of ctx2 */
2481         if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2482                 return 1;
2483
2484         /* If ctx2 is the parent of ctx1 */
2485         if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2486                 return 1;
2487
2488         /*
2489          * If ctx1 and ctx2 have the same parent; we flatten the parent
2490          * hierarchy, see perf_event_init_context().
2491          */
2492         if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2493                         ctx1->parent_gen == ctx2->parent_gen)
2494                 return 1;
2495
2496         /* Unmatched */
2497         return 0;
2498 }
2499
2500 static void __perf_event_sync_stat(struct perf_event *event,
2501                                      struct perf_event *next_event)
2502 {
2503         u64 value;
2504
2505         if (!event->attr.inherit_stat)
2506                 return;
2507
2508         /*
2509          * Update the event value, we cannot use perf_event_read()
2510          * because we're in the middle of a context switch and have IRQs
2511          * disabled, which upsets smp_call_function_single(), however
2512          * we know the event must be on the current CPU, therefore we
2513          * don't need to use it.
2514          */
2515         switch (event->state) {
2516         case PERF_EVENT_STATE_ACTIVE:
2517                 event->pmu->read(event);
2518                 /* fall-through */
2519
2520         case PERF_EVENT_STATE_INACTIVE:
2521                 update_event_times(event);
2522                 break;
2523
2524         default:
2525                 break;
2526         }
2527
2528         /*
2529          * In order to keep per-task stats reliable we need to flip the event
2530          * values when we flip the contexts.
2531          */
2532         value = local64_read(&next_event->count);
2533         value = local64_xchg(&event->count, value);
2534         local64_set(&next_event->count, value);
2535
2536         swap(event->total_time_enabled, next_event->total_time_enabled);
2537         swap(event->total_time_running, next_event->total_time_running);
2538
2539         /*
2540          * Since we swizzled the values, update the user visible data too.
2541          */
2542         perf_event_update_userpage(event);
2543         perf_event_update_userpage(next_event);
2544 }
2545
2546 static void perf_event_sync_stat(struct perf_event_context *ctx,
2547                                    struct perf_event_context *next_ctx)
2548 {
2549         struct perf_event *event, *next_event;
2550
2551         if (!ctx->nr_stat)
2552                 return;
2553
2554         update_context_time(ctx);
2555
2556         event = list_first_entry(&ctx->event_list,
2557                                    struct perf_event, event_entry);
2558
2559         next_event = list_first_entry(&next_ctx->event_list,
2560                                         struct perf_event, event_entry);
2561
2562         while (&event->event_entry != &ctx->event_list &&
2563                &next_event->event_entry != &next_ctx->event_list) {
2564
2565                 __perf_event_sync_stat(event, next_event);
2566
2567                 event = list_next_entry(event, event_entry);
2568                 next_event = list_next_entry(next_event, event_entry);
2569         }
2570 }
2571
2572 static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2573                                          struct task_struct *next)
2574 {
2575         struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
2576         struct perf_event_context *next_ctx;
2577         struct perf_event_context *parent, *next_parent;
2578         struct perf_cpu_context *cpuctx;
2579         int do_switch = 1;
2580
2581         if (likely(!ctx))
2582                 return;
2583
2584         cpuctx = __get_cpu_context(ctx);
2585         if (!cpuctx->task_ctx)
2586                 return;
2587
2588         rcu_read_lock();
2589         next_ctx = next->perf_event_ctxp[ctxn];
2590         if (!next_ctx)
2591                 goto unlock;
2592
2593         parent = rcu_dereference(ctx->parent_ctx);
2594         next_parent = rcu_dereference(next_ctx->parent_ctx);
2595
2596         /* If neither context have a parent context; they cannot be clones. */
2597         if (!parent && !next_parent)
2598                 goto unlock;
2599
2600         if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
2601                 /*
2602                  * Looks like the two contexts are clones, so we might be
2603                  * able to optimize the context switch.  We lock both
2604                  * contexts and check that they are clones under the
2605                  * lock (including re-checking that neither has been
2606                  * uncloned in the meantime).  It doesn't matter which
2607                  * order we take the locks because no other cpu could
2608                  * be trying to lock both of these tasks.
2609                  */
2610                 raw_spin_lock(&ctx->lock);
2611                 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
2612                 if (context_equiv(ctx, next_ctx)) {
2613                         /*
2614                          * XXX do we need a memory barrier of sorts
2615                          * wrt to rcu_dereference() of perf_event_ctxp
2616                          */
2617                         task->perf_event_ctxp[ctxn] = next_ctx;
2618                         next->perf_event_ctxp[ctxn] = ctx;
2619                         ctx->task = next;
2620                         next_ctx->task = task;
2621
2622                         swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2623
2624                         do_switch = 0;
2625
2626                         perf_event_sync_stat(ctx, next_ctx);
2627                 }
2628                 raw_spin_unlock(&next_ctx->lock);
2629                 raw_spin_unlock(&ctx->lock);
2630         }
2631 unlock:
2632         rcu_read_unlock();
2633
2634         if (do_switch) {
2635                 raw_spin_lock(&ctx->lock);
2636                 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
2637                 cpuctx->task_ctx = NULL;
2638                 raw_spin_unlock(&ctx->lock);
2639         }
2640 }
2641
2642 void perf_sched_cb_dec(struct pmu *pmu)
2643 {
2644         this_cpu_dec(perf_sched_cb_usages);
2645 }
2646
2647 void perf_sched_cb_inc(struct pmu *pmu)
2648 {
2649         this_cpu_inc(perf_sched_cb_usages);
2650 }
2651
2652 /*
2653  * This function provides the context switch callback to the lower code
2654  * layer. It is invoked ONLY when the context switch callback is enabled.
2655  */
2656 static void perf_pmu_sched_task(struct task_struct *prev,
2657                                 struct task_struct *next,
2658                                 bool sched_in)
2659 {
2660         struct perf_cpu_context *cpuctx;
2661         struct pmu *pmu;
2662         unsigned long flags;
2663
2664         if (prev == next)
2665                 return;
2666
2667         local_irq_save(flags);
2668
2669         rcu_read_lock();
2670
2671         list_for_each_entry_rcu(pmu, &pmus, entry) {
2672                 if (pmu->sched_task) {
2673                         cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2674
2675                         perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2676
2677                         perf_pmu_disable(pmu);
2678
2679                         pmu->sched_task(cpuctx->task_ctx, sched_in);
2680
2681                         perf_pmu_enable(pmu);
2682
2683                         perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2684                 }
2685         }
2686
2687         rcu_read_unlock();
2688
2689         local_irq_restore(flags);
2690 }
2691
2692 static void perf_event_switch(struct task_struct *task,
2693                               struct task_struct *next_prev, bool sched_in);
2694
2695 #define for_each_task_context_nr(ctxn)                                  \
2696         for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2697
2698 /*
2699  * Called from scheduler to remove the events of the current task,
2700  * with interrupts disabled.
2701  *
2702  * We stop each event and update the event value in event->count.
2703  *
2704  * This does not protect us against NMI, but disable()
2705  * sets the disabled bit in the control field of event _before_
2706  * accessing the event control register. If a NMI hits, then it will
2707  * not restart the event.
2708  */
2709 void __perf_event_task_sched_out(struct task_struct *task,
2710                                  struct task_struct *next)
2711 {
2712         int ctxn;
2713
2714         if (__this_cpu_read(perf_sched_cb_usages))
2715                 perf_pmu_sched_task(task, next, false);
2716
2717         if (atomic_read(&nr_switch_events))
2718                 perf_event_switch(task, next, false);
2719
2720         for_each_task_context_nr(ctxn)
2721                 perf_event_context_sched_out(task, ctxn, next);
2722
2723         /*
2724          * if cgroup events exist on this CPU, then we need
2725          * to check if we have to switch out PMU state.
2726          * cgroup event are system-wide mode only
2727          */
2728         if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
2729                 perf_cgroup_sched_out(task, next);
2730 }
2731
2732 static void task_ctx_sched_out(struct perf_event_context *ctx)
2733 {
2734         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2735
2736         if (!cpuctx->task_ctx)
2737                 return;
2738
2739         if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2740                 return;
2741
2742         ctx_sched_out(ctx, cpuctx, EVENT_ALL);
2743         cpuctx->task_ctx = NULL;
2744 }
2745
2746 /*
2747  * Called with IRQs disabled
2748  */
2749 static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2750                               enum event_type_t event_type)
2751 {
2752         ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
2753 }
2754
2755 static void
2756 ctx_pinned_sched_in(struct perf_event_context *ctx,
2757                     struct perf_cpu_context *cpuctx)
2758 {
2759         struct perf_event *event;
2760
2761         list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2762                 if (event->state <= PERF_EVENT_STATE_OFF)
2763                         continue;
2764                 if (!event_filter_match(event))
2765                         continue;
2766
2767                 /* may need to reset tstamp_enabled */
2768                 if (is_cgroup_event(event))
2769                         perf_cgroup_mark_enabled(event, ctx);
2770
2771                 if (group_can_go_on(event, cpuctx, 1))
2772                         group_sched_in(event, cpuctx, ctx);
2773
2774                 /*
2775                  * If this pinned group hasn't been scheduled,
2776                  * put it in error state.
2777                  */
2778                 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2779                         update_group_times(event);
2780                         event->state = PERF_EVENT_STATE_ERROR;
2781                 }
2782         }
2783 }
2784
2785 static void
2786 ctx_flexible_sched_in(struct perf_event_context *ctx,
2787                       struct perf_cpu_context *cpuctx)
2788 {
2789         struct perf_event *event;
2790         int can_add_hw = 1;
2791
2792         list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2793                 /* Ignore events in OFF or ERROR state */
2794                 if (event->state <= PERF_EVENT_STATE_OFF)
2795                         continue;
2796                 /*
2797                  * Listen to the 'cpu' scheduling filter constraint
2798                  * of events:
2799                  */
2800                 if (!event_filter_match(event))
2801                         continue;
2802
2803                 /* may need to reset tstamp_enabled */
2804                 if (is_cgroup_event(event))
2805                         perf_cgroup_mark_enabled(event, ctx);
2806
2807                 if (group_can_go_on(event, cpuctx, can_add_hw)) {
2808                         if (group_sched_in(event, cpuctx, ctx))
2809                                 can_add_hw = 0;
2810                 }
2811         }
2812 }
2813
2814 static void
2815 ctx_sched_in(struct perf_event_context *ctx,
2816              struct perf_cpu_context *cpuctx,
2817              enum event_type_t event_type,
2818              struct task_struct *task)
2819 {
2820         u64 now;
2821         int is_active = ctx->is_active;
2822
2823         ctx->is_active |= event_type;
2824         if (likely(!ctx->nr_events))
2825                 return;
2826
2827         now = perf_clock();
2828         ctx->timestamp = now;
2829         perf_cgroup_set_timestamp(task, ctx);
2830         /*
2831          * First go through the list and put on any pinned groups
2832          * in order to give them the best chance of going on.
2833          */
2834         if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
2835                 ctx_pinned_sched_in(ctx, cpuctx);
2836
2837         /* Then walk through the lower prio flexible groups */
2838         if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
2839                 ctx_flexible_sched_in(ctx, cpuctx);
2840 }
2841
2842 static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
2843                              enum event_type_t event_type,
2844                              struct task_struct *task)
2845 {
2846         struct perf_event_context *ctx = &cpuctx->ctx;
2847
2848         ctx_sched_in(ctx, cpuctx, event_type, task);
2849 }
2850
2851 static void perf_event_context_sched_in(struct perf_event_context *ctx,
2852                                         struct task_struct *task)
2853 {
2854         struct perf_cpu_context *cpuctx;
2855
2856         cpuctx = __get_cpu_context(ctx);
2857         if (cpuctx->task_ctx == ctx)
2858                 return;
2859
2860         perf_ctx_lock(cpuctx, ctx);
2861         perf_pmu_disable(ctx->pmu);
2862         /*
2863          * We want to keep the following priority order:
2864          * cpu pinned (that don't need to move), task pinned,
2865          * cpu flexible, task flexible.
2866          */
2867         cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2868
2869         if (ctx->nr_events)
2870                 cpuctx->task_ctx = ctx;
2871
2872         perf_event_sched_in(cpuctx, cpuctx->task_ctx, task);
2873
2874         perf_pmu_enable(ctx->pmu);
2875         perf_ctx_unlock(cpuctx, ctx);
2876 }
2877
2878 /*
2879  * Called from scheduler to add the events of the current task
2880  * with interrupts disabled.
2881  *
2882  * We restore the event value and then enable it.
2883  *
2884  * This does not protect us against NMI, but enable()
2885  * sets the enabled bit in the control field of event _before_
2886  * accessing the event control register. If a NMI hits, then it will
2887  * keep the event running.
2888  */
2889 void __perf_event_task_sched_in(struct task_struct *prev,
2890                                 struct task_struct *task)
2891 {
2892         struct perf_event_context *ctx;
2893         int ctxn;
2894
2895         for_each_task_context_nr(ctxn) {
2896                 ctx = task->perf_event_ctxp[ctxn];
2897                 if (likely(!ctx))
2898                         continue;
2899
2900                 perf_event_context_sched_in(ctx, task);
2901         }
2902         /*
2903          * if cgroup events exist on this CPU, then we need
2904          * to check if we have to switch in PMU state.
2905          * cgroup event are system-wide mode only
2906          */
2907         if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
2908                 perf_cgroup_sched_in(prev, task);
2909
2910         if (atomic_read(&nr_switch_events))
2911                 perf_event_switch(task, prev, true);
2912
2913         if (__this_cpu_read(perf_sched_cb_usages))
2914                 perf_pmu_sched_task(prev, task, true);
2915 }
2916
2917 static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2918 {
2919         u64 frequency = event->attr.sample_freq;
2920         u64 sec = NSEC_PER_SEC;
2921         u64 divisor, dividend;
2922
2923         int count_fls, nsec_fls, frequency_fls, sec_fls;
2924
2925         count_fls = fls64(count);
2926         nsec_fls = fls64(nsec);
2927         frequency_fls = fls64(frequency);
2928         sec_fls = 30;
2929
2930         /*
2931          * We got @count in @nsec, with a target of sample_freq HZ
2932          * the target period becomes:
2933          *
2934          *             @count * 10^9
2935          * period = -------------------
2936          *          @nsec * sample_freq
2937          *
2938          */
2939
2940         /*
2941          * Reduce accuracy by one bit such that @a and @b converge
2942          * to a similar magnitude.
2943          */
2944 #define REDUCE_FLS(a, b)                \
2945 do {                                    \
2946         if (a##_fls > b##_fls) {        \
2947                 a >>= 1;                \
2948                 a##_fls--;              \
2949         } else {                        \
2950                 b >>= 1;                \
2951                 b##_fls--;              \
2952         }                               \
2953 } while (0)
2954
2955         /*
2956          * Reduce accuracy until either term fits in a u64, then proceed with
2957          * the other, so that finally we can do a u64/u64 division.
2958          */
2959         while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2960                 REDUCE_FLS(nsec, frequency);
2961                 REDUCE_FLS(sec, count);
2962         }
2963
2964         if (count_fls + sec_fls > 64) {
2965                 divisor = nsec * frequency;
2966
2967                 while (count_fls + sec_fls > 64) {
2968                         REDUCE_FLS(count, sec);
2969                         divisor >>= 1;
2970                 }
2971
2972                 dividend = count * sec;
2973         } else {
2974                 dividend = count * sec;
2975
2976                 while (nsec_fls + frequency_fls > 64) {
2977                         REDUCE_FLS(nsec, frequency);
2978                         dividend >>= 1;
2979                 }
2980
2981                 divisor = nsec * frequency;
2982         }
2983
2984         if (!divisor)
2985                 return dividend;
2986
2987         return div64_u64(dividend, divisor);
2988 }
2989
2990 static DEFINE_PER_CPU(int, perf_throttled_count);
2991 static DEFINE_PER_CPU(u64, perf_throttled_seq);
2992
2993 static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
2994 {
2995         struct hw_perf_event *hwc = &event->hw;
2996         s64 period, sample_period;
2997         s64 delta;
2998
2999         period = perf_calculate_period(event, nsec, count);
3000
3001         delta = (s64)(period - hwc->sample_period);
3002         delta = (delta + 7) / 8; /* low pass filter */
3003
3004         sample_period = hwc->sample_period + delta;
3005
3006         if (!sample_period)
3007                 sample_period = 1;
3008
3009         hwc->sample_period = sample_period;
3010
3011         if (local64_read(&hwc->period_left) > 8*sample_period) {
3012                 if (disable)
3013                         event->pmu->stop(event, PERF_EF_UPDATE);
3014
3015                 local64_set(&hwc->period_left, 0);
3016
3017                 if (disable)
3018                         event->pmu->start(event, PERF_EF_RELOAD);
3019         }
3020 }
3021
3022 /*
3023  * combine freq adjustment with unthrottling to avoid two passes over the
3024  * events. At the same time, make sure, having freq events does not change
3025  * the rate of unthrottling as that would introduce bias.
3026  */
3027 static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3028                                            int needs_unthr)
3029 {
3030         struct perf_event *event;
3031         struct hw_perf_event *hwc;
3032         u64 now, period = TICK_NSEC;
3033         s64 delta;
3034
3035         /*
3036          * only need to iterate over all events iff:
3037          * - context have events in frequency mode (needs freq adjust)
3038          * - there are events to unthrottle on this cpu
3039          */
3040         if (!(ctx->nr_freq || needs_unthr))
3041                 return;
3042
3043         raw_spin_lock(&ctx->lock);
3044         perf_pmu_disable(ctx->pmu);
3045
3046         list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
3047                 if (event->state != PERF_EVENT_STATE_ACTIVE)
3048                         continue;
3049
3050                 if (!event_filter_match(event))
3051                         continue;
3052
3053                 perf_pmu_disable(event->pmu);
3054
3055                 hwc = &event->hw;
3056
3057                 if (hwc->interrupts == MAX_INTERRUPTS) {
3058                         hwc->interrupts = 0;
3059                         perf_log_throttle(event, 1);
3060                         event->pmu->start(event, 0);
3061                 }
3062
3063                 if (!event->attr.freq || !event->attr.sample_freq)
3064                         goto next;
3065
3066                 /*
3067                  * stop the event and update event->count
3068                  */
3069                 event->pmu->stop(event, PERF_EF_UPDATE);
3070
3071                 now = local64_read(&event->count);
3072                 delta = now - hwc->freq_count_stamp;
3073                 hwc->freq_count_stamp = now;
3074
3075                 /*
3076                  * restart the event
3077                  * reload only if value has changed
3078                  * we have stopped the event so tell that
3079                  * to perf_adjust_period() to avoid stopping it
3080                  * twice.
3081                  */
3082                 if (delta > 0)
3083                         perf_adjust_period(event, period, delta, false);
3084
3085                 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
3086         next:
3087                 perf_pmu_enable(event->pmu);
3088         }
3089
3090         perf_pmu_enable(ctx->pmu);
3091         raw_spin_unlock(&ctx->lock);
3092 }
3093
3094 /*
3095  * Round-robin a context's events:
3096  */
3097 static void rotate_ctx(struct perf_event_context *ctx)
3098 {
3099         /*
3100          * Rotate the first entry last of non-pinned groups. Rotation might be
3101          * disabled by the inheritance code.
3102          */
3103         if (!ctx->rotate_disable)
3104                 list_rotate_left(&ctx->flexible_groups);
3105 }
3106
3107 static int perf_rotate_context(struct perf_cpu_context *cpuctx)
3108 {
3109         struct perf_event_context *ctx = NULL;
3110         int rotate = 0;
3111
3112         if (cpuctx->ctx.nr_events) {
3113                 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3114                         rotate = 1;
3115         }
3116
3117         ctx = cpuctx->task_ctx;
3118         if (ctx && ctx->nr_events) {
3119                 if (ctx->nr_events != ctx->nr_active)
3120                         rotate = 1;
3121         }
3122
3123         if (!rotate)
3124                 goto done;
3125
3126         perf_ctx_lock(cpuctx, cpuctx->task_ctx);
3127         perf_pmu_disable(cpuctx->ctx.pmu);
3128
3129         cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3130         if (ctx)
3131                 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
3132
3133         rotate_ctx(&cpuctx->ctx);
3134         if (ctx)
3135                 rotate_ctx(ctx);
3136
3137         perf_event_sched_in(cpuctx, ctx, current);
3138
3139         perf_pmu_enable(cpuctx->ctx.pmu);
3140         perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
3141 done:
3142
3143         return rotate;
3144 }
3145
3146 #ifdef CONFIG_NO_HZ_FULL
3147 bool perf_event_can_stop_tick(void)
3148 {
3149         if (atomic_read(&nr_freq_events) ||
3150             __this_cpu_read(perf_throttled_count))
3151                 return false;
3152         else
3153                 return true;
3154 }
3155 #endif
3156
3157 void perf_event_task_tick(void)
3158 {
3159         struct list_head *head = this_cpu_ptr(&active_ctx_list);
3160         struct perf_event_context *ctx, *tmp;
3161         int throttled;
3162
3163         WARN_ON(!irqs_disabled());
3164
3165         __this_cpu_inc(perf_throttled_seq);
3166         throttled = __this_cpu_xchg(perf_throttled_count, 0);
3167
3168         list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
3169                 perf_adjust_freq_unthr_context(ctx, throttled);
3170 }
3171
3172 static int event_enable_on_exec(struct perf_event *event,
3173                                 struct perf_event_context *ctx)
3174 {
3175         if (!event->attr.enable_on_exec)
3176                 return 0;
3177
3178         event->attr.enable_on_exec = 0;
3179         if (event->state >= PERF_EVENT_STATE_INACTIVE)
3180                 return 0;
3181
3182         __perf_event_mark_enabled(event);
3183
3184         return 1;
3185 }
3186
3187 /*
3188  * Enable all of a task's events that have been marked enable-on-exec.
3189  * This expects task == current.
3190  */
3191 static void perf_event_enable_on_exec(int ctxn)
3192 {
3193         struct perf_event_context *ctx, *clone_ctx = NULL;
3194         struct perf_event *event;
3195         unsigned long flags;
3196         int enabled = 0;
3197         int ret;
3198
3199         local_irq_save(flags);
3200         ctx = current->perf_event_ctxp[ctxn];
3201         if (!ctx || !ctx->nr_events)
3202                 goto out;
3203
3204         /*
3205          * We must ctxsw out cgroup events to avoid conflict
3206          * when invoking perf_task_event_sched_in() later on
3207          * in this function. Otherwise we end up trying to
3208          * ctxswin cgroup events which are already scheduled
3209          * in.
3210          */
3211         perf_cgroup_sched_out(current, NULL);
3212
3213         raw_spin_lock(&ctx->lock);
3214         task_ctx_sched_out(ctx);
3215
3216         list_for_each_entry(event, &ctx->event_list, event_entry) {
3217                 ret = event_enable_on_exec(event, ctx);
3218                 if (ret)
3219                         enabled = 1;
3220         }
3221
3222         /*
3223          * Unclone this context if we enabled any event.
3224          */
3225         if (enabled)
3226                 clone_ctx = unclone_ctx(ctx);
3227
3228         raw_spin_unlock(&ctx->lock);
3229
3230         /*
3231          * Also calls ctxswin for cgroup events, if any:
3232          */
3233         perf_event_context_sched_in(ctx, ctx->task);
3234 out:
3235         local_irq_restore(flags);
3236
3237         if (clone_ctx)
3238                 put_ctx(clone_ctx);
3239 }
3240
3241 void perf_event_exec(void)
3242 {
3243         int ctxn;
3244
3245         rcu_read_lock();
3246         for_each_task_context_nr(ctxn)
3247                 perf_event_enable_on_exec(ctxn);
3248         rcu_read_unlock();
3249 }
3250
3251 struct perf_read_data {
3252         struct perf_event *event;
3253         bool group;
3254         int ret;
3255 };
3256
3257 /*
3258  * Cross CPU call to read the hardware event
3259  */
3260 static void __perf_event_read(void *info)
3261 {
3262         struct perf_read_data *data = info;
3263         struct perf_event *sub, *event = data->event;
3264         struct perf_event_context *ctx = event->ctx;
3265         struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
3266         struct pmu *pmu = event->pmu;
3267
3268         /*
3269          * If this is a task context, we need to check whether it is
3270          * the current task context of this cpu.  If not it has been
3271          * scheduled out before the smp call arrived.  In that case
3272          * event->count would have been updated to a recent sample
3273          * when the event was scheduled out.
3274          */
3275         if (ctx->task && cpuctx->task_ctx != ctx)
3276                 return;
3277
3278         raw_spin_lock(&ctx->lock);
3279         if (ctx->is_active) {
3280                 update_context_time(ctx);
3281                 update_cgrp_time_from_event(event);
3282         }
3283
3284         update_event_times(event);
3285         if (event->state != PERF_EVENT_STATE_ACTIVE)
3286                 goto unlock;
3287
3288         if (!data->group) {
3289                 pmu->read(event);
3290                 data->ret = 0;
3291                 goto unlock;
3292         }
3293
3294         pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3295
3296         pmu->read(event);
3297
3298         list_for_each_entry(sub, &event->sibling_list, group_entry) {
3299                 update_event_times(sub);
3300                 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3301                         /*
3302                          * Use sibling's PMU rather than @event's since
3303                          * sibling could be on different (eg: software) PMU.
3304                          */
3305                         sub->pmu->read(sub);
3306                 }
3307         }
3308
3309         data->ret = pmu->commit_txn(pmu);
3310
3311 unlock:
3312         raw_spin_unlock(&ctx->lock);
3313 }
3314
3315 static inline u64 perf_event_count(struct perf_event *event)
3316 {
3317         if (event->pmu->count)
3318                 return event->pmu->count(event);
3319
3320         return __perf_event_count(event);
3321 }
3322
3323 /*
3324  * NMI-safe method to read a local event, that is an event that
3325  * is:
3326  *   - either for the current task, or for this CPU
3327  *   - does not have inherit set, for inherited task events
3328  *     will not be local and we cannot read them atomically
3329  *   - must not have a pmu::count method
3330  */
3331 u64 perf_event_read_local(struct perf_event *event)
3332 {
3333         unsigned long flags;
3334         u64 val;
3335
3336         /*
3337          * Disabling interrupts avoids all counter scheduling (context
3338          * switches, timer based rotation and IPIs).
3339          */
3340         local_irq_save(flags);
3341
3342         /* If this is a per-task event, it must be for current */
3343         WARN_ON_ONCE((event->attach_state & PERF_ATTACH_TASK) &&
3344                      event->hw.target != current);
3345
3346         /* If this is a per-CPU event, it must be for this CPU */
3347         WARN_ON_ONCE(!(event->attach_state & PERF_ATTACH_TASK) &&
3348                      event->cpu != smp_processor_id());
3349
3350         /*
3351          * It must not be an event with inherit set, we cannot read
3352          * all child counters from atomic context.
3353          */
3354         WARN_ON_ONCE(event->attr.inherit);
3355
3356         /*
3357          * It must not have a pmu::count method, those are not
3358          * NMI safe.
3359          */
3360         WARN_ON_ONCE(event->pmu->count);
3361
3362         /*
3363          * If the event is currently on this CPU, its either a per-task event,
3364          * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3365          * oncpu == -1).
3366          */
3367         if (event->oncpu == smp_processor_id())
3368                 event->pmu->read(event);
3369
3370         val = local64_read(&event->count);
3371         local_irq_restore(flags);
3372
3373         return val;
3374 }
3375
3376 static int perf_event_read(struct perf_event *event, bool group)
3377 {
3378         int ret = 0;
3379
3380         /*
3381          * If event is enabled and currently active on a CPU, update the
3382          * value in the event structure:
3383          */
3384         if (event->state == PERF_EVENT_STATE_ACTIVE) {
3385                 struct perf_read_data data = {
3386                         .event = event,
3387                         .group = group,
3388                         .ret = 0,
3389                 };
3390                 smp_call_function_single(event->oncpu,
3391                                          __perf_event_read, &data, 1);
3392                 ret = data.ret;
3393         } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
3394                 struct perf_event_context *ctx = event->ctx;
3395                 unsigned long flags;
3396
3397                 raw_spin_lock_irqsave(&ctx->lock, flags);
3398                 /*
3399                  * may read while context is not active
3400                  * (e.g., thread is blocked), in that case
3401                  * we cannot update context time
3402                  */
3403                 if (ctx->is_active) {
3404                         update_context_time(ctx);
3405                         update_cgrp_time_from_event(event);
3406                 }
3407                 if (group)
3408                         update_group_times(event);
3409                 else
3410                         update_event_times(event);
3411                 raw_spin_unlock_irqrestore(&ctx->lock, flags);
3412         }
3413
3414         return ret;
3415 }
3416
3417 /*
3418  * Initialize the perf_event context in a task_struct:
3419  */
3420 static void __perf_event_init_context(struct perf_event_context *ctx)
3421 {
3422         raw_spin_lock_init(&ctx->lock);
3423         mutex_init(&ctx->mutex);
3424         INIT_LIST_HEAD(&ctx->active_ctx_list);
3425         INIT_LIST_HEAD(&ctx->pinned_groups);
3426         INIT_LIST_HEAD(&ctx->flexible_groups);
3427         INIT_LIST_HEAD(&ctx->event_list);
3428         atomic_set(&ctx->refcount, 1);
3429         INIT_DELAYED_WORK(&ctx->orphans_remove, orphans_remove_work);
3430 }
3431
3432 static struct perf_event_context *
3433 alloc_perf_context(struct pmu *pmu, struct task_struct *task)
3434 {
3435         struct perf_event_context *ctx;
3436
3437         ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3438         if (!ctx)
3439                 return NULL;
3440
3441         __perf_event_init_context(ctx);
3442         if (task) {
3443                 ctx->task = task;
3444                 get_task_struct(task);
3445         }
3446         ctx->pmu = pmu;
3447
3448         return ctx;
3449 }
3450
3451 static struct task_struct *
3452 find_lively_task_by_vpid(pid_t vpid)
3453 {
3454         struct task_struct *task;
3455
3456         rcu_read_lock();
3457         if (!vpid)
3458                 task = current;
3459         else
3460                 task = find_task_by_vpid(vpid);
3461         if (task)
3462                 get_task_struct(task);
3463         rcu_read_unlock();
3464
3465         if (!task)
3466                 return ERR_PTR(-ESRCH);
3467
3468         return task;
3469 }
3470
3471 /*
3472  * Returns a matching context with refcount and pincount.
3473  */
3474 static struct perf_event_context *
3475 find_get_context(struct pmu *pmu, struct task_struct *task,
3476                 struct perf_event *event)
3477 {
3478         struct perf_event_context *ctx, *clone_ctx = NULL;
3479         struct perf_cpu_context *cpuctx;
3480         void *task_ctx_data = NULL;
3481         unsigned long flags;
3482         int ctxn, err;
3483         int cpu = event->cpu;
3484
3485         if (!task) {
3486                 /* Must be root to operate on a CPU event: */
3487                 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3488                         return ERR_PTR(-EACCES);
3489
3490                 /*
3491                  * We could be clever and allow to attach a event to an
3492                  * offline CPU and activate it when the CPU comes up, but
3493                  * that's for later.
3494                  */
3495                 if (!cpu_online(cpu))
3496                         return ERR_PTR(-ENODEV);
3497
3498                 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
3499                 ctx = &cpuctx->ctx;
3500                 get_ctx(ctx);
3501                 ++ctx->pin_count;
3502
3503                 return ctx;
3504         }
3505
3506         err = -EINVAL;
3507         ctxn = pmu->task_ctx_nr;
3508         if (ctxn < 0)
3509                 goto errout;
3510
3511         if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3512                 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3513                 if (!task_ctx_data) {
3514                         err = -ENOMEM;
3515                         goto errout;
3516                 }
3517         }
3518
3519 retry:
3520         ctx = perf_lock_task_context(task, ctxn, &flags);
3521         if (ctx) {
3522                 clone_ctx = unclone_ctx(ctx);
3523                 ++ctx->pin_count;
3524
3525                 if (task_ctx_data && !ctx->task_ctx_data) {
3526                         ctx->task_ctx_data = task_ctx_data;
3527                         task_ctx_data = NULL;
3528                 }
3529                 raw_spin_unlock_irqrestore(&ctx->lock, flags);
3530
3531                 if (clone_ctx)
3532                         put_ctx(clone_ctx);
3533         } else {
3534                 ctx = alloc_perf_context(pmu, task);
3535                 err = -ENOMEM;
3536                 if (!ctx)
3537                         goto errout;
3538
3539                 if (task_ctx_data) {
3540                         ctx->task_ctx_data = task_ctx_data;
3541                         task_ctx_data = NULL;
3542                 }
3543
3544                 err = 0;
3545                 mutex_lock(&task->perf_event_mutex);
3546                 /*
3547                  * If it has already passed perf_event_exit_task().
3548                  * we must see PF_EXITING, it takes this mutex too.
3549                  */
3550                 if (task->flags & PF_EXITING)
3551                         err = -ESRCH;
3552                 else if (task->perf_event_ctxp[ctxn])
3553                         err = -EAGAIN;
3554                 else {
3555                         get_ctx(ctx);
3556                         ++ctx->pin_count;
3557                         rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
3558                 }
3559                 mutex_unlock(&task->perf_event_mutex);
3560
3561                 if (unlikely(err)) {
3562                         put_ctx(ctx);
3563
3564                         if (err == -EAGAIN)
3565                                 goto retry;
3566                         goto errout;
3567                 }
3568         }
3569
3570         kfree(task_ctx_data);
3571         return ctx;
3572
3573 errout:
3574         kfree(task_ctx_data);
3575         return ERR_PTR(err);
3576 }
3577
3578 static void perf_event_free_filter(struct perf_event *event);
3579 static void perf_event_free_bpf_prog(struct perf_event *event);
3580
3581 static void free_event_rcu(struct rcu_head *head)
3582 {
3583         struct perf_event *event;
3584
3585         event = container_of(head, struct perf_event, rcu_head);
3586         if (event->ns)
3587                 put_pid_ns(event->ns);
3588         perf_event_free_filter(event);
3589         kfree(event);
3590 }
3591
3592 static void ring_buffer_attach(struct perf_event *event,
3593                                struct ring_buffer *rb);
3594
3595 static void unaccount_event_cpu(struct perf_event *event, int cpu)
3596 {
3597         if (event->parent)
3598                 return;
3599
3600         if (is_cgroup_event(event))
3601                 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3602 }
3603
3604 static void unaccount_event(struct perf_event *event)
3605 {
3606         if (event->parent)
3607                 return;
3608
3609         if (event->attach_state & PERF_ATTACH_TASK)
3610                 static_key_slow_dec_deferred(&perf_sched_events);
3611         if (event->attr.mmap || event->attr.mmap_data)
3612                 atomic_dec(&nr_mmap_events);
3613         if (event->attr.comm)
3614                 atomic_dec(&nr_comm_events);
3615         if (event->attr.task)
3616                 atomic_dec(&nr_task_events);
3617         if (event->attr.freq)
3618                 atomic_dec(&nr_freq_events);
3619         if (event->attr.context_switch) {
3620                 static_key_slow_dec_deferred(&perf_sched_events);
3621                 atomic_dec(&nr_switch_events);
3622         }
3623         if (is_cgroup_event(event))
3624                 static_key_slow_dec_deferred(&perf_sched_events);
3625         if (has_branch_stack(event))
3626                 static_key_slow_dec_deferred(&perf_sched_events);
3627
3628         unaccount_event_cpu(event, event->cpu);
3629 }
3630
3631 /*
3632  * The following implement mutual exclusion of events on "exclusive" pmus
3633  * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
3634  * at a time, so we disallow creating events that might conflict, namely:
3635  *
3636  *  1) cpu-wide events in the presence of per-task events,
3637  *  2) per-task events in the presence of cpu-wide events,
3638  *  3) two matching events on the same context.
3639  *
3640  * The former two cases are handled in the allocation path (perf_event_alloc(),
3641  * __free_event()), the latter -- before the first perf_install_in_context().
3642  */
3643 static int exclusive_event_init(struct perf_event *event)
3644 {
3645         struct pmu *pmu = event->pmu;
3646
3647         if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3648                 return 0;
3649
3650         /*
3651          * Prevent co-existence of per-task and cpu-wide events on the
3652          * same exclusive pmu.
3653          *
3654          * Negative pmu::exclusive_cnt means there are cpu-wide
3655          * events on this "exclusive" pmu, positive means there are
3656          * per-task events.
3657          *
3658          * Since this is called in perf_event_alloc() path, event::ctx
3659          * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
3660          * to mean "per-task event", because unlike other attach states it
3661          * never gets cleared.
3662          */
3663         if (event->attach_state & PERF_ATTACH_TASK) {
3664                 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
3665                         return -EBUSY;
3666         } else {
3667                 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
3668                         return -EBUSY;
3669         }
3670
3671         return 0;
3672 }
3673
3674 static void exclusive_event_destroy(struct perf_event *event)
3675 {
3676         struct pmu *pmu = event->pmu;
3677
3678         if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3679                 return;
3680
3681         /* see comment in exclusive_event_init() */
3682         if (event->attach_state & PERF_ATTACH_TASK)
3683                 atomic_dec(&pmu->exclusive_cnt);
3684         else
3685                 atomic_inc(&pmu->exclusive_cnt);
3686 }
3687
3688 static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
3689 {
3690         if ((e1->pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) &&
3691             (e1->cpu == e2->cpu ||
3692              e1->cpu == -1 ||
3693              e2->cpu == -1))
3694                 return true;
3695         return false;
3696 }
3697
3698 /* Called under the same ctx::mutex as perf_install_in_context() */
3699 static bool exclusive_event_installable(struct perf_event *event,
3700                                         struct perf_event_context *ctx)
3701 {
3702         struct perf_event *iter_event;
3703         struct pmu *pmu = event->pmu;
3704
3705         if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3706                 return true;
3707
3708         list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
3709                 if (exclusive_event_match(iter_event, event))
3710                         return false;
3711         }
3712
3713         return true;
3714 }
3715
3716 static void __free_event(struct perf_event *event)
3717 {
3718         if (!event->parent) {
3719                 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
3720                         put_callchain_buffers();
3721         }
3722
3723         perf_event_free_bpf_prog(event);
3724
3725         if (event->destroy)
3726                 event->destroy(event);
3727
3728         if (event->pmu->free_drv_configs)
3729                 event->pmu->free_drv_configs(event);
3730
3731         if (event->ctx)
3732                 put_ctx(event->ctx);
3733
3734         if (event->pmu) {
3735                 exclusive_event_destroy(event);
3736                 module_put(event->pmu->module);
3737         }
3738
3739         call_rcu(&event->rcu_head, free_event_rcu);
3740 }
3741
3742 static void _free_event(struct perf_event *event)
3743 {
3744         irq_work_sync(&event->pending);
3745
3746         unaccount_event(event);
3747
3748         if (event->rb) {
3749                 /*
3750                  * Can happen when we close an event with re-directed output.
3751                  *
3752                  * Since we have a 0 refcount, perf_mmap_close() will skip
3753                  * over us; possibly making our ring_buffer_put() the last.
3754                  */
3755                 mutex_lock(&event->mmap_mutex);
3756                 ring_buffer_attach(event, NULL);
3757                 mutex_unlock(&event->mmap_mutex);
3758         }
3759
3760         if (is_cgroup_event(event))
3761                 perf_detach_cgroup(event);
3762
3763         __free_event(event);
3764 }
3765
3766 /*
3767  * Used to free events which have a known refcount of 1, such as in error paths
3768  * where the event isn't exposed yet and inherited events.
3769  */
3770 static void free_event(struct perf_event *event)
3771 {
3772         if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
3773                                 "unexpected event refcount: %ld; ptr=%p\n",
3774                                 atomic_long_read(&event->refcount), event)) {
3775                 /* leak to avoid use-after-free */
3776                 return;
3777         }
3778
3779         _free_event(event);
3780 }
3781
3782 /*
3783  * Remove user event from the owner task.
3784  */
3785 static void perf_remove_from_owner(struct perf_event *event)
3786 {
3787         struct task_struct *owner;
3788
3789         rcu_read_lock();
3790         owner = ACCESS_ONCE(event->owner);
3791         /*
3792          * Matches the smp_wmb() in perf_event_exit_task(). If we observe
3793          * !owner it means the list deletion is complete and we can indeed
3794          * free this event, otherwise we need to serialize on
3795          * owner->perf_event_mutex.
3796          */
3797         smp_read_barrier_depends();
3798         if (owner) {
3799                 /*
3800                  * Since delayed_put_task_struct() also drops the last
3801                  * task reference we can safely take a new reference
3802                  * while holding the rcu_read_lock().
3803                  */
3804                 get_task_struct(owner);
3805         }
3806         rcu_read_unlock();
3807
3808         if (owner) {
3809                 /*
3810                  * If we're here through perf_event_exit_task() we're already
3811                  * holding ctx->mutex which would be an inversion wrt. the
3812                  * normal lock order.
3813                  *
3814                  * However we can safely take this lock because its the child
3815                  * ctx->mutex.
3816                  */
3817                 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
3818
3819                 /*
3820                  * We have to re-check the event->owner field, if it is cleared
3821                  * we raced with perf_event_exit_task(), acquiring the mutex
3822                  * ensured they're done, and we can proceed with freeing the
3823                  * event.
3824                  */
3825                 if (event->owner)
3826                         list_del_init(&event->owner_entry);
3827                 mutex_unlock(&owner->perf_event_mutex);
3828                 put_task_struct(owner);
3829         }
3830 }
3831
3832 static void put_event(struct perf_event *event)
3833 {
3834         struct perf_event_context *ctx;
3835
3836         if (!atomic_long_dec_and_test(&event->refcount))
3837                 return;
3838
3839         if (!is_kernel_event(event))
3840                 perf_remove_from_owner(event);
3841
3842         /*
3843          * There are two ways this annotation is useful:
3844          *
3845          *  1) there is a lock recursion from perf_event_exit_task
3846          *     see the comment there.
3847          *
3848          *  2) there is a lock-inversion with mmap_sem through
3849          *     perf_read_group(), which takes faults while
3850          *     holding ctx->mutex, however this is called after
3851          *     the last filedesc died, so there is no possibility
3852          *     to trigger the AB-BA case.
3853          */
3854         ctx = perf_event_ctx_lock_nested(event, SINGLE_DEPTH_NESTING);
3855         WARN_ON_ONCE(ctx->parent_ctx);
3856         perf_remove_from_context(event, true);
3857         perf_event_ctx_unlock(event, ctx);
3858
3859         _free_event(event);
3860 }
3861
3862 int perf_event_release_kernel(struct perf_event *event)
3863 {
3864         put_event(event);
3865         return 0;
3866 }
3867 EXPORT_SYMBOL_GPL(perf_event_release_kernel);
3868
3869 /*
3870  * Called when the last reference to the file is gone.
3871  */
3872 static int perf_release(struct inode *inode, struct file *file)
3873 {
3874         put_event(file->private_data);
3875         return 0;
3876 }
3877
3878 /*
3879  * Remove all orphanes events from the context.
3880  */
3881 static void orphans_remove_work(struct work_struct *work)
3882 {
3883         struct perf_event_context *ctx;
3884         struct perf_event *event, *tmp;
3885
3886         ctx = container_of(work, struct perf_event_context,
3887                            orphans_remove.work);
3888
3889         mutex_lock(&ctx->mutex);
3890         list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry) {
3891                 struct perf_event *parent_event = event->parent;
3892
3893                 if (!is_orphaned_child(event))
3894                         continue;
3895
3896                 perf_remove_from_context(event, true);
3897
3898                 mutex_lock(&parent_event->child_mutex);
3899                 list_del_init(&event->child_list);
3900                 mutex_unlock(&parent_event->child_mutex);
3901
3902                 free_event(event);
3903                 put_event(parent_event);
3904         }
3905
3906         raw_spin_lock_irq(&ctx->lock);
3907         ctx->orphans_remove_sched = false;
3908         raw_spin_unlock_irq(&ctx->lock);
3909         mutex_unlock(&ctx->mutex);
3910
3911         put_ctx(ctx);
3912 }
3913
3914 u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
3915 {
3916         struct perf_event *child;
3917         u64 total = 0;
3918
3919         *enabled = 0;
3920         *running = 0;
3921
3922         mutex_lock(&event->child_mutex);
3923
3924         (void)perf_event_read(event, false);
3925         total += perf_event_count(event);
3926
3927         *enabled += event->total_time_enabled +
3928                         atomic64_read(&event->child_total_time_enabled);
3929         *running += event->total_time_running +
3930                         atomic64_read(&event->child_total_time_running);
3931
3932         list_for_each_entry(child, &event->child_list, child_list) {
3933                 (void)perf_event_read(child, false);
3934                 total += perf_event_count(child);
3935                 *enabled += child->total_time_enabled;
3936                 *running += child->total_time_running;
3937         }
3938         mutex_unlock(&event->child_mutex);
3939
3940         return total;
3941 }
3942 EXPORT_SYMBOL_GPL(perf_event_read_value);
3943
3944 static int __perf_read_group_add(struct perf_event *leader,
3945                                         u64 read_format, u64 *values)
3946 {
3947         struct perf_event *sub;
3948         int n = 1; /* skip @nr */
3949         int ret;
3950
3951         ret = perf_event_read(leader, true);
3952         if (ret)
3953                 return ret;
3954
3955         /*
3956          * Since we co-schedule groups, {enabled,running} times of siblings
3957          * will be identical to those of the leader, so we only publish one
3958          * set.
3959          */
3960         if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
3961                 values[n++] += leader->total_time_enabled +
3962                         atomic64_read(&leader->child_total_time_enabled);
3963         }
3964
3965         if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
3966                 values[n++] += leader->total_time_running +
3967                         atomic64_read(&leader->child_total_time_running);
3968         }
3969
3970         /*
3971          * Write {count,id} tuples for every sibling.
3972          */
3973         values[n++] += perf_event_count(leader);
3974         if (read_format & PERF_FORMAT_ID)
3975                 values[n++] = primary_event_id(leader);
3976
3977         list_for_each_entry(sub, &leader->sibling_list, group_entry) {
3978                 values[n++] += perf_event_count(sub);
3979                 if (read_format & PERF_FORMAT_ID)
3980                         values[n++] = primary_event_id(sub);
3981         }
3982
3983         return 0;
3984 }
3985
3986 static int perf_read_group(struct perf_event *event,
3987                                    u64 read_format, char __user *buf)
3988 {
3989         struct perf_event *leader = event->group_leader, *child;
3990         struct perf_event_context *ctx = leader->ctx;
3991         int ret;
3992         u64 *values;
3993
3994         lockdep_assert_held(&ctx->mutex);
3995
3996         values = kzalloc(event->read_size, GFP_KERNEL);
3997         if (!values)
3998                 return -ENOMEM;
3999
4000         values[0] = 1 + leader->nr_siblings;
4001
4002         /*
4003          * By locking the child_mutex of the leader we effectively
4004          * lock the child list of all siblings.. XXX explain how.
4005          */
4006         mutex_lock(&leader->child_mutex);
4007
4008         ret = __perf_read_group_add(leader, read_format, values);
4009         if (ret)
4010                 goto unlock;
4011
4012         list_for_each_entry(child, &leader->child_list, child_list) {
4013                 ret = __perf_read_group_add(child, read_format, values);
4014                 if (ret)
4015                         goto unlock;
4016         }
4017
4018         mutex_unlock(&leader->child_mutex);
4019
4020         ret = event->read_size;
4021         if (copy_to_user(buf, values, event->read_size))
4022                 ret = -EFAULT;
4023         goto out;
4024
4025 unlock:
4026         mutex_unlock(&leader->child_mutex);
4027 out:
4028         kfree(values);
4029         return ret;
4030 }
4031
4032 static int perf_read_one(struct perf_event *event,
4033                                  u64 read_format, char __user *buf)
4034 {
4035         u64 enabled, running;
4036         u64 values[4];
4037         int n = 0;
4038
4039         values[n++] = perf_event_read_value(event, &enabled, &running);
4040         if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
4041                 values[n++] = enabled;
4042         if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
4043                 values[n++] = running;
4044         if (read_format & PERF_FORMAT_ID)
4045                 values[n++] = primary_event_id(event);
4046
4047         if (copy_to_user(buf, values, n * sizeof(u64)))
4048                 return -EFAULT;
4049
4050         return n * sizeof(u64);
4051 }
4052
4053 static bool is_event_hup(struct perf_event *event)
4054 {
4055         bool no_children;
4056
4057         if (event->state != PERF_EVENT_STATE_EXIT)
4058                 return false;
4059
4060         mutex_lock(&event->child_mutex);
4061         no_children = list_empty(&event->child_list);
4062         mutex_unlock(&event->child_mutex);
4063         return no_children;
4064 }
4065
4066 /*
4067  * Read the performance event - simple non blocking version for now
4068  */
4069 static ssize_t
4070 __perf_read(struct perf_event *event, char __user *buf, size_t count)
4071 {
4072         u64 read_format = event->attr.read_format;
4073         int ret;
4074
4075         /*
4076          * Return end-of-file for a read on a event that is in
4077          * error state (i.e. because it was pinned but it couldn't be
4078          * scheduled on to the CPU at some point).
4079          */
4080         if (event->state == PERF_EVENT_STATE_ERROR)
4081                 return 0;
4082
4083         if (count < event->read_size)
4084                 return -ENOSPC;
4085
4086         WARN_ON_ONCE(event->ctx->parent_ctx);
4087         if (read_format & PERF_FORMAT_GROUP)
4088                 ret = perf_read_group(event, read_format, buf);
4089         else
4090                 ret = perf_read_one(event, read_format, buf);
4091
4092         return ret;
4093 }
4094
4095 static ssize_t
4096 perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
4097 {
4098         struct perf_event *event = file->private_data;
4099         struct perf_event_context *ctx;
4100         int ret;
4101
4102         ctx = perf_event_ctx_lock(event);
4103         ret = __perf_read(event, buf, count);
4104         perf_event_ctx_unlock(event, ctx);
4105
4106         return ret;
4107 }
4108
4109 static unsigned int perf_poll(struct file *file, poll_table *wait)
4110 {
4111         struct perf_event *event = file->private_data;
4112         struct ring_buffer *rb;
4113         unsigned int events = POLLHUP;
4114
4115         poll_wait(file, &event->waitq, wait);
4116
4117         if (is_event_hup(event))
4118                 return events;
4119
4120         /*
4121          * Pin the event->rb by taking event->mmap_mutex; otherwise
4122          * perf_event_set_output() can swizzle our rb and make us miss wakeups.
4123          */
4124         mutex_lock(&event->mmap_mutex);
4125         rb = event->rb;
4126         if (rb)
4127                 events = atomic_xchg(&rb->poll, 0);
4128         mutex_unlock(&event->mmap_mutex);
4129         return events;
4130 }
4131
4132 static void _perf_event_reset(struct perf_event *event)
4133 {
4134         (void)perf_event_read(event, false);
4135         local64_set(&event->count, 0);
4136         perf_event_update_userpage(event);
4137 }
4138
4139 /*
4140  * Holding the top-level event's child_mutex means that any
4141  * descendant process that has inherited this event will block
4142  * in sync_child_event if it goes to exit, thus satisfying the
4143  * task existence requirements of perf_event_enable/disable.
4144  */
4145 static void perf_event_for_each_child(struct perf_event *event,
4146                                         void (*func)(struct perf_event *))
4147 {
4148         struct perf_event *child;
4149
4150         WARN_ON_ONCE(event->ctx->parent_ctx);
4151
4152         mutex_lock(&event->child_mutex);
4153         func(event);
4154         list_for_each_entry(child, &event->child_list, child_list)
4155                 func(child);
4156         mutex_unlock(&event->child_mutex);
4157 }
4158
4159 static void perf_event_for_each(struct perf_event *event,
4160                                   void (*func)(struct perf_event *))
4161 {
4162         struct perf_event_context *ctx = event->ctx;
4163         struct perf_event *sibling;
4164
4165         lockdep_assert_held(&ctx->mutex);
4166
4167         event = event->group_leader;
4168
4169         perf_event_for_each_child(event, func);
4170         list_for_each_entry(sibling, &event->sibling_list, group_entry)
4171                 perf_event_for_each_child(sibling, func);
4172 }
4173
4174 struct period_event {
4175         struct perf_event *event;
4176         u64 value;
4177 };
4178
4179 static int __perf_event_period(void *info)
4180 {
4181         struct period_event *pe = info;
4182         struct perf_event *event = pe->event;
4183         struct perf_event_context *ctx = event->ctx;
4184         u64 value = pe->value;
4185         bool active;
4186
4187         raw_spin_lock(&ctx->lock);
4188         if (event->attr.freq) {
4189                 event->attr.sample_freq = value;
4190         } else {
4191                 event->attr.sample_period = value;
4192                 event->hw.sample_period = value;
4193         }
4194
4195         active = (event->state == PERF_EVENT_STATE_ACTIVE);
4196         if (active) {
4197                 perf_pmu_disable(ctx->pmu);
4198                 event->pmu->stop(event, PERF_EF_UPDATE);
4199         }
4200
4201         local64_set(&event->hw.period_left, 0);
4202
4203         if (active) {
4204                 event->pmu->start(event, PERF_EF_RELOAD);
4205                 perf_pmu_enable(ctx->pmu);
4206         }
4207         raw_spin_unlock(&ctx->lock);
4208
4209         return 0;
4210 }
4211
4212 static int perf_event_period(struct perf_event *event, u64 __user *arg)
4213 {
4214         struct period_event pe = { .event = event, };
4215         struct perf_event_context *ctx = event->ctx;
4216         struct task_struct *task;
4217         u64 value;
4218
4219         if (!is_sampling_event(event))
4220                 return -EINVAL;
4221
4222         if (copy_from_user(&value, arg, sizeof(value)))
4223                 return -EFAULT;
4224
4225         if (!value)
4226                 return -EINVAL;
4227
4228         if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4229                 return -EINVAL;
4230
4231         task = ctx->task;
4232         pe.value = value;
4233
4234         if (!task) {
4235                 cpu_function_call(event->cpu, __perf_event_period, &pe);
4236                 return 0;
4237         }
4238
4239 retry:
4240         if (!task_function_call(task, __perf_event_period, &pe))
4241                 return 0;
4242
4243         raw_spin_lock_irq(&ctx->lock);
4244         if (ctx->is_active) {
4245                 raw_spin_unlock_irq(&ctx->lock);
4246                 task = ctx->task;
4247                 goto retry;
4248         }
4249
4250         if (event->attr.freq) {
4251                 event->attr.sample_freq = value;
4252         } else {
4253                 event->attr.sample_period = value;
4254                 event->hw.sample_period = value;
4255         }
4256
4257         local64_set(&event->hw.period_left, 0);
4258         raw_spin_unlock_irq(&ctx->lock);
4259
4260         return 0;
4261 }
4262
4263 static const struct file_operations perf_fops;
4264
4265 static inline int perf_fget_light(int fd, struct fd *p)
4266 {
4267         struct fd f = fdget(fd);
4268         if (!f.file)
4269                 return -EBADF;
4270
4271         if (f.file->f_op != &perf_fops) {
4272                 fdput(f);
4273                 return -EBADF;
4274         }
4275         *p = f;
4276         return 0;
4277 }
4278
4279 static int perf_event_set_output(struct perf_event *event,
4280                                  struct perf_event *output_event);
4281 static int perf_event_set_filter(struct perf_event *event, void __user *arg);
4282 static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
4283 static int perf_event_drv_configs(struct perf_event *event,
4284                                   void __user *arg);
4285
4286 static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
4287 {
4288         void (*func)(struct perf_event *);
4289         u32 flags = arg;
4290
4291         switch (cmd) {
4292         case PERF_EVENT_IOC_ENABLE:
4293                 func = _perf_event_enable;
4294                 break;
4295         case PERF_EVENT_IOC_DISABLE:
4296                 func = _perf_event_disable;
4297                 break;
4298         case PERF_EVENT_IOC_RESET:
4299                 func = _perf_event_reset;
4300                 break;
4301
4302         case PERF_EVENT_IOC_REFRESH:
4303                 return _perf_event_refresh(event, arg);
4304
4305         case PERF_EVENT_IOC_PERIOD:
4306                 return perf_event_period(event, (u64 __user *)arg);
4307
4308         case PERF_EVENT_IOC_ID:
4309         {
4310                 u64 id = primary_event_id(event);
4311
4312                 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
4313                         return -EFAULT;
4314                 return 0;
4315         }
4316
4317         case PERF_EVENT_IOC_SET_OUTPUT:
4318         {
4319                 int ret;
4320                 if (arg != -1) {
4321                         struct perf_event *output_event;
4322                         struct fd output;
4323                         ret = perf_fget_light(arg, &output);
4324                         if (ret)
4325                                 return ret;
4326                         output_event = output.file->private_data;
4327                         ret = perf_event_set_output(event, output_event);
4328                         fdput(output);
4329                 } else {
4330                         ret = perf_event_set_output(event, NULL);
4331                 }
4332                 return ret;
4333         }
4334
4335         case PERF_EVENT_IOC_SET_FILTER:
4336                 return perf_event_set_filter(event, (void __user *)arg);
4337
4338         case PERF_EVENT_IOC_SET_BPF:
4339                 return perf_event_set_bpf_prog(event, arg);
4340
4341         case PERF_EVENT_IOC_SET_DRV_CONFIGS:
4342                 return perf_event_drv_configs(event, (void __user *)arg);
4343
4344         default:
4345                 return -ENOTTY;
4346         }
4347
4348         if (flags & PERF_IOC_FLAG_GROUP)
4349                 perf_event_for_each(event, func);
4350         else
4351                 perf_event_for_each_child(event, func);
4352
4353         return 0;
4354 }
4355
4356 static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4357 {
4358         struct perf_event *event = file->private_data;
4359         struct perf_event_context *ctx;
4360         long ret;
4361
4362         ctx = perf_event_ctx_lock(event);
4363         ret = _perf_ioctl(event, cmd, arg);
4364         perf_event_ctx_unlock(event, ctx);
4365
4366         return ret;
4367 }
4368
4369 #ifdef CONFIG_COMPAT
4370 static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4371                                 unsigned long arg)
4372 {
4373         switch (_IOC_NR(cmd)) {
4374         case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4375         case _IOC_NR(PERF_EVENT_IOC_ID):
4376         case _IOC_NR(PERF_EVENT_IOC_SET_DRV_CONFIGS):
4377                 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4378                 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4379                         cmd &= ~IOCSIZE_MASK;
4380                         cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4381                 }
4382                 break;
4383         }
4384         return perf_ioctl(file, cmd, arg);
4385 }
4386 #else
4387 # define perf_compat_ioctl NULL
4388 #endif
4389
4390 int perf_event_task_enable(void)
4391 {
4392         struct perf_event_context *ctx;
4393         struct perf_event *event;
4394
4395         mutex_lock(&current->perf_event_mutex);
4396         list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4397                 ctx = perf_event_ctx_lock(event);
4398                 perf_event_for_each_child(event, _perf_event_enable);
4399                 perf_event_ctx_unlock(event, ctx);
4400         }
4401         mutex_unlock(&current->perf_event_mutex);
4402
4403         return 0;
4404 }
4405
4406 int perf_event_task_disable(void)
4407 {
4408         struct perf_event_context *ctx;
4409         struct perf_event *event;
4410
4411         mutex_lock(&current->perf_event_mutex);
4412         list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4413                 ctx = perf_event_ctx_lock(event);
4414                 perf_event_for_each_child(event, _perf_event_disable);
4415                 perf_event_ctx_unlock(event, ctx);
4416         }
4417         mutex_unlock(&current->perf_event_mutex);
4418
4419         return 0;
4420 }
4421
4422 static int perf_event_index(struct perf_event *event)
4423 {
4424         if (event->hw.state & PERF_HES_STOPPED)
4425                 return 0;
4426
4427         if (event->state != PERF_EVENT_STATE_ACTIVE)
4428                 return 0;
4429
4430         return event->pmu->event_idx(event);
4431 }
4432
4433 static void calc_timer_values(struct perf_event *event,
4434                                 u64 *now,
4435                                 u64 *enabled,
4436                                 u64 *running)
4437 {
4438         u64 ctx_time;
4439
4440         *now = perf_clock();
4441         ctx_time = event->shadow_ctx_time + *now;
4442         *enabled = ctx_time - event->tstamp_enabled;
4443         *running = ctx_time - event->tstamp_running;
4444 }
4445
4446 static void perf_event_init_userpage(struct perf_event *event)
4447 {
4448         struct perf_event_mmap_page *userpg;
4449         struct ring_buffer *rb;
4450
4451         rcu_read_lock();
4452         rb = rcu_dereference(event->rb);
4453         if (!rb)
4454                 goto unlock;
4455
4456         userpg = rb->user_page;
4457
4458         /* Allow new userspace to detect that bit 0 is deprecated */
4459         userpg->cap_bit0_is_deprecated = 1;
4460         userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
4461         userpg->data_offset = PAGE_SIZE;
4462         userpg->data_size = perf_data_size(rb);
4463
4464 unlock:
4465         rcu_read_unlock();
4466 }
4467
4468 void __weak arch_perf_update_userpage(
4469         struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
4470 {
4471 }
4472
4473 /*
4474  * Callers need to ensure there can be no nesting of this function, otherwise
4475  * the seqlock logic goes bad. We can not serialize this because the arch
4476  * code calls this from NMI context.
4477  */
4478 void perf_event_update_userpage(struct perf_event *event)
4479 {
4480         struct perf_event_mmap_page *userpg;
4481         struct ring_buffer *rb;
4482         u64 enabled, running, now;
4483
4484         rcu_read_lock();
4485         rb = rcu_dereference(event->rb);
4486         if (!rb)
4487                 goto unlock;
4488
4489         /*
4490          * compute total_time_enabled, total_time_running
4491          * based on snapshot values taken when the event
4492          * was last scheduled in.
4493          *
4494          * we cannot simply called update_context_time()
4495          * because of locking issue as we can be called in
4496          * NMI context
4497          */
4498         calc_timer_values(event, &now, &enabled, &running);
4499
4500         userpg = rb->user_page;
4501         /*
4502          * Disable preemption so as to not let the corresponding user-space
4503          * spin too long if we get preempted.
4504          */
4505         preempt_disable();
4506         ++userpg->lock;
4507         barrier();
4508         userpg->index = perf_event_index(event);
4509         userpg->offset = perf_event_count(event);
4510         if (userpg->index)
4511                 userpg->offset -= local64_read(&event->hw.prev_count);
4512
4513         userpg->time_enabled = enabled +
4514                         atomic64_read(&event->child_total_time_enabled);
4515
4516         userpg->time_running = running +
4517                         atomic64_read(&event->child_total_time_running);
4518
4519         arch_perf_update_userpage(event, userpg, now);
4520
4521         barrier();
4522         ++userpg->lock;
4523         preempt_enable();
4524 unlock:
4525         rcu_read_unlock();
4526 }
4527
4528 static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
4529 {
4530         struct perf_event *event = vma->vm_file->private_data;
4531         struct ring_buffer *rb;
4532         int ret = VM_FAULT_SIGBUS;
4533
4534         if (vmf->flags & FAULT_FLAG_MKWRITE) {
4535                 if (vmf->pgoff == 0)
4536                         ret = 0;
4537                 return ret;
4538         }
4539
4540         rcu_read_lock();
4541         rb = rcu_dereference(event->rb);
4542         if (!rb)
4543                 goto unlock;
4544
4545         if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4546                 goto unlock;
4547
4548         vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
4549         if (!vmf->page)
4550                 goto unlock;
4551
4552         get_page(vmf->page);
4553         vmf->page->mapping = vma->vm_file->f_mapping;
4554         vmf->page->index   = vmf->pgoff;
4555
4556         ret = 0;
4557 unlock:
4558         rcu_read_unlock();
4559
4560         return ret;
4561 }
4562
4563 static void ring_buffer_attach(struct perf_event *event,
4564                                struct ring_buffer *rb)
4565 {
4566         struct ring_buffer *old_rb = NULL;
4567         unsigned long flags;
4568
4569         if (event->rb) {
4570                 /*
4571                  * Should be impossible, we set this when removing
4572                  * event->rb_entry and wait/clear when adding event->rb_entry.
4573                  */
4574                 WARN_ON_ONCE(event->rcu_pending);
4575
4576                 old_rb = event->rb;
4577                 spin_lock_irqsave(&old_rb->event_lock, flags);
4578                 list_del_rcu(&event->rb_entry);
4579                 spin_unlock_irqrestore(&old_rb->event_lock, flags);
4580
4581                 event->rcu_batches = get_state_synchronize_rcu();
4582                 event->rcu_pending = 1;
4583         }
4584
4585         if (rb) {
4586                 if (event->rcu_pending) {
4587                         cond_synchronize_rcu(event->rcu_batches);
4588                         event->rcu_pending = 0;
4589                 }
4590
4591                 spin_lock_irqsave(&rb->event_lock, flags);
4592                 list_add_rcu(&event->rb_entry, &rb->event_list);
4593                 spin_unlock_irqrestore(&rb->event_lock, flags);
4594         }
4595
4596         rcu_assign_pointer(event->rb, rb);
4597
4598         if (old_rb) {
4599                 ring_buffer_put(old_rb);
4600                 /*
4601                  * Since we detached before setting the new rb, so that we
4602                  * could attach the new rb, we could have missed a wakeup.
4603                  * Provide it now.
4604                  */
4605                 wake_up_all(&event->waitq);
4606         }
4607 }
4608
4609 static void ring_buffer_wakeup(struct perf_event *event)
4610 {
4611         struct ring_buffer *rb;
4612
4613         rcu_read_lock();
4614         rb = rcu_dereference(event->rb);
4615         if (rb) {
4616                 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
4617                         wake_up_all(&event->waitq);
4618         }
4619         rcu_read_unlock();
4620 }
4621
4622 struct ring_buffer *ring_buffer_get(struct perf_event *event)
4623 {
4624         struct ring_buffer *rb;
4625
4626         rcu_read_lock();
4627         rb = rcu_dereference(event->rb);
4628         if (rb) {
4629                 if (!atomic_inc_not_zero(&rb->refcount))
4630                         rb = NULL;
4631         }
4632         rcu_read_unlock();
4633
4634         return rb;
4635 }
4636
4637 void ring_buffer_put(struct ring_buffer *rb)
4638 {
4639         if (!atomic_dec_and_test(&rb->refcount))
4640                 return;
4641
4642         WARN_ON_ONCE(!list_empty(&rb->event_list));
4643
4644         call_rcu(&rb->rcu_head, rb_free_rcu);
4645 }
4646
4647 static void perf_mmap_open(struct vm_area_struct *vma)
4648 {
4649         struct perf_event *event = vma->vm_file->private_data;
4650
4651         atomic_inc(&event->mmap_count);
4652         atomic_inc(&event->rb->mmap_count);
4653
4654         if (vma->vm_pgoff)
4655                 atomic_inc(&event->rb->aux_mmap_count);
4656
4657         if (event->pmu->event_mapped)
4658                 event->pmu->event_mapped(event);
4659 }
4660
4661 static void perf_pmu_output_stop(struct perf_event *event);
4662
4663 /*
4664  * A buffer can be mmap()ed multiple times; either directly through the same
4665  * event, or through other events by use of perf_event_set_output().
4666  *
4667  * In order to undo the VM accounting done by perf_mmap() we need to destroy
4668  * the buffer here, where we still have a VM context. This means we need
4669  * to detach all events redirecting to us.
4670  */
4671 static void perf_mmap_close(struct vm_area_struct *vma)
4672 {
4673         struct perf_event *event = vma->vm_file->private_data;
4674
4675         struct ring_buffer *rb = ring_buffer_get(event);
4676         struct user_struct *mmap_user = rb->mmap_user;
4677         int mmap_locked = rb->mmap_locked;
4678         unsigned long size = perf_data_size(rb);
4679
4680         if (event->pmu->event_unmapped)
4681                 event->pmu->event_unmapped(event);
4682
4683         /*
4684          * rb->aux_mmap_count will always drop before rb->mmap_count and
4685          * event->mmap_count, so it is ok to use event->mmap_mutex to
4686          * serialize with perf_mmap here.
4687          */
4688         if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
4689             atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
4690                 /*
4691                  * Stop all AUX events that are writing to this buffer,
4692                  * so that we can free its AUX pages and corresponding PMU
4693                  * data. Note that after rb::aux_mmap_count dropped to zero,
4694                  * they won't start any more (see perf_aux_output_begin()).
4695                  */
4696                 perf_pmu_output_stop(event);
4697
4698                 /* now it's safe to free the pages */
4699                 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
4700                 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
4701
4702                 /* this has to be the last one */
4703                 rb_free_aux(rb);
4704                 WARN_ON_ONCE(atomic_read(&rb->aux_refcount));
4705
4706                 mutex_unlock(&event->mmap_mutex);
4707         }
4708
4709         atomic_dec(&rb->mmap_count);
4710
4711         if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
4712                 goto out_put;
4713
4714         ring_buffer_attach(event, NULL);
4715         mutex_unlock(&event->mmap_mutex);
4716
4717         /* If there's still other mmap()s of this buffer, we're done. */
4718         if (atomic_read(&rb->mmap_count))
4719                 goto out_put;
4720
4721         /*
4722          * No other mmap()s, detach from all other events that might redirect
4723          * into the now unreachable buffer. Somewhat complicated by the
4724          * fact that rb::event_lock otherwise nests inside mmap_mutex.
4725          */
4726 again:
4727         rcu_read_lock();
4728         list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
4729                 if (!atomic_long_inc_not_zero(&event->refcount)) {
4730                         /*
4731                          * This event is en-route to free_event() which will
4732                          * detach it and remove it from the list.
4733                          */
4734                         continue;
4735                 }
4736                 rcu_read_unlock();
4737
4738                 mutex_lock(&event->mmap_mutex);
4739                 /*
4740                  * Check we didn't race with perf_event_set_output() which can
4741                  * swizzle the rb from under us while we were waiting to
4742                  * acquire mmap_mutex.
4743                  *
4744                  * If we find a different rb; ignore this event, a next
4745                  * iteration will no longer find it on the list. We have to
4746                  * still restart the iteration to make sure we're not now
4747                  * iterating the wrong list.
4748                  */
4749                 if (event->rb == rb)
4750                         ring_buffer_attach(event, NULL);
4751
4752                 mutex_unlock(&event->mmap_mutex);
4753                 put_event(event);
4754
4755                 /*
4756                  * Restart the iteration; either we're on the wrong list or
4757                  * destroyed its integrity by doing a deletion.
4758                  */
4759                 goto again;
4760         }
4761         rcu_read_unlock();
4762
4763         /*
4764          * It could be there's still a few 0-ref events on the list; they'll
4765          * get cleaned up by free_event() -- they'll also still have their
4766          * ref on the rb and will free it whenever they are done with it.
4767          *
4768          * Aside from that, this buffer is 'fully' detached and unmapped,
4769          * undo the VM accounting.
4770          */
4771
4772         atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
4773         vma->vm_mm->pinned_vm -= mmap_locked;
4774         free_uid(mmap_user);
4775
4776 out_put:
4777         ring_buffer_put(rb); /* could be last */
4778 }
4779
4780 static const struct vm_operations_struct perf_mmap_vmops = {
4781         .open           = perf_mmap_open,
4782         .close          = perf_mmap_close, /* non mergable */
4783         .fault          = perf_mmap_fault,
4784         .page_mkwrite   = perf_mmap_fault,
4785 };
4786
4787 static int perf_mmap(struct file *file, struct vm_area_struct *vma)
4788 {
4789         struct perf_event *event = file->private_data;
4790         unsigned long user_locked, user_lock_limit;
4791         struct user_struct *user = current_user();
4792         unsigned long locked, lock_limit;
4793         struct ring_buffer *rb = NULL;
4794         unsigned long vma_size;
4795         unsigned long nr_pages;
4796         long user_extra = 0, extra = 0;
4797         int ret = 0, flags = 0;
4798
4799         /*
4800          * Don't allow mmap() of inherited per-task counters. This would
4801          * create a performance issue due to all children writing to the
4802          * same rb.
4803          */
4804         if (event->cpu == -1 && event->attr.inherit)
4805                 return -EINVAL;
4806
4807         if (!(vma->vm_flags & VM_SHARED))
4808                 return -EINVAL;
4809
4810         vma_size = vma->vm_end - vma->vm_start;
4811
4812         if (vma->vm_pgoff == 0) {
4813                 nr_pages = (vma_size / PAGE_SIZE) - 1;
4814         } else {
4815                 /*
4816                  * AUX area mapping: if rb->aux_nr_pages != 0, it's already
4817                  * mapped, all subsequent mappings should have the same size
4818                  * and offset. Must be above the normal perf buffer.
4819                  */
4820                 u64 aux_offset, aux_size;
4821
4822                 if (!event->rb)
4823                         return -EINVAL;
4824
4825                 nr_pages = vma_size / PAGE_SIZE;
4826
4827                 mutex_lock(&event->mmap_mutex);
4828                 ret = -EINVAL;
4829
4830                 rb = event->rb;
4831                 if (!rb)
4832                         goto aux_unlock;
4833
4834                 aux_offset = ACCESS_ONCE(rb->user_page->aux_offset);
4835                 aux_size = ACCESS_ONCE(rb->user_page->aux_size);
4836
4837                 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
4838                         goto aux_unlock;
4839
4840                 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
4841                         goto aux_unlock;
4842
4843                 /* already mapped with a different offset */
4844                 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
4845                         goto aux_unlock;
4846
4847                 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
4848                         goto aux_unlock;
4849
4850                 /* already mapped with a different size */
4851                 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
4852                         goto aux_unlock;
4853
4854                 if (!is_power_of_2(nr_pages))
4855                         goto aux_unlock;
4856
4857                 if (!atomic_inc_not_zero(&rb->mmap_count))
4858                         goto aux_unlock;
4859
4860                 if (rb_has_aux(rb)) {
4861                         atomic_inc(&rb->aux_mmap_count);
4862                         ret = 0;
4863                         goto unlock;
4864                 }
4865
4866                 atomic_set(&rb->aux_mmap_count, 1);
4867                 user_extra = nr_pages;
4868
4869                 goto accounting;
4870         }
4871
4872         /*
4873          * If we have rb pages ensure they're a power-of-two number, so we
4874          * can do bitmasks instead of modulo.
4875          */
4876         if (nr_pages != 0 && !is_power_of_2(nr_pages))
4877                 return -EINVAL;
4878
4879         if (vma_size != PAGE_SIZE * (1 + nr_pages))
4880                 return -EINVAL;
4881
4882         WARN_ON_ONCE(event->ctx->parent_ctx);
4883 again:
4884         mutex_lock(&event->mmap_mutex);
4885         if (event->rb) {
4886                 if (event->rb->nr_pages != nr_pages) {
4887                         ret = -EINVAL;
4888                         goto unlock;
4889                 }
4890
4891                 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
4892                         /*
4893                          * Raced against perf_mmap_close() through
4894                          * perf_event_set_output(). Try again, hope for better
4895                          * luck.
4896                          */
4897                         mutex_unlock(&event->mmap_mutex);
4898                         goto again;
4899                 }
4900
4901                 goto unlock;
4902         }
4903
4904         user_extra = nr_pages + 1;
4905
4906 accounting:
4907         user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
4908
4909         /*
4910          * Increase the limit linearly with more CPUs:
4911          */
4912         user_lock_limit *= num_online_cpus();
4913
4914         user_locked = atomic_long_read(&user->locked_vm) + user_extra;
4915
4916         if (user_locked > user_lock_limit)
4917                 extra = user_locked - user_lock_limit;
4918
4919         lock_limit = rlimit(RLIMIT_MEMLOCK);
4920         lock_limit >>= PAGE_SHIFT;
4921         locked = vma->vm_mm->pinned_vm + extra;
4922
4923         if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
4924                 !capable(CAP_IPC_LOCK)) {
4925                 ret = -EPERM;
4926                 goto unlock;
4927         }
4928
4929         WARN_ON(!rb && event->rb);
4930
4931         if (vma->vm_flags & VM_WRITE)
4932                 flags |= RING_BUFFER_WRITABLE;
4933
4934         if (!rb) {
4935                 rb = rb_alloc(nr_pages,
4936                               event->attr.watermark ? event->attr.wakeup_watermark : 0,
4937                               event->cpu, flags);
4938
4939                 if (!rb) {
4940                         ret = -ENOMEM;
4941                         goto unlock;
4942                 }
4943
4944                 atomic_set(&rb->mmap_count, 1);
4945                 rb->mmap_user = get_current_user();
4946                 rb->mmap_locked = extra;
4947
4948                 ring_buffer_attach(event, rb);
4949
4950                 perf_event_init_userpage(event);
4951                 perf_event_update_userpage(event);
4952         } else {
4953                 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
4954                                    event->attr.aux_watermark, flags);
4955                 if (!ret)
4956                         rb->aux_mmap_locked = extra;
4957         }
4958
4959 unlock:
4960         if (!ret) {
4961                 atomic_long_add(user_extra, &user->locked_vm);
4962                 vma->vm_mm->pinned_vm += extra;
4963
4964                 atomic_inc(&event->mmap_count);
4965         } else if (rb) {
4966                 atomic_dec(&rb->mmap_count);
4967         }
4968 aux_unlock:
4969         mutex_unlock(&event->mmap_mutex);
4970
4971         /*
4972          * Since pinned accounting is per vm we cannot allow fork() to copy our
4973          * vma.
4974          */
4975         vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
4976         vma->vm_ops = &perf_mmap_vmops;
4977
4978         if (event->pmu->event_mapped)
4979                 event->pmu->event_mapped(event);
4980
4981         return ret;
4982 }
4983
4984 static int perf_fasync(int fd, struct file *filp, int on)
4985 {
4986         struct inode *inode = file_inode(filp);
4987         struct perf_event *event = filp->private_data;
4988         int retval;
4989
4990         mutex_lock(&inode->i_mutex);
4991         retval = fasync_helper(fd, filp, on, &event->fasync);
4992         mutex_unlock(&inode->i_mutex);
4993
4994         if (retval < 0)
4995                 return retval;
4996
4997         return 0;
4998 }
4999
5000 static const struct file_operations perf_fops = {
5001         .llseek                 = no_llseek,
5002         .release                = perf_release,
5003         .read                   = perf_read,
5004         .poll                   = perf_poll,
5005         .unlocked_ioctl         = perf_ioctl,
5006         .compat_ioctl           = perf_compat_ioctl,
5007         .mmap                   = perf_mmap,
5008         .fasync                 = perf_fasync,
5009 };
5010
5011 /*
5012  * Perf event wakeup
5013  *
5014  * If there's data, ensure we set the poll() state and publish everything
5015  * to user-space before waking everybody up.
5016  */
5017
5018 static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
5019 {
5020         /* only the parent has fasync state */
5021         if (event->parent)
5022                 event = event->parent;
5023         return &event->fasync;
5024 }
5025
5026 void perf_event_wakeup(struct perf_event *event)
5027 {
5028         ring_buffer_wakeup(event);
5029
5030         if (event->pending_kill) {
5031                 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
5032                 event->pending_kill = 0;
5033         }
5034 }
5035
5036 static void perf_pending_event(struct irq_work *entry)
5037 {
5038         struct perf_event *event = container_of(entry,
5039                         struct perf_event, pending);
5040         int rctx;
5041
5042         rctx = perf_swevent_get_recursion_context();
5043         /*
5044          * If we 'fail' here, that's OK, it means recursion is already disabled
5045          * and we won't recurse 'further'.
5046          */
5047
5048         if (event->pending_disable) {
5049                 event->pending_disable = 0;
5050                 __perf_event_disable(event);
5051         }
5052
5053         if (event->pending_wakeup) {
5054                 event->pending_wakeup = 0;
5055                 perf_event_wakeup(event);
5056         }
5057
5058         if (rctx >= 0)
5059                 perf_swevent_put_recursion_context(rctx);
5060 }
5061
5062 /*
5063  * We assume there is only KVM supporting the callbacks.
5064  * Later on, we might change it to a list if there is
5065  * another virtualization implementation supporting the callbacks.
5066  */
5067 struct perf_guest_info_callbacks *perf_guest_cbs;
5068
5069 int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5070 {
5071         perf_guest_cbs = cbs;
5072         return 0;
5073 }
5074 EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
5075
5076 int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
5077 {
5078         perf_guest_cbs = NULL;
5079         return 0;
5080 }
5081 EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
5082
5083 static void
5084 perf_output_sample_regs(struct perf_output_handle *handle,
5085                         struct pt_regs *regs, u64 mask)
5086 {
5087         int bit;
5088
5089         for_each_set_bit(bit, (const unsigned long *) &mask,
5090                          sizeof(mask) * BITS_PER_BYTE) {
5091                 u64 val;
5092
5093                 val = perf_reg_value(regs, bit);
5094                 perf_output_put(handle, val);
5095         }
5096 }
5097
5098 static void perf_sample_regs_user(struct perf_regs *regs_user,
5099                                   struct pt_regs *regs,
5100                                   struct pt_regs *regs_user_copy)
5101 {
5102         if (user_mode(regs)) {
5103                 regs_user->abi = perf_reg_abi(current);
5104                 regs_user->regs = regs;
5105         } else if (current->mm) {
5106                 perf_get_regs_user(regs_user, regs, regs_user_copy);
5107         } else {
5108                 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
5109                 regs_user->regs = NULL;
5110         }
5111 }
5112
5113 static void perf_sample_regs_intr(struct perf_regs *regs_intr,
5114                                   struct pt_regs *regs)
5115 {
5116         regs_intr->regs = regs;
5117         regs_intr->abi  = perf_reg_abi(current);
5118 }
5119
5120
5121 /*
5122  * Get remaining task size from user stack pointer.
5123  *
5124  * It'd be better to take stack vma map and limit this more
5125  * precisly, but there's no way to get it safely under interrupt,
5126  * so using TASK_SIZE as limit.
5127  */
5128 static u64 perf_ustack_task_size(struct pt_regs *regs)
5129 {
5130         unsigned long addr = perf_user_stack_pointer(regs);
5131
5132         if (!addr || addr >= TASK_SIZE)
5133                 return 0;
5134
5135         return TASK_SIZE - addr;
5136 }
5137
5138 static u16
5139 perf_sample_ustack_size(u16 stack_size, u16 header_size,
5140                         struct pt_regs *regs)
5141 {
5142         u64 task_size;
5143
5144         /* No regs, no stack pointer, no dump. */
5145         if (!regs)
5146                 return 0;
5147
5148         /*
5149          * Check if we fit in with the requested stack size into the:
5150          * - TASK_SIZE
5151          *   If we don't, we limit the size to the TASK_SIZE.
5152          *
5153          * - remaining sample size
5154          *   If we don't, we customize the stack size to
5155          *   fit in to the remaining sample size.
5156          */
5157
5158         task_size  = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5159         stack_size = min(stack_size, (u16) task_size);
5160
5161         /* Current header size plus static size and dynamic size. */
5162         header_size += 2 * sizeof(u64);
5163
5164         /* Do we fit in with the current stack dump size? */
5165         if ((u16) (header_size + stack_size) < header_size) {
5166                 /*
5167                  * If we overflow the maximum size for the sample,
5168                  * we customize the stack dump size to fit in.
5169                  */
5170                 stack_size = USHRT_MAX - header_size - sizeof(u64);
5171                 stack_size = round_up(stack_size, sizeof(u64));
5172         }
5173
5174         return stack_size;
5175 }
5176
5177 static void
5178 perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5179                           struct pt_regs *regs)
5180 {
5181         /* Case of a kernel thread, nothing to dump */
5182         if (!regs) {
5183                 u64 size = 0;
5184                 perf_output_put(handle, size);
5185         } else {
5186                 unsigned long sp;
5187                 unsigned int rem;
5188                 u64 dyn_size;
5189
5190                 /*
5191                  * We dump:
5192                  * static size
5193                  *   - the size requested by user or the best one we can fit
5194                  *     in to the sample max size
5195                  * data
5196                  *   - user stack dump data
5197                  * dynamic size
5198                  *   - the actual dumped size
5199                  */
5200
5201                 /* Static size. */
5202                 perf_output_put(handle, dump_size);
5203
5204                 /* Data. */
5205                 sp = perf_user_stack_pointer(regs);
5206                 rem = __output_copy_user(handle, (void *) sp, dump_size);
5207                 dyn_size = dump_size - rem;
5208
5209                 perf_output_skip(handle, rem);
5210
5211                 /* Dynamic size. */
5212                 perf_output_put(handle, dyn_size);
5213         }
5214 }
5215
5216 static void __perf_event_header__init_id(struct perf_event_header *header,
5217                                          struct perf_sample_data *data,
5218                                          struct perf_event *event)
5219 {
5220         u64 sample_type = event->attr.sample_type;
5221
5222         data->type = sample_type;
5223         header->size += event->id_header_size;
5224
5225         if (sample_type & PERF_SAMPLE_TID) {
5226                 /* namespace issues */
5227                 data->tid_entry.pid = perf_event_pid(event, current);
5228                 data->tid_entry.tid = perf_event_tid(event, current);
5229         }
5230
5231         if (sample_type & PERF_SAMPLE_TIME)
5232                 data->time = perf_event_clock(event);
5233
5234         if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
5235                 data->id = primary_event_id(event);
5236
5237         if (sample_type & PERF_SAMPLE_STREAM_ID)
5238                 data->stream_id = event->id;
5239
5240         if (sample_type & PERF_SAMPLE_CPU) {
5241                 data->cpu_entry.cpu      = raw_smp_processor_id();
5242                 data->cpu_entry.reserved = 0;
5243         }
5244 }
5245
5246 void perf_event_header__init_id(struct perf_event_header *header,
5247                                 struct perf_sample_data *data,
5248                                 struct perf_event *event)
5249 {
5250         if (event->attr.sample_id_all)
5251                 __perf_event_header__init_id(header, data, event);
5252 }
5253
5254 static void __perf_event__output_id_sample(struct perf_output_handle *handle,
5255                                            struct perf_sample_data *data)
5256 {
5257         u64 sample_type = data->type;
5258
5259         if (sample_type & PERF_SAMPLE_TID)
5260                 perf_output_put(handle, data->tid_entry);
5261
5262         if (sample_type & PERF_SAMPLE_TIME)
5263                 perf_output_put(handle, data->time);
5264
5265         if (sample_type & PERF_SAMPLE_ID)
5266                 perf_output_put(handle, data->id);
5267
5268         if (sample_type & PERF_SAMPLE_STREAM_ID)
5269                 perf_output_put(handle, data->stream_id);
5270
5271         if (sample_type & PERF_SAMPLE_CPU)
5272                 perf_output_put(handle, data->cpu_entry);
5273
5274         if (sample_type & PERF_SAMPLE_IDENTIFIER)
5275                 perf_output_put(handle, data->id);
5276 }
5277
5278 void perf_event__output_id_sample(struct perf_event *event,
5279                                   struct perf_output_handle *handle,
5280                                   struct perf_sample_data *sample)
5281 {
5282         if (event->attr.sample_id_all)
5283                 __perf_event__output_id_sample(handle, sample);
5284 }
5285
5286 static void perf_output_read_one(struct perf_output_handle *handle,
5287                                  struct perf_event *event,
5288                                  u64 enabled, u64 running)
5289 {
5290         u64 read_format = event->attr.read_format;
5291         u64 values[4];
5292         int n = 0;
5293
5294         values[n++] = perf_event_count(event);
5295         if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
5296                 values[n++] = enabled +
5297                         atomic64_read(&event->child_total_time_enabled);
5298         }
5299         if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
5300                 values[n++] = running +
5301                         atomic64_read(&event->child_total_time_running);
5302         }
5303         if (read_format & PERF_FORMAT_ID)
5304                 values[n++] = primary_event_id(event);
5305
5306         __output_copy(handle, values, n * sizeof(u64));
5307 }
5308
5309 /*
5310  * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
5311  */
5312 static void perf_output_read_group(struct perf_output_handle *handle,
5313                             struct perf_event *event,
5314                             u64 enabled, u64 running)
5315 {
5316         struct perf_event *leader = event->group_leader, *sub;
5317         u64 read_format = event->attr.read_format;
5318         u64 values[5];
5319         int n = 0;
5320
5321         values[n++] = 1 + leader->nr_siblings;
5322
5323         if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
5324                 values[n++] = enabled;
5325
5326         if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
5327                 values[n++] = running;
5328
5329         if (leader != event)
5330                 leader->pmu->read(leader);
5331
5332         values[n++] = perf_event_count(leader);
5333         if (read_format & PERF_FORMAT_ID)
5334                 values[n++] = primary_event_id(leader);
5335
5336         __output_copy(handle, values, n * sizeof(u64));
5337
5338         list_for_each_entry(sub, &leader->sibling_list, group_entry) {
5339                 n = 0;
5340
5341                 if ((sub != event) &&
5342                     (sub->state == PERF_EVENT_STATE_ACTIVE))
5343                         sub->pmu->read(sub);
5344
5345                 values[n++] = perf_event_count(sub);
5346                 if (read_format & PERF_FORMAT_ID)
5347                         values[n++] = primary_event_id(sub);
5348
5349                 __output_copy(handle, values, n * sizeof(u64));
5350         }
5351 }
5352
5353 #define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
5354                                  PERF_FORMAT_TOTAL_TIME_RUNNING)
5355
5356 static void perf_output_read(struct perf_output_handle *handle,
5357                              struct perf_event *event)
5358 {
5359         u64 enabled = 0, running = 0, now;
5360         u64 read_format = event->attr.read_format;
5361
5362         /*
5363          * compute total_time_enabled, total_time_running
5364          * based on snapshot values taken when the event
5365          * was last scheduled in.
5366          *
5367          * we cannot simply called update_context_time()
5368          * because of locking issue as we are called in
5369          * NMI context
5370          */
5371         if (read_format & PERF_FORMAT_TOTAL_TIMES)
5372                 calc_timer_values(event, &now, &enabled, &running);
5373
5374         if (event->attr.read_format & PERF_FORMAT_GROUP)
5375                 perf_output_read_group(handle, event, enabled, running);
5376         else
5377                 perf_output_read_one(handle, event, enabled, running);
5378 }
5379
5380 void perf_output_sample(struct perf_output_handle *handle,
5381                         struct perf_event_header *header,
5382                         struct perf_sample_data *data,
5383                         struct perf_event *event)
5384 {
5385         u64 sample_type = data->type;
5386
5387         perf_output_put(handle, *header);
5388
5389         if (sample_type & PERF_SAMPLE_IDENTIFIER)
5390                 perf_output_put(handle, data->id);
5391
5392         if (sample_type & PERF_SAMPLE_IP)
5393                 perf_output_put(handle, data->ip);
5394
5395         if (sample_type & PERF_SAMPLE_TID)
5396                 perf_output_put(handle, data->tid_entry);
5397
5398         if (sample_type & PERF_SAMPLE_TIME)
5399                 perf_output_put(handle, data->time);
5400
5401         if (sample_type & PERF_SAMPLE_ADDR)
5402                 perf_output_put(handle, data->addr);
5403
5404         if (sample_type & PERF_SAMPLE_ID)
5405                 perf_output_put(handle, data->id);
5406
5407         if (sample_type & PERF_SAMPLE_STREAM_ID)
5408                 perf_output_put(handle, data->stream_id);
5409
5410         if (sample_type & PERF_SAMPLE_CPU)
5411                 perf_output_put(handle, data->cpu_entry);
5412
5413         if (sample_type & PERF_SAMPLE_PERIOD)
5414                 perf_output_put(handle, data->period);
5415
5416         if (sample_type & PERF_SAMPLE_READ)
5417                 perf_output_read(handle, event);
5418
5419         if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5420                 if (data->callchain) {
5421                         int size = 1;
5422
5423                         if (data->callchain)
5424                                 size += data->callchain->nr;
5425
5426                         size *= sizeof(u64);
5427
5428                         __output_copy(handle, data->callchain, size);
5429                 } else {
5430                         u64 nr = 0;
5431                         perf_output_put(handle, nr);
5432                 }
5433         }
5434
5435         if (sample_type & PERF_SAMPLE_RAW) {
5436                 if (data->raw) {
5437                         u32 raw_size = data->raw->size;
5438                         u32 real_size = round_up(raw_size + sizeof(u32),
5439                                                  sizeof(u64)) - sizeof(u32);
5440                         u64 zero = 0;
5441
5442                         perf_output_put(handle, real_size);
5443                         __output_copy(handle, data->raw->data, raw_size);
5444                         if (real_size - raw_size)
5445                                 __output_copy(handle, &zero, real_size - raw_size);
5446                 } else {
5447                         struct {
5448                                 u32     size;
5449                                 u32     data;
5450                         } raw = {
5451                                 .size = sizeof(u32),
5452                                 .data = 0,
5453                         };
5454                         perf_output_put(handle, raw);
5455                 }
5456         }
5457
5458         if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5459                 if (data->br_stack) {
5460                         size_t size;
5461
5462                         size = data->br_stack->nr
5463                              * sizeof(struct perf_branch_entry);
5464
5465                         perf_output_put(handle, data->br_stack->nr);
5466                         perf_output_copy(handle, data->br_stack->entries, size);
5467                 } else {
5468                         /*
5469                          * we always store at least the value of nr
5470                          */
5471                         u64 nr = 0;
5472                         perf_output_put(handle, nr);
5473                 }
5474         }
5475
5476         if (sample_type & PERF_SAMPLE_REGS_USER) {
5477                 u64 abi = data->regs_user.abi;
5478
5479                 /*
5480                  * If there are no regs to dump, notice it through
5481                  * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5482                  */
5483                 perf_output_put(handle, abi);
5484
5485                 if (abi) {
5486                         u64 mask = event->attr.sample_regs_user;
5487                         perf_output_sample_regs(handle,
5488                                                 data->regs_user.regs,
5489                                                 mask);
5490                 }
5491         }
5492
5493         if (sample_type & PERF_SAMPLE_STACK_USER) {
5494                 perf_output_sample_ustack(handle,
5495                                           data->stack_user_size,
5496                                           data->regs_user.regs);
5497         }
5498
5499         if (sample_type & PERF_SAMPLE_WEIGHT)
5500                 perf_output_put(handle, data->weight);
5501
5502         if (sample_type & PERF_SAMPLE_DATA_SRC)
5503                 perf_output_put(handle, data->data_src.val);
5504
5505         if (sample_type & PERF_SAMPLE_TRANSACTION)
5506                 perf_output_put(handle, data->txn);
5507
5508         if (sample_type & PERF_SAMPLE_REGS_INTR) {
5509                 u64 abi = data->regs_intr.abi;
5510                 /*
5511                  * If there are no regs to dump, notice it through
5512                  * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5513                  */
5514                 perf_output_put(handle, abi);
5515
5516                 if (abi) {
5517                         u64 mask = event->attr.sample_regs_intr;
5518
5519                         perf_output_sample_regs(handle,
5520                                                 data->regs_intr.regs,
5521                                                 mask);
5522                 }
5523         }
5524
5525         if (!event->attr.watermark) {
5526                 int wakeup_events = event->attr.wakeup_events;
5527
5528                 if (wakeup_events) {
5529                         struct ring_buffer *rb = handle->rb;
5530                         int events = local_inc_return(&rb->events);
5531
5532                         if (events >= wakeup_events) {
5533                                 local_sub(wakeup_events, &rb->events);
5534                                 local_inc(&rb->wakeup);
5535                         }
5536                 }
5537         }
5538 }
5539
5540 void perf_prepare_sample(struct perf_event_header *header,
5541                          struct perf_sample_data *data,
5542                          struct perf_event *event,
5543                          struct pt_regs *regs)
5544 {
5545         u64 sample_type = event->attr.sample_type;
5546
5547         header->type = PERF_RECORD_SAMPLE;
5548         header->size = sizeof(*header) + event->header_size;
5549
5550         header->misc = 0;
5551         header->misc |= perf_misc_flags(regs);
5552
5553         __perf_event_header__init_id(header, data, event);
5554
5555         if (sample_type & PERF_SAMPLE_IP)
5556                 data->ip = perf_instruction_pointer(regs);
5557
5558         if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5559                 int size = 1;
5560
5561                 data->callchain = perf_callchain(event, regs);
5562
5563                 if (data->callchain)
5564                         size += data->callchain->nr;
5565
5566                 header->size += size * sizeof(u64);
5567         }
5568
5569         if (sample_type & PERF_SAMPLE_RAW) {
5570                 int size = sizeof(u32);
5571
5572                 if (data->raw)
5573                         size += data->raw->size;
5574                 else
5575                         size += sizeof(u32);
5576
5577                 header->size += round_up(size, sizeof(u64));
5578         }
5579
5580         if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5581                 int size = sizeof(u64); /* nr */
5582                 if (data->br_stack) {
5583                         size += data->br_stack->nr
5584                               * sizeof(struct perf_branch_entry);
5585                 }
5586                 header->size += size;
5587         }
5588
5589         if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
5590                 perf_sample_regs_user(&data->regs_user, regs,
5591                                       &data->regs_user_copy);
5592
5593         if (sample_type & PERF_SAMPLE_REGS_USER) {
5594                 /* regs dump ABI info */
5595                 int size = sizeof(u64);
5596
5597                 if (data->regs_user.regs) {
5598                         u64 mask = event->attr.sample_regs_user;
5599                         size += hweight64(mask) * sizeof(u64);
5600                 }
5601
5602                 header->size += size;
5603         }
5604
5605         if (sample_type & PERF_SAMPLE_STACK_USER) {
5606                 /*
5607                  * Either we need PERF_SAMPLE_STACK_USER bit to be allways
5608                  * processed as the last one or have additional check added
5609                  * in case new sample type is added, because we could eat
5610                  * up the rest of the sample size.
5611                  */
5612                 u16 stack_size = event->attr.sample_stack_user;
5613                 u16 size = sizeof(u64);
5614
5615                 stack_size = perf_sample_ustack_size(stack_size, header->size,
5616                                                      data->regs_user.regs);
5617
5618                 /*
5619                  * If there is something to dump, add space for the dump
5620                  * itself and for the field that tells the dynamic size,
5621                  * which is how many have been actually dumped.
5622                  */
5623                 if (stack_size)
5624                         size += sizeof(u64) + stack_size;
5625
5626                 data->stack_user_size = stack_size;
5627                 header->size += size;
5628         }
5629
5630         if (sample_type & PERF_SAMPLE_REGS_INTR) {
5631                 /* regs dump ABI info */
5632                 int size = sizeof(u64);
5633
5634                 perf_sample_regs_intr(&data->regs_intr, regs);
5635
5636                 if (data->regs_intr.regs) {
5637                         u64 mask = event->attr.sample_regs_intr;
5638
5639                         size += hweight64(mask) * sizeof(u64);
5640                 }
5641
5642                 header->size += size;
5643         }
5644 }
5645
5646 void perf_event_output(struct perf_event *event,
5647                         struct perf_sample_data *data,
5648                         struct pt_regs *regs)
5649 {
5650         struct perf_output_handle handle;
5651         struct perf_event_header header;
5652
5653         /* protect the callchain buffers */
5654         rcu_read_lock();
5655
5656         perf_prepare_sample(&header, data, event, regs);
5657
5658         if (perf_output_begin(&handle, event, header.size))
5659                 goto exit;
5660
5661         perf_output_sample(&handle, &header, data, event);
5662
5663         perf_output_end(&handle);
5664
5665 exit:
5666         rcu_read_unlock();
5667 }
5668
5669 /*
5670  * read event_id
5671  */
5672
5673 struct perf_read_event {
5674         struct perf_event_header        header;
5675
5676         u32                             pid;
5677         u32                             tid;
5678 };
5679
5680 static void
5681 perf_event_read_event(struct perf_event *event,
5682                         struct task_struct *task)
5683 {
5684         struct perf_output_handle handle;
5685         struct perf_sample_data sample;
5686         struct perf_read_event read_event = {
5687                 .header = {
5688                         .type = PERF_RECORD_READ,
5689                         .misc = 0,
5690                         .size = sizeof(read_event) + event->read_size,
5691                 },
5692                 .pid = perf_event_pid(event, task),
5693                 .tid = perf_event_tid(event, task),
5694         };
5695         int ret;
5696
5697         perf_event_header__init_id(&read_event.header, &sample, event);
5698         ret = perf_output_begin(&handle, event, read_event.header.size);
5699         if (ret)
5700                 return;
5701
5702         perf_output_put(&handle, read_event);
5703         perf_output_read(&handle, event);
5704         perf_event__output_id_sample(event, &handle, &sample);
5705
5706         perf_output_end(&handle);
5707 }
5708
5709 typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
5710
5711 static void
5712 perf_event_aux_ctx(struct perf_event_context *ctx,
5713                    perf_event_aux_output_cb output,
5714                    void *data)
5715 {
5716         struct perf_event *event;
5717
5718         list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5719                 if (event->state < PERF_EVENT_STATE_INACTIVE)
5720                         continue;
5721                 if (!event_filter_match(event))
5722                         continue;
5723                 output(event, data);
5724         }
5725 }
5726
5727 static void
5728 perf_event_aux_task_ctx(perf_event_aux_output_cb output, void *data,
5729                         struct perf_event_context *task_ctx)
5730 {
5731         rcu_read_lock();
5732         preempt_disable();
5733         perf_event_aux_ctx(task_ctx, output, data);
5734         preempt_enable();
5735         rcu_read_unlock();
5736 }
5737
5738 static void
5739 perf_event_aux(perf_event_aux_output_cb output, void *data,
5740                struct perf_event_context *task_ctx)
5741 {
5742         struct perf_cpu_context *cpuctx;
5743         struct perf_event_context *ctx;
5744         struct pmu *pmu;
5745         int ctxn;
5746
5747         /*
5748          * If we have task_ctx != NULL we only notify
5749          * the task context itself. The task_ctx is set
5750          * only for EXIT events before releasing task
5751          * context.
5752          */
5753         if (task_ctx) {
5754                 perf_event_aux_task_ctx(output, data, task_ctx);
5755                 return;
5756         }
5757
5758         rcu_read_lock();
5759         list_for_each_entry_rcu(pmu, &pmus, entry) {
5760                 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
5761                 if (cpuctx->unique_pmu != pmu)
5762                         goto next;
5763                 perf_event_aux_ctx(&cpuctx->ctx, output, data);
5764                 ctxn = pmu->task_ctx_nr;
5765                 if (ctxn < 0)
5766                         goto next;
5767                 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
5768                 if (ctx)
5769                         perf_event_aux_ctx(ctx, output, data);
5770 next:
5771                 put_cpu_ptr(pmu->pmu_cpu_context);
5772         }
5773         rcu_read_unlock();
5774 }
5775
5776 struct remote_output {
5777         struct ring_buffer      *rb;
5778         int                     err;
5779 };
5780
5781 static void __perf_event_output_stop(struct perf_event *event, void *data)
5782 {
5783         struct perf_event *parent = event->parent;
5784         struct remote_output *ro = data;
5785         struct ring_buffer *rb = ro->rb;
5786
5787         if (!has_aux(event))
5788                 return;
5789
5790         if (!parent)
5791                 parent = event;
5792
5793         /*
5794          * In case of inheritance, it will be the parent that links to the
5795          * ring-buffer, but it will be the child that's actually using it:
5796          */
5797         if (rcu_dereference(parent->rb) == rb)
5798                 ro->err = __perf_event_stop(event);
5799 }
5800
5801 static int __perf_pmu_output_stop(void *info)
5802 {
5803         struct perf_event *event = info;
5804         struct pmu *pmu = event->pmu;
5805         struct perf_cpu_context *cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
5806         struct remote_output ro = {
5807                 .rb     = event->rb,
5808         };
5809
5810         rcu_read_lock();
5811         perf_event_aux_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro);
5812         if (cpuctx->task_ctx)
5813                 perf_event_aux_ctx(cpuctx->task_ctx, __perf_event_output_stop,
5814                                    &ro);
5815         rcu_read_unlock();
5816
5817         return ro.err;
5818 }
5819
5820 static void perf_pmu_output_stop(struct perf_event *event)
5821 {
5822         struct perf_event *iter;
5823         int err, cpu;
5824
5825 restart:
5826         rcu_read_lock();
5827         list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
5828                 /*
5829                  * For per-CPU events, we need to make sure that neither they
5830                  * nor their children are running; for cpu==-1 events it's
5831                  * sufficient to stop the event itself if it's active, since
5832                  * it can't have children.
5833                  */
5834                 cpu = iter->cpu;
5835                 if (cpu == -1)
5836                         cpu = READ_ONCE(iter->oncpu);
5837
5838                 if (cpu == -1)
5839                         continue;
5840
5841                 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
5842                 if (err == -EAGAIN) {
5843                         rcu_read_unlock();
5844                         goto restart;
5845                 }
5846         }
5847         rcu_read_unlock();
5848 }
5849
5850 /*
5851  * task tracking -- fork/exit
5852  *
5853  * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
5854  */
5855
5856 struct perf_task_event {
5857         struct task_struct              *task;
5858         struct perf_event_context       *task_ctx;
5859
5860         struct {
5861                 struct perf_event_header        header;
5862
5863                 u32                             pid;
5864                 u32                             ppid;
5865                 u32                             tid;
5866                 u32                             ptid;
5867                 u64                             time;
5868         } event_id;
5869 };
5870
5871 static int perf_event_task_match(struct perf_event *event)
5872 {
5873         return event->attr.comm  || event->attr.mmap ||
5874                event->attr.mmap2 || event->attr.mmap_data ||
5875                event->attr.task;
5876 }
5877
5878 static void perf_event_task_output(struct perf_event *event,
5879                                    void *data)
5880 {
5881         struct perf_task_event *task_event = data;
5882         struct perf_output_handle handle;
5883         struct perf_sample_data sample;
5884         struct task_struct *task = task_event->task;
5885         int ret, size = task_event->event_id.header.size;
5886
5887         if (!perf_event_task_match(event))
5888                 return;
5889
5890         perf_event_header__init_id(&task_event->event_id.header, &sample, event);
5891
5892         ret = perf_output_begin(&handle, event,
5893                                 task_event->event_id.header.size);
5894         if (ret)
5895                 goto out;
5896
5897         task_event->event_id.pid = perf_event_pid(event, task);
5898         task_event->event_id.ppid = perf_event_pid(event, current);
5899
5900         task_event->event_id.tid = perf_event_tid(event, task);
5901         task_event->event_id.ptid = perf_event_tid(event, current);
5902
5903         task_event->event_id.time = perf_event_clock(event);
5904
5905         perf_output_put(&handle, task_event->event_id);
5906
5907         perf_event__output_id_sample(event, &handle, &sample);
5908
5909         perf_output_end(&handle);
5910 out:
5911         task_event->event_id.header.size = size;
5912 }
5913
5914 static void perf_event_task(struct task_struct *task,
5915                               struct perf_event_context *task_ctx,
5916                               int new)
5917 {
5918         struct perf_task_event task_event;
5919
5920         if (!atomic_read(&nr_comm_events) &&
5921             !atomic_read(&nr_mmap_events) &&
5922             !atomic_read(&nr_task_events))
5923                 return;
5924
5925         task_event = (struct perf_task_event){
5926                 .task     = task,
5927                 .task_ctx = task_ctx,
5928                 .event_id    = {
5929                         .header = {
5930                                 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
5931                                 .misc = 0,
5932                                 .size = sizeof(task_event.event_id),
5933                         },
5934                         /* .pid  */
5935                         /* .ppid */
5936                         /* .tid  */
5937                         /* .ptid */
5938                         /* .time */
5939                 },
5940         };
5941
5942         perf_event_aux(perf_event_task_output,
5943                        &task_event,
5944                        task_ctx);
5945 }
5946
5947 void perf_event_fork(struct task_struct *task)
5948 {
5949         perf_event_task(task, NULL, 1);
5950 }
5951
5952 /*
5953  * comm tracking
5954  */
5955
5956 struct perf_comm_event {
5957         struct task_struct      *task;
5958         char                    *comm;
5959         int                     comm_size;
5960
5961         struct {
5962                 struct perf_event_header        header;
5963
5964                 u32                             pid;
5965                 u32                             tid;
5966         } event_id;
5967 };
5968
5969 static int perf_event_comm_match(struct perf_event *event)
5970 {
5971         return event->attr.comm;
5972 }
5973
5974 static void perf_event_comm_output(struct perf_event *event,
5975                                    void *data)
5976 {
5977         struct perf_comm_event *comm_event = data;
5978         struct perf_output_handle handle;
5979         struct perf_sample_data sample;
5980         int size = comm_event->event_id.header.size;
5981         int ret;
5982
5983         if (!perf_event_comm_match(event))
5984                 return;
5985
5986         perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
5987         ret = perf_output_begin(&handle, event,
5988                                 comm_event->event_id.header.size);
5989
5990         if (ret)
5991                 goto out;
5992
5993         comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
5994         comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
5995
5996         perf_output_put(&handle, comm_event->event_id);
5997         __output_copy(&handle, comm_event->comm,
5998                                    comm_event->comm_size);
5999
6000         perf_event__output_id_sample(event, &handle, &sample);
6001
6002         perf_output_end(&handle);
6003 out:
6004         comm_event->event_id.header.size = size;
6005 }
6006
6007 static void perf_event_comm_event(struct perf_comm_event *comm_event)
6008 {
6009         char comm[TASK_COMM_LEN];
6010         unsigned int size;
6011
6012         memset(comm, 0, sizeof(comm));
6013         strlcpy(comm, comm_event->task->comm, sizeof(comm));
6014         size = ALIGN(strlen(comm)+1, sizeof(u64));
6015
6016         comm_event->comm = comm;
6017         comm_event->comm_size = size;
6018
6019         comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
6020
6021         perf_event_aux(perf_event_comm_output,
6022                        comm_event,
6023                        NULL);
6024 }
6025
6026 void perf_event_comm(struct task_struct *task, bool exec)
6027 {
6028         struct perf_comm_event comm_event;
6029
6030         if (!atomic_read(&nr_comm_events))
6031                 return;
6032
6033         comm_event = (struct perf_comm_event){
6034                 .task   = task,
6035                 /* .comm      */
6036                 /* .comm_size */
6037                 .event_id  = {
6038                         .header = {
6039                                 .type = PERF_RECORD_COMM,
6040                                 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
6041                                 /* .size */
6042                         },
6043                         /* .pid */
6044                         /* .tid */
6045                 },
6046         };
6047
6048         perf_event_comm_event(&comm_event);
6049 }
6050
6051 /*
6052  * mmap tracking
6053  */
6054
6055 struct perf_mmap_event {
6056         struct vm_area_struct   *vma;
6057
6058         const char              *file_name;
6059         int                     file_size;
6060         int                     maj, min;
6061         u64                     ino;
6062         u64                     ino_generation;
6063         u32                     prot, flags;
6064
6065         struct {
6066                 struct perf_event_header        header;
6067
6068                 u32                             pid;
6069                 u32                             tid;
6070                 u64                             start;
6071                 u64                             len;
6072                 u64                             pgoff;
6073         } event_id;
6074 };
6075
6076 static int perf_event_mmap_match(struct perf_event *event,
6077                                  void *data)
6078 {
6079         struct perf_mmap_event *mmap_event = data;
6080         struct vm_area_struct *vma = mmap_event->vma;
6081         int executable = vma->vm_flags & VM_EXEC;
6082
6083         return (!executable && event->attr.mmap_data) ||
6084                (executable && (event->attr.mmap || event->attr.mmap2));
6085 }
6086
6087 static void perf_event_mmap_output(struct perf_event *event,
6088                                    void *data)
6089 {
6090         struct perf_mmap_event *mmap_event = data;
6091         struct perf_output_handle handle;
6092         struct perf_sample_data sample;
6093         int size = mmap_event->event_id.header.size;
6094         int ret;
6095
6096         if (!perf_event_mmap_match(event, data))
6097                 return;
6098
6099         if (event->attr.mmap2) {
6100                 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
6101                 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
6102                 mmap_event->event_id.header.size += sizeof(mmap_event->min);
6103                 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
6104                 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
6105                 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
6106                 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
6107         }
6108
6109         perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
6110         ret = perf_output_begin(&handle, event,
6111                                 mmap_event->event_id.header.size);
6112         if (ret)
6113                 goto out;
6114
6115         mmap_event->event_id.pid = perf_event_pid(event, current);
6116         mmap_event->event_id.tid = perf_event_tid(event, current);
6117
6118         perf_output_put(&handle, mmap_event->event_id);
6119
6120         if (event->attr.mmap2) {
6121                 perf_output_put(&handle, mmap_event->maj);
6122                 perf_output_put(&handle, mmap_event->min);
6123                 perf_output_put(&handle, mmap_event->ino);
6124                 perf_output_put(&handle, mmap_event->ino_generation);
6125                 perf_output_put(&handle, mmap_event->prot);
6126                 perf_output_put(&handle, mmap_event->flags);
6127         }
6128
6129         __output_copy(&handle, mmap_event->file_name,
6130                                    mmap_event->file_size);
6131
6132         perf_event__output_id_sample(event, &handle, &sample);
6133
6134         perf_output_end(&handle);
6135 out:
6136         mmap_event->event_id.header.size = size;
6137 }
6138
6139 static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
6140 {
6141         struct vm_area_struct *vma = mmap_event->vma;
6142         struct file *file = vma->vm_file;
6143         int maj = 0, min = 0;
6144         u64 ino = 0, gen = 0;
6145         u32 prot = 0, flags = 0;
6146         unsigned int size;
6147         char tmp[16];
6148         char *buf = NULL;
6149         char *name;
6150
6151         if (file) {
6152                 struct inode *inode;
6153                 dev_t dev;
6154
6155                 buf = kmalloc(PATH_MAX, GFP_KERNEL);
6156                 if (!buf) {
6157                         name = "//enomem";
6158                         goto cpy_name;
6159                 }
6160                 /*
6161                  * d_path() works from the end of the rb backwards, so we
6162                  * need to add enough zero bytes after the string to handle
6163                  * the 64bit alignment we do later.
6164                  */
6165                 name = file_path(file, buf, PATH_MAX - sizeof(u64));
6166                 if (IS_ERR(name)) {
6167                         name = "//toolong";
6168                         goto cpy_name;
6169                 }
6170                 inode = file_inode(vma->vm_file);
6171                 dev = inode->i_sb->s_dev;
6172                 ino = inode->i_ino;
6173                 gen = inode->i_generation;
6174                 maj = MAJOR(dev);
6175                 min = MINOR(dev);
6176
6177                 if (vma->vm_flags & VM_READ)
6178                         prot |= PROT_READ;
6179                 if (vma->vm_flags & VM_WRITE)
6180                         prot |= PROT_WRITE;
6181                 if (vma->vm_flags & VM_EXEC)
6182                         prot |= PROT_EXEC;
6183
6184                 if (vma->vm_flags & VM_MAYSHARE)
6185                         flags = MAP_SHARED;
6186                 else
6187                         flags = MAP_PRIVATE;
6188
6189                 if (vma->vm_flags & VM_DENYWRITE)
6190                         flags |= MAP_DENYWRITE;
6191                 if (vma->vm_flags & VM_MAYEXEC)
6192                         flags |= MAP_EXECUTABLE;
6193                 if (vma->vm_flags & VM_LOCKED)
6194                         flags |= MAP_LOCKED;
6195                 if (vma->vm_flags & VM_HUGETLB)
6196                         flags |= MAP_HUGETLB;
6197
6198                 goto got_name;
6199         } else {
6200                 if (vma->vm_ops && vma->vm_ops->name) {
6201                         name = (char *) vma->vm_ops->name(vma);
6202                         if (name)
6203                                 goto cpy_name;
6204                 }
6205
6206                 name = (char *)arch_vma_name(vma);
6207                 if (name)
6208                         goto cpy_name;
6209
6210                 if (vma->vm_start <= vma->vm_mm->start_brk &&
6211                                 vma->vm_end >= vma->vm_mm->brk) {
6212                         name = "[heap]";
6213                         goto cpy_name;
6214                 }
6215                 if (vma->vm_start <= vma->vm_mm->start_stack &&
6216                                 vma->vm_end >= vma->vm_mm->start_stack) {
6217                         name = "[stack]";
6218                         goto cpy_name;
6219                 }
6220
6221                 name = "//anon";
6222                 goto cpy_name;
6223         }
6224
6225 cpy_name:
6226         strlcpy(tmp, name, sizeof(tmp));
6227         name = tmp;
6228 got_name:
6229         /*
6230          * Since our buffer works in 8 byte units we need to align our string
6231          * size to a multiple of 8. However, we must guarantee the tail end is
6232          * zero'd out to avoid leaking random bits to userspace.
6233          */
6234         size = strlen(name)+1;
6235         while (!IS_ALIGNED(size, sizeof(u64)))
6236                 name[size++] = '\0';
6237
6238         mmap_event->file_name = name;
6239         mmap_event->file_size = size;
6240         mmap_event->maj = maj;
6241         mmap_event->min = min;
6242         mmap_event->ino = ino;
6243         mmap_event->ino_generation = gen;
6244         mmap_event->prot = prot;
6245         mmap_event->flags = flags;
6246
6247         if (!(vma->vm_flags & VM_EXEC))
6248                 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
6249
6250         mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
6251
6252         perf_event_aux(perf_event_mmap_output,
6253                        mmap_event,
6254                        NULL);
6255
6256         kfree(buf);
6257 }
6258
6259 void perf_event_mmap(struct vm_area_struct *vma)
6260 {
6261         struct perf_mmap_event mmap_event;
6262
6263         if (!atomic_read(&nr_mmap_events))
6264                 return;
6265
6266         mmap_event = (struct perf_mmap_event){
6267                 .vma    = vma,
6268                 /* .file_name */
6269                 /* .file_size */
6270                 .event_id  = {
6271                         .header = {
6272                                 .type = PERF_RECORD_MMAP,
6273                                 .misc = PERF_RECORD_MISC_USER,
6274                                 /* .size */
6275                         },
6276                         /* .pid */
6277                         /* .tid */
6278                         .start  = vma->vm_start,
6279                         .len    = vma->vm_end - vma->vm_start,
6280                         .pgoff  = (u64)vma->vm_pgoff << PAGE_SHIFT,
6281                 },
6282                 /* .maj (attr_mmap2 only) */
6283                 /* .min (attr_mmap2 only) */
6284                 /* .ino (attr_mmap2 only) */
6285                 /* .ino_generation (attr_mmap2 only) */
6286                 /* .prot (attr_mmap2 only) */
6287                 /* .flags (attr_mmap2 only) */
6288         };
6289
6290         perf_event_mmap_event(&mmap_event);
6291 }
6292
6293 void perf_event_aux_event(struct perf_event *event, unsigned long head,
6294                           unsigned long size, u64 flags)
6295 {
6296         struct perf_output_handle handle;
6297         struct perf_sample_data sample;
6298         struct perf_aux_event {
6299                 struct perf_event_header        header;
6300                 u64                             offset;
6301                 u64                             size;
6302                 u64                             flags;
6303         } rec = {
6304                 .header = {
6305                         .type = PERF_RECORD_AUX,
6306                         .misc = 0,
6307                         .size = sizeof(rec),
6308                 },
6309                 .offset         = head,
6310                 .size           = size,
6311                 .flags          = flags,
6312         };
6313         int ret;
6314
6315         perf_event_header__init_id(&rec.header, &sample, event);
6316         ret = perf_output_begin(&handle, event, rec.header.size);
6317
6318         if (ret)
6319                 return;
6320
6321         perf_output_put(&handle, rec);
6322         perf_event__output_id_sample(event, &handle, &sample);
6323
6324         perf_output_end(&handle);
6325 }
6326
6327 /*
6328  * Lost/dropped samples logging
6329  */
6330 void perf_log_lost_samples(struct perf_event *event, u64 lost)
6331 {
6332         struct perf_output_handle handle;
6333         struct perf_sample_data sample;
6334         int ret;
6335
6336         struct {
6337                 struct perf_event_header        header;
6338                 u64                             lost;
6339         } lost_samples_event = {
6340                 .header = {
6341                         .type = PERF_RECORD_LOST_SAMPLES,
6342                         .misc = 0,
6343                         .size = sizeof(lost_samples_event),
6344                 },
6345                 .lost           = lost,
6346         };
6347
6348         perf_event_header__init_id(&lost_samples_event.header, &sample, event);
6349
6350         ret = perf_output_begin(&handle, event,
6351                                 lost_samples_event.header.size);
6352         if (ret)
6353                 return;
6354
6355         perf_output_put(&handle, lost_samples_event);
6356         perf_event__output_id_sample(event, &handle, &sample);
6357         perf_output_end(&handle);
6358 }
6359
6360 /*
6361  * context_switch tracking
6362  */
6363
6364 struct perf_switch_event {
6365         struct task_struct      *task;
6366         struct task_struct      *next_prev;
6367
6368         struct {
6369                 struct perf_event_header        header;
6370                 u32                             next_prev_pid;
6371                 u32                             next_prev_tid;
6372         } event_id;
6373 };
6374
6375 static int perf_event_switch_match(struct perf_event *event)
6376 {
6377         return event->attr.context_switch;
6378 }
6379
6380 static void perf_event_switch_output(struct perf_event *event, void *data)
6381 {
6382         struct perf_switch_event *se = data;
6383         struct perf_output_handle handle;
6384         struct perf_sample_data sample;
6385         int ret;
6386
6387         if (!perf_event_switch_match(event))
6388                 return;
6389
6390         /* Only CPU-wide events are allowed to see next/prev pid/tid */
6391         if (event->ctx->task) {
6392                 se->event_id.header.type = PERF_RECORD_SWITCH;
6393                 se->event_id.header.size = sizeof(se->event_id.header);
6394         } else {
6395                 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
6396                 se->event_id.header.size = sizeof(se->event_id);
6397                 se->event_id.next_prev_pid =
6398                                         perf_event_pid(event, se->next_prev);
6399                 se->event_id.next_prev_tid =
6400                                         perf_event_tid(event, se->next_prev);
6401         }
6402
6403         perf_event_header__init_id(&se->event_id.header, &sample, event);
6404
6405         ret = perf_output_begin(&handle, event, se->event_id.header.size);
6406         if (ret)
6407                 return;
6408
6409         if (event->ctx->task)
6410                 perf_output_put(&handle, se->event_id.header);
6411         else
6412                 perf_output_put(&handle, se->event_id);
6413
6414         perf_event__output_id_sample(event, &handle, &sample);
6415
6416         perf_output_end(&handle);
6417 }
6418
6419 static void perf_event_switch(struct task_struct *task,
6420                               struct task_struct *next_prev, bool sched_in)
6421 {
6422         struct perf_switch_event switch_event;
6423
6424         /* N.B. caller checks nr_switch_events != 0 */
6425
6426         switch_event = (struct perf_switch_event){
6427                 .task           = task,
6428                 .next_prev      = next_prev,
6429                 .event_id       = {
6430                         .header = {
6431                                 /* .type */
6432                                 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
6433                                 /* .size */
6434                         },
6435                         /* .next_prev_pid */
6436                         /* .next_prev_tid */
6437                 },
6438         };
6439
6440         perf_event_aux(perf_event_switch_output,
6441                        &switch_event,
6442                        NULL);
6443 }
6444
6445 /*
6446  * IRQ throttle logging
6447  */
6448
6449 static void perf_log_throttle(struct perf_event *event, int enable)
6450 {
6451         struct perf_output_handle handle;
6452         struct perf_sample_data sample;
6453         int ret;
6454
6455         struct {
6456                 struct perf_event_header        header;
6457                 u64                             time;
6458                 u64                             id;
6459                 u64                             stream_id;
6460         } throttle_event = {
6461                 .header = {
6462                         .type = PERF_RECORD_THROTTLE,
6463                         .misc = 0,
6464                         .size = sizeof(throttle_event),
6465                 },
6466                 .time           = perf_event_clock(event),
6467                 .id             = primary_event_id(event),
6468                 .stream_id      = event->id,
6469         };
6470
6471         if (enable)
6472                 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
6473
6474         perf_event_header__init_id(&throttle_event.header, &sample, event);
6475
6476         ret = perf_output_begin(&handle, event,
6477                                 throttle_event.header.size);
6478         if (ret)
6479                 return;
6480
6481         perf_output_put(&handle, throttle_event);
6482         perf_event__output_id_sample(event, &handle, &sample);
6483         perf_output_end(&handle);
6484 }
6485
6486 static void perf_log_itrace_start(struct perf_event *event)
6487 {
6488         struct perf_output_handle handle;
6489         struct perf_sample_data sample;
6490         struct perf_aux_event {
6491                 struct perf_event_header        header;
6492                 u32                             pid;
6493                 u32                             tid;
6494         } rec;
6495         int ret;
6496
6497         if (event->parent)
6498                 event = event->parent;
6499
6500         if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
6501             event->hw.itrace_started)
6502                 return;
6503
6504         rec.header.type = PERF_RECORD_ITRACE_START;
6505         rec.header.misc = 0;
6506         rec.header.size = sizeof(rec);
6507         rec.pid = perf_event_pid(event, current);
6508         rec.tid = perf_event_tid(event, current);
6509
6510         perf_event_header__init_id(&rec.header, &sample, event);
6511         ret = perf_output_begin(&handle, event, rec.header.size);
6512
6513         if (ret)
6514                 return;
6515
6516         perf_output_put(&handle, rec);
6517         perf_event__output_id_sample(event, &handle, &sample);
6518
6519         perf_output_end(&handle);
6520 }
6521
6522 /*
6523  * Generic event overflow handling, sampling.
6524  */
6525
6526 static int __perf_event_overflow(struct perf_event *event,
6527                                    int throttle, struct perf_sample_data *data,
6528                                    struct pt_regs *regs)
6529 {
6530         int events = atomic_read(&event->event_limit);
6531         struct hw_perf_event *hwc = &event->hw;
6532         u64 seq;
6533         int ret = 0;
6534
6535         /*
6536          * Non-sampling counters might still use the PMI to fold short
6537          * hardware counters, ignore those.
6538          */
6539         if (unlikely(!is_sampling_event(event)))
6540                 return 0;
6541
6542         seq = __this_cpu_read(perf_throttled_seq);
6543         if (seq != hwc->interrupts_seq) {
6544                 hwc->interrupts_seq = seq;
6545                 hwc->interrupts = 1;
6546         } else {
6547                 hwc->interrupts++;
6548                 if (unlikely(throttle
6549                              && hwc->interrupts >= max_samples_per_tick)) {
6550                         __this_cpu_inc(perf_throttled_count);
6551                         hwc->interrupts = MAX_INTERRUPTS;
6552                         perf_log_throttle(event, 0);
6553                         tick_nohz_full_kick();
6554                         ret = 1;
6555                 }
6556         }
6557
6558         if (event->attr.freq) {
6559                 u64 now = perf_clock();
6560                 s64 delta = now - hwc->freq_time_stamp;
6561
6562                 hwc->freq_time_stamp = now;
6563
6564                 if (delta > 0 && delta < 2*TICK_NSEC)
6565                         perf_adjust_period(event, delta, hwc->last_period, true);
6566         }
6567
6568         /*
6569          * XXX event_limit might not quite work as expected on inherited
6570          * events
6571          */
6572
6573         event->pending_kill = POLL_IN;
6574         if (events && atomic_dec_and_test(&event->event_limit)) {
6575                 ret = 1;
6576                 event->pending_kill = POLL_HUP;
6577                 event->pending_disable = 1;
6578                 irq_work_queue(&event->pending);
6579         }
6580
6581         if (event->overflow_handler)
6582                 event->overflow_handler(event, data, regs);
6583         else
6584                 perf_event_output(event, data, regs);
6585
6586         if (*perf_event_fasync(event) && event->pending_kill) {
6587                 event->pending_wakeup = 1;
6588                 irq_work_queue(&event->pending);
6589         }
6590
6591         return ret;
6592 }
6593
6594 int perf_event_overflow(struct perf_event *event,
6595                           struct perf_sample_data *data,
6596                           struct pt_regs *regs)
6597 {
6598         return __perf_event_overflow(event, 1, data, regs);
6599 }
6600
6601 /*
6602  * Generic software event infrastructure
6603  */
6604
6605 struct swevent_htable {
6606         struct swevent_hlist            *swevent_hlist;
6607         struct mutex                    hlist_mutex;
6608         int                             hlist_refcount;
6609
6610         /* Recursion avoidance in each contexts */
6611         int                             recursion[PERF_NR_CONTEXTS];
6612 };
6613
6614 static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
6615
6616 /*
6617  * We directly increment event->count and keep a second value in
6618  * event->hw.period_left to count intervals. This period event
6619  * is kept in the range [-sample_period, 0] so that we can use the
6620  * sign as trigger.
6621  */
6622
6623 u64 perf_swevent_set_period(struct perf_event *event)
6624 {
6625         struct hw_perf_event *hwc = &event->hw;
6626         u64 period = hwc->last_period;
6627         u64 nr, offset;
6628         s64 old, val;
6629
6630         hwc->last_period = hwc->sample_period;
6631
6632 again:
6633         old = val = local64_read(&hwc->period_left);
6634         if (val < 0)
6635                 return 0;
6636
6637         nr = div64_u64(period + val, period);
6638         offset = nr * period;
6639         val -= offset;
6640         if (local64_cmpxchg(&hwc->period_left, old, val) != old)
6641                 goto again;
6642
6643         return nr;
6644 }
6645
6646 static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
6647                                     struct perf_sample_data *data,
6648                                     struct pt_regs *regs)
6649 {
6650         struct hw_perf_event *hwc = &event->hw;
6651         int throttle = 0;
6652
6653         if (!overflow)
6654                 overflow = perf_swevent_set_period(event);
6655
6656         if (hwc->interrupts == MAX_INTERRUPTS)
6657                 return;
6658
6659         for (; overflow; overflow--) {
6660                 if (__perf_event_overflow(event, throttle,
6661                                             data, regs)) {
6662                         /*
6663                          * We inhibit the overflow from happening when
6664                          * hwc->interrupts == MAX_INTERRUPTS.
6665                          */
6666                         break;
6667                 }
6668                 throttle = 1;
6669         }
6670 }
6671
6672 static void perf_swevent_event(struct perf_event *event, u64 nr,
6673                                struct perf_sample_data *data,
6674                                struct pt_regs *regs)
6675 {
6676         struct hw_perf_event *hwc = &event->hw;
6677
6678         local64_add(nr, &event->count);
6679
6680         if (!regs)
6681                 return;
6682
6683         if (!is_sampling_event(event))
6684                 return;
6685
6686         if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
6687                 data->period = nr;
6688                 return perf_swevent_overflow(event, 1, data, regs);
6689         } else
6690                 data->period = event->hw.last_period;
6691
6692         if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
6693                 return perf_swevent_overflow(event, 1, data, regs);
6694
6695         if (local64_add_negative(nr, &hwc->period_left))
6696                 return;
6697
6698         perf_swevent_overflow(event, 0, data, regs);
6699 }
6700
6701 static int perf_exclude_event(struct perf_event *event,
6702                               struct pt_regs *regs)
6703 {
6704         if (event->hw.state & PERF_HES_STOPPED)
6705                 return 1;
6706
6707         if (regs) {
6708                 if (event->attr.exclude_user && user_mode(regs))
6709                         return 1;
6710
6711                 if (event->attr.exclude_kernel && !user_mode(regs))
6712                         return 1;
6713         }
6714
6715         return 0;
6716 }
6717
6718 static int perf_swevent_match(struct perf_event *event,
6719                                 enum perf_type_id type,
6720                                 u32 event_id,
6721                                 struct perf_sample_data *data,
6722                                 struct pt_regs *regs)
6723 {
6724         if (event->attr.type != type)
6725                 return 0;
6726
6727         if (event->attr.config != event_id)
6728                 return 0;
6729
6730         if (perf_exclude_event(event, regs))
6731                 return 0;
6732
6733         return 1;
6734 }
6735
6736 static inline u64 swevent_hash(u64 type, u32 event_id)
6737 {
6738         u64 val = event_id | (type << 32);
6739
6740         return hash_64(val, SWEVENT_HLIST_BITS);
6741 }
6742
6743 static inline struct hlist_head *
6744 __find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
6745 {
6746         u64 hash = swevent_hash(type, event_id);
6747
6748         return &hlist->heads[hash];
6749 }
6750
6751 /* For the read side: events when they trigger */
6752 static inline struct hlist_head *
6753 find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
6754 {
6755         struct swevent_hlist *hlist;
6756
6757         hlist = rcu_dereference(swhash->swevent_hlist);
6758         if (!hlist)
6759                 return NULL;
6760
6761         return __find_swevent_head(hlist, type, event_id);
6762 }
6763
6764 /* For the event head insertion and removal in the hlist */
6765 static inline struct hlist_head *
6766 find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
6767 {
6768         struct swevent_hlist *hlist;
6769         u32 event_id = event->attr.config;
6770         u64 type = event->attr.type;
6771
6772         /*
6773          * Event scheduling is always serialized against hlist allocation
6774          * and release. Which makes the protected version suitable here.
6775          * The context lock guarantees that.
6776          */
6777         hlist = rcu_dereference_protected(swhash->swevent_hlist,
6778                                           lockdep_is_held(&event->ctx->lock));
6779         if (!hlist)
6780                 return NULL;
6781
6782         return __find_swevent_head(hlist, type, event_id);
6783 }
6784
6785 static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
6786                                     u64 nr,
6787                                     struct perf_sample_data *data,
6788                                     struct pt_regs *regs)
6789 {
6790         struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
6791         struct perf_event *event;
6792         struct hlist_head *head;
6793
6794         rcu_read_lock();
6795         head = find_swevent_head_rcu(swhash, type, event_id);
6796         if (!head)
6797                 goto end;
6798
6799         hlist_for_each_entry_rcu(event, head, hlist_entry) {
6800                 if (perf_swevent_match(event, type, event_id, data, regs))
6801                         perf_swevent_event(event, nr, data, regs);
6802         }
6803 end:
6804         rcu_read_unlock();
6805 }
6806
6807 DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
6808
6809 int perf_swevent_get_recursion_context(void)
6810 {
6811         struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
6812
6813         return get_recursion_context(swhash->recursion);
6814 }
6815 EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
6816
6817 inline void perf_swevent_put_recursion_context(int rctx)
6818 {
6819         struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
6820
6821         put_recursion_context(swhash->recursion, rctx);
6822 }
6823
6824 void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
6825 {
6826         struct perf_sample_data data;
6827
6828         if (WARN_ON_ONCE(!regs))
6829                 return;
6830
6831         perf_sample_data_init(&data, addr, 0);
6832         do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
6833 }
6834
6835 void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
6836 {
6837         int rctx;
6838
6839         preempt_disable_notrace();
6840         rctx = perf_swevent_get_recursion_context();
6841         if (unlikely(rctx < 0))
6842                 goto fail;
6843
6844         ___perf_sw_event(event_id, nr, regs, addr);
6845
6846         perf_swevent_put_recursion_context(rctx);
6847 fail:
6848         preempt_enable_notrace();
6849 }
6850
6851 static void perf_swevent_read(struct perf_event *event)
6852 {
6853 }
6854
6855 static int perf_swevent_add(struct perf_event *event, int flags)
6856 {
6857         struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
6858         struct hw_perf_event *hwc = &event->hw;
6859         struct hlist_head *head;
6860
6861         if (is_sampling_event(event)) {
6862                 hwc->last_period = hwc->sample_period;
6863                 perf_swevent_set_period(event);
6864         }
6865
6866         hwc->state = !(flags & PERF_EF_START);
6867
6868         head = find_swevent_head(swhash, event);
6869         if (WARN_ON_ONCE(!head))
6870                 return -EINVAL;
6871
6872         hlist_add_head_rcu(&event->hlist_entry, head);
6873         perf_event_update_userpage(event);
6874
6875         return 0;
6876 }
6877
6878 static void perf_swevent_del(struct perf_event *event, int flags)
6879 {
6880         hlist_del_rcu(&event->hlist_entry);
6881 }
6882
6883 static void perf_swevent_start(struct perf_event *event, int flags)
6884 {
6885         event->hw.state = 0;
6886 }
6887
6888 static void perf_swevent_stop(struct perf_event *event, int flags)
6889 {
6890         event->hw.state = PERF_HES_STOPPED;
6891 }
6892
6893 /* Deref the hlist from the update side */
6894 static inline struct swevent_hlist *
6895 swevent_hlist_deref(struct swevent_htable *swhash)
6896 {
6897         return rcu_dereference_protected(swhash->swevent_hlist,
6898                                          lockdep_is_held(&swhash->hlist_mutex));
6899 }
6900
6901 static void swevent_hlist_release(struct swevent_htable *swhash)
6902 {
6903         struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
6904
6905         if (!hlist)
6906                 return;
6907
6908         RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
6909         kfree_rcu(hlist, rcu_head);
6910 }
6911
6912 static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
6913 {
6914         struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
6915
6916         mutex_lock(&swhash->hlist_mutex);
6917
6918         if (!--swhash->hlist_refcount)
6919                 swevent_hlist_release(swhash);
6920
6921         mutex_unlock(&swhash->hlist_mutex);
6922 }
6923
6924 static void swevent_hlist_put(struct perf_event *event)
6925 {
6926         int cpu;
6927
6928         for_each_possible_cpu(cpu)
6929                 swevent_hlist_put_cpu(event, cpu);
6930 }
6931
6932 static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
6933 {
6934         struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
6935         int err = 0;
6936
6937         mutex_lock(&swhash->hlist_mutex);
6938         if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
6939                 struct swevent_hlist *hlist;
6940
6941                 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
6942                 if (!hlist) {
6943                         err = -ENOMEM;
6944                         goto exit;
6945                 }
6946                 rcu_assign_pointer(swhash->swevent_hlist, hlist);
6947         }
6948         swhash->hlist_refcount++;
6949 exit:
6950         mutex_unlock(&swhash->hlist_mutex);
6951
6952         return err;
6953 }
6954
6955 static int swevent_hlist_get(struct perf_event *event)
6956 {
6957         int err;
6958         int cpu, failed_cpu;
6959
6960         get_online_cpus();
6961         for_each_possible_cpu(cpu) {
6962                 err = swevent_hlist_get_cpu(event, cpu);
6963                 if (err) {
6964                         failed_cpu = cpu;
6965                         goto fail;
6966                 }
6967         }
6968         put_online_cpus();
6969
6970         return 0;
6971 fail:
6972         for_each_possible_cpu(cpu) {
6973                 if (cpu == failed_cpu)
6974                         break;
6975                 swevent_hlist_put_cpu(event, cpu);
6976         }
6977
6978         put_online_cpus();
6979         return err;
6980 }
6981
6982 struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
6983
6984 static void sw_perf_event_destroy(struct perf_event *event)
6985 {
6986         u64 event_id = event->attr.config;
6987
6988         WARN_ON(event->parent);
6989
6990         static_key_slow_dec(&perf_swevent_enabled[event_id]);
6991         swevent_hlist_put(event);
6992 }
6993
6994 static int perf_swevent_init(struct perf_event *event)
6995 {
6996         u64 event_id = event->attr.config;
6997
6998         if (event->attr.type != PERF_TYPE_SOFTWARE)
6999                 return -ENOENT;
7000
7001         /*
7002          * no branch sampling for software events
7003          */
7004         if (has_branch_stack(event))
7005                 return -EOPNOTSUPP;
7006
7007         switch (event_id) {
7008         case PERF_COUNT_SW_CPU_CLOCK:
7009         case PERF_COUNT_SW_TASK_CLOCK:
7010                 return -ENOENT;
7011
7012         default:
7013                 break;
7014         }
7015
7016         if (event_id >= PERF_COUNT_SW_MAX)
7017                 return -ENOENT;
7018
7019         if (!event->parent) {
7020                 int err;
7021
7022                 err = swevent_hlist_get(event);
7023                 if (err)
7024                         return err;
7025
7026                 static_key_slow_inc(&perf_swevent_enabled[event_id]);
7027                 event->destroy = sw_perf_event_destroy;
7028         }
7029
7030         return 0;
7031 }
7032
7033 static struct pmu perf_swevent = {
7034         .task_ctx_nr    = perf_sw_context,
7035
7036         .capabilities   = PERF_PMU_CAP_NO_NMI,
7037
7038         .event_init     = perf_swevent_init,
7039         .add            = perf_swevent_add,
7040         .del            = perf_swevent_del,
7041         .start          = perf_swevent_start,
7042         .stop           = perf_swevent_stop,
7043         .read           = perf_swevent_read,
7044 };
7045
7046 #ifdef CONFIG_EVENT_TRACING
7047
7048 static int perf_tp_filter_match(struct perf_event *event,
7049                                 struct perf_sample_data *data)
7050 {
7051         void *record = data->raw->data;
7052
7053         /* only top level events have filters set */
7054         if (event->parent)
7055                 event = event->parent;
7056
7057         if (likely(!event->filter) || filter_match_preds(event->filter, record))
7058                 return 1;
7059         return 0;
7060 }
7061
7062 static int perf_tp_event_match(struct perf_event *event,
7063                                 struct perf_sample_data *data,
7064                                 struct pt_regs *regs)
7065 {
7066         if (event->hw.state & PERF_HES_STOPPED)
7067                 return 0;
7068         /*
7069          * All tracepoints are from kernel-space.
7070          */
7071         if (event->attr.exclude_kernel)
7072                 return 0;
7073
7074         if (!perf_tp_filter_match(event, data))
7075                 return 0;
7076
7077         return 1;
7078 }
7079
7080 void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
7081                    struct pt_regs *regs, struct hlist_head *head, int rctx,
7082                    struct task_struct *task)
7083 {
7084         struct perf_sample_data data;
7085         struct perf_event *event;
7086
7087         struct perf_raw_record raw = {
7088                 .size = entry_size,
7089                 .data = record,
7090         };
7091
7092         perf_sample_data_init(&data, addr, 0);
7093         data.raw = &raw;
7094
7095         hlist_for_each_entry_rcu(event, head, hlist_entry) {
7096                 if (perf_tp_event_match(event, &data, regs))
7097                         perf_swevent_event(event, count, &data, regs);
7098         }
7099
7100         /*
7101          * If we got specified a target task, also iterate its context and
7102          * deliver this event there too.
7103          */
7104         if (task && task != current) {
7105                 struct perf_event_context *ctx;
7106                 struct trace_entry *entry = record;
7107
7108                 rcu_read_lock();
7109                 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
7110                 if (!ctx)
7111                         goto unlock;
7112
7113                 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
7114                         if (event->attr.type != PERF_TYPE_TRACEPOINT)
7115                                 continue;
7116                         if (event->attr.config != entry->type)
7117                                 continue;
7118                         if (perf_tp_event_match(event, &data, regs))
7119                                 perf_swevent_event(event, count, &data, regs);
7120                 }
7121 unlock:
7122                 rcu_read_unlock();
7123         }
7124
7125         perf_swevent_put_recursion_context(rctx);
7126 }
7127 EXPORT_SYMBOL_GPL(perf_tp_event);
7128
7129 static void tp_perf_event_destroy(struct perf_event *event)
7130 {
7131         perf_trace_destroy(event);
7132 }
7133
7134 static int perf_tp_event_init(struct perf_event *event)
7135 {
7136         int err;
7137
7138         if (event->attr.type != PERF_TYPE_TRACEPOINT)
7139                 return -ENOENT;
7140
7141         /*
7142          * no branch sampling for tracepoint events
7143          */
7144         if (has_branch_stack(event))
7145                 return -EOPNOTSUPP;
7146
7147         err = perf_trace_init(event);
7148         if (err)
7149                 return err;
7150
7151         event->destroy = tp_perf_event_destroy;
7152
7153         return 0;
7154 }
7155
7156 static struct pmu perf_tracepoint = {
7157         .task_ctx_nr    = perf_sw_context,
7158
7159         .event_init     = perf_tp_event_init,
7160         .add            = perf_trace_add,
7161         .del            = perf_trace_del,
7162         .start          = perf_swevent_start,
7163         .stop           = perf_swevent_stop,
7164         .read           = perf_swevent_read,
7165 };
7166
7167 static inline void perf_tp_register(void)
7168 {
7169         perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
7170 }
7171
7172 static int perf_event_set_filter(struct perf_event *event, void __user *arg)
7173 {
7174         char *filter_str;
7175         int ret;
7176
7177         if (event->attr.type != PERF_TYPE_TRACEPOINT)
7178                 return -EINVAL;
7179
7180         filter_str = strndup_user(arg, PAGE_SIZE);
7181         if (IS_ERR(filter_str))
7182                 return PTR_ERR(filter_str);
7183
7184         ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
7185
7186         kfree(filter_str);
7187         return ret;
7188 }
7189
7190 static void perf_event_free_filter(struct perf_event *event)
7191 {
7192         ftrace_profile_free_filter(event);
7193 }
7194
7195 static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7196 {
7197         struct bpf_prog *prog;
7198
7199         if (event->attr.type != PERF_TYPE_TRACEPOINT)
7200                 return -EINVAL;
7201
7202         if (event->tp_event->prog)
7203                 return -EEXIST;
7204
7205         if (!(event->tp_event->flags & TRACE_EVENT_FL_UKPROBE))
7206                 /* bpf programs can only be attached to u/kprobes */
7207                 return -EINVAL;
7208
7209         prog = bpf_prog_get(prog_fd);
7210         if (IS_ERR(prog))
7211                 return PTR_ERR(prog);
7212
7213         if (prog->type != BPF_PROG_TYPE_KPROBE) {
7214                 /* valid fd, but invalid bpf program type */
7215                 bpf_prog_put(prog);
7216                 return -EINVAL;
7217         }
7218
7219         event->tp_event->prog = prog;
7220
7221         return 0;
7222 }
7223
7224 static void perf_event_free_bpf_prog(struct perf_event *event)
7225 {
7226         struct bpf_prog *prog;
7227
7228         if (!event->tp_event)
7229                 return;
7230
7231         prog = event->tp_event->prog;
7232         if (prog) {
7233                 event->tp_event->prog = NULL;
7234                 bpf_prog_put_rcu(prog);
7235         }
7236 }
7237
7238 #else
7239
7240 static inline void perf_tp_register(void)
7241 {
7242 }
7243
7244 static int perf_event_set_filter(struct perf_event *event, void __user *arg)
7245 {
7246         return -ENOENT;
7247 }
7248
7249 static void perf_event_free_filter(struct perf_event *event)
7250 {
7251 }
7252
7253 static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7254 {
7255         return -ENOENT;
7256 }
7257
7258 static void perf_event_free_bpf_prog(struct perf_event *event)
7259 {
7260 }
7261 #endif /* CONFIG_EVENT_TRACING */
7262
7263 #ifdef CONFIG_HAVE_HW_BREAKPOINT
7264 void perf_bp_event(struct perf_event *bp, void *data)
7265 {
7266         struct perf_sample_data sample;
7267         struct pt_regs *regs = data;
7268
7269         perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
7270
7271         if (!bp->hw.state && !perf_exclude_event(bp, regs))
7272                 perf_swevent_event(bp, 1, &sample, regs);
7273 }
7274 #endif
7275
7276 static int perf_event_drv_configs(struct perf_event *event,
7277                                   void __user *arg)
7278 {
7279         if (!event->pmu->get_drv_configs)
7280                 return -EINVAL;
7281
7282         return event->pmu->get_drv_configs(event, arg);
7283 }
7284
7285 /*
7286  * hrtimer based swevent callback
7287  */
7288
7289 static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
7290 {
7291         enum hrtimer_restart ret = HRTIMER_RESTART;
7292         struct perf_sample_data data;
7293         struct pt_regs *regs;
7294         struct perf_event *event;
7295         u64 period;
7296
7297         event = container_of(hrtimer, struct perf_event, hw.hrtimer);
7298
7299         if (event->state != PERF_EVENT_STATE_ACTIVE)
7300                 return HRTIMER_NORESTART;
7301
7302         event->pmu->read(event);
7303
7304         perf_sample_data_init(&data, 0, event->hw.last_period);
7305         regs = get_irq_regs();
7306
7307         if (regs && !perf_exclude_event(event, regs)) {
7308                 if (!(event->attr.exclude_idle && is_idle_task(current)))
7309                         if (__perf_event_overflow(event, 1, &data, regs))
7310                                 ret = HRTIMER_NORESTART;
7311         }
7312
7313         period = max_t(u64, 10000, event->hw.sample_period);
7314         hrtimer_forward_now(hrtimer, ns_to_ktime(period));
7315
7316         return ret;
7317 }
7318
7319 static void perf_swevent_start_hrtimer(struct perf_event *event)
7320 {
7321         struct hw_perf_event *hwc = &event->hw;
7322         s64 period;
7323
7324         if (!is_sampling_event(event))
7325                 return;
7326
7327         period = local64_read(&hwc->period_left);
7328         if (period) {
7329                 if (period < 0)
7330                         period = 10000;
7331
7332                 local64_set(&hwc->period_left, 0);
7333         } else {
7334                 period = max_t(u64, 10000, hwc->sample_period);
7335         }
7336         hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
7337                       HRTIMER_MODE_REL_PINNED);
7338 }
7339
7340 static void perf_swevent_cancel_hrtimer(struct perf_event *event)
7341 {
7342         struct hw_perf_event *hwc = &event->hw;
7343
7344         if (is_sampling_event(event)) {
7345                 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
7346                 local64_set(&hwc->period_left, ktime_to_ns(remaining));
7347
7348                 hrtimer_cancel(&hwc->hrtimer);
7349         }
7350 }
7351
7352 static void perf_swevent_init_hrtimer(struct perf_event *event)
7353 {
7354         struct hw_perf_event *hwc = &event->hw;
7355
7356         if (!is_sampling_event(event))
7357                 return;
7358
7359         hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
7360         hwc->hrtimer.function = perf_swevent_hrtimer;
7361
7362         /*
7363          * Since hrtimers have a fixed rate, we can do a static freq->period
7364          * mapping and avoid the whole period adjust feedback stuff.
7365          */
7366         if (event->attr.freq) {
7367                 long freq = event->attr.sample_freq;
7368
7369                 event->attr.sample_period = NSEC_PER_SEC / freq;
7370                 hwc->sample_period = event->attr.sample_period;
7371                 local64_set(&hwc->period_left, hwc->sample_period);
7372                 hwc->last_period = hwc->sample_period;
7373                 event->attr.freq = 0;
7374         }
7375 }
7376
7377 /*
7378  * Software event: cpu wall time clock
7379  */
7380
7381 static void cpu_clock_event_update(struct perf_event *event)
7382 {
7383         s64 prev;
7384         u64 now;
7385
7386         now = local_clock();
7387         prev = local64_xchg(&event->hw.prev_count, now);
7388         local64_add(now - prev, &event->count);
7389 }
7390
7391 static void cpu_clock_event_start(struct perf_event *event, int flags)
7392 {
7393         local64_set(&event->hw.prev_count, local_clock());
7394         perf_swevent_start_hrtimer(event);
7395 }
7396
7397 static void cpu_clock_event_stop(struct perf_event *event, int flags)
7398 {
7399         perf_swevent_cancel_hrtimer(event);
7400         cpu_clock_event_update(event);
7401 }
7402
7403 static int cpu_clock_event_add(struct perf_event *event, int flags)
7404 {
7405         if (flags & PERF_EF_START)
7406                 cpu_clock_event_start(event, flags);
7407         perf_event_update_userpage(event);
7408
7409         return 0;
7410 }
7411
7412 static void cpu_clock_event_del(struct perf_event *event, int flags)
7413 {
7414         cpu_clock_event_stop(event, flags);
7415 }
7416
7417 static void cpu_clock_event_read(struct perf_event *event)
7418 {
7419         cpu_clock_event_update(event);
7420 }
7421
7422 static int cpu_clock_event_init(struct perf_event *event)
7423 {
7424         if (event->attr.type != PERF_TYPE_SOFTWARE)
7425                 return -ENOENT;
7426
7427         if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
7428                 return -ENOENT;
7429
7430         /*
7431          * no branch sampling for software events
7432          */
7433         if (has_branch_stack(event))
7434                 return -EOPNOTSUPP;
7435
7436         perf_swevent_init_hrtimer(event);
7437
7438         return 0;
7439 }
7440
7441 static struct pmu perf_cpu_clock = {
7442         .task_ctx_nr    = perf_sw_context,
7443
7444         .capabilities   = PERF_PMU_CAP_NO_NMI,
7445
7446         .event_init     = cpu_clock_event_init,
7447         .add            = cpu_clock_event_add,
7448         .del            = cpu_clock_event_del,
7449         .start          = cpu_clock_event_start,
7450         .stop           = cpu_clock_event_stop,
7451         .read           = cpu_clock_event_read,
7452 };
7453
7454 /*
7455  * Software event: task time clock
7456  */
7457
7458 static void task_clock_event_update(struct perf_event *event, u64 now)
7459 {
7460         u64 prev;
7461         s64 delta;
7462
7463         prev = local64_xchg(&event->hw.prev_count, now);
7464         delta = now - prev;
7465         local64_add(delta, &event->count);
7466 }
7467
7468 static void task_clock_event_start(struct perf_event *event, int flags)
7469 {
7470         local64_set(&event->hw.prev_count, event->ctx->time);
7471         perf_swevent_start_hrtimer(event);
7472 }
7473
7474 static void task_clock_event_stop(struct perf_event *event, int flags)
7475 {
7476         perf_swevent_cancel_hrtimer(event);
7477         task_clock_event_update(event, event->ctx->time);
7478 }
7479
7480 static int task_clock_event_add(struct perf_event *event, int flags)
7481 {
7482         if (flags & PERF_EF_START)
7483                 task_clock_event_start(event, flags);
7484         perf_event_update_userpage(event);
7485
7486         return 0;
7487 }
7488
7489 static void task_clock_event_del(struct perf_event *event, int flags)
7490 {
7491         task_clock_event_stop(event, PERF_EF_UPDATE);
7492 }
7493
7494 static void task_clock_event_read(struct perf_event *event)
7495 {
7496         u64 now = perf_clock();
7497         u64 delta = now - event->ctx->timestamp;
7498         u64 time = event->ctx->time + delta;
7499
7500         task_clock_event_update(event, time);
7501 }
7502
7503 static int task_clock_event_init(struct perf_event *event)
7504 {
7505         if (event->attr.type != PERF_TYPE_SOFTWARE)
7506                 return -ENOENT;
7507
7508         if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
7509                 return -ENOENT;
7510
7511         /*
7512          * no branch sampling for software events
7513          */
7514         if (has_branch_stack(event))
7515                 return -EOPNOTSUPP;
7516
7517         perf_swevent_init_hrtimer(event);
7518
7519         return 0;
7520 }
7521
7522 static struct pmu perf_task_clock = {
7523         .task_ctx_nr    = perf_sw_context,
7524
7525         .capabilities   = PERF_PMU_CAP_NO_NMI,
7526
7527         .event_init     = task_clock_event_init,
7528         .add            = task_clock_event_add,
7529         .del            = task_clock_event_del,
7530         .start          = task_clock_event_start,
7531         .stop           = task_clock_event_stop,
7532         .read           = task_clock_event_read,
7533 };
7534
7535 static void perf_pmu_nop_void(struct pmu *pmu)
7536 {
7537 }
7538
7539 static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
7540 {
7541 }
7542
7543 static int perf_pmu_nop_int(struct pmu *pmu)
7544 {
7545         return 0;
7546 }
7547
7548 static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
7549
7550 static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
7551 {
7552         __this_cpu_write(nop_txn_flags, flags);
7553
7554         if (flags & ~PERF_PMU_TXN_ADD)
7555                 return;
7556
7557         perf_pmu_disable(pmu);
7558 }
7559
7560 static int perf_pmu_commit_txn(struct pmu *pmu)
7561 {
7562         unsigned int flags = __this_cpu_read(nop_txn_flags);
7563
7564         __this_cpu_write(nop_txn_flags, 0);
7565
7566         if (flags & ~PERF_PMU_TXN_ADD)
7567                 return 0;
7568
7569         perf_pmu_enable(pmu);
7570         return 0;
7571 }
7572
7573 static void perf_pmu_cancel_txn(struct pmu *pmu)
7574 {
7575         unsigned int flags =  __this_cpu_read(nop_txn_flags);
7576
7577         __this_cpu_write(nop_txn_flags, 0);
7578
7579         if (flags & ~PERF_PMU_TXN_ADD)
7580                 return;
7581
7582         perf_pmu_enable(pmu);
7583 }
7584
7585 static int perf_event_idx_default(struct perf_event *event)
7586 {
7587         return 0;
7588 }
7589
7590 /*
7591  * Ensures all contexts with the same task_ctx_nr have the same
7592  * pmu_cpu_context too.
7593  */
7594 static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
7595 {
7596         struct pmu *pmu;
7597
7598         if (ctxn < 0)
7599                 return NULL;
7600
7601         list_for_each_entry(pmu, &pmus, entry) {
7602                 if (pmu->task_ctx_nr == ctxn)
7603                         return pmu->pmu_cpu_context;
7604         }
7605
7606         return NULL;
7607 }
7608
7609 static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
7610 {
7611         int cpu;
7612
7613         for_each_possible_cpu(cpu) {
7614                 struct perf_cpu_context *cpuctx;
7615
7616                 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
7617
7618                 if (cpuctx->unique_pmu == old_pmu)
7619                         cpuctx->unique_pmu = pmu;
7620         }
7621 }
7622
7623 static void free_pmu_context(struct pmu *pmu)
7624 {
7625         struct pmu *i;
7626
7627         mutex_lock(&pmus_lock);
7628         /*
7629          * Like a real lame refcount.
7630          */
7631         list_for_each_entry(i, &pmus, entry) {
7632                 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
7633                         update_pmu_context(i, pmu);
7634                         goto out;
7635                 }
7636         }
7637
7638         free_percpu(pmu->pmu_cpu_context);
7639 out:
7640         mutex_unlock(&pmus_lock);
7641 }
7642 static struct idr pmu_idr;
7643
7644 static ssize_t
7645 type_show(struct device *dev, struct device_attribute *attr, char *page)
7646 {
7647         struct pmu *pmu = dev_get_drvdata(dev);
7648
7649         return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
7650 }
7651 static DEVICE_ATTR_RO(type);
7652
7653 static ssize_t
7654 perf_event_mux_interval_ms_show(struct device *dev,
7655                                 struct device_attribute *attr,
7656                                 char *page)
7657 {
7658         struct pmu *pmu = dev_get_drvdata(dev);
7659
7660         return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
7661 }
7662
7663 static DEFINE_MUTEX(mux_interval_mutex);
7664
7665 static ssize_t
7666 perf_event_mux_interval_ms_store(struct device *dev,
7667                                  struct device_attribute *attr,
7668                                  const char *buf, size_t count)
7669 {
7670         struct pmu *pmu = dev_get_drvdata(dev);
7671         int timer, cpu, ret;
7672
7673         ret = kstrtoint(buf, 0, &timer);
7674         if (ret)
7675                 return ret;
7676
7677         if (timer < 1)
7678                 return -EINVAL;
7679
7680         /* same value, noting to do */
7681         if (timer == pmu->hrtimer_interval_ms)
7682                 return count;
7683
7684         mutex_lock(&mux_interval_mutex);
7685         pmu->hrtimer_interval_ms = timer;
7686
7687         /* update all cpuctx for this PMU */
7688         get_online_cpus();
7689         for_each_online_cpu(cpu) {
7690                 struct perf_cpu_context *cpuctx;
7691                 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
7692                 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
7693
7694                 cpu_function_call(cpu,
7695                         (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
7696         }
7697         put_online_cpus();
7698         mutex_unlock(&mux_interval_mutex);
7699
7700         return count;
7701 }
7702 static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
7703
7704 static struct attribute *pmu_dev_attrs[] = {
7705         &dev_attr_type.attr,
7706         &dev_attr_perf_event_mux_interval_ms.attr,
7707         NULL,
7708 };
7709 ATTRIBUTE_GROUPS(pmu_dev);
7710
7711 static int pmu_bus_running;
7712 static struct bus_type pmu_bus = {
7713         .name           = "event_source",
7714         .dev_groups     = pmu_dev_groups,
7715 };
7716
7717 static void pmu_dev_release(struct device *dev)
7718 {
7719         kfree(dev);
7720 }
7721
7722 static int pmu_dev_alloc(struct pmu *pmu)
7723 {
7724         int ret = -ENOMEM;
7725
7726         pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
7727         if (!pmu->dev)
7728                 goto out;
7729
7730         pmu->dev->groups = pmu->attr_groups;
7731         device_initialize(pmu->dev);
7732         ret = dev_set_name(pmu->dev, "%s", pmu->name);
7733         if (ret)
7734                 goto free_dev;
7735
7736         dev_set_drvdata(pmu->dev, pmu);
7737         pmu->dev->bus = &pmu_bus;
7738         pmu->dev->release = pmu_dev_release;
7739         ret = device_add(pmu->dev);
7740         if (ret)
7741                 goto free_dev;
7742
7743 out:
7744         return ret;
7745
7746 free_dev:
7747         put_device(pmu->dev);
7748         goto out;
7749 }
7750
7751 static struct lock_class_key cpuctx_mutex;
7752 static struct lock_class_key cpuctx_lock;
7753
7754 int perf_pmu_register(struct pmu *pmu, const char *name, int type)
7755 {
7756         int cpu, ret;
7757
7758         mutex_lock(&pmus_lock);
7759         ret = -ENOMEM;
7760         pmu->pmu_disable_count = alloc_percpu(int);
7761         if (!pmu->pmu_disable_count)
7762                 goto unlock;
7763
7764         pmu->type = -1;
7765         if (!name)
7766                 goto skip_type;
7767         pmu->name = name;
7768
7769         if (type < 0) {
7770                 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
7771                 if (type < 0) {
7772                         ret = type;
7773                         goto free_pdc;
7774                 }
7775         }
7776         pmu->type = type;
7777
7778         if (pmu_bus_running) {
7779                 ret = pmu_dev_alloc(pmu);
7780                 if (ret)
7781                         goto free_idr;
7782         }
7783
7784 skip_type:
7785         pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
7786         if (pmu->pmu_cpu_context)
7787                 goto got_cpu_context;
7788
7789         ret = -ENOMEM;
7790         pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
7791         if (!pmu->pmu_cpu_context)
7792                 goto free_dev;
7793
7794         for_each_possible_cpu(cpu) {
7795                 struct perf_cpu_context *cpuctx;
7796
7797                 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
7798                 __perf_event_init_context(&cpuctx->ctx);
7799                 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
7800                 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
7801                 cpuctx->ctx.pmu = pmu;
7802
7803                 __perf_mux_hrtimer_init(cpuctx, cpu);
7804
7805                 cpuctx->unique_pmu = pmu;
7806         }
7807
7808 got_cpu_context:
7809         if (!pmu->start_txn) {
7810                 if (pmu->pmu_enable) {
7811                         /*
7812                          * If we have pmu_enable/pmu_disable calls, install
7813                          * transaction stubs that use that to try and batch
7814                          * hardware accesses.
7815                          */
7816                         pmu->start_txn  = perf_pmu_start_txn;
7817                         pmu->commit_txn = perf_pmu_commit_txn;
7818                         pmu->cancel_txn = perf_pmu_cancel_txn;
7819                 } else {
7820                         pmu->start_txn  = perf_pmu_nop_txn;
7821                         pmu->commit_txn = perf_pmu_nop_int;
7822                         pmu->cancel_txn = perf_pmu_nop_void;
7823                 }
7824         }
7825
7826         if (!pmu->pmu_enable) {
7827                 pmu->pmu_enable  = perf_pmu_nop_void;
7828                 pmu->pmu_disable = perf_pmu_nop_void;
7829         }
7830
7831         if (!pmu->event_idx)
7832                 pmu->event_idx = perf_event_idx_default;
7833
7834         list_add_rcu(&pmu->entry, &pmus);
7835         atomic_set(&pmu->exclusive_cnt, 0);
7836         ret = 0;
7837 unlock:
7838         mutex_unlock(&pmus_lock);
7839
7840         return ret;
7841
7842 free_dev:
7843         device_del(pmu->dev);
7844         put_device(pmu->dev);
7845
7846 free_idr:
7847         if (pmu->type >= PERF_TYPE_MAX)
7848                 idr_remove(&pmu_idr, pmu->type);
7849
7850 free_pdc:
7851         free_percpu(pmu->pmu_disable_count);
7852         goto unlock;
7853 }
7854 EXPORT_SYMBOL_GPL(perf_pmu_register);
7855
7856 void perf_pmu_unregister(struct pmu *pmu)
7857 {
7858         mutex_lock(&pmus_lock);
7859         list_del_rcu(&pmu->entry);
7860         mutex_unlock(&pmus_lock);
7861
7862         /*
7863          * We dereference the pmu list under both SRCU and regular RCU, so
7864          * synchronize against both of those.
7865          */
7866         synchronize_srcu(&pmus_srcu);
7867         synchronize_rcu();
7868
7869         free_percpu(pmu->pmu_disable_count);
7870         if (pmu->type >= PERF_TYPE_MAX)
7871                 idr_remove(&pmu_idr, pmu->type);
7872         device_del(pmu->dev);
7873         put_device(pmu->dev);
7874         free_pmu_context(pmu);
7875 }
7876 EXPORT_SYMBOL_GPL(perf_pmu_unregister);
7877
7878 static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
7879 {
7880         struct perf_event_context *ctx = NULL;
7881         int ret;
7882
7883         if (!try_module_get(pmu->module))
7884                 return -ENODEV;
7885
7886         if (event->group_leader != event) {
7887                 /*
7888                  * This ctx->mutex can nest when we're called through
7889                  * inheritance. See the perf_event_ctx_lock_nested() comment.
7890                  */
7891                 ctx = perf_event_ctx_lock_nested(event->group_leader,
7892                                                  SINGLE_DEPTH_NESTING);
7893                 BUG_ON(!ctx);
7894         }
7895
7896         event->pmu = pmu;
7897         ret = pmu->event_init(event);
7898
7899         if (ctx)
7900                 perf_event_ctx_unlock(event->group_leader, ctx);
7901
7902         if (ret)
7903                 module_put(pmu->module);
7904
7905         return ret;
7906 }
7907
7908 static struct pmu *perf_init_event(struct perf_event *event)
7909 {
7910         struct pmu *pmu = NULL;
7911         int idx;
7912         int ret;
7913
7914         idx = srcu_read_lock(&pmus_srcu);
7915
7916         rcu_read_lock();
7917         pmu = idr_find(&pmu_idr, event->attr.type);
7918         rcu_read_unlock();
7919         if (pmu) {
7920                 ret = perf_try_init_event(pmu, event);
7921                 if (ret)
7922                         pmu = ERR_PTR(ret);
7923                 goto unlock;
7924         }
7925
7926         list_for_each_entry_rcu(pmu, &pmus, entry) {
7927                 ret = perf_try_init_event(pmu, event);
7928                 if (!ret)
7929                         goto unlock;
7930
7931                 if (ret != -ENOENT) {
7932                         pmu = ERR_PTR(ret);
7933                         goto unlock;
7934                 }
7935         }
7936         pmu = ERR_PTR(-ENOENT);
7937 unlock:
7938         srcu_read_unlock(&pmus_srcu, idx);
7939
7940         return pmu;
7941 }
7942
7943 static void account_event_cpu(struct perf_event *event, int cpu)
7944 {
7945         if (event->parent)
7946                 return;
7947
7948         if (is_cgroup_event(event))
7949                 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
7950 }
7951
7952 static void account_event(struct perf_event *event)
7953 {
7954         if (event->parent)
7955                 return;
7956
7957         if (event->attach_state & PERF_ATTACH_TASK)
7958                 static_key_slow_inc(&perf_sched_events.key);
7959         if (event->attr.mmap || event->attr.mmap_data)
7960                 atomic_inc(&nr_mmap_events);
7961         if (event->attr.comm)
7962                 atomic_inc(&nr_comm_events);
7963         if (event->attr.task)
7964                 atomic_inc(&nr_task_events);
7965         if (event->attr.freq) {
7966                 if (atomic_inc_return(&nr_freq_events) == 1)
7967                         tick_nohz_full_kick_all();
7968         }
7969         if (event->attr.context_switch) {
7970                 atomic_inc(&nr_switch_events);
7971                 static_key_slow_inc(&perf_sched_events.key);
7972         }
7973         if (has_branch_stack(event))
7974                 static_key_slow_inc(&perf_sched_events.key);
7975         if (is_cgroup_event(event))
7976                 static_key_slow_inc(&perf_sched_events.key);
7977
7978         account_event_cpu(event, event->cpu);
7979 }
7980
7981 /*
7982  * Allocate and initialize a event structure
7983  */
7984 static struct perf_event *
7985 perf_event_alloc(struct perf_event_attr *attr, int cpu,
7986                  struct task_struct *task,
7987                  struct perf_event *group_leader,
7988                  struct perf_event *parent_event,
7989                  perf_overflow_handler_t overflow_handler,
7990                  void *context, int cgroup_fd)
7991 {
7992         struct pmu *pmu;
7993         struct perf_event *event;
7994         struct hw_perf_event *hwc;
7995         long err = -EINVAL;
7996
7997         if ((unsigned)cpu >= nr_cpu_ids) {
7998                 if (!task || cpu != -1)
7999                         return ERR_PTR(-EINVAL);
8000         }
8001
8002         event = kzalloc(sizeof(*event), GFP_KERNEL);
8003         if (!event)
8004                 return ERR_PTR(-ENOMEM);
8005
8006         /*
8007          * Single events are their own group leaders, with an
8008          * empty sibling list:
8009          */
8010         if (!group_leader)
8011                 group_leader = event;
8012
8013         mutex_init(&event->child_mutex);
8014         INIT_LIST_HEAD(&event->child_list);
8015
8016         INIT_LIST_HEAD(&event->group_entry);
8017         INIT_LIST_HEAD(&event->event_entry);
8018         INIT_LIST_HEAD(&event->sibling_list);
8019         INIT_LIST_HEAD(&event->rb_entry);
8020         INIT_LIST_HEAD(&event->active_entry);
8021         INIT_LIST_HEAD(&event->drv_configs);
8022         INIT_HLIST_NODE(&event->hlist_entry);
8023
8024
8025         init_waitqueue_head(&event->waitq);
8026         init_irq_work(&event->pending, perf_pending_event);
8027
8028         mutex_init(&event->mmap_mutex);
8029
8030         atomic_long_set(&event->refcount, 1);
8031         event->cpu              = cpu;
8032         event->attr             = *attr;
8033         event->group_leader     = group_leader;
8034         event->pmu              = NULL;
8035         event->oncpu            = -1;
8036
8037         event->parent           = parent_event;
8038
8039         event->ns               = get_pid_ns(task_active_pid_ns(current));
8040         event->id               = atomic64_inc_return(&perf_event_id);
8041
8042         event->state            = PERF_EVENT_STATE_INACTIVE;
8043
8044         if (task) {
8045                 event->attach_state = PERF_ATTACH_TASK;
8046                 /*
8047                  * XXX pmu::event_init needs to know what task to account to
8048                  * and we cannot use the ctx information because we need the
8049                  * pmu before we get a ctx.
8050                  */
8051                 event->hw.target = task;
8052         }
8053
8054         event->clock = &local_clock;
8055         if (parent_event)
8056                 event->clock = parent_event->clock;
8057
8058         if (!overflow_handler && parent_event) {
8059                 overflow_handler = parent_event->overflow_handler;
8060                 context = parent_event->overflow_handler_context;
8061         }
8062
8063         event->overflow_handler = overflow_handler;
8064         event->overflow_handler_context = context;
8065
8066         perf_event__state_init(event);
8067
8068         pmu = NULL;
8069
8070         hwc = &event->hw;
8071         hwc->sample_period = attr->sample_period;
8072         if (attr->freq && attr->sample_freq)
8073                 hwc->sample_period = 1;
8074         hwc->last_period = hwc->sample_period;
8075
8076         local64_set(&hwc->period_left, hwc->sample_period);
8077
8078         /*
8079          * we currently do not support PERF_FORMAT_GROUP on inherited events
8080          */
8081         if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
8082                 goto err_ns;
8083
8084         if (!has_branch_stack(event))
8085                 event->attr.branch_sample_type = 0;
8086
8087         if (cgroup_fd != -1) {
8088                 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
8089                 if (err)
8090                         goto err_ns;
8091         }
8092
8093         pmu = perf_init_event(event);
8094         if (!pmu)
8095                 goto err_ns;
8096         else if (IS_ERR(pmu)) {
8097                 err = PTR_ERR(pmu);
8098                 goto err_ns;
8099         }
8100
8101         err = exclusive_event_init(event);
8102         if (err)
8103                 goto err_pmu;
8104
8105         if (!event->parent) {
8106                 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
8107                         err = get_callchain_buffers();
8108                         if (err)
8109                                 goto err_per_task;
8110                 }
8111         }
8112
8113         /* symmetric to unaccount_event() in _free_event() */
8114         account_event(event);
8115
8116         return event;
8117
8118 err_per_task:
8119         exclusive_event_destroy(event);
8120
8121 err_pmu:
8122         if (event->destroy)
8123                 event->destroy(event);
8124         module_put(pmu->module);
8125 err_ns:
8126         if (is_cgroup_event(event))
8127                 perf_detach_cgroup(event);
8128         if (event->ns)
8129                 put_pid_ns(event->ns);
8130         kfree(event);
8131
8132         return ERR_PTR(err);
8133 }
8134
8135 static int perf_copy_attr(struct perf_event_attr __user *uattr,
8136                           struct perf_event_attr *attr)
8137 {
8138         u32 size;
8139         int ret;
8140
8141         if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
8142                 return -EFAULT;
8143
8144         /*
8145          * zero the full structure, so that a short copy will be nice.
8146          */
8147         memset(attr, 0, sizeof(*attr));
8148
8149         ret = get_user(size, &uattr->size);
8150         if (ret)
8151                 return ret;
8152
8153         if (size > PAGE_SIZE)   /* silly large */
8154                 goto err_size;
8155
8156         if (!size)              /* abi compat */
8157                 size = PERF_ATTR_SIZE_VER0;
8158
8159         if (size < PERF_ATTR_SIZE_VER0)
8160                 goto err_size;
8161
8162         /*
8163          * If we're handed a bigger struct than we know of,
8164          * ensure all the unknown bits are 0 - i.e. new
8165          * user-space does not rely on any kernel feature
8166          * extensions we dont know about yet.
8167          */
8168         if (size > sizeof(*attr)) {
8169                 unsigned char __user *addr;
8170                 unsigned char __user *end;
8171                 unsigned char val;
8172
8173                 addr = (void __user *)uattr + sizeof(*attr);
8174                 end  = (void __user *)uattr + size;
8175
8176                 for (; addr < end; addr++) {
8177                         ret = get_user(val, addr);
8178                         if (ret)
8179                                 return ret;
8180                         if (val)
8181                                 goto err_size;
8182                 }
8183                 size = sizeof(*attr);
8184         }
8185
8186         ret = copy_from_user(attr, uattr, size);
8187         if (ret)
8188                 return -EFAULT;
8189
8190         if (attr->__reserved_1)
8191                 return -EINVAL;
8192
8193         if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
8194                 return -EINVAL;
8195
8196         if (attr->read_format & ~(PERF_FORMAT_MAX-1))
8197                 return -EINVAL;
8198
8199         if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
8200                 u64 mask = attr->branch_sample_type;
8201
8202                 /* only using defined bits */
8203                 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
8204                         return -EINVAL;
8205
8206                 /* at least one branch bit must be set */
8207                 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
8208                         return -EINVAL;
8209
8210                 /* propagate priv level, when not set for branch */
8211                 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
8212
8213                         /* exclude_kernel checked on syscall entry */
8214                         if (!attr->exclude_kernel)
8215                                 mask |= PERF_SAMPLE_BRANCH_KERNEL;
8216
8217                         if (!attr->exclude_user)
8218                                 mask |= PERF_SAMPLE_BRANCH_USER;
8219
8220                         if (!attr->exclude_hv)
8221                                 mask |= PERF_SAMPLE_BRANCH_HV;
8222                         /*
8223                          * adjust user setting (for HW filter setup)
8224                          */
8225                         attr->branch_sample_type = mask;
8226                 }
8227                 /* privileged levels capture (kernel, hv): check permissions */
8228                 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
8229                     && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
8230                         return -EACCES;
8231         }
8232
8233         if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
8234                 ret = perf_reg_validate(attr->sample_regs_user);
8235                 if (ret)
8236                         return ret;
8237         }
8238
8239         if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
8240                 if (!arch_perf_have_user_stack_dump())
8241                         return -ENOSYS;
8242
8243                 /*
8244                  * We have __u32 type for the size, but so far
8245                  * we can only use __u16 as maximum due to the
8246                  * __u16 sample size limit.
8247                  */
8248                 if (attr->sample_stack_user >= USHRT_MAX)
8249                         ret = -EINVAL;
8250                 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
8251                         ret = -EINVAL;
8252         }
8253
8254         if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
8255                 ret = perf_reg_validate(attr->sample_regs_intr);
8256 out:
8257         return ret;
8258
8259 err_size:
8260         put_user(sizeof(*attr), &uattr->size);
8261         ret = -E2BIG;
8262         goto out;
8263 }
8264
8265 static int
8266 perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
8267 {
8268         struct ring_buffer *rb = NULL;
8269         int ret = -EINVAL;
8270
8271         if (!output_event)
8272                 goto set;
8273
8274         /* don't allow circular references */
8275         if (event == output_event)
8276                 goto out;
8277
8278         /*
8279          * Don't allow cross-cpu buffers
8280          */
8281         if (output_event->cpu != event->cpu)
8282                 goto out;
8283
8284         /*
8285          * If its not a per-cpu rb, it must be the same task.
8286          */
8287         if (output_event->cpu == -1 && output_event->ctx != event->ctx)
8288                 goto out;
8289
8290         /*
8291          * Mixing clocks in the same buffer is trouble you don't need.
8292          */
8293         if (output_event->clock != event->clock)
8294                 goto out;
8295
8296         /*
8297          * If both events generate aux data, they must be on the same PMU
8298          */
8299         if (has_aux(event) && has_aux(output_event) &&
8300             event->pmu != output_event->pmu)
8301                 goto out;
8302
8303 set:
8304         mutex_lock(&event->mmap_mutex);
8305         /* Can't redirect output if we've got an active mmap() */
8306         if (atomic_read(&event->mmap_count))
8307                 goto unlock;
8308
8309         if (output_event) {
8310                 /* get the rb we want to redirect to */
8311                 rb = ring_buffer_get(output_event);
8312                 if (!rb)
8313                         goto unlock;
8314         }
8315
8316         ring_buffer_attach(event, rb);
8317
8318         ret = 0;
8319 unlock:
8320         mutex_unlock(&event->mmap_mutex);
8321
8322 out:
8323         return ret;
8324 }
8325
8326 static void mutex_lock_double(struct mutex *a, struct mutex *b)
8327 {
8328         if (b < a)
8329                 swap(a, b);
8330
8331         mutex_lock(a);
8332         mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
8333 }
8334
8335 static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
8336 {
8337         bool nmi_safe = false;
8338
8339         switch (clk_id) {
8340         case CLOCK_MONOTONIC:
8341                 event->clock = &ktime_get_mono_fast_ns;
8342                 nmi_safe = true;
8343                 break;
8344
8345         case CLOCK_MONOTONIC_RAW:
8346                 event->clock = &ktime_get_raw_fast_ns;
8347                 nmi_safe = true;
8348                 break;
8349
8350         case CLOCK_REALTIME:
8351                 event->clock = &ktime_get_real_ns;
8352                 break;
8353
8354         case CLOCK_BOOTTIME:
8355                 event->clock = &ktime_get_boot_ns;
8356                 break;
8357
8358         case CLOCK_TAI:
8359                 event->clock = &ktime_get_tai_ns;
8360                 break;
8361
8362         default:
8363                 return -EINVAL;
8364         }
8365
8366         if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
8367                 return -EINVAL;
8368
8369         return 0;
8370 }
8371
8372 /**
8373  * sys_perf_event_open - open a performance event, associate it to a task/cpu
8374  *
8375  * @attr_uptr:  event_id type attributes for monitoring/sampling
8376  * @pid:                target pid
8377  * @cpu:                target cpu
8378  * @group_fd:           group leader event fd
8379  */
8380 SYSCALL_DEFINE5(perf_event_open,
8381                 struct perf_event_attr __user *, attr_uptr,
8382                 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
8383 {
8384         struct perf_event *group_leader = NULL, *output_event = NULL;
8385         struct perf_event *event, *sibling;
8386         struct perf_event_attr attr;
8387         struct perf_event_context *ctx, *uninitialized_var(gctx);
8388         struct file *event_file = NULL;
8389         struct fd group = {NULL, 0};
8390         struct task_struct *task = NULL;
8391         struct pmu *pmu;
8392         int event_fd;
8393         int move_group = 0;
8394         int err;
8395         int f_flags = O_RDWR;
8396         int cgroup_fd = -1;
8397
8398         /* for future expandability... */
8399         if (flags & ~PERF_FLAG_ALL)
8400                 return -EINVAL;
8401
8402         if (perf_paranoid_any() && !capable(CAP_SYS_ADMIN))
8403                 return -EACCES;
8404
8405         err = perf_copy_attr(attr_uptr, &attr);
8406         if (err)
8407                 return err;
8408
8409         if (!attr.exclude_kernel) {
8410                 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
8411                         return -EACCES;
8412         }
8413
8414         if (attr.freq) {
8415                 if (attr.sample_freq > sysctl_perf_event_sample_rate)
8416                         return -EINVAL;
8417         } else {
8418                 if (attr.sample_period & (1ULL << 63))
8419                         return -EINVAL;
8420         }
8421
8422         /*
8423          * In cgroup mode, the pid argument is used to pass the fd
8424          * opened to the cgroup directory in cgroupfs. The cpu argument
8425          * designates the cpu on which to monitor threads from that
8426          * cgroup.
8427          */
8428         if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
8429                 return -EINVAL;
8430
8431         if (flags & PERF_FLAG_FD_CLOEXEC)
8432                 f_flags |= O_CLOEXEC;
8433
8434         event_fd = get_unused_fd_flags(f_flags);
8435         if (event_fd < 0)
8436                 return event_fd;
8437
8438         if (group_fd != -1) {
8439                 err = perf_fget_light(group_fd, &group);
8440                 if (err)
8441                         goto err_fd;
8442                 group_leader = group.file->private_data;
8443                 if (flags & PERF_FLAG_FD_OUTPUT)
8444                         output_event = group_leader;
8445                 if (flags & PERF_FLAG_FD_NO_GROUP)
8446                         group_leader = NULL;
8447         }
8448
8449         if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
8450                 task = find_lively_task_by_vpid(pid);
8451                 if (IS_ERR(task)) {
8452                         err = PTR_ERR(task);
8453                         goto err_group_fd;
8454                 }
8455         }
8456
8457         if (task && group_leader &&
8458             group_leader->attr.inherit != attr.inherit) {
8459                 err = -EINVAL;
8460                 goto err_task;
8461         }
8462
8463         get_online_cpus();
8464
8465         if (task) {
8466                 err = mutex_lock_interruptible(&task->signal->cred_guard_mutex);
8467                 if (err)
8468                         goto err_cpus;
8469
8470                 /*
8471                  * Reuse ptrace permission checks for now.
8472                  *
8473                  * We must hold cred_guard_mutex across this and any potential
8474                  * perf_install_in_context() call for this new event to
8475                  * serialize against exec() altering our credentials (and the
8476                  * perf_event_exit_task() that could imply).
8477                  */
8478                 err = -EACCES;
8479                 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
8480                         goto err_cred;
8481         }
8482
8483         if (flags & PERF_FLAG_PID_CGROUP)
8484                 cgroup_fd = pid;
8485
8486         event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
8487                                  NULL, NULL, cgroup_fd);
8488         if (IS_ERR(event)) {
8489                 err = PTR_ERR(event);
8490                 goto err_cred;
8491         }
8492
8493         if (is_sampling_event(event)) {
8494                 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
8495                         err = -ENOTSUPP;
8496                         goto err_alloc;
8497                 }
8498         }
8499
8500         /*
8501          * Special case software events and allow them to be part of
8502          * any hardware group.
8503          */
8504         pmu = event->pmu;
8505
8506         if (attr.use_clockid) {
8507                 err = perf_event_set_clock(event, attr.clockid);
8508                 if (err)
8509                         goto err_alloc;
8510         }
8511
8512         if (group_leader &&
8513             (is_software_event(event) != is_software_event(group_leader))) {
8514                 if (is_software_event(event)) {
8515                         /*
8516                          * If event and group_leader are not both a software
8517                          * event, and event is, then group leader is not.
8518                          *
8519                          * Allow the addition of software events to !software
8520                          * groups, this is safe because software events never
8521                          * fail to schedule.
8522                          */
8523                         pmu = group_leader->pmu;
8524                 } else if (is_software_event(group_leader) &&
8525                            (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
8526                         /*
8527                          * In case the group is a pure software group, and we
8528                          * try to add a hardware event, move the whole group to
8529                          * the hardware context.
8530                          */
8531                         move_group = 1;
8532                 }
8533         }
8534
8535         /*
8536          * Get the target context (task or percpu):
8537          */
8538         ctx = find_get_context(pmu, task, event);
8539         if (IS_ERR(ctx)) {
8540                 err = PTR_ERR(ctx);
8541                 goto err_alloc;
8542         }
8543
8544         if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
8545                 err = -EBUSY;
8546                 goto err_context;
8547         }
8548
8549         /*
8550          * Look up the group leader (we will attach this event to it):
8551          */
8552         if (group_leader) {
8553                 err = -EINVAL;
8554
8555                 /*
8556                  * Do not allow a recursive hierarchy (this new sibling
8557                  * becoming part of another group-sibling):
8558                  */
8559                 if (group_leader->group_leader != group_leader)
8560                         goto err_context;
8561
8562                 /* All events in a group should have the same clock */
8563                 if (group_leader->clock != event->clock)
8564                         goto err_context;
8565
8566                 /*
8567                  * Do not allow to attach to a group in a different
8568                  * task or CPU context:
8569                  */
8570                 if (move_group) {
8571                         /*
8572                          * Make sure we're both on the same task, or both
8573                          * per-cpu events.
8574                          */
8575                         if (group_leader->ctx->task != ctx->task)
8576                                 goto err_context;
8577
8578                         /*
8579                          * Make sure we're both events for the same CPU;
8580                          * grouping events for different CPUs is broken; since
8581                          * you can never concurrently schedule them anyhow.
8582                          */
8583                         if (group_leader->cpu != event->cpu)
8584                                 goto err_context;
8585                 } else {
8586                         if (group_leader->ctx != ctx)
8587                                 goto err_context;
8588                 }
8589
8590                 /*
8591                  * Only a group leader can be exclusive or pinned
8592                  */
8593                 if (attr.exclusive || attr.pinned)
8594                         goto err_context;
8595         }
8596
8597         if (output_event) {
8598                 err = perf_event_set_output(event, output_event);
8599                 if (err)
8600                         goto err_context;
8601         }
8602
8603         event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
8604                                         f_flags);
8605         if (IS_ERR(event_file)) {
8606                 err = PTR_ERR(event_file);
8607                 event_file = NULL;
8608                 goto err_context;
8609         }
8610
8611         if (move_group) {
8612                 gctx = group_leader->ctx;
8613                 mutex_lock_double(&gctx->mutex, &ctx->mutex);
8614         } else {
8615                 mutex_lock(&ctx->mutex);
8616         }
8617
8618         if (!perf_event_validate_size(event)) {
8619                 err = -E2BIG;
8620                 goto err_locked;
8621         }
8622
8623         /*
8624          * Must be under the same ctx::mutex as perf_install_in_context(),
8625          * because we need to serialize with concurrent event creation.
8626          */
8627         if (!exclusive_event_installable(event, ctx)) {
8628                 /* exclusive and group stuff are assumed mutually exclusive */
8629                 WARN_ON_ONCE(move_group);
8630
8631                 err = -EBUSY;
8632                 goto err_locked;
8633         }
8634
8635         WARN_ON_ONCE(ctx->parent_ctx);
8636
8637         /*
8638          * This is the point on no return; we cannot fail hereafter. This is
8639          * where we start modifying current state.
8640          */
8641
8642         if (move_group) {
8643                 /*
8644                  * See perf_event_ctx_lock() for comments on the details
8645                  * of swizzling perf_event::ctx.
8646                  */
8647                 perf_remove_from_context(group_leader, false);
8648
8649                 list_for_each_entry(sibling, &group_leader->sibling_list,
8650                                     group_entry) {
8651                         perf_remove_from_context(sibling, false);
8652                         put_ctx(gctx);
8653                 }
8654
8655                 /*
8656                  * Wait for everybody to stop referencing the events through
8657                  * the old lists, before installing it on new lists.
8658                  */
8659                 synchronize_rcu();
8660
8661                 /*
8662                  * Install the group siblings before the group leader.
8663                  *
8664                  * Because a group leader will try and install the entire group
8665                  * (through the sibling list, which is still in-tact), we can
8666                  * end up with siblings installed in the wrong context.
8667                  *
8668                  * By installing siblings first we NO-OP because they're not
8669                  * reachable through the group lists.
8670                  */
8671                 list_for_each_entry(sibling, &group_leader->sibling_list,
8672                                     group_entry) {
8673                         perf_event__state_init(sibling);
8674                         perf_install_in_context(ctx, sibling, sibling->cpu);
8675                         get_ctx(ctx);
8676                 }
8677
8678                 /*
8679                  * Removing from the context ends up with disabled
8680                  * event. What we want here is event in the initial
8681                  * startup state, ready to be add into new context.
8682                  */
8683                 perf_event__state_init(group_leader);
8684                 perf_install_in_context(ctx, group_leader, group_leader->cpu);
8685                 get_ctx(ctx);
8686
8687                 /*
8688                  * Now that all events are installed in @ctx, nothing
8689                  * references @gctx anymore, so drop the last reference we have
8690                  * on it.
8691                  */
8692                 put_ctx(gctx);
8693         }
8694
8695         /*
8696          * Precalculate sample_data sizes; do while holding ctx::mutex such
8697          * that we're serialized against further additions and before
8698          * perf_install_in_context() which is the point the event is active and
8699          * can use these values.
8700          */
8701         perf_event__header_size(event);
8702         perf_event__id_header_size(event);
8703
8704         perf_install_in_context(ctx, event, event->cpu);
8705         perf_unpin_context(ctx);
8706
8707         if (move_group)
8708                 mutex_unlock(&gctx->mutex);
8709         mutex_unlock(&ctx->mutex);
8710
8711         if (task) {
8712                 mutex_unlock(&task->signal->cred_guard_mutex);
8713                 put_task_struct(task);
8714         }
8715
8716         put_online_cpus();
8717
8718         event->owner = current;
8719
8720         mutex_lock(&current->perf_event_mutex);
8721         list_add_tail(&event->owner_entry, &current->perf_event_list);
8722         mutex_unlock(&current->perf_event_mutex);
8723
8724         /*
8725          * Drop the reference on the group_event after placing the
8726          * new event on the sibling_list. This ensures destruction
8727          * of the group leader will find the pointer to itself in
8728          * perf_group_detach().
8729          */
8730         fdput(group);
8731         fd_install(event_fd, event_file);
8732         return event_fd;
8733
8734 err_locked:
8735         if (move_group)
8736                 mutex_unlock(&gctx->mutex);
8737         mutex_unlock(&ctx->mutex);
8738 /* err_file: */
8739         fput(event_file);
8740 err_context:
8741         perf_unpin_context(ctx);
8742         put_ctx(ctx);
8743 err_alloc:
8744         /*
8745          * If event_file is set, the fput() above will have called ->release()
8746          * and that will take care of freeing the event.
8747          */
8748         if (!event_file)
8749                 free_event(event);
8750 err_cred:
8751         if (task)
8752                 mutex_unlock(&task->signal->cred_guard_mutex);
8753 err_cpus:
8754         put_online_cpus();
8755 err_task:
8756         if (task)
8757                 put_task_struct(task);
8758 err_group_fd:
8759         fdput(group);
8760 err_fd:
8761         put_unused_fd(event_fd);
8762         return err;
8763 }
8764
8765 /**
8766  * perf_event_create_kernel_counter
8767  *
8768  * @attr: attributes of the counter to create
8769  * @cpu: cpu in which the counter is bound
8770  * @task: task to profile (NULL for percpu)
8771  */
8772 struct perf_event *
8773 perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
8774                                  struct task_struct *task,
8775                                  perf_overflow_handler_t overflow_handler,
8776                                  void *context)
8777 {
8778         struct perf_event_context *ctx;
8779         struct perf_event *event;
8780         int err;
8781
8782         /*
8783          * Get the target context (task or percpu):
8784          */
8785
8786         event = perf_event_alloc(attr, cpu, task, NULL, NULL,
8787                                  overflow_handler, context, -1);
8788         if (IS_ERR(event)) {
8789                 err = PTR_ERR(event);
8790                 goto err;
8791         }
8792
8793         /* Mark owner so we could distinguish it from user events. */
8794         event->owner = EVENT_OWNER_KERNEL;
8795
8796         ctx = find_get_context(event->pmu, task, event);
8797         if (IS_ERR(ctx)) {
8798                 err = PTR_ERR(ctx);
8799                 goto err_free;
8800         }
8801
8802         WARN_ON_ONCE(ctx->parent_ctx);
8803         mutex_lock(&ctx->mutex);
8804         if (!exclusive_event_installable(event, ctx)) {
8805                 mutex_unlock(&ctx->mutex);
8806                 perf_unpin_context(ctx);
8807                 put_ctx(ctx);
8808                 err = -EBUSY;
8809                 goto err_free;
8810         }
8811
8812         perf_install_in_context(ctx, event, cpu);
8813         perf_unpin_context(ctx);
8814         mutex_unlock(&ctx->mutex);
8815
8816         return event;
8817
8818 err_free:
8819         free_event(event);
8820 err:
8821         return ERR_PTR(err);
8822 }
8823 EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
8824
8825 void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
8826 {
8827         struct perf_event_context *src_ctx;
8828         struct perf_event_context *dst_ctx;
8829         struct perf_event *event, *tmp;
8830         LIST_HEAD(events);
8831
8832         src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
8833         dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
8834
8835         /*
8836          * See perf_event_ctx_lock() for comments on the details
8837          * of swizzling perf_event::ctx.
8838          */
8839         mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
8840         list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
8841                                  event_entry) {
8842                 perf_remove_from_context(event, false);
8843                 unaccount_event_cpu(event, src_cpu);
8844                 put_ctx(src_ctx);
8845                 list_add(&event->migrate_entry, &events);
8846         }
8847
8848         /*
8849          * Wait for the events to quiesce before re-instating them.
8850          */
8851         synchronize_rcu();
8852
8853         /*
8854          * Re-instate events in 2 passes.
8855          *
8856          * Skip over group leaders and only install siblings on this first
8857          * pass, siblings will not get enabled without a leader, however a
8858          * leader will enable its siblings, even if those are still on the old
8859          * context.
8860          */
8861         list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
8862                 if (event->group_leader == event)
8863                         continue;
8864
8865                 list_del(&event->migrate_entry);
8866                 if (event->state >= PERF_EVENT_STATE_OFF)
8867                         event->state = PERF_EVENT_STATE_INACTIVE;
8868                 account_event_cpu(event, dst_cpu);
8869                 perf_install_in_context(dst_ctx, event, dst_cpu);
8870                 get_ctx(dst_ctx);
8871         }
8872
8873         /*
8874          * Once all the siblings are setup properly, install the group leaders
8875          * to make it go.
8876          */
8877         list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
8878                 list_del(&event->migrate_entry);
8879                 if (event->state >= PERF_EVENT_STATE_OFF)
8880                         event->state = PERF_EVENT_STATE_INACTIVE;
8881                 account_event_cpu(event, dst_cpu);
8882                 perf_install_in_context(dst_ctx, event, dst_cpu);
8883                 get_ctx(dst_ctx);
8884         }
8885         mutex_unlock(&dst_ctx->mutex);
8886         mutex_unlock(&src_ctx->mutex);
8887 }
8888 EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
8889
8890 static void sync_child_event(struct perf_event *child_event,
8891                                struct task_struct *child)
8892 {
8893         struct perf_event *parent_event = child_event->parent;
8894         u64 child_val;
8895
8896         if (child_event->attr.inherit_stat)
8897                 perf_event_read_event(child_event, child);
8898
8899         child_val = perf_event_count(child_event);
8900
8901         /*
8902          * Add back the child's count to the parent's count:
8903          */
8904         atomic64_add(child_val, &parent_event->child_count);
8905         atomic64_add(child_event->total_time_enabled,
8906                      &parent_event->child_total_time_enabled);
8907         atomic64_add(child_event->total_time_running,
8908                      &parent_event->child_total_time_running);
8909
8910         /*
8911          * Remove this event from the parent's list
8912          */
8913         WARN_ON_ONCE(parent_event->ctx->parent_ctx);
8914         mutex_lock(&parent_event->child_mutex);
8915         list_del_init(&child_event->child_list);
8916         mutex_unlock(&parent_event->child_mutex);
8917
8918         /*
8919          * Make sure user/parent get notified, that we just
8920          * lost one event.
8921          */
8922         perf_event_wakeup(parent_event);
8923
8924         /*
8925          * Release the parent event, if this was the last
8926          * reference to it.
8927          */
8928         put_event(parent_event);
8929 }
8930
8931 static void
8932 __perf_event_exit_task(struct perf_event *child_event,
8933                          struct perf_event_context *child_ctx,
8934                          struct task_struct *child)
8935 {
8936         /*
8937          * Do not destroy the 'original' grouping; because of the context
8938          * switch optimization the original events could've ended up in a
8939          * random child task.
8940          *
8941          * If we were to destroy the original group, all group related
8942          * operations would cease to function properly after this random
8943          * child dies.
8944          *
8945          * Do destroy all inherited groups, we don't care about those
8946          * and being thorough is better.
8947          */
8948         perf_remove_from_context(child_event, !!child_event->parent);
8949
8950         /*
8951          * It can happen that the parent exits first, and has events
8952          * that are still around due to the child reference. These
8953          * events need to be zapped.
8954          */
8955         if (child_event->parent) {
8956                 sync_child_event(child_event, child);
8957                 free_event(child_event);
8958         } else {
8959                 child_event->state = PERF_EVENT_STATE_EXIT;
8960                 perf_event_wakeup(child_event);
8961         }
8962 }
8963
8964 static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
8965 {
8966         struct perf_event *child_event, *next;
8967         struct perf_event_context *child_ctx, *clone_ctx = NULL;
8968         unsigned long flags;
8969
8970         if (likely(!child->perf_event_ctxp[ctxn]))
8971                 return;
8972
8973         local_irq_save(flags);
8974         /*
8975          * We can't reschedule here because interrupts are disabled,
8976          * and either child is current or it is a task that can't be
8977          * scheduled, so we are now safe from rescheduling changing
8978          * our context.
8979          */
8980         child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
8981
8982         /*
8983          * Take the context lock here so that if find_get_context is
8984          * reading child->perf_event_ctxp, we wait until it has
8985          * incremented the context's refcount before we do put_ctx below.
8986          */
8987         raw_spin_lock(&child_ctx->lock);
8988         task_ctx_sched_out(child_ctx);
8989         child->perf_event_ctxp[ctxn] = NULL;
8990
8991         /*
8992          * If this context is a clone; unclone it so it can't get
8993          * swapped to another process while we're removing all
8994          * the events from it.
8995          */
8996         clone_ctx = unclone_ctx(child_ctx);
8997         update_context_time(child_ctx);
8998         raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
8999
9000         if (clone_ctx)
9001                 put_ctx(clone_ctx);
9002
9003         /*
9004          * Report the task dead after unscheduling the events so that we
9005          * won't get any samples after PERF_RECORD_EXIT. We can however still
9006          * get a few PERF_RECORD_READ events.
9007          */
9008         perf_event_task(child, child_ctx, 0);
9009
9010         /*
9011          * We can recurse on the same lock type through:
9012          *
9013          *   __perf_event_exit_task()
9014          *     sync_child_event()
9015          *       put_event()
9016          *         mutex_lock(&ctx->mutex)
9017          *
9018          * But since its the parent context it won't be the same instance.
9019          */
9020         mutex_lock(&child_ctx->mutex);
9021
9022         list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
9023                 __perf_event_exit_task(child_event, child_ctx, child);
9024
9025         mutex_unlock(&child_ctx->mutex);
9026
9027         put_ctx(child_ctx);
9028 }
9029
9030 /*
9031  * When a child task exits, feed back event values to parent events.
9032  *
9033  * Can be called with cred_guard_mutex held when called from
9034  * install_exec_creds().
9035  */
9036 void perf_event_exit_task(struct task_struct *child)
9037 {
9038         struct perf_event *event, *tmp;
9039         int ctxn;
9040
9041         mutex_lock(&child->perf_event_mutex);
9042         list_for_each_entry_safe(event, tmp, &child->perf_event_list,
9043                                  owner_entry) {
9044                 list_del_init(&event->owner_entry);
9045
9046                 /*
9047                  * Ensure the list deletion is visible before we clear
9048                  * the owner, closes a race against perf_release() where
9049                  * we need to serialize on the owner->perf_event_mutex.
9050                  */
9051                 smp_wmb();
9052                 event->owner = NULL;
9053         }
9054         mutex_unlock(&child->perf_event_mutex);
9055
9056         for_each_task_context_nr(ctxn)
9057                 perf_event_exit_task_context(child, ctxn);
9058
9059         /*
9060          * The perf_event_exit_task_context calls perf_event_task
9061          * with child's task_ctx, which generates EXIT events for
9062          * child contexts and sets child->perf_event_ctxp[] to NULL.
9063          * At this point we need to send EXIT events to cpu contexts.
9064          */
9065         perf_event_task(child, NULL, 0);
9066 }
9067
9068 static void perf_free_event(struct perf_event *event,
9069                             struct perf_event_context *ctx)
9070 {
9071         struct perf_event *parent = event->parent;
9072
9073         if (WARN_ON_ONCE(!parent))
9074                 return;
9075
9076         mutex_lock(&parent->child_mutex);
9077         list_del_init(&event->child_list);
9078         mutex_unlock(&parent->child_mutex);
9079
9080         put_event(parent);
9081
9082         raw_spin_lock_irq(&ctx->lock);
9083         perf_group_detach(event);
9084         list_del_event(event, ctx);
9085         raw_spin_unlock_irq(&ctx->lock);
9086         free_event(event);
9087 }
9088
9089 /*
9090  * Free an unexposed, unused context as created by inheritance by
9091  * perf_event_init_task below, used by fork() in case of fail.
9092  *
9093  * Not all locks are strictly required, but take them anyway to be nice and
9094  * help out with the lockdep assertions.
9095  */
9096 void perf_event_free_task(struct task_struct *task)
9097 {
9098         struct perf_event_context *ctx;
9099         struct perf_event *event, *tmp;
9100         int ctxn;
9101
9102         for_each_task_context_nr(ctxn) {
9103                 ctx = task->perf_event_ctxp[ctxn];
9104                 if (!ctx)
9105                         continue;
9106
9107                 mutex_lock(&ctx->mutex);
9108 again:
9109                 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
9110                                 group_entry)
9111                         perf_free_event(event, ctx);
9112
9113                 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
9114                                 group_entry)
9115                         perf_free_event(event, ctx);
9116
9117                 if (!list_empty(&ctx->pinned_groups) ||
9118                                 !list_empty(&ctx->flexible_groups))
9119                         goto again;
9120
9121                 mutex_unlock(&ctx->mutex);
9122
9123                 put_ctx(ctx);
9124         }
9125 }
9126
9127 void perf_event_delayed_put(struct task_struct *task)
9128 {
9129         int ctxn;
9130
9131         for_each_task_context_nr(ctxn)
9132                 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
9133 }
9134
9135 struct perf_event *perf_event_get(unsigned int fd)
9136 {
9137         int err;
9138         struct fd f;
9139         struct perf_event *event;
9140
9141         err = perf_fget_light(fd, &f);
9142         if (err)
9143                 return ERR_PTR(err);
9144
9145         event = f.file->private_data;
9146         atomic_long_inc(&event->refcount);
9147         fdput(f);
9148
9149         return event;
9150 }
9151
9152 const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
9153 {
9154         if (!event)
9155                 return ERR_PTR(-EINVAL);
9156
9157         return &event->attr;
9158 }
9159
9160 /*
9161  * inherit a event from parent task to child task:
9162  */
9163 static struct perf_event *
9164 inherit_event(struct perf_event *parent_event,
9165               struct task_struct *parent,
9166               struct perf_event_context *parent_ctx,
9167               struct task_struct *child,
9168               struct perf_event *group_leader,
9169               struct perf_event_context *child_ctx)
9170 {
9171         enum perf_event_active_state parent_state = parent_event->state;
9172         struct perf_event *child_event;
9173         unsigned long flags;
9174
9175         /*
9176          * Instead of creating recursive hierarchies of events,
9177          * we link inherited events back to the original parent,
9178          * which has a filp for sure, which we use as the reference
9179          * count:
9180          */
9181         if (parent_event->parent)
9182                 parent_event = parent_event->parent;
9183
9184         child_event = perf_event_alloc(&parent_event->attr,
9185                                            parent_event->cpu,
9186                                            child,
9187                                            group_leader, parent_event,
9188                                            NULL, NULL, -1);
9189         if (IS_ERR(child_event))
9190                 return child_event;
9191
9192         if (is_orphaned_event(parent_event) ||
9193             !atomic_long_inc_not_zero(&parent_event->refcount)) {
9194                 free_event(child_event);
9195                 return NULL;
9196         }
9197
9198         get_ctx(child_ctx);
9199
9200         /*
9201          * Make the child state follow the state of the parent event,
9202          * not its attr.disabled bit.  We hold the parent's mutex,
9203          * so we won't race with perf_event_{en, dis}able_family.
9204          */
9205         if (parent_state >= PERF_EVENT_STATE_INACTIVE)
9206                 child_event->state = PERF_EVENT_STATE_INACTIVE;
9207         else
9208                 child_event->state = PERF_EVENT_STATE_OFF;
9209
9210         if (parent_event->attr.freq) {
9211                 u64 sample_period = parent_event->hw.sample_period;
9212                 struct hw_perf_event *hwc = &child_event->hw;
9213
9214                 hwc->sample_period = sample_period;
9215                 hwc->last_period   = sample_period;
9216
9217                 local64_set(&hwc->period_left, sample_period);
9218         }
9219
9220         child_event->ctx = child_ctx;
9221         child_event->overflow_handler = parent_event->overflow_handler;
9222         child_event->overflow_handler_context
9223                 = parent_event->overflow_handler_context;
9224
9225         /*
9226          * Precalculate sample_data sizes
9227          */
9228         perf_event__header_size(child_event);
9229         perf_event__id_header_size(child_event);
9230
9231         /*
9232          * Link it up in the child's context:
9233          */
9234         raw_spin_lock_irqsave(&child_ctx->lock, flags);
9235         add_event_to_ctx(child_event, child_ctx);
9236         raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
9237
9238         /*
9239          * Link this into the parent event's child list
9240          */
9241         WARN_ON_ONCE(parent_event->ctx->parent_ctx);
9242         mutex_lock(&parent_event->child_mutex);
9243         list_add_tail(&child_event->child_list, &parent_event->child_list);
9244         mutex_unlock(&parent_event->child_mutex);
9245
9246         return child_event;
9247 }
9248
9249 static int inherit_group(struct perf_event *parent_event,
9250               struct task_struct *parent,
9251               struct perf_event_context *parent_ctx,
9252               struct task_struct *child,
9253               struct perf_event_context *child_ctx)
9254 {
9255         struct perf_event *leader;
9256         struct perf_event *sub;
9257         struct perf_event *child_ctr;
9258
9259         leader = inherit_event(parent_event, parent, parent_ctx,
9260                                  child, NULL, child_ctx);
9261         if (IS_ERR(leader))
9262                 return PTR_ERR(leader);
9263         list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
9264                 child_ctr = inherit_event(sub, parent, parent_ctx,
9265                                             child, leader, child_ctx);
9266                 if (IS_ERR(child_ctr))
9267                         return PTR_ERR(child_ctr);
9268         }
9269         return 0;
9270 }
9271
9272 static int
9273 inherit_task_group(struct perf_event *event, struct task_struct *parent,
9274                    struct perf_event_context *parent_ctx,
9275                    struct task_struct *child, int ctxn,
9276                    int *inherited_all)
9277 {
9278         int ret;
9279         struct perf_event_context *child_ctx;
9280
9281         if (!event->attr.inherit) {
9282                 *inherited_all = 0;
9283                 return 0;
9284         }
9285
9286         child_ctx = child->perf_event_ctxp[ctxn];
9287         if (!child_ctx) {
9288                 /*
9289                  * This is executed from the parent task context, so
9290                  * inherit events that have been marked for cloning.
9291                  * First allocate and initialize a context for the
9292                  * child.
9293                  */
9294
9295                 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
9296                 if (!child_ctx)
9297                         return -ENOMEM;
9298
9299                 child->perf_event_ctxp[ctxn] = child_ctx;
9300         }
9301
9302         ret = inherit_group(event, parent, parent_ctx,
9303                             child, child_ctx);
9304
9305         if (ret)
9306                 *inherited_all = 0;
9307
9308         return ret;
9309 }
9310
9311 /*
9312  * Initialize the perf_event context in task_struct
9313  */
9314 static int perf_event_init_context(struct task_struct *child, int ctxn)
9315 {
9316         struct perf_event_context *child_ctx, *parent_ctx;
9317         struct perf_event_context *cloned_ctx;
9318         struct perf_event *event;
9319         struct task_struct *parent = current;
9320         int inherited_all = 1;
9321         unsigned long flags;
9322         int ret = 0;
9323
9324         if (likely(!parent->perf_event_ctxp[ctxn]))
9325                 return 0;
9326
9327         /*
9328          * If the parent's context is a clone, pin it so it won't get
9329          * swapped under us.
9330          */
9331         parent_ctx = perf_pin_task_context(parent, ctxn);
9332         if (!parent_ctx)
9333                 return 0;
9334
9335         /*
9336          * No need to check if parent_ctx != NULL here; since we saw
9337          * it non-NULL earlier, the only reason for it to become NULL
9338          * is if we exit, and since we're currently in the middle of
9339          * a fork we can't be exiting at the same time.
9340          */
9341
9342         /*
9343          * Lock the parent list. No need to lock the child - not PID
9344          * hashed yet and not running, so nobody can access it.
9345          */
9346         mutex_lock(&parent_ctx->mutex);
9347
9348         /*
9349          * We dont have to disable NMIs - we are only looking at
9350          * the list, not manipulating it:
9351          */
9352         list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
9353                 ret = inherit_task_group(event, parent, parent_ctx,
9354                                          child, ctxn, &inherited_all);
9355                 if (ret)
9356                         break;
9357         }
9358
9359         /*
9360          * We can't hold ctx->lock when iterating the ->flexible_group list due
9361          * to allocations, but we need to prevent rotation because
9362          * rotate_ctx() will change the list from interrupt context.
9363          */
9364         raw_spin_lock_irqsave(&parent_ctx->lock, flags);
9365         parent_ctx->rotate_disable = 1;
9366         raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
9367
9368         list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
9369                 ret = inherit_task_group(event, parent, parent_ctx,
9370                                          child, ctxn, &inherited_all);
9371                 if (ret)
9372                         break;
9373         }
9374
9375         raw_spin_lock_irqsave(&parent_ctx->lock, flags);
9376         parent_ctx->rotate_disable = 0;
9377
9378         child_ctx = child->perf_event_ctxp[ctxn];
9379
9380         if (child_ctx && inherited_all) {
9381                 /*
9382                  * Mark the child context as a clone of the parent
9383                  * context, or of whatever the parent is a clone of.
9384                  *
9385                  * Note that if the parent is a clone, the holding of
9386                  * parent_ctx->lock avoids it from being uncloned.
9387                  */
9388                 cloned_ctx = parent_ctx->parent_ctx;
9389                 if (cloned_ctx) {
9390                         child_ctx->parent_ctx = cloned_ctx;
9391                         child_ctx->parent_gen = parent_ctx->parent_gen;
9392                 } else {
9393                         child_ctx->parent_ctx = parent_ctx;
9394                         child_ctx->parent_gen = parent_ctx->generation;
9395                 }
9396                 get_ctx(child_ctx->parent_ctx);
9397         }
9398
9399         raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
9400         mutex_unlock(&parent_ctx->mutex);
9401
9402         perf_unpin_context(parent_ctx);
9403         put_ctx(parent_ctx);
9404
9405         return ret;
9406 }
9407
9408 /*
9409  * Initialize the perf_event context in task_struct
9410  */
9411 int perf_event_init_task(struct task_struct *child)
9412 {
9413         int ctxn, ret;
9414
9415         memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
9416         mutex_init(&child->perf_event_mutex);
9417         INIT_LIST_HEAD(&child->perf_event_list);
9418
9419         for_each_task_context_nr(ctxn) {
9420                 ret = perf_event_init_context(child, ctxn);
9421                 if (ret) {
9422                         perf_event_free_task(child);
9423                         return ret;
9424                 }
9425         }
9426
9427         return 0;
9428 }
9429
9430 static void __init perf_event_init_all_cpus(void)
9431 {
9432         struct swevent_htable *swhash;
9433         int cpu;
9434
9435         for_each_possible_cpu(cpu) {
9436                 swhash = &per_cpu(swevent_htable, cpu);
9437                 mutex_init(&swhash->hlist_mutex);
9438                 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
9439         }
9440 }
9441
9442 static void perf_event_init_cpu(int cpu)
9443 {
9444         struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
9445
9446         mutex_lock(&swhash->hlist_mutex);
9447         if (swhash->hlist_refcount > 0) {
9448                 struct swevent_hlist *hlist;
9449
9450                 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
9451                 WARN_ON(!hlist);
9452                 rcu_assign_pointer(swhash->swevent_hlist, hlist);
9453         }
9454         mutex_unlock(&swhash->hlist_mutex);
9455 }
9456
9457 #if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
9458 static void __perf_event_exit_context(void *__info)
9459 {
9460         struct remove_event re = { .detach_group = true };
9461         struct perf_event_context *ctx = __info;
9462
9463         rcu_read_lock();
9464         list_for_each_entry_rcu(re.event, &ctx->event_list, event_entry)
9465                 __perf_remove_from_context(&re);
9466         rcu_read_unlock();
9467 }
9468
9469 static void perf_event_exit_cpu_context(int cpu)
9470 {
9471         struct perf_event_context *ctx;
9472         struct pmu *pmu;
9473         int idx;
9474
9475         idx = srcu_read_lock(&pmus_srcu);
9476         list_for_each_entry_rcu(pmu, &pmus, entry) {
9477                 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
9478
9479                 mutex_lock(&ctx->mutex);
9480                 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
9481                 mutex_unlock(&ctx->mutex);
9482         }
9483         srcu_read_unlock(&pmus_srcu, idx);
9484 }
9485
9486 static void perf_event_exit_cpu(int cpu)
9487 {
9488         perf_event_exit_cpu_context(cpu);
9489 }
9490 #else
9491 static inline void perf_event_exit_cpu(int cpu) { }
9492 #endif
9493
9494 static int
9495 perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
9496 {
9497         int cpu;
9498
9499         for_each_online_cpu(cpu)
9500                 perf_event_exit_cpu(cpu);
9501
9502         return NOTIFY_OK;
9503 }
9504
9505 /*
9506  * Run the perf reboot notifier at the very last possible moment so that
9507  * the generic watchdog code runs as long as possible.
9508  */
9509 static struct notifier_block perf_reboot_notifier = {
9510         .notifier_call = perf_reboot,
9511         .priority = INT_MIN,
9512 };
9513
9514 static int
9515 perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
9516 {
9517         unsigned int cpu = (long)hcpu;
9518
9519         switch (action & ~CPU_TASKS_FROZEN) {
9520
9521         case CPU_UP_PREPARE:
9522         case CPU_DOWN_FAILED:
9523                 perf_event_init_cpu(cpu);
9524                 break;
9525
9526         case CPU_UP_CANCELED:
9527         case CPU_DOWN_PREPARE:
9528                 perf_event_exit_cpu(cpu);
9529                 break;
9530         default:
9531                 break;
9532         }
9533
9534         return NOTIFY_OK;
9535 }
9536
9537 void __init perf_event_init(void)
9538 {
9539         int ret;
9540
9541         idr_init(&pmu_idr);
9542
9543         perf_event_init_all_cpus();
9544         init_srcu_struct(&pmus_srcu);
9545         perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
9546         perf_pmu_register(&perf_cpu_clock, NULL, -1);
9547         perf_pmu_register(&perf_task_clock, NULL, -1);
9548         perf_tp_register();
9549         perf_cpu_notifier(perf_cpu_notify);
9550         register_reboot_notifier(&perf_reboot_notifier);
9551
9552         ret = init_hw_breakpoint();
9553         WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
9554
9555         /* do not patch jump label more than once per second */
9556         jump_label_rate_limit(&perf_sched_events, HZ);
9557
9558         /*
9559          * Build time assertion that we keep the data_head at the intended
9560          * location.  IOW, validation we got the __reserved[] size right.
9561          */
9562         BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
9563                      != 1024);
9564 }
9565
9566 ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
9567                               char *page)
9568 {
9569         struct perf_pmu_events_attr *pmu_attr =
9570                 container_of(attr, struct perf_pmu_events_attr, attr);
9571
9572         if (pmu_attr->event_str)
9573                 return sprintf(page, "%s\n", pmu_attr->event_str);
9574
9575         return 0;
9576 }
9577
9578 static int __init perf_event_sysfs_init(void)
9579 {
9580         struct pmu *pmu;
9581         int ret;
9582
9583         mutex_lock(&pmus_lock);
9584
9585         ret = bus_register(&pmu_bus);
9586         if (ret)
9587                 goto unlock;
9588
9589         list_for_each_entry(pmu, &pmus, entry) {
9590                 if (!pmu->name || pmu->type < 0)
9591                         continue;
9592
9593                 ret = pmu_dev_alloc(pmu);
9594                 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
9595         }
9596         pmu_bus_running = 1;
9597         ret = 0;
9598
9599 unlock:
9600         mutex_unlock(&pmus_lock);
9601
9602         return ret;
9603 }
9604 device_initcall(perf_event_sysfs_init);
9605
9606 #ifdef CONFIG_CGROUP_PERF
9607 static struct cgroup_subsys_state *
9608 perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
9609 {
9610         struct perf_cgroup *jc;
9611
9612         jc = kzalloc(sizeof(*jc), GFP_KERNEL);
9613         if (!jc)
9614                 return ERR_PTR(-ENOMEM);
9615
9616         jc->info = alloc_percpu(struct perf_cgroup_info);
9617         if (!jc->info) {
9618                 kfree(jc);
9619                 return ERR_PTR(-ENOMEM);
9620         }
9621
9622         return &jc->css;
9623 }
9624
9625 static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
9626 {
9627         struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
9628
9629         free_percpu(jc->info);
9630         kfree(jc);
9631 }
9632
9633 static int __perf_cgroup_move(void *info)
9634 {
9635         struct task_struct *task = info;
9636         rcu_read_lock();
9637         perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
9638         rcu_read_unlock();
9639         return 0;
9640 }
9641
9642 static void perf_cgroup_attach(struct cgroup_taskset *tset)
9643 {
9644         struct task_struct *task;
9645         struct cgroup_subsys_state *css;
9646
9647         cgroup_taskset_for_each(task, css, tset)
9648                 task_function_call(task, __perf_cgroup_move, task);
9649 }
9650
9651 struct cgroup_subsys perf_event_cgrp_subsys = {
9652         .css_alloc      = perf_cgroup_css_alloc,
9653         .css_free       = perf_cgroup_css_free,
9654         .attach         = perf_cgroup_attach,
9655 };
9656 #endif /* CONFIG_CGROUP_PERF */