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