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