]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - kernel/events/core.c
perf/x86/intel/uncore: Add Ice Lake server uncore support
[mirror_ubuntu-jammy-kernel.git] / kernel / events / core.c
CommitLineData
8e86e015 1// SPDX-License-Identifier: GPL-2.0
0793a61d 2/*
57c0c15b 3 * Performance events core code:
0793a61d 4 *
98144511 5 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
e7e7ee2e 6 * Copyright (C) 2008-2011 Red Hat, Inc., Ingo Molnar
90eec103 7 * Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra
d36b6910 8 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
0793a61d
TG
9 */
10
11#include <linux/fs.h>
b9cacc7b 12#include <linux/mm.h>
0793a61d
TG
13#include <linux/cpu.h>
14#include <linux/smp.h>
2e80a82a 15#include <linux/idr.h>
04289bb9 16#include <linux/file.h>
0793a61d 17#include <linux/poll.h>
5a0e3ad6 18#include <linux/slab.h>
76e1d904 19#include <linux/hash.h>
12351ef8 20#include <linux/tick.h>
0793a61d 21#include <linux/sysfs.h>
22a4f650 22#include <linux/dcache.h>
0793a61d 23#include <linux/percpu.h>
22a4f650 24#include <linux/ptrace.h>
c277443c 25#include <linux/reboot.h>
b9cacc7b 26#include <linux/vmstat.h>
abe43400 27#include <linux/device.h>
6e5fdeed 28#include <linux/export.h>
906010b2 29#include <linux/vmalloc.h>
b9cacc7b 30#include <linux/hardirq.h>
03911132 31#include <linux/hugetlb.h>
b9cacc7b 32#include <linux/rculist.h>
0793a61d
TG
33#include <linux/uaccess.h>
34#include <linux/syscalls.h>
35#include <linux/anon_inodes.h>
aa9c4c0f 36#include <linux/kernel_stat.h>
39bed6cb 37#include <linux/cgroup.h>
cdd6c482 38#include <linux/perf_event.h>
af658dca 39#include <linux/trace_events.h>
3c502e7a 40#include <linux/hw_breakpoint.h>
c5ebcedb 41#include <linux/mm_types.h>
c464c76e 42#include <linux/module.h>
f972eb63 43#include <linux/mman.h>
b3f20785 44#include <linux/compat.h>
2541517c
AS
45#include <linux/bpf.h>
46#include <linux/filter.h>
375637bc
AS
47#include <linux/namei.h>
48#include <linux/parser.h>
e6017571 49#include <linux/sched/clock.h>
6e84f315 50#include <linux/sched/mm.h>
e4222673
HB
51#include <linux/proc_ns.h>
52#include <linux/mount.h>
6eef8a71 53#include <linux/min_heap.h>
0793a61d 54
76369139
FW
55#include "internal.h"
56
4e193bd4
TB
57#include <asm/irq_regs.h>
58
272325c4
PZ
59typedef int (*remote_function_f)(void *);
60
fe4b04fa 61struct remote_function_call {
e7e7ee2e 62 struct task_struct *p;
272325c4 63 remote_function_f func;
e7e7ee2e
IM
64 void *info;
65 int ret;
fe4b04fa
PZ
66};
67
68static void remote_function(void *data)
69{
70 struct remote_function_call *tfc = data;
71 struct task_struct *p = tfc->p;
72
73 if (p) {
0da4cf3e
PZ
74 /* -EAGAIN */
75 if (task_cpu(p) != smp_processor_id())
76 return;
77
78 /*
79 * Now that we're on right CPU with IRQs disabled, we can test
80 * if we hit the right task without races.
81 */
82
83 tfc->ret = -ESRCH; /* No such (running) process */
84 if (p != current)
fe4b04fa
PZ
85 return;
86 }
87
88 tfc->ret = tfc->func(tfc->info);
89}
90
91/**
92 * task_function_call - call a function on the cpu on which a task runs
93 * @p: the task to evaluate
94 * @func: the function to be called
95 * @info: the function call argument
96 *
97 * Calls the function @func when the task is currently running. This might
98 * be on the current CPU, which just calls the function directly
99 *
100 * returns: @func return value, or
101 * -ESRCH - when the process isn't running
102 * -EAGAIN - when the process moved away
103 */
104static int
272325c4 105task_function_call(struct task_struct *p, remote_function_f func, void *info)
fe4b04fa
PZ
106{
107 struct remote_function_call data = {
e7e7ee2e
IM
108 .p = p,
109 .func = func,
110 .info = info,
0da4cf3e 111 .ret = -EAGAIN,
fe4b04fa 112 };
0da4cf3e 113 int ret;
fe4b04fa 114
0da4cf3e
PZ
115 do {
116 ret = smp_call_function_single(task_cpu(p), remote_function, &data, 1);
117 if (!ret)
118 ret = data.ret;
119 } while (ret == -EAGAIN);
fe4b04fa 120
0da4cf3e 121 return ret;
fe4b04fa
PZ
122}
123
124/**
125 * cpu_function_call - call a function on the cpu
126 * @func: the function to be called
127 * @info: the function call argument
128 *
129 * Calls the function @func on the remote cpu.
130 *
131 * returns: @func return value or -ENXIO when the cpu is offline
132 */
272325c4 133static int cpu_function_call(int cpu, remote_function_f func, void *info)
fe4b04fa
PZ
134{
135 struct remote_function_call data = {
e7e7ee2e
IM
136 .p = NULL,
137 .func = func,
138 .info = info,
139 .ret = -ENXIO, /* No such CPU */
fe4b04fa
PZ
140 };
141
142 smp_call_function_single(cpu, remote_function, &data, 1);
143
144 return data.ret;
145}
146
fae3fde6
PZ
147static inline struct perf_cpu_context *
148__get_cpu_context(struct perf_event_context *ctx)
149{
150 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
151}
152
153static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
154 struct perf_event_context *ctx)
0017960f 155{
fae3fde6
PZ
156 raw_spin_lock(&cpuctx->ctx.lock);
157 if (ctx)
158 raw_spin_lock(&ctx->lock);
159}
160
161static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
162 struct perf_event_context *ctx)
163{
164 if (ctx)
165 raw_spin_unlock(&ctx->lock);
166 raw_spin_unlock(&cpuctx->ctx.lock);
167}
168
63b6da39
PZ
169#define TASK_TOMBSTONE ((void *)-1L)
170
171static bool is_kernel_event(struct perf_event *event)
172{
f47c02c0 173 return READ_ONCE(event->owner) == TASK_TOMBSTONE;
63b6da39
PZ
174}
175
39a43640
PZ
176/*
177 * On task ctx scheduling...
178 *
179 * When !ctx->nr_events a task context will not be scheduled. This means
180 * we can disable the scheduler hooks (for performance) without leaving
181 * pending task ctx state.
182 *
183 * This however results in two special cases:
184 *
185 * - removing the last event from a task ctx; this is relatively straight
186 * forward and is done in __perf_remove_from_context.
187 *
188 * - adding the first event to a task ctx; this is tricky because we cannot
189 * rely on ctx->is_active and therefore cannot use event_function_call().
190 * See perf_install_in_context().
191 *
39a43640
PZ
192 * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set.
193 */
194
fae3fde6
PZ
195typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *,
196 struct perf_event_context *, void *);
197
198struct event_function_struct {
199 struct perf_event *event;
200 event_f func;
201 void *data;
202};
203
204static int event_function(void *info)
205{
206 struct event_function_struct *efs = info;
207 struct perf_event *event = efs->event;
0017960f 208 struct perf_event_context *ctx = event->ctx;
fae3fde6
PZ
209 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
210 struct perf_event_context *task_ctx = cpuctx->task_ctx;
63b6da39 211 int ret = 0;
fae3fde6 212
16444645 213 lockdep_assert_irqs_disabled();
fae3fde6 214
63b6da39 215 perf_ctx_lock(cpuctx, task_ctx);
fae3fde6
PZ
216 /*
217 * Since we do the IPI call without holding ctx->lock things can have
218 * changed, double check we hit the task we set out to hit.
fae3fde6
PZ
219 */
220 if (ctx->task) {
63b6da39 221 if (ctx->task != current) {
0da4cf3e 222 ret = -ESRCH;
63b6da39
PZ
223 goto unlock;
224 }
fae3fde6 225
fae3fde6
PZ
226 /*
227 * We only use event_function_call() on established contexts,
228 * and event_function() is only ever called when active (or
229 * rather, we'll have bailed in task_function_call() or the
230 * above ctx->task != current test), therefore we must have
231 * ctx->is_active here.
232 */
233 WARN_ON_ONCE(!ctx->is_active);
234 /*
235 * And since we have ctx->is_active, cpuctx->task_ctx must
236 * match.
237 */
63b6da39
PZ
238 WARN_ON_ONCE(task_ctx != ctx);
239 } else {
240 WARN_ON_ONCE(&cpuctx->ctx != ctx);
fae3fde6 241 }
63b6da39 242
fae3fde6 243 efs->func(event, cpuctx, ctx, efs->data);
63b6da39 244unlock:
fae3fde6
PZ
245 perf_ctx_unlock(cpuctx, task_ctx);
246
63b6da39 247 return ret;
fae3fde6
PZ
248}
249
fae3fde6 250static void event_function_call(struct perf_event *event, event_f func, void *data)
0017960f
PZ
251{
252 struct perf_event_context *ctx = event->ctx;
63b6da39 253 struct task_struct *task = READ_ONCE(ctx->task); /* verified in event_function */
fae3fde6
PZ
254 struct event_function_struct efs = {
255 .event = event,
256 .func = func,
257 .data = data,
258 };
0017960f 259
c97f4736
PZ
260 if (!event->parent) {
261 /*
262 * If this is a !child event, we must hold ctx::mutex to
263 * stabilize the the event->ctx relation. See
264 * perf_event_ctx_lock().
265 */
266 lockdep_assert_held(&ctx->mutex);
267 }
0017960f
PZ
268
269 if (!task) {
fae3fde6 270 cpu_function_call(event->cpu, event_function, &efs);
0017960f
PZ
271 return;
272 }
273
63b6da39
PZ
274 if (task == TASK_TOMBSTONE)
275 return;
276
a096309b 277again:
fae3fde6 278 if (!task_function_call(task, event_function, &efs))
0017960f
PZ
279 return;
280
281 raw_spin_lock_irq(&ctx->lock);
63b6da39
PZ
282 /*
283 * Reload the task pointer, it might have been changed by
284 * a concurrent perf_event_context_sched_out().
285 */
286 task = ctx->task;
a096309b
PZ
287 if (task == TASK_TOMBSTONE) {
288 raw_spin_unlock_irq(&ctx->lock);
289 return;
0017960f 290 }
a096309b
PZ
291 if (ctx->is_active) {
292 raw_spin_unlock_irq(&ctx->lock);
293 goto again;
294 }
295 func(event, NULL, ctx, data);
0017960f
PZ
296 raw_spin_unlock_irq(&ctx->lock);
297}
298
cca20946
PZ
299/*
300 * Similar to event_function_call() + event_function(), but hard assumes IRQs
301 * are already disabled and we're on the right CPU.
302 */
303static void event_function_local(struct perf_event *event, event_f func, void *data)
304{
305 struct perf_event_context *ctx = event->ctx;
306 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
307 struct task_struct *task = READ_ONCE(ctx->task);
308 struct perf_event_context *task_ctx = NULL;
309
16444645 310 lockdep_assert_irqs_disabled();
cca20946
PZ
311
312 if (task) {
313 if (task == TASK_TOMBSTONE)
314 return;
315
316 task_ctx = ctx;
317 }
318
319 perf_ctx_lock(cpuctx, task_ctx);
320
321 task = ctx->task;
322 if (task == TASK_TOMBSTONE)
323 goto unlock;
324
325 if (task) {
326 /*
327 * We must be either inactive or active and the right task,
328 * otherwise we're screwed, since we cannot IPI to somewhere
329 * else.
330 */
331 if (ctx->is_active) {
332 if (WARN_ON_ONCE(task != current))
333 goto unlock;
334
335 if (WARN_ON_ONCE(cpuctx->task_ctx != ctx))
336 goto unlock;
337 }
338 } else {
339 WARN_ON_ONCE(&cpuctx->ctx != ctx);
340 }
341
342 func(event, cpuctx, ctx, data);
343unlock:
344 perf_ctx_unlock(cpuctx, task_ctx);
345}
346
e5d1367f
SE
347#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
348 PERF_FLAG_FD_OUTPUT |\
a21b0b35
YD
349 PERF_FLAG_PID_CGROUP |\
350 PERF_FLAG_FD_CLOEXEC)
e5d1367f 351
bce38cd5
SE
352/*
353 * branch priv levels that need permission checks
354 */
355#define PERF_SAMPLE_BRANCH_PERM_PLM \
356 (PERF_SAMPLE_BRANCH_KERNEL |\
357 PERF_SAMPLE_BRANCH_HV)
358
0b3fcf17
SE
359enum event_type_t {
360 EVENT_FLEXIBLE = 0x1,
361 EVENT_PINNED = 0x2,
3cbaa590 362 EVENT_TIME = 0x4,
487f05e1
AS
363 /* see ctx_resched() for details */
364 EVENT_CPU = 0x8,
0b3fcf17
SE
365 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
366};
367
e5d1367f
SE
368/*
369 * perf_sched_events : >0 events exist
370 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
371 */
9107c89e
PZ
372
373static void perf_sched_delayed(struct work_struct *work);
374DEFINE_STATIC_KEY_FALSE(perf_sched_events);
375static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed);
376static DEFINE_MUTEX(perf_sched_mutex);
377static atomic_t perf_sched_count;
378
e5d1367f 379static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
ba532500 380static DEFINE_PER_CPU(int, perf_sched_cb_usages);
f2fb6bef 381static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events);
e5d1367f 382
cdd6c482
IM
383static atomic_t nr_mmap_events __read_mostly;
384static atomic_t nr_comm_events __read_mostly;
e4222673 385static atomic_t nr_namespaces_events __read_mostly;
cdd6c482 386static atomic_t nr_task_events __read_mostly;
948b26b6 387static atomic_t nr_freq_events __read_mostly;
45ac1403 388static atomic_t nr_switch_events __read_mostly;
76193a94 389static atomic_t nr_ksymbol_events __read_mostly;
6ee52e2a 390static atomic_t nr_bpf_events __read_mostly;
96aaab68 391static atomic_t nr_cgroup_events __read_mostly;
9ee318a7 392
108b02cf
PZ
393static LIST_HEAD(pmus);
394static DEFINE_MUTEX(pmus_lock);
395static struct srcu_struct pmus_srcu;
a63fbed7 396static cpumask_var_t perf_online_mask;
108b02cf 397
0764771d 398/*
cdd6c482 399 * perf event paranoia level:
0fbdea19
IM
400 * -1 - not paranoid at all
401 * 0 - disallow raw tracepoint access for unpriv
cdd6c482 402 * 1 - disallow cpu events for unpriv
0fbdea19 403 * 2 - disallow kernel profiling for unpriv
0764771d 404 */
0161028b 405int sysctl_perf_event_paranoid __read_mostly = 2;
0764771d 406
20443384
FW
407/* Minimum for 512 kiB + 1 user control page */
408int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
df58ab24
PZ
409
410/*
cdd6c482 411 * max perf event sample rate
df58ab24 412 */
14c63f17
DH
413#define DEFAULT_MAX_SAMPLE_RATE 100000
414#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
415#define DEFAULT_CPU_TIME_MAX_PERCENT 25
416
417int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
418
419static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
420static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
421
d9494cb4
PZ
422static int perf_sample_allowed_ns __read_mostly =
423 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
14c63f17 424
18ab2cd3 425static void update_perf_cpu_limits(void)
14c63f17
DH
426{
427 u64 tmp = perf_sample_period_ns;
428
429 tmp *= sysctl_perf_cpu_time_max_percent;
91a612ee
PZ
430 tmp = div_u64(tmp, 100);
431 if (!tmp)
432 tmp = 1;
433
434 WRITE_ONCE(perf_sample_allowed_ns, tmp);
14c63f17 435}
163ec435 436
8d5bce0c 437static bool perf_rotate_context(struct perf_cpu_context *cpuctx);
9e630205 438
163ec435
PZ
439int perf_proc_update_handler(struct ctl_table *table, int write,
440 void __user *buffer, size_t *lenp,
441 loff_t *ppos)
442{
1a51c5da
SE
443 int ret;
444 int perf_cpu = sysctl_perf_cpu_time_max_percent;
ab7fdefb
KL
445 /*
446 * If throttling is disabled don't allow the write:
447 */
1a51c5da 448 if (write && (perf_cpu == 100 || perf_cpu == 0))
ab7fdefb
KL
449 return -EINVAL;
450
1a51c5da
SE
451 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
452 if (ret || !write)
453 return ret;
454
163ec435 455 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
14c63f17
DH
456 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
457 update_perf_cpu_limits();
458
459 return 0;
460}
461
462int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
463
464int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
465 void __user *buffer, size_t *lenp,
466 loff_t *ppos)
467{
1572e45a 468 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
14c63f17
DH
469
470 if (ret || !write)
471 return ret;
472
b303e7c1
PZ
473 if (sysctl_perf_cpu_time_max_percent == 100 ||
474 sysctl_perf_cpu_time_max_percent == 0) {
91a612ee
PZ
475 printk(KERN_WARNING
476 "perf: Dynamic interrupt throttling disabled, can hang your system!\n");
477 WRITE_ONCE(perf_sample_allowed_ns, 0);
478 } else {
479 update_perf_cpu_limits();
480 }
163ec435
PZ
481
482 return 0;
483}
1ccd1549 484
14c63f17
DH
485/*
486 * perf samples are done in some very critical code paths (NMIs).
487 * If they take too much CPU time, the system can lock up and not
488 * get any real work done. This will drop the sample rate when
489 * we detect that events are taking too long.
490 */
491#define NR_ACCUMULATED_SAMPLES 128
d9494cb4 492static DEFINE_PER_CPU(u64, running_sample_length);
14c63f17 493
91a612ee
PZ
494static u64 __report_avg;
495static u64 __report_allowed;
496
6a02ad66 497static void perf_duration_warn(struct irq_work *w)
14c63f17 498{
0d87d7ec 499 printk_ratelimited(KERN_INFO
91a612ee
PZ
500 "perf: interrupt took too long (%lld > %lld), lowering "
501 "kernel.perf_event_max_sample_rate to %d\n",
502 __report_avg, __report_allowed,
503 sysctl_perf_event_sample_rate);
6a02ad66
PZ
504}
505
506static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
507
508void perf_sample_event_took(u64 sample_len_ns)
509{
91a612ee
PZ
510 u64 max_len = READ_ONCE(perf_sample_allowed_ns);
511 u64 running_len;
512 u64 avg_len;
513 u32 max;
14c63f17 514
91a612ee 515 if (max_len == 0)
14c63f17
DH
516 return;
517
91a612ee
PZ
518 /* Decay the counter by 1 average sample. */
519 running_len = __this_cpu_read(running_sample_length);
520 running_len -= running_len/NR_ACCUMULATED_SAMPLES;
521 running_len += sample_len_ns;
522 __this_cpu_write(running_sample_length, running_len);
14c63f17
DH
523
524 /*
91a612ee
PZ
525 * Note: this will be biased artifically low until we have
526 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
14c63f17
DH
527 * from having to maintain a count.
528 */
91a612ee
PZ
529 avg_len = running_len/NR_ACCUMULATED_SAMPLES;
530 if (avg_len <= max_len)
14c63f17
DH
531 return;
532
91a612ee
PZ
533 __report_avg = avg_len;
534 __report_allowed = max_len;
14c63f17 535
91a612ee
PZ
536 /*
537 * Compute a throttle threshold 25% below the current duration.
538 */
539 avg_len += avg_len / 4;
540 max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent;
541 if (avg_len < max)
542 max /= (u32)avg_len;
543 else
544 max = 1;
14c63f17 545
91a612ee
PZ
546 WRITE_ONCE(perf_sample_allowed_ns, avg_len);
547 WRITE_ONCE(max_samples_per_tick, max);
548
549 sysctl_perf_event_sample_rate = max * HZ;
550 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
6a02ad66 551
cd578abb 552 if (!irq_work_queue(&perf_duration_work)) {
91a612ee 553 early_printk("perf: interrupt took too long (%lld > %lld), lowering "
cd578abb 554 "kernel.perf_event_max_sample_rate to %d\n",
91a612ee 555 __report_avg, __report_allowed,
cd578abb
PZ
556 sysctl_perf_event_sample_rate);
557 }
14c63f17
DH
558}
559
cdd6c482 560static atomic64_t perf_event_id;
a96bbc16 561
0b3fcf17
SE
562static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
563 enum event_type_t event_type);
564
565static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
e5d1367f
SE
566 enum event_type_t event_type,
567 struct task_struct *task);
568
569static void update_context_time(struct perf_event_context *ctx);
570static u64 perf_event_time(struct perf_event *event);
0b3fcf17 571
cdd6c482 572void __weak perf_event_print_debug(void) { }
0793a61d 573
84c79910 574extern __weak const char *perf_pmu_name(void)
0793a61d 575{
84c79910 576 return "pmu";
0793a61d
TG
577}
578
0b3fcf17
SE
579static inline u64 perf_clock(void)
580{
581 return local_clock();
582}
583
34f43927
PZ
584static inline u64 perf_event_clock(struct perf_event *event)
585{
586 return event->clock();
587}
588
0d3d73aa
PZ
589/*
590 * State based event timekeeping...
591 *
592 * The basic idea is to use event->state to determine which (if any) time
593 * fields to increment with the current delta. This means we only need to
594 * update timestamps when we change state or when they are explicitly requested
595 * (read).
596 *
597 * Event groups make things a little more complicated, but not terribly so. The
598 * rules for a group are that if the group leader is OFF the entire group is
599 * OFF, irrespecive of what the group member states are. This results in
600 * __perf_effective_state().
601 *
602 * A futher ramification is that when a group leader flips between OFF and
603 * !OFF, we need to update all group member times.
604 *
605 *
606 * NOTE: perf_event_time() is based on the (cgroup) context time, and thus we
607 * need to make sure the relevant context time is updated before we try and
608 * update our timestamps.
609 */
610
611static __always_inline enum perf_event_state
612__perf_effective_state(struct perf_event *event)
613{
614 struct perf_event *leader = event->group_leader;
615
616 if (leader->state <= PERF_EVENT_STATE_OFF)
617 return leader->state;
618
619 return event->state;
620}
621
622static __always_inline void
623__perf_update_times(struct perf_event *event, u64 now, u64 *enabled, u64 *running)
624{
625 enum perf_event_state state = __perf_effective_state(event);
626 u64 delta = now - event->tstamp;
627
628 *enabled = event->total_time_enabled;
629 if (state >= PERF_EVENT_STATE_INACTIVE)
630 *enabled += delta;
631
632 *running = event->total_time_running;
633 if (state >= PERF_EVENT_STATE_ACTIVE)
634 *running += delta;
635}
636
637static void perf_event_update_time(struct perf_event *event)
638{
639 u64 now = perf_event_time(event);
640
641 __perf_update_times(event, now, &event->total_time_enabled,
642 &event->total_time_running);
643 event->tstamp = now;
644}
645
646static void perf_event_update_sibling_time(struct perf_event *leader)
647{
648 struct perf_event *sibling;
649
edb39592 650 for_each_sibling_event(sibling, leader)
0d3d73aa
PZ
651 perf_event_update_time(sibling);
652}
653
654static void
655perf_event_set_state(struct perf_event *event, enum perf_event_state state)
656{
657 if (event->state == state)
658 return;
659
660 perf_event_update_time(event);
661 /*
662 * If a group leader gets enabled/disabled all its siblings
663 * are affected too.
664 */
665 if ((event->state < 0) ^ (state < 0))
666 perf_event_update_sibling_time(event);
667
668 WRITE_ONCE(event->state, state);
669}
670
e5d1367f
SE
671#ifdef CONFIG_CGROUP_PERF
672
e5d1367f
SE
673static inline bool
674perf_cgroup_match(struct perf_event *event)
675{
676 struct perf_event_context *ctx = event->ctx;
677 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
678
ef824fa1
TH
679 /* @event doesn't care about cgroup */
680 if (!event->cgrp)
681 return true;
682
683 /* wants specific cgroup scope but @cpuctx isn't associated with any */
684 if (!cpuctx->cgrp)
685 return false;
686
687 /*
688 * Cgroup scoping is recursive. An event enabled for a cgroup is
689 * also enabled for all its descendant cgroups. If @cpuctx's
690 * cgroup is a descendant of @event's (the test covers identity
691 * case), it's a match.
692 */
693 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
694 event->cgrp->css.cgroup);
e5d1367f
SE
695}
696
e5d1367f
SE
697static inline void perf_detach_cgroup(struct perf_event *event)
698{
4e2ba650 699 css_put(&event->cgrp->css);
e5d1367f
SE
700 event->cgrp = NULL;
701}
702
703static inline int is_cgroup_event(struct perf_event *event)
704{
705 return event->cgrp != NULL;
706}
707
708static inline u64 perf_cgroup_event_time(struct perf_event *event)
709{
710 struct perf_cgroup_info *t;
711
712 t = per_cpu_ptr(event->cgrp->info, event->cpu);
713 return t->time;
714}
715
716static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
717{
718 struct perf_cgroup_info *info;
719 u64 now;
720
721 now = perf_clock();
722
723 info = this_cpu_ptr(cgrp->info);
724
725 info->time += now - info->timestamp;
726 info->timestamp = now;
727}
728
729static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
730{
c917e0f2
SL
731 struct perf_cgroup *cgrp = cpuctx->cgrp;
732 struct cgroup_subsys_state *css;
733
734 if (cgrp) {
735 for (css = &cgrp->css; css; css = css->parent) {
736 cgrp = container_of(css, struct perf_cgroup, css);
737 __update_cgrp_time(cgrp);
738 }
739 }
e5d1367f
SE
740}
741
742static inline void update_cgrp_time_from_event(struct perf_event *event)
743{
3f7cce3c
SE
744 struct perf_cgroup *cgrp;
745
e5d1367f 746 /*
3f7cce3c
SE
747 * ensure we access cgroup data only when needed and
748 * when we know the cgroup is pinned (css_get)
e5d1367f 749 */
3f7cce3c 750 if (!is_cgroup_event(event))
e5d1367f
SE
751 return;
752
614e4c4e 753 cgrp = perf_cgroup_from_task(current, event->ctx);
3f7cce3c
SE
754 /*
755 * Do not update time when cgroup is not active
756 */
28fa741c 757 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
3f7cce3c 758 __update_cgrp_time(event->cgrp);
e5d1367f
SE
759}
760
761static inline void
3f7cce3c
SE
762perf_cgroup_set_timestamp(struct task_struct *task,
763 struct perf_event_context *ctx)
e5d1367f
SE
764{
765 struct perf_cgroup *cgrp;
766 struct perf_cgroup_info *info;
c917e0f2 767 struct cgroup_subsys_state *css;
e5d1367f 768
3f7cce3c
SE
769 /*
770 * ctx->lock held by caller
771 * ensure we do not access cgroup data
772 * unless we have the cgroup pinned (css_get)
773 */
774 if (!task || !ctx->nr_cgroups)
e5d1367f
SE
775 return;
776
614e4c4e 777 cgrp = perf_cgroup_from_task(task, ctx);
c917e0f2
SL
778
779 for (css = &cgrp->css; css; css = css->parent) {
780 cgrp = container_of(css, struct perf_cgroup, css);
781 info = this_cpu_ptr(cgrp->info);
782 info->timestamp = ctx->timestamp;
783 }
e5d1367f
SE
784}
785
058fe1c0
DCC
786static DEFINE_PER_CPU(struct list_head, cgrp_cpuctx_list);
787
e5d1367f
SE
788#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
789#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
790
791/*
792 * reschedule events based on the cgroup constraint of task.
793 *
794 * mode SWOUT : schedule out everything
795 * mode SWIN : schedule in based on cgroup for next
796 */
18ab2cd3 797static void perf_cgroup_switch(struct task_struct *task, int mode)
e5d1367f
SE
798{
799 struct perf_cpu_context *cpuctx;
058fe1c0 800 struct list_head *list;
e5d1367f
SE
801 unsigned long flags;
802
803 /*
058fe1c0
DCC
804 * Disable interrupts and preemption to avoid this CPU's
805 * cgrp_cpuctx_entry to change under us.
e5d1367f
SE
806 */
807 local_irq_save(flags);
808
058fe1c0
DCC
809 list = this_cpu_ptr(&cgrp_cpuctx_list);
810 list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) {
811 WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0);
e5d1367f 812
058fe1c0
DCC
813 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
814 perf_pmu_disable(cpuctx->ctx.pmu);
e5d1367f 815
058fe1c0
DCC
816 if (mode & PERF_CGROUP_SWOUT) {
817 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
818 /*
819 * must not be done before ctxswout due
820 * to event_filter_match() in event_sched_out()
821 */
822 cpuctx->cgrp = NULL;
823 }
e5d1367f 824
058fe1c0
DCC
825 if (mode & PERF_CGROUP_SWIN) {
826 WARN_ON_ONCE(cpuctx->cgrp);
827 /*
828 * set cgrp before ctxsw in to allow
829 * event_filter_match() to not have to pass
830 * task around
831 * we pass the cpuctx->ctx to perf_cgroup_from_task()
832 * because cgorup events are only per-cpu
833 */
834 cpuctx->cgrp = perf_cgroup_from_task(task,
835 &cpuctx->ctx);
836 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
e5d1367f 837 }
058fe1c0
DCC
838 perf_pmu_enable(cpuctx->ctx.pmu);
839 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
e5d1367f
SE
840 }
841
e5d1367f
SE
842 local_irq_restore(flags);
843}
844
a8d757ef
SE
845static inline void perf_cgroup_sched_out(struct task_struct *task,
846 struct task_struct *next)
e5d1367f 847{
a8d757ef
SE
848 struct perf_cgroup *cgrp1;
849 struct perf_cgroup *cgrp2 = NULL;
850
ddaaf4e2 851 rcu_read_lock();
a8d757ef
SE
852 /*
853 * we come here when we know perf_cgroup_events > 0
614e4c4e
SE
854 * we do not need to pass the ctx here because we know
855 * we are holding the rcu lock
a8d757ef 856 */
614e4c4e 857 cgrp1 = perf_cgroup_from_task(task, NULL);
70a01657 858 cgrp2 = perf_cgroup_from_task(next, NULL);
a8d757ef
SE
859
860 /*
861 * only schedule out current cgroup events if we know
862 * that we are switching to a different cgroup. Otherwise,
863 * do no touch the cgroup events.
864 */
865 if (cgrp1 != cgrp2)
866 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
ddaaf4e2
SE
867
868 rcu_read_unlock();
e5d1367f
SE
869}
870
a8d757ef
SE
871static inline void perf_cgroup_sched_in(struct task_struct *prev,
872 struct task_struct *task)
e5d1367f 873{
a8d757ef
SE
874 struct perf_cgroup *cgrp1;
875 struct perf_cgroup *cgrp2 = NULL;
876
ddaaf4e2 877 rcu_read_lock();
a8d757ef
SE
878 /*
879 * we come here when we know perf_cgroup_events > 0
614e4c4e
SE
880 * we do not need to pass the ctx here because we know
881 * we are holding the rcu lock
a8d757ef 882 */
614e4c4e 883 cgrp1 = perf_cgroup_from_task(task, NULL);
614e4c4e 884 cgrp2 = perf_cgroup_from_task(prev, NULL);
a8d757ef
SE
885
886 /*
887 * only need to schedule in cgroup events if we are changing
888 * cgroup during ctxsw. Cgroup events were not scheduled
889 * out of ctxsw out if that was not the case.
890 */
891 if (cgrp1 != cgrp2)
892 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
ddaaf4e2
SE
893
894 rcu_read_unlock();
e5d1367f
SE
895}
896
c2283c93
IR
897static int perf_cgroup_ensure_storage(struct perf_event *event,
898 struct cgroup_subsys_state *css)
899{
900 struct perf_cpu_context *cpuctx;
901 struct perf_event **storage;
902 int cpu, heap_size, ret = 0;
903
904 /*
905 * Allow storage to have sufficent space for an iterator for each
906 * possibly nested cgroup plus an iterator for events with no cgroup.
907 */
908 for (heap_size = 1; css; css = css->parent)
909 heap_size++;
910
911 for_each_possible_cpu(cpu) {
912 cpuctx = per_cpu_ptr(event->pmu->pmu_cpu_context, cpu);
913 if (heap_size <= cpuctx->heap_size)
914 continue;
915
916 storage = kmalloc_node(heap_size * sizeof(struct perf_event *),
917 GFP_KERNEL, cpu_to_node(cpu));
918 if (!storage) {
919 ret = -ENOMEM;
920 break;
921 }
922
923 raw_spin_lock_irq(&cpuctx->ctx.lock);
924 if (cpuctx->heap_size < heap_size) {
925 swap(cpuctx->heap, storage);
926 if (storage == cpuctx->heap_default)
927 storage = NULL;
928 cpuctx->heap_size = heap_size;
929 }
930 raw_spin_unlock_irq(&cpuctx->ctx.lock);
931
932 kfree(storage);
933 }
934
935 return ret;
936}
937
e5d1367f
SE
938static inline int perf_cgroup_connect(int fd, struct perf_event *event,
939 struct perf_event_attr *attr,
940 struct perf_event *group_leader)
941{
942 struct perf_cgroup *cgrp;
943 struct cgroup_subsys_state *css;
2903ff01
AV
944 struct fd f = fdget(fd);
945 int ret = 0;
e5d1367f 946
2903ff01 947 if (!f.file)
e5d1367f
SE
948 return -EBADF;
949
b583043e 950 css = css_tryget_online_from_dir(f.file->f_path.dentry,
ec903c0c 951 &perf_event_cgrp_subsys);
3db272c0
LZ
952 if (IS_ERR(css)) {
953 ret = PTR_ERR(css);
954 goto out;
955 }
e5d1367f 956
c2283c93
IR
957 ret = perf_cgroup_ensure_storage(event, css);
958 if (ret)
959 goto out;
960
e5d1367f
SE
961 cgrp = container_of(css, struct perf_cgroup, css);
962 event->cgrp = cgrp;
963
964 /*
965 * all events in a group must monitor
966 * the same cgroup because a task belongs
967 * to only one perf cgroup at a time
968 */
969 if (group_leader && group_leader->cgrp != cgrp) {
970 perf_detach_cgroup(event);
971 ret = -EINVAL;
e5d1367f 972 }
3db272c0 973out:
2903ff01 974 fdput(f);
e5d1367f
SE
975 return ret;
976}
977
978static inline void
979perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
980{
981 struct perf_cgroup_info *t;
982 t = per_cpu_ptr(event->cgrp->info, event->cpu);
983 event->shadow_ctx_time = now - t->timestamp;
984}
985
db4a8356 986static inline void
33238c50 987perf_cgroup_event_enable(struct perf_event *event, struct perf_event_context *ctx)
db4a8356
DCC
988{
989 struct perf_cpu_context *cpuctx;
990
991 if (!is_cgroup_event(event))
992 return;
993
db4a8356
DCC
994 /*
995 * Because cgroup events are always per-cpu events,
07c59729 996 * @ctx == &cpuctx->ctx.
db4a8356 997 */
07c59729 998 cpuctx = container_of(ctx, struct perf_cpu_context, ctx);
33801b94 999
1000 /*
1001 * Since setting cpuctx->cgrp is conditional on the current @cgrp
1002 * matching the event's cgroup, we must do this for every new event,
1003 * because if the first would mismatch, the second would not try again
1004 * and we would leave cpuctx->cgrp unset.
1005 */
33238c50 1006 if (ctx->is_active && !cpuctx->cgrp) {
be96b316
TH
1007 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
1008
be96b316
TH
1009 if (cgroup_is_descendant(cgrp->css.cgroup, event->cgrp->css.cgroup))
1010 cpuctx->cgrp = cgrp;
058fe1c0 1011 }
33801b94 1012
33238c50 1013 if (ctx->nr_cgroups++)
33801b94 1014 return;
33238c50
PZ
1015
1016 list_add(&cpuctx->cgrp_cpuctx_entry,
1017 per_cpu_ptr(&cgrp_cpuctx_list, event->cpu));
1018}
1019
1020static inline void
1021perf_cgroup_event_disable(struct perf_event *event, struct perf_event_context *ctx)
1022{
1023 struct perf_cpu_context *cpuctx;
1024
1025 if (!is_cgroup_event(event))
33801b94 1026 return;
1027
33238c50
PZ
1028 /*
1029 * Because cgroup events are always per-cpu events,
1030 * @ctx == &cpuctx->ctx.
1031 */
1032 cpuctx = container_of(ctx, struct perf_cpu_context, ctx);
1033
1034 if (--ctx->nr_cgroups)
1035 return;
1036
1037 if (ctx->is_active && cpuctx->cgrp)
33801b94 1038 cpuctx->cgrp = NULL;
1039
33238c50 1040 list_del(&cpuctx->cgrp_cpuctx_entry);
db4a8356
DCC
1041}
1042
e5d1367f
SE
1043#else /* !CONFIG_CGROUP_PERF */
1044
1045static inline bool
1046perf_cgroup_match(struct perf_event *event)
1047{
1048 return true;
1049}
1050
1051static inline void perf_detach_cgroup(struct perf_event *event)
1052{}
1053
1054static inline int is_cgroup_event(struct perf_event *event)
1055{
1056 return 0;
1057}
1058
e5d1367f
SE
1059static inline void update_cgrp_time_from_event(struct perf_event *event)
1060{
1061}
1062
1063static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
1064{
1065}
1066
a8d757ef
SE
1067static inline void perf_cgroup_sched_out(struct task_struct *task,
1068 struct task_struct *next)
e5d1367f
SE
1069{
1070}
1071
a8d757ef
SE
1072static inline void perf_cgroup_sched_in(struct task_struct *prev,
1073 struct task_struct *task)
e5d1367f
SE
1074{
1075}
1076
1077static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
1078 struct perf_event_attr *attr,
1079 struct perf_event *group_leader)
1080{
1081 return -EINVAL;
1082}
1083
1084static inline void
3f7cce3c
SE
1085perf_cgroup_set_timestamp(struct task_struct *task,
1086 struct perf_event_context *ctx)
e5d1367f
SE
1087{
1088}
1089
d00dbd29 1090static inline void
e5d1367f
SE
1091perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
1092{
1093}
1094
1095static inline void
1096perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
1097{
1098}
1099
1100static inline u64 perf_cgroup_event_time(struct perf_event *event)
1101{
1102 return 0;
1103}
1104
db4a8356 1105static inline void
33238c50 1106perf_cgroup_event_enable(struct perf_event *event, struct perf_event_context *ctx)
db4a8356
DCC
1107{
1108}
1109
33238c50
PZ
1110static inline void
1111perf_cgroup_event_disable(struct perf_event *event, struct perf_event_context *ctx)
1112{
1113}
e5d1367f
SE
1114#endif
1115
9e630205
SE
1116/*
1117 * set default to be dependent on timer tick just
1118 * like original code
1119 */
1120#define PERF_CPU_HRTIMER (1000 / HZ)
1121/*
8a1115ff 1122 * function must be called with interrupts disabled
9e630205 1123 */
272325c4 1124static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
9e630205
SE
1125{
1126 struct perf_cpu_context *cpuctx;
8d5bce0c 1127 bool rotations;
9e630205 1128
16444645 1129 lockdep_assert_irqs_disabled();
9e630205
SE
1130
1131 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
9e630205
SE
1132 rotations = perf_rotate_context(cpuctx);
1133
4cfafd30
PZ
1134 raw_spin_lock(&cpuctx->hrtimer_lock);
1135 if (rotations)
9e630205 1136 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
4cfafd30
PZ
1137 else
1138 cpuctx->hrtimer_active = 0;
1139 raw_spin_unlock(&cpuctx->hrtimer_lock);
9e630205 1140
4cfafd30 1141 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
9e630205
SE
1142}
1143
272325c4 1144static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
9e630205 1145{
272325c4 1146 struct hrtimer *timer = &cpuctx->hrtimer;
9e630205 1147 struct pmu *pmu = cpuctx->ctx.pmu;
272325c4 1148 u64 interval;
9e630205
SE
1149
1150 /* no multiplexing needed for SW PMU */
1151 if (pmu->task_ctx_nr == perf_sw_context)
1152 return;
1153
62b85639
SE
1154 /*
1155 * check default is sane, if not set then force to
1156 * default interval (1/tick)
1157 */
272325c4
PZ
1158 interval = pmu->hrtimer_interval_ms;
1159 if (interval < 1)
1160 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
62b85639 1161
272325c4 1162 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
9e630205 1163
4cfafd30 1164 raw_spin_lock_init(&cpuctx->hrtimer_lock);
30f9028b 1165 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED_HARD);
272325c4 1166 timer->function = perf_mux_hrtimer_handler;
9e630205
SE
1167}
1168
272325c4 1169static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
9e630205 1170{
272325c4 1171 struct hrtimer *timer = &cpuctx->hrtimer;
9e630205 1172 struct pmu *pmu = cpuctx->ctx.pmu;
4cfafd30 1173 unsigned long flags;
9e630205
SE
1174
1175 /* not for SW PMU */
1176 if (pmu->task_ctx_nr == perf_sw_context)
272325c4 1177 return 0;
9e630205 1178
4cfafd30
PZ
1179 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
1180 if (!cpuctx->hrtimer_active) {
1181 cpuctx->hrtimer_active = 1;
1182 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
30f9028b 1183 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED_HARD);
4cfafd30
PZ
1184 }
1185 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
9e630205 1186
272325c4 1187 return 0;
9e630205
SE
1188}
1189
33696fc0 1190void perf_pmu_disable(struct pmu *pmu)
9e35ad38 1191{
33696fc0
PZ
1192 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1193 if (!(*count)++)
1194 pmu->pmu_disable(pmu);
9e35ad38 1195}
9e35ad38 1196
33696fc0 1197void perf_pmu_enable(struct pmu *pmu)
9e35ad38 1198{
33696fc0
PZ
1199 int *count = this_cpu_ptr(pmu->pmu_disable_count);
1200 if (!--(*count))
1201 pmu->pmu_enable(pmu);
9e35ad38 1202}
9e35ad38 1203
2fde4f94 1204static DEFINE_PER_CPU(struct list_head, active_ctx_list);
e9d2b064
PZ
1205
1206/*
2fde4f94
MR
1207 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
1208 * perf_event_task_tick() are fully serialized because they're strictly cpu
1209 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
1210 * disabled, while perf_event_task_tick is called from IRQ context.
e9d2b064 1211 */
2fde4f94 1212static void perf_event_ctx_activate(struct perf_event_context *ctx)
9e35ad38 1213{
2fde4f94 1214 struct list_head *head = this_cpu_ptr(&active_ctx_list);
b5ab4cd5 1215
16444645 1216 lockdep_assert_irqs_disabled();
b5ab4cd5 1217
2fde4f94
MR
1218 WARN_ON(!list_empty(&ctx->active_ctx_list));
1219
1220 list_add(&ctx->active_ctx_list, head);
1221}
1222
1223static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
1224{
16444645 1225 lockdep_assert_irqs_disabled();
2fde4f94
MR
1226
1227 WARN_ON(list_empty(&ctx->active_ctx_list));
1228
1229 list_del_init(&ctx->active_ctx_list);
9e35ad38 1230}
9e35ad38 1231
cdd6c482 1232static void get_ctx(struct perf_event_context *ctx)
a63eaf34 1233{
8c94abbb 1234 refcount_inc(&ctx->refcount);
a63eaf34
PM
1235}
1236
4af57ef2
YZ
1237static void free_ctx(struct rcu_head *head)
1238{
1239 struct perf_event_context *ctx;
1240
1241 ctx = container_of(head, struct perf_event_context, rcu_head);
1242 kfree(ctx->task_ctx_data);
1243 kfree(ctx);
1244}
1245
cdd6c482 1246static void put_ctx(struct perf_event_context *ctx)
a63eaf34 1247{
8c94abbb 1248 if (refcount_dec_and_test(&ctx->refcount)) {
564c2b21
PM
1249 if (ctx->parent_ctx)
1250 put_ctx(ctx->parent_ctx);
63b6da39 1251 if (ctx->task && ctx->task != TASK_TOMBSTONE)
c93f7669 1252 put_task_struct(ctx->task);
4af57ef2 1253 call_rcu(&ctx->rcu_head, free_ctx);
564c2b21 1254 }
a63eaf34
PM
1255}
1256
f63a8daa
PZ
1257/*
1258 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
1259 * perf_pmu_migrate_context() we need some magic.
1260 *
1261 * Those places that change perf_event::ctx will hold both
1262 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
1263 *
8b10c5e2
PZ
1264 * Lock ordering is by mutex address. There are two other sites where
1265 * perf_event_context::mutex nests and those are:
1266 *
1267 * - perf_event_exit_task_context() [ child , 0 ]
8ba289b8
PZ
1268 * perf_event_exit_event()
1269 * put_event() [ parent, 1 ]
8b10c5e2
PZ
1270 *
1271 * - perf_event_init_context() [ parent, 0 ]
1272 * inherit_task_group()
1273 * inherit_group()
1274 * inherit_event()
1275 * perf_event_alloc()
1276 * perf_init_event()
1277 * perf_try_init_event() [ child , 1 ]
1278 *
1279 * While it appears there is an obvious deadlock here -- the parent and child
1280 * nesting levels are inverted between the two. This is in fact safe because
1281 * life-time rules separate them. That is an exiting task cannot fork, and a
1282 * spawning task cannot (yet) exit.
1283 *
1284 * But remember that that these are parent<->child context relations, and
1285 * migration does not affect children, therefore these two orderings should not
1286 * interact.
f63a8daa
PZ
1287 *
1288 * The change in perf_event::ctx does not affect children (as claimed above)
1289 * because the sys_perf_event_open() case will install a new event and break
1290 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
1291 * concerned with cpuctx and that doesn't have children.
1292 *
1293 * The places that change perf_event::ctx will issue:
1294 *
1295 * perf_remove_from_context();
1296 * synchronize_rcu();
1297 * perf_install_in_context();
1298 *
1299 * to affect the change. The remove_from_context() + synchronize_rcu() should
1300 * quiesce the event, after which we can install it in the new location. This
1301 * means that only external vectors (perf_fops, prctl) can perturb the event
1302 * while in transit. Therefore all such accessors should also acquire
1303 * perf_event_context::mutex to serialize against this.
1304 *
1305 * However; because event->ctx can change while we're waiting to acquire
1306 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
1307 * function.
1308 *
1309 * Lock order:
69143038 1310 * exec_update_mutex
f63a8daa
PZ
1311 * task_struct::perf_event_mutex
1312 * perf_event_context::mutex
f63a8daa 1313 * perf_event::child_mutex;
07c4a776 1314 * perf_event_context::lock
f63a8daa
PZ
1315 * perf_event::mmap_mutex
1316 * mmap_sem
18736eef 1317 * perf_addr_filters_head::lock
82d94856
PZ
1318 *
1319 * cpu_hotplug_lock
1320 * pmus_lock
1321 * cpuctx->mutex / perf_event_context::mutex
f63a8daa 1322 */
a83fe28e
PZ
1323static struct perf_event_context *
1324perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
f63a8daa
PZ
1325{
1326 struct perf_event_context *ctx;
1327
1328again:
1329 rcu_read_lock();
6aa7de05 1330 ctx = READ_ONCE(event->ctx);
8c94abbb 1331 if (!refcount_inc_not_zero(&ctx->refcount)) {
f63a8daa
PZ
1332 rcu_read_unlock();
1333 goto again;
1334 }
1335 rcu_read_unlock();
1336
a83fe28e 1337 mutex_lock_nested(&ctx->mutex, nesting);
f63a8daa
PZ
1338 if (event->ctx != ctx) {
1339 mutex_unlock(&ctx->mutex);
1340 put_ctx(ctx);
1341 goto again;
1342 }
1343
1344 return ctx;
1345}
1346
a83fe28e
PZ
1347static inline struct perf_event_context *
1348perf_event_ctx_lock(struct perf_event *event)
1349{
1350 return perf_event_ctx_lock_nested(event, 0);
1351}
1352
f63a8daa
PZ
1353static void perf_event_ctx_unlock(struct perf_event *event,
1354 struct perf_event_context *ctx)
1355{
1356 mutex_unlock(&ctx->mutex);
1357 put_ctx(ctx);
1358}
1359
211de6eb
PZ
1360/*
1361 * This must be done under the ctx->lock, such as to serialize against
1362 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1363 * calling scheduler related locks and ctx->lock nests inside those.
1364 */
1365static __must_check struct perf_event_context *
1366unclone_ctx(struct perf_event_context *ctx)
71a851b4 1367{
211de6eb
PZ
1368 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1369
1370 lockdep_assert_held(&ctx->lock);
1371
1372 if (parent_ctx)
71a851b4 1373 ctx->parent_ctx = NULL;
5a3126d4 1374 ctx->generation++;
211de6eb
PZ
1375
1376 return parent_ctx;
71a851b4
PZ
1377}
1378
1d953111
ON
1379static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p,
1380 enum pid_type type)
6844c09d 1381{
1d953111 1382 u32 nr;
6844c09d
ACM
1383 /*
1384 * only top level events have the pid namespace they were created in
1385 */
1386 if (event->parent)
1387 event = event->parent;
1388
1d953111
ON
1389 nr = __task_pid_nr_ns(p, type, event->ns);
1390 /* avoid -1 if it is idle thread or runs in another ns */
1391 if (!nr && !pid_alive(p))
1392 nr = -1;
1393 return nr;
6844c09d
ACM
1394}
1395
1d953111 1396static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
6844c09d 1397{
6883f81a 1398 return perf_event_pid_type(event, p, PIDTYPE_TGID);
1d953111 1399}
6844c09d 1400
1d953111
ON
1401static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1402{
1403 return perf_event_pid_type(event, p, PIDTYPE_PID);
6844c09d
ACM
1404}
1405
7f453c24 1406/*
cdd6c482 1407 * If we inherit events we want to return the parent event id
7f453c24
PZ
1408 * to userspace.
1409 */
cdd6c482 1410static u64 primary_event_id(struct perf_event *event)
7f453c24 1411{
cdd6c482 1412 u64 id = event->id;
7f453c24 1413
cdd6c482
IM
1414 if (event->parent)
1415 id = event->parent->id;
7f453c24
PZ
1416
1417 return id;
1418}
1419
25346b93 1420/*
cdd6c482 1421 * Get the perf_event_context for a task and lock it.
63b6da39 1422 *
25346b93
PM
1423 * This has to cope with with the fact that until it is locked,
1424 * the context could get moved to another task.
1425 */
cdd6c482 1426static struct perf_event_context *
8dc85d54 1427perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
25346b93 1428{
cdd6c482 1429 struct perf_event_context *ctx;
25346b93 1430
9ed6060d 1431retry:
058ebd0e
PZ
1432 /*
1433 * One of the few rules of preemptible RCU is that one cannot do
1434 * rcu_read_unlock() while holding a scheduler (or nested) lock when
2fd59077 1435 * part of the read side critical section was irqs-enabled -- see
058ebd0e
PZ
1436 * rcu_read_unlock_special().
1437 *
1438 * Since ctx->lock nests under rq->lock we must ensure the entire read
2fd59077 1439 * side critical section has interrupts disabled.
058ebd0e 1440 */
2fd59077 1441 local_irq_save(*flags);
058ebd0e 1442 rcu_read_lock();
8dc85d54 1443 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
25346b93
PM
1444 if (ctx) {
1445 /*
1446 * If this context is a clone of another, it might
1447 * get swapped for another underneath us by
cdd6c482 1448 * perf_event_task_sched_out, though the
25346b93
PM
1449 * rcu_read_lock() protects us from any context
1450 * getting freed. Lock the context and check if it
1451 * got swapped before we could get the lock, and retry
1452 * if so. If we locked the right context, then it
1453 * can't get swapped on us any more.
1454 */
2fd59077 1455 raw_spin_lock(&ctx->lock);
8dc85d54 1456 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
2fd59077 1457 raw_spin_unlock(&ctx->lock);
058ebd0e 1458 rcu_read_unlock();
2fd59077 1459 local_irq_restore(*flags);
25346b93
PM
1460 goto retry;
1461 }
b49a9e7e 1462
63b6da39 1463 if (ctx->task == TASK_TOMBSTONE ||
8c94abbb 1464 !refcount_inc_not_zero(&ctx->refcount)) {
2fd59077 1465 raw_spin_unlock(&ctx->lock);
b49a9e7e 1466 ctx = NULL;
828b6f0e
PZ
1467 } else {
1468 WARN_ON_ONCE(ctx->task != task);
b49a9e7e 1469 }
25346b93
PM
1470 }
1471 rcu_read_unlock();
2fd59077
PM
1472 if (!ctx)
1473 local_irq_restore(*flags);
25346b93
PM
1474 return ctx;
1475}
1476
1477/*
1478 * Get the context for a task and increment its pin_count so it
1479 * can't get swapped to another task. This also increments its
1480 * reference count so that the context can't get freed.
1481 */
8dc85d54
PZ
1482static struct perf_event_context *
1483perf_pin_task_context(struct task_struct *task, int ctxn)
25346b93 1484{
cdd6c482 1485 struct perf_event_context *ctx;
25346b93
PM
1486 unsigned long flags;
1487
8dc85d54 1488 ctx = perf_lock_task_context(task, ctxn, &flags);
25346b93
PM
1489 if (ctx) {
1490 ++ctx->pin_count;
e625cce1 1491 raw_spin_unlock_irqrestore(&ctx->lock, flags);
25346b93
PM
1492 }
1493 return ctx;
1494}
1495
cdd6c482 1496static void perf_unpin_context(struct perf_event_context *ctx)
25346b93
PM
1497{
1498 unsigned long flags;
1499
e625cce1 1500 raw_spin_lock_irqsave(&ctx->lock, flags);
25346b93 1501 --ctx->pin_count;
e625cce1 1502 raw_spin_unlock_irqrestore(&ctx->lock, flags);
25346b93
PM
1503}
1504
f67218c3
PZ
1505/*
1506 * Update the record of the current time in a context.
1507 */
1508static void update_context_time(struct perf_event_context *ctx)
1509{
1510 u64 now = perf_clock();
1511
1512 ctx->time += now - ctx->timestamp;
1513 ctx->timestamp = now;
1514}
1515
4158755d
SE
1516static u64 perf_event_time(struct perf_event *event)
1517{
1518 struct perf_event_context *ctx = event->ctx;
e5d1367f
SE
1519
1520 if (is_cgroup_event(event))
1521 return perf_cgroup_event_time(event);
1522
4158755d
SE
1523 return ctx ? ctx->time : 0;
1524}
1525
487f05e1
AS
1526static enum event_type_t get_event_type(struct perf_event *event)
1527{
1528 struct perf_event_context *ctx = event->ctx;
1529 enum event_type_t event_type;
1530
1531 lockdep_assert_held(&ctx->lock);
1532
3bda69c1
AS
1533 /*
1534 * It's 'group type', really, because if our group leader is
1535 * pinned, so are we.
1536 */
1537 if (event->group_leader != event)
1538 event = event->group_leader;
1539
487f05e1
AS
1540 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE;
1541 if (!ctx->task)
1542 event_type |= EVENT_CPU;
1543
1544 return event_type;
1545}
1546
8e1a2031 1547/*
161c85fa 1548 * Helper function to initialize event group nodes.
8e1a2031 1549 */
161c85fa 1550static void init_event_group(struct perf_event *event)
8e1a2031
AB
1551{
1552 RB_CLEAR_NODE(&event->group_node);
1553 event->group_index = 0;
1554}
1555
1556/*
1557 * Extract pinned or flexible groups from the context
161c85fa 1558 * based on event attrs bits.
8e1a2031
AB
1559 */
1560static struct perf_event_groups *
1561get_event_groups(struct perf_event *event, struct perf_event_context *ctx)
889ff015
FW
1562{
1563 if (event->attr.pinned)
1564 return &ctx->pinned_groups;
1565 else
1566 return &ctx->flexible_groups;
1567}
1568
8e1a2031 1569/*
161c85fa 1570 * Helper function to initializes perf_event_group trees.
8e1a2031 1571 */
161c85fa 1572static void perf_event_groups_init(struct perf_event_groups *groups)
8e1a2031
AB
1573{
1574 groups->tree = RB_ROOT;
1575 groups->index = 0;
1576}
1577
1578/*
1579 * Compare function for event groups;
161c85fa
PZ
1580 *
1581 * Implements complex key that first sorts by CPU and then by virtual index
1582 * which provides ordering when rotating groups for the same CPU.
8e1a2031 1583 */
161c85fa
PZ
1584static bool
1585perf_event_groups_less(struct perf_event *left, struct perf_event *right)
8e1a2031 1586{
161c85fa
PZ
1587 if (left->cpu < right->cpu)
1588 return true;
1589 if (left->cpu > right->cpu)
1590 return false;
1591
95ed6c70
IR
1592#ifdef CONFIG_CGROUP_PERF
1593 if (left->cgrp != right->cgrp) {
1594 if (!left->cgrp || !left->cgrp->css.cgroup) {
1595 /*
1596 * Left has no cgroup but right does, no cgroups come
1597 * first.
1598 */
1599 return true;
1600 }
a6763625 1601 if (!right->cgrp || !right->cgrp->css.cgroup) {
95ed6c70
IR
1602 /*
1603 * Right has no cgroup but left does, no cgroups come
1604 * first.
1605 */
1606 return false;
1607 }
1608 /* Two dissimilar cgroups, order by id. */
1609 if (left->cgrp->css.cgroup->kn->id < right->cgrp->css.cgroup->kn->id)
1610 return true;
1611
1612 return false;
1613 }
1614#endif
1615
161c85fa
PZ
1616 if (left->group_index < right->group_index)
1617 return true;
1618 if (left->group_index > right->group_index)
1619 return false;
1620
1621 return false;
8e1a2031
AB
1622}
1623
1624/*
161c85fa
PZ
1625 * Insert @event into @groups' tree; using {@event->cpu, ++@groups->index} for
1626 * key (see perf_event_groups_less). This places it last inside the CPU
1627 * subtree.
8e1a2031
AB
1628 */
1629static void
1630perf_event_groups_insert(struct perf_event_groups *groups,
161c85fa 1631 struct perf_event *event)
8e1a2031
AB
1632{
1633 struct perf_event *node_event;
1634 struct rb_node *parent;
1635 struct rb_node **node;
1636
1637 event->group_index = ++groups->index;
1638
1639 node = &groups->tree.rb_node;
1640 parent = *node;
1641
1642 while (*node) {
1643 parent = *node;
161c85fa 1644 node_event = container_of(*node, struct perf_event, group_node);
8e1a2031
AB
1645
1646 if (perf_event_groups_less(event, node_event))
1647 node = &parent->rb_left;
1648 else
1649 node = &parent->rb_right;
1650 }
1651
1652 rb_link_node(&event->group_node, parent, node);
1653 rb_insert_color(&event->group_node, &groups->tree);
1654}
1655
1656/*
161c85fa 1657 * Helper function to insert event into the pinned or flexible groups.
8e1a2031
AB
1658 */
1659static void
1660add_event_to_groups(struct perf_event *event, struct perf_event_context *ctx)
1661{
1662 struct perf_event_groups *groups;
1663
1664 groups = get_event_groups(event, ctx);
1665 perf_event_groups_insert(groups, event);
1666}
1667
1668/*
161c85fa 1669 * Delete a group from a tree.
8e1a2031
AB
1670 */
1671static void
1672perf_event_groups_delete(struct perf_event_groups *groups,
161c85fa 1673 struct perf_event *event)
8e1a2031 1674{
161c85fa
PZ
1675 WARN_ON_ONCE(RB_EMPTY_NODE(&event->group_node) ||
1676 RB_EMPTY_ROOT(&groups->tree));
8e1a2031 1677
161c85fa 1678 rb_erase(&event->group_node, &groups->tree);
8e1a2031
AB
1679 init_event_group(event);
1680}
1681
1682/*
161c85fa 1683 * Helper function to delete event from its groups.
8e1a2031
AB
1684 */
1685static void
1686del_event_from_groups(struct perf_event *event, struct perf_event_context *ctx)
1687{
1688 struct perf_event_groups *groups;
1689
1690 groups = get_event_groups(event, ctx);
1691 perf_event_groups_delete(groups, event);
1692}
1693
1694/*
95ed6c70 1695 * Get the leftmost event in the cpu/cgroup subtree.
8e1a2031
AB
1696 */
1697static struct perf_event *
95ed6c70
IR
1698perf_event_groups_first(struct perf_event_groups *groups, int cpu,
1699 struct cgroup *cgrp)
8e1a2031
AB
1700{
1701 struct perf_event *node_event = NULL, *match = NULL;
1702 struct rb_node *node = groups->tree.rb_node;
95ed6c70
IR
1703#ifdef CONFIG_CGROUP_PERF
1704 u64 node_cgrp_id, cgrp_id = 0;
1705
1706 if (cgrp)
1707 cgrp_id = cgrp->kn->id;
1708#endif
8e1a2031
AB
1709
1710 while (node) {
161c85fa 1711 node_event = container_of(node, struct perf_event, group_node);
8e1a2031
AB
1712
1713 if (cpu < node_event->cpu) {
1714 node = node->rb_left;
95ed6c70
IR
1715 continue;
1716 }
1717 if (cpu > node_event->cpu) {
8e1a2031 1718 node = node->rb_right;
95ed6c70
IR
1719 continue;
1720 }
1721#ifdef CONFIG_CGROUP_PERF
1722 node_cgrp_id = 0;
1723 if (node_event->cgrp && node_event->cgrp->css.cgroup)
1724 node_cgrp_id = node_event->cgrp->css.cgroup->kn->id;
1725
1726 if (cgrp_id < node_cgrp_id) {
8e1a2031 1727 node = node->rb_left;
95ed6c70
IR
1728 continue;
1729 }
1730 if (cgrp_id > node_cgrp_id) {
1731 node = node->rb_right;
1732 continue;
8e1a2031 1733 }
95ed6c70
IR
1734#endif
1735 match = node_event;
1736 node = node->rb_left;
8e1a2031
AB
1737 }
1738
1739 return match;
1740}
1741
1cac7b1a
PZ
1742/*
1743 * Like rb_entry_next_safe() for the @cpu subtree.
1744 */
1745static struct perf_event *
1746perf_event_groups_next(struct perf_event *event)
1747{
1748 struct perf_event *next;
95ed6c70
IR
1749#ifdef CONFIG_CGROUP_PERF
1750 u64 curr_cgrp_id = 0;
1751 u64 next_cgrp_id = 0;
1752#endif
1cac7b1a
PZ
1753
1754 next = rb_entry_safe(rb_next(&event->group_node), typeof(*event), group_node);
95ed6c70
IR
1755 if (next == NULL || next->cpu != event->cpu)
1756 return NULL;
1757
1758#ifdef CONFIG_CGROUP_PERF
1759 if (event->cgrp && event->cgrp->css.cgroup)
1760 curr_cgrp_id = event->cgrp->css.cgroup->kn->id;
1cac7b1a 1761
95ed6c70
IR
1762 if (next->cgrp && next->cgrp->css.cgroup)
1763 next_cgrp_id = next->cgrp->css.cgroup->kn->id;
1764
1765 if (curr_cgrp_id != next_cgrp_id)
1766 return NULL;
1767#endif
1768 return next;
1cac7b1a
PZ
1769}
1770
8e1a2031 1771/*
161c85fa 1772 * Iterate through the whole groups tree.
8e1a2031 1773 */
6e6804d2
PZ
1774#define perf_event_groups_for_each(event, groups) \
1775 for (event = rb_entry_safe(rb_first(&((groups)->tree)), \
1776 typeof(*event), group_node); event; \
1777 event = rb_entry_safe(rb_next(&event->group_node), \
1778 typeof(*event), group_node))
8e1a2031 1779
fccc714b 1780/*
788faab7 1781 * Add an event from the lists for its context.
fccc714b
PZ
1782 * Must be called with ctx->mutex and ctx->lock held.
1783 */
04289bb9 1784static void
cdd6c482 1785list_add_event(struct perf_event *event, struct perf_event_context *ctx)
04289bb9 1786{
c994d613
PZ
1787 lockdep_assert_held(&ctx->lock);
1788
8a49542c
PZ
1789 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1790 event->attach_state |= PERF_ATTACH_CONTEXT;
04289bb9 1791
0d3d73aa
PZ
1792 event->tstamp = perf_event_time(event);
1793
04289bb9 1794 /*
8a49542c
PZ
1795 * If we're a stand alone event or group leader, we go to the context
1796 * list, group events are kept attached to the group so that
1797 * perf_group_detach can, at all times, locate all siblings.
04289bb9 1798 */
8a49542c 1799 if (event->group_leader == event) {
4ff6a8de 1800 event->group_caps = event->event_caps;
8e1a2031 1801 add_event_to_groups(event, ctx);
5c148194 1802 }
592903cd 1803
cdd6c482
IM
1804 list_add_rcu(&event->event_entry, &ctx->event_list);
1805 ctx->nr_events++;
1806 if (event->attr.inherit_stat)
bfbd3381 1807 ctx->nr_stat++;
5a3126d4 1808
33238c50
PZ
1809 if (event->state > PERF_EVENT_STATE_OFF)
1810 perf_cgroup_event_enable(event, ctx);
1811
5a3126d4 1812 ctx->generation++;
04289bb9
IM
1813}
1814
0231bb53
JO
1815/*
1816 * Initialize event state based on the perf_event_attr::disabled.
1817 */
1818static inline void perf_event__state_init(struct perf_event *event)
1819{
1820 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1821 PERF_EVENT_STATE_INACTIVE;
1822}
1823
a723968c 1824static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
c320c7b7
ACM
1825{
1826 int entry = sizeof(u64); /* value */
1827 int size = 0;
1828 int nr = 1;
1829
1830 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1831 size += sizeof(u64);
1832
1833 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1834 size += sizeof(u64);
1835
1836 if (event->attr.read_format & PERF_FORMAT_ID)
1837 entry += sizeof(u64);
1838
1839 if (event->attr.read_format & PERF_FORMAT_GROUP) {
a723968c 1840 nr += nr_siblings;
c320c7b7
ACM
1841 size += sizeof(u64);
1842 }
1843
1844 size += entry * nr;
1845 event->read_size = size;
1846}
1847
a723968c 1848static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
c320c7b7
ACM
1849{
1850 struct perf_sample_data *data;
c320c7b7
ACM
1851 u16 size = 0;
1852
c320c7b7
ACM
1853 if (sample_type & PERF_SAMPLE_IP)
1854 size += sizeof(data->ip);
1855
6844c09d
ACM
1856 if (sample_type & PERF_SAMPLE_ADDR)
1857 size += sizeof(data->addr);
1858
1859 if (sample_type & PERF_SAMPLE_PERIOD)
1860 size += sizeof(data->period);
1861
c3feedf2
AK
1862 if (sample_type & PERF_SAMPLE_WEIGHT)
1863 size += sizeof(data->weight);
1864
6844c09d
ACM
1865 if (sample_type & PERF_SAMPLE_READ)
1866 size += event->read_size;
1867
d6be9ad6
SE
1868 if (sample_type & PERF_SAMPLE_DATA_SRC)
1869 size += sizeof(data->data_src.val);
1870
fdfbbd07
AK
1871 if (sample_type & PERF_SAMPLE_TRANSACTION)
1872 size += sizeof(data->txn);
1873
fc7ce9c7
KL
1874 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
1875 size += sizeof(data->phys_addr);
1876
6546b19f
NK
1877 if (sample_type & PERF_SAMPLE_CGROUP)
1878 size += sizeof(data->cgroup);
1879
6844c09d
ACM
1880 event->header_size = size;
1881}
1882
a723968c
PZ
1883/*
1884 * Called at perf_event creation and when events are attached/detached from a
1885 * group.
1886 */
1887static void perf_event__header_size(struct perf_event *event)
1888{
1889 __perf_event_read_size(event,
1890 event->group_leader->nr_siblings);
1891 __perf_event_header_size(event, event->attr.sample_type);
1892}
1893
6844c09d
ACM
1894static void perf_event__id_header_size(struct perf_event *event)
1895{
1896 struct perf_sample_data *data;
1897 u64 sample_type = event->attr.sample_type;
1898 u16 size = 0;
1899
c320c7b7
ACM
1900 if (sample_type & PERF_SAMPLE_TID)
1901 size += sizeof(data->tid_entry);
1902
1903 if (sample_type & PERF_SAMPLE_TIME)
1904 size += sizeof(data->time);
1905
ff3d527c
AH
1906 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1907 size += sizeof(data->id);
1908
c320c7b7
ACM
1909 if (sample_type & PERF_SAMPLE_ID)
1910 size += sizeof(data->id);
1911
1912 if (sample_type & PERF_SAMPLE_STREAM_ID)
1913 size += sizeof(data->stream_id);
1914
1915 if (sample_type & PERF_SAMPLE_CPU)
1916 size += sizeof(data->cpu_entry);
1917
6844c09d 1918 event->id_header_size = size;
c320c7b7
ACM
1919}
1920
a723968c
PZ
1921static bool perf_event_validate_size(struct perf_event *event)
1922{
1923 /*
1924 * The values computed here will be over-written when we actually
1925 * attach the event.
1926 */
1927 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1928 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1929 perf_event__id_header_size(event);
1930
1931 /*
1932 * Sum the lot; should not exceed the 64k limit we have on records.
1933 * Conservative limit to allow for callchains and other variable fields.
1934 */
1935 if (event->read_size + event->header_size +
1936 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1937 return false;
1938
1939 return true;
1940}
1941
8a49542c
PZ
1942static void perf_group_attach(struct perf_event *event)
1943{
c320c7b7 1944 struct perf_event *group_leader = event->group_leader, *pos;
8a49542c 1945
a76a82a3
PZ
1946 lockdep_assert_held(&event->ctx->lock);
1947
74c3337c
PZ
1948 /*
1949 * We can have double attach due to group movement in perf_event_open.
1950 */
1951 if (event->attach_state & PERF_ATTACH_GROUP)
1952 return;
1953
8a49542c
PZ
1954 event->attach_state |= PERF_ATTACH_GROUP;
1955
1956 if (group_leader == event)
1957 return;
1958
652884fe
PZ
1959 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1960
4ff6a8de 1961 group_leader->group_caps &= event->event_caps;
8a49542c 1962
8343aae6 1963 list_add_tail(&event->sibling_list, &group_leader->sibling_list);
8a49542c 1964 group_leader->nr_siblings++;
c320c7b7
ACM
1965
1966 perf_event__header_size(group_leader);
1967
edb39592 1968 for_each_sibling_event(pos, group_leader)
c320c7b7 1969 perf_event__header_size(pos);
8a49542c
PZ
1970}
1971
a63eaf34 1972/*
788faab7 1973 * Remove an event from the lists for its context.
fccc714b 1974 * Must be called with ctx->mutex and ctx->lock held.
a63eaf34 1975 */
04289bb9 1976static void
cdd6c482 1977list_del_event(struct perf_event *event, struct perf_event_context *ctx)
04289bb9 1978{
652884fe
PZ
1979 WARN_ON_ONCE(event->ctx != ctx);
1980 lockdep_assert_held(&ctx->lock);
1981
8a49542c
PZ
1982 /*
1983 * We can have double detach due to exit/hot-unplug + close.
1984 */
1985 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
a63eaf34 1986 return;
8a49542c
PZ
1987
1988 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1989
cdd6c482
IM
1990 ctx->nr_events--;
1991 if (event->attr.inherit_stat)
bfbd3381 1992 ctx->nr_stat--;
8bc20959 1993
cdd6c482 1994 list_del_rcu(&event->event_entry);
04289bb9 1995
8a49542c 1996 if (event->group_leader == event)
8e1a2031 1997 del_event_from_groups(event, ctx);
5c148194 1998
b2e74a26
SE
1999 /*
2000 * If event was in error state, then keep it
2001 * that way, otherwise bogus counts will be
2002 * returned on read(). The only way to get out
2003 * of error state is by explicit re-enabling
2004 * of the event
2005 */
33238c50
PZ
2006 if (event->state > PERF_EVENT_STATE_OFF) {
2007 perf_cgroup_event_disable(event, ctx);
0d3d73aa 2008 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
33238c50 2009 }
5a3126d4
PZ
2010
2011 ctx->generation++;
050735b0
PZ
2012}
2013
ab43762e
AS
2014static int
2015perf_aux_output_match(struct perf_event *event, struct perf_event *aux_event)
2016{
2017 if (!has_aux(aux_event))
2018 return 0;
2019
2020 if (!event->pmu->aux_output_match)
2021 return 0;
2022
2023 return event->pmu->aux_output_match(aux_event);
2024}
2025
2026static void put_event(struct perf_event *event);
2027static void event_sched_out(struct perf_event *event,
2028 struct perf_cpu_context *cpuctx,
2029 struct perf_event_context *ctx);
2030
2031static void perf_put_aux_event(struct perf_event *event)
2032{
2033 struct perf_event_context *ctx = event->ctx;
2034 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2035 struct perf_event *iter;
2036
2037 /*
2038 * If event uses aux_event tear down the link
2039 */
2040 if (event->aux_event) {
2041 iter = event->aux_event;
2042 event->aux_event = NULL;
2043 put_event(iter);
2044 return;
2045 }
2046
2047 /*
2048 * If the event is an aux_event, tear down all links to
2049 * it from other events.
2050 */
2051 for_each_sibling_event(iter, event->group_leader) {
2052 if (iter->aux_event != event)
2053 continue;
2054
2055 iter->aux_event = NULL;
2056 put_event(event);
2057
2058 /*
2059 * If it's ACTIVE, schedule it out and put it into ERROR
2060 * state so that we don't try to schedule it again. Note
2061 * that perf_event_enable() will clear the ERROR status.
2062 */
2063 event_sched_out(iter, cpuctx, ctx);
2064 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
2065 }
2066}
2067
a4faf00d
AS
2068static bool perf_need_aux_event(struct perf_event *event)
2069{
2070 return !!event->attr.aux_output || !!event->attr.aux_sample_size;
2071}
2072
ab43762e
AS
2073static int perf_get_aux_event(struct perf_event *event,
2074 struct perf_event *group_leader)
2075{
2076 /*
2077 * Our group leader must be an aux event if we want to be
2078 * an aux_output. This way, the aux event will precede its
2079 * aux_output events in the group, and therefore will always
2080 * schedule first.
2081 */
2082 if (!group_leader)
2083 return 0;
2084
a4faf00d
AS
2085 /*
2086 * aux_output and aux_sample_size are mutually exclusive.
2087 */
2088 if (event->attr.aux_output && event->attr.aux_sample_size)
2089 return 0;
2090
2091 if (event->attr.aux_output &&
2092 !perf_aux_output_match(event, group_leader))
2093 return 0;
2094
2095 if (event->attr.aux_sample_size && !group_leader->pmu->snapshot_aux)
ab43762e
AS
2096 return 0;
2097
2098 if (!atomic_long_inc_not_zero(&group_leader->refcount))
2099 return 0;
2100
2101 /*
2102 * Link aux_outputs to their aux event; this is undone in
2103 * perf_group_detach() by perf_put_aux_event(). When the
2104 * group in torn down, the aux_output events loose their
2105 * link to the aux_event and can't schedule any more.
2106 */
2107 event->aux_event = group_leader;
2108
2109 return 1;
2110}
2111
ab6f824c
PZ
2112static inline struct list_head *get_event_list(struct perf_event *event)
2113{
2114 struct perf_event_context *ctx = event->ctx;
2115 return event->attr.pinned ? &ctx->pinned_active : &ctx->flexible_active;
2116}
2117
8a49542c 2118static void perf_group_detach(struct perf_event *event)
050735b0
PZ
2119{
2120 struct perf_event *sibling, *tmp;
6668128a 2121 struct perf_event_context *ctx = event->ctx;
8a49542c 2122
6668128a 2123 lockdep_assert_held(&ctx->lock);
a76a82a3 2124
8a49542c
PZ
2125 /*
2126 * We can have double detach due to exit/hot-unplug + close.
2127 */
2128 if (!(event->attach_state & PERF_ATTACH_GROUP))
2129 return;
2130
2131 event->attach_state &= ~PERF_ATTACH_GROUP;
2132
ab43762e
AS
2133 perf_put_aux_event(event);
2134
8a49542c
PZ
2135 /*
2136 * If this is a sibling, remove it from its group.
2137 */
2138 if (event->group_leader != event) {
8343aae6 2139 list_del_init(&event->sibling_list);
8a49542c 2140 event->group_leader->nr_siblings--;
c320c7b7 2141 goto out;
8a49542c
PZ
2142 }
2143
04289bb9 2144 /*
cdd6c482
IM
2145 * If this was a group event with sibling events then
2146 * upgrade the siblings to singleton events by adding them
8a49542c 2147 * to whatever list we are on.
04289bb9 2148 */
8343aae6 2149 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, sibling_list) {
8e1a2031 2150
04289bb9 2151 sibling->group_leader = sibling;
24868367 2152 list_del_init(&sibling->sibling_list);
d6f962b5
FW
2153
2154 /* Inherit group flags from the previous leader */
4ff6a8de 2155 sibling->group_caps = event->group_caps;
652884fe 2156
8e1a2031 2157 if (!RB_EMPTY_NODE(&event->group_node)) {
8e1a2031 2158 add_event_to_groups(sibling, event->ctx);
6668128a 2159
ab6f824c
PZ
2160 if (sibling->state == PERF_EVENT_STATE_ACTIVE)
2161 list_add_tail(&sibling->active_list, get_event_list(sibling));
8e1a2031
AB
2162 }
2163
652884fe 2164 WARN_ON_ONCE(sibling->ctx != event->ctx);
04289bb9 2165 }
c320c7b7
ACM
2166
2167out:
2168 perf_event__header_size(event->group_leader);
2169
edb39592 2170 for_each_sibling_event(tmp, event->group_leader)
c320c7b7 2171 perf_event__header_size(tmp);
04289bb9
IM
2172}
2173
fadfe7be
JO
2174static bool is_orphaned_event(struct perf_event *event)
2175{
a69b0ca4 2176 return event->state == PERF_EVENT_STATE_DEAD;
fadfe7be
JO
2177}
2178
2c81a647 2179static inline int __pmu_filter_match(struct perf_event *event)
66eb579e
MR
2180{
2181 struct pmu *pmu = event->pmu;
2182 return pmu->filter_match ? pmu->filter_match(event) : 1;
2183}
2184
2c81a647
MR
2185/*
2186 * Check whether we should attempt to schedule an event group based on
2187 * PMU-specific filtering. An event group can consist of HW and SW events,
2188 * potentially with a SW leader, so we must check all the filters, to
2189 * determine whether a group is schedulable:
2190 */
2191static inline int pmu_filter_match(struct perf_event *event)
2192{
edb39592 2193 struct perf_event *sibling;
2c81a647
MR
2194
2195 if (!__pmu_filter_match(event))
2196 return 0;
2197
edb39592
PZ
2198 for_each_sibling_event(sibling, event) {
2199 if (!__pmu_filter_match(sibling))
2c81a647
MR
2200 return 0;
2201 }
2202
2203 return 1;
2204}
2205
fa66f07a
SE
2206static inline int
2207event_filter_match(struct perf_event *event)
2208{
0b8f1e2e
PZ
2209 return (event->cpu == -1 || event->cpu == smp_processor_id()) &&
2210 perf_cgroup_match(event) && pmu_filter_match(event);
fa66f07a
SE
2211}
2212
9ffcfa6f
SE
2213static void
2214event_sched_out(struct perf_event *event,
3b6f9e5c 2215 struct perf_cpu_context *cpuctx,
cdd6c482 2216 struct perf_event_context *ctx)
3b6f9e5c 2217{
0d3d73aa 2218 enum perf_event_state state = PERF_EVENT_STATE_INACTIVE;
652884fe
PZ
2219
2220 WARN_ON_ONCE(event->ctx != ctx);
2221 lockdep_assert_held(&ctx->lock);
2222
cdd6c482 2223 if (event->state != PERF_EVENT_STATE_ACTIVE)
9ffcfa6f 2224 return;
3b6f9e5c 2225
6668128a
PZ
2226 /*
2227 * Asymmetry; we only schedule events _IN_ through ctx_sched_in(), but
2228 * we can schedule events _OUT_ individually through things like
2229 * __perf_remove_from_context().
2230 */
2231 list_del_init(&event->active_list);
2232
44377277
AS
2233 perf_pmu_disable(event->pmu);
2234
28a967c3
PZ
2235 event->pmu->del(event, 0);
2236 event->oncpu = -1;
0d3d73aa 2237
1d54ad94
PZ
2238 if (READ_ONCE(event->pending_disable) >= 0) {
2239 WRITE_ONCE(event->pending_disable, -1);
33238c50 2240 perf_cgroup_event_disable(event, ctx);
0d3d73aa 2241 state = PERF_EVENT_STATE_OFF;
970892a9 2242 }
0d3d73aa 2243 perf_event_set_state(event, state);
3b6f9e5c 2244
cdd6c482 2245 if (!is_software_event(event))
3b6f9e5c 2246 cpuctx->active_oncpu--;
2fde4f94
MR
2247 if (!--ctx->nr_active)
2248 perf_event_ctx_deactivate(ctx);
0f5a2601
PZ
2249 if (event->attr.freq && event->attr.sample_freq)
2250 ctx->nr_freq--;
cdd6c482 2251 if (event->attr.exclusive || !cpuctx->active_oncpu)
3b6f9e5c 2252 cpuctx->exclusive = 0;
44377277
AS
2253
2254 perf_pmu_enable(event->pmu);
3b6f9e5c
PM
2255}
2256
d859e29f 2257static void
cdd6c482 2258group_sched_out(struct perf_event *group_event,
d859e29f 2259 struct perf_cpu_context *cpuctx,
cdd6c482 2260 struct perf_event_context *ctx)
d859e29f 2261{
cdd6c482 2262 struct perf_event *event;
0d3d73aa
PZ
2263
2264 if (group_event->state != PERF_EVENT_STATE_ACTIVE)
2265 return;
d859e29f 2266
3f005e7d
MR
2267 perf_pmu_disable(ctx->pmu);
2268
cdd6c482 2269 event_sched_out(group_event, cpuctx, ctx);
d859e29f
PM
2270
2271 /*
2272 * Schedule out siblings (if any):
2273 */
edb39592 2274 for_each_sibling_event(event, group_event)
cdd6c482 2275 event_sched_out(event, cpuctx, ctx);
d859e29f 2276
3f005e7d
MR
2277 perf_pmu_enable(ctx->pmu);
2278
0d3d73aa 2279 if (group_event->attr.exclusive)
d859e29f
PM
2280 cpuctx->exclusive = 0;
2281}
2282
45a0e07a 2283#define DETACH_GROUP 0x01UL
0017960f 2284
0793a61d 2285/*
cdd6c482 2286 * Cross CPU call to remove a performance event
0793a61d 2287 *
cdd6c482 2288 * We disable the event on the hardware level first. After that we
0793a61d
TG
2289 * remove it from the context list.
2290 */
fae3fde6
PZ
2291static void
2292__perf_remove_from_context(struct perf_event *event,
2293 struct perf_cpu_context *cpuctx,
2294 struct perf_event_context *ctx,
2295 void *info)
0793a61d 2296{
45a0e07a 2297 unsigned long flags = (unsigned long)info;
0793a61d 2298
3c5c8711
PZ
2299 if (ctx->is_active & EVENT_TIME) {
2300 update_context_time(ctx);
2301 update_cgrp_time_from_cpuctx(cpuctx);
2302 }
2303
cdd6c482 2304 event_sched_out(event, cpuctx, ctx);
45a0e07a 2305 if (flags & DETACH_GROUP)
46ce0fe9 2306 perf_group_detach(event);
cdd6c482 2307 list_del_event(event, ctx);
39a43640
PZ
2308
2309 if (!ctx->nr_events && ctx->is_active) {
64ce3126 2310 ctx->is_active = 0;
90c91dfb 2311 ctx->rotate_necessary = 0;
39a43640
PZ
2312 if (ctx->task) {
2313 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
2314 cpuctx->task_ctx = NULL;
2315 }
64ce3126 2316 }
0793a61d
TG
2317}
2318
0793a61d 2319/*
cdd6c482 2320 * Remove the event from a task's (or a CPU's) list of events.
0793a61d 2321 *
cdd6c482
IM
2322 * If event->ctx is a cloned context, callers must make sure that
2323 * every task struct that event->ctx->task could possibly point to
c93f7669
PM
2324 * remains valid. This is OK when called from perf_release since
2325 * that only calls us on the top-level context, which can't be a clone.
cdd6c482 2326 * When called from perf_event_exit_task, it's OK because the
c93f7669 2327 * context has been detached from its task.
0793a61d 2328 */
45a0e07a 2329static void perf_remove_from_context(struct perf_event *event, unsigned long flags)
0793a61d 2330{
a76a82a3
PZ
2331 struct perf_event_context *ctx = event->ctx;
2332
2333 lockdep_assert_held(&ctx->mutex);
0793a61d 2334
45a0e07a 2335 event_function_call(event, __perf_remove_from_context, (void *)flags);
a76a82a3
PZ
2336
2337 /*
2338 * The above event_function_call() can NO-OP when it hits
2339 * TASK_TOMBSTONE. In that case we must already have been detached
2340 * from the context (by perf_event_exit_event()) but the grouping
2341 * might still be in-tact.
2342 */
2343 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
2344 if ((flags & DETACH_GROUP) &&
2345 (event->attach_state & PERF_ATTACH_GROUP)) {
2346 /*
2347 * Since in that case we cannot possibly be scheduled, simply
2348 * detach now.
2349 */
2350 raw_spin_lock_irq(&ctx->lock);
2351 perf_group_detach(event);
2352 raw_spin_unlock_irq(&ctx->lock);
2353 }
0793a61d
TG
2354}
2355
d859e29f 2356/*
cdd6c482 2357 * Cross CPU call to disable a performance event
d859e29f 2358 */
fae3fde6
PZ
2359static void __perf_event_disable(struct perf_event *event,
2360 struct perf_cpu_context *cpuctx,
2361 struct perf_event_context *ctx,
2362 void *info)
7b648018 2363{
fae3fde6
PZ
2364 if (event->state < PERF_EVENT_STATE_INACTIVE)
2365 return;
7b648018 2366
3c5c8711
PZ
2367 if (ctx->is_active & EVENT_TIME) {
2368 update_context_time(ctx);
2369 update_cgrp_time_from_event(event);
2370 }
2371
fae3fde6
PZ
2372 if (event == event->group_leader)
2373 group_sched_out(event, cpuctx, ctx);
2374 else
2375 event_sched_out(event, cpuctx, ctx);
0d3d73aa
PZ
2376
2377 perf_event_set_state(event, PERF_EVENT_STATE_OFF);
33238c50 2378 perf_cgroup_event_disable(event, ctx);
7b648018
PZ
2379}
2380
d859e29f 2381/*
788faab7 2382 * Disable an event.
c93f7669 2383 *
cdd6c482
IM
2384 * If event->ctx is a cloned context, callers must make sure that
2385 * every task struct that event->ctx->task could possibly point to
9f014e3a 2386 * remains valid. This condition is satisfied when called through
cdd6c482
IM
2387 * perf_event_for_each_child or perf_event_for_each because they
2388 * hold the top-level event's child_mutex, so any descendant that
8ba289b8
PZ
2389 * goes to exit will block in perf_event_exit_event().
2390 *
cdd6c482 2391 * When called from perf_pending_event it's OK because event->ctx
c93f7669 2392 * is the current context on this CPU and preemption is disabled,
cdd6c482 2393 * hence we can't get into perf_event_task_sched_out for this context.
d859e29f 2394 */
f63a8daa 2395static void _perf_event_disable(struct perf_event *event)
d859e29f 2396{
cdd6c482 2397 struct perf_event_context *ctx = event->ctx;
d859e29f 2398
e625cce1 2399 raw_spin_lock_irq(&ctx->lock);
7b648018 2400 if (event->state <= PERF_EVENT_STATE_OFF) {
e625cce1 2401 raw_spin_unlock_irq(&ctx->lock);
7b648018 2402 return;
53cfbf59 2403 }
e625cce1 2404 raw_spin_unlock_irq(&ctx->lock);
7b648018 2405
fae3fde6
PZ
2406 event_function_call(event, __perf_event_disable, NULL);
2407}
2408
2409void perf_event_disable_local(struct perf_event *event)
2410{
2411 event_function_local(event, __perf_event_disable, NULL);
d859e29f 2412}
f63a8daa
PZ
2413
2414/*
2415 * Strictly speaking kernel users cannot create groups and therefore this
2416 * interface does not need the perf_event_ctx_lock() magic.
2417 */
2418void perf_event_disable(struct perf_event *event)
2419{
2420 struct perf_event_context *ctx;
2421
2422 ctx = perf_event_ctx_lock(event);
2423 _perf_event_disable(event);
2424 perf_event_ctx_unlock(event, ctx);
2425}
dcfce4a0 2426EXPORT_SYMBOL_GPL(perf_event_disable);
d859e29f 2427
5aab90ce
JO
2428void perf_event_disable_inatomic(struct perf_event *event)
2429{
1d54ad94
PZ
2430 WRITE_ONCE(event->pending_disable, smp_processor_id());
2431 /* can fail, see perf_pending_event_disable() */
5aab90ce
JO
2432 irq_work_queue(&event->pending);
2433}
2434
e5d1367f 2435static void perf_set_shadow_time(struct perf_event *event,
0d3d73aa 2436 struct perf_event_context *ctx)
e5d1367f
SE
2437{
2438 /*
2439 * use the correct time source for the time snapshot
2440 *
2441 * We could get by without this by leveraging the
2442 * fact that to get to this function, the caller
2443 * has most likely already called update_context_time()
2444 * and update_cgrp_time_xx() and thus both timestamp
2445 * are identical (or very close). Given that tstamp is,
2446 * already adjusted for cgroup, we could say that:
2447 * tstamp - ctx->timestamp
2448 * is equivalent to
2449 * tstamp - cgrp->timestamp.
2450 *
2451 * Then, in perf_output_read(), the calculation would
2452 * work with no changes because:
2453 * - event is guaranteed scheduled in
2454 * - no scheduled out in between
2455 * - thus the timestamp would be the same
2456 *
2457 * But this is a bit hairy.
2458 *
2459 * So instead, we have an explicit cgroup call to remain
2460 * within the time time source all along. We believe it
2461 * is cleaner and simpler to understand.
2462 */
2463 if (is_cgroup_event(event))
0d3d73aa 2464 perf_cgroup_set_shadow_time(event, event->tstamp);
e5d1367f 2465 else
0d3d73aa 2466 event->shadow_ctx_time = event->tstamp - ctx->timestamp;
e5d1367f
SE
2467}
2468
4fe757dd
PZ
2469#define MAX_INTERRUPTS (~0ULL)
2470
2471static void perf_log_throttle(struct perf_event *event, int enable);
ec0d7729 2472static void perf_log_itrace_start(struct perf_event *event);
4fe757dd 2473
235c7fc7 2474static int
9ffcfa6f 2475event_sched_in(struct perf_event *event,
235c7fc7 2476 struct perf_cpu_context *cpuctx,
6e37738a 2477 struct perf_event_context *ctx)
235c7fc7 2478{
44377277 2479 int ret = 0;
4158755d 2480
ab6f824c
PZ
2481 WARN_ON_ONCE(event->ctx != ctx);
2482
63342411
PZ
2483 lockdep_assert_held(&ctx->lock);
2484
cdd6c482 2485 if (event->state <= PERF_EVENT_STATE_OFF)
235c7fc7
IM
2486 return 0;
2487
95ff4ca2
AS
2488 WRITE_ONCE(event->oncpu, smp_processor_id());
2489 /*
0c1cbc18
PZ
2490 * Order event::oncpu write to happen before the ACTIVE state is
2491 * visible. This allows perf_event_{stop,read}() to observe the correct
2492 * ->oncpu if it sees ACTIVE.
95ff4ca2
AS
2493 */
2494 smp_wmb();
0d3d73aa 2495 perf_event_set_state(event, PERF_EVENT_STATE_ACTIVE);
4fe757dd
PZ
2496
2497 /*
2498 * Unthrottle events, since we scheduled we might have missed several
2499 * ticks already, also for a heavily scheduling task there is little
2500 * guarantee it'll get a tick in a timely manner.
2501 */
2502 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
2503 perf_log_throttle(event, 1);
2504 event->hw.interrupts = 0;
2505 }
2506
44377277
AS
2507 perf_pmu_disable(event->pmu);
2508
0d3d73aa 2509 perf_set_shadow_time(event, ctx);
72f669c0 2510
ec0d7729
AS
2511 perf_log_itrace_start(event);
2512
a4eaf7f1 2513 if (event->pmu->add(event, PERF_EF_START)) {
0d3d73aa 2514 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
cdd6c482 2515 event->oncpu = -1;
44377277
AS
2516 ret = -EAGAIN;
2517 goto out;
235c7fc7
IM
2518 }
2519
cdd6c482 2520 if (!is_software_event(event))
3b6f9e5c 2521 cpuctx->active_oncpu++;
2fde4f94
MR
2522 if (!ctx->nr_active++)
2523 perf_event_ctx_activate(ctx);
0f5a2601
PZ
2524 if (event->attr.freq && event->attr.sample_freq)
2525 ctx->nr_freq++;
235c7fc7 2526
cdd6c482 2527 if (event->attr.exclusive)
3b6f9e5c
PM
2528 cpuctx->exclusive = 1;
2529
44377277
AS
2530out:
2531 perf_pmu_enable(event->pmu);
2532
2533 return ret;
235c7fc7
IM
2534}
2535
6751b71e 2536static int
cdd6c482 2537group_sched_in(struct perf_event *group_event,
6751b71e 2538 struct perf_cpu_context *cpuctx,
6e37738a 2539 struct perf_event_context *ctx)
6751b71e 2540{
6bde9b6c 2541 struct perf_event *event, *partial_group = NULL;
4a234593 2542 struct pmu *pmu = ctx->pmu;
6751b71e 2543
cdd6c482 2544 if (group_event->state == PERF_EVENT_STATE_OFF)
6751b71e
PM
2545 return 0;
2546
fbbe0701 2547 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
6bde9b6c 2548
9ffcfa6f 2549 if (event_sched_in(group_event, cpuctx, ctx)) {
ad5133b7 2550 pmu->cancel_txn(pmu);
272325c4 2551 perf_mux_hrtimer_restart(cpuctx);
6751b71e 2552 return -EAGAIN;
90151c35 2553 }
6751b71e
PM
2554
2555 /*
2556 * Schedule in siblings as one group (if any):
2557 */
edb39592 2558 for_each_sibling_event(event, group_event) {
9ffcfa6f 2559 if (event_sched_in(event, cpuctx, ctx)) {
cdd6c482 2560 partial_group = event;
6751b71e
PM
2561 goto group_error;
2562 }
2563 }
2564
9ffcfa6f 2565 if (!pmu->commit_txn(pmu))
6e85158c 2566 return 0;
9ffcfa6f 2567
6751b71e
PM
2568group_error:
2569 /*
2570 * Groups can be scheduled in as one unit only, so undo any
2571 * partial group before returning:
0d3d73aa 2572 * The events up to the failed event are scheduled out normally.
6751b71e 2573 */
edb39592 2574 for_each_sibling_event(event, group_event) {
cdd6c482 2575 if (event == partial_group)
0d3d73aa 2576 break;
d7842da4 2577
0d3d73aa 2578 event_sched_out(event, cpuctx, ctx);
6751b71e 2579 }
9ffcfa6f 2580 event_sched_out(group_event, cpuctx, ctx);
6751b71e 2581
ad5133b7 2582 pmu->cancel_txn(pmu);
90151c35 2583
272325c4 2584 perf_mux_hrtimer_restart(cpuctx);
9e630205 2585
6751b71e
PM
2586 return -EAGAIN;
2587}
2588
3b6f9e5c 2589/*
cdd6c482 2590 * Work out whether we can put this event group on the CPU now.
3b6f9e5c 2591 */
cdd6c482 2592static int group_can_go_on(struct perf_event *event,
3b6f9e5c
PM
2593 struct perf_cpu_context *cpuctx,
2594 int can_add_hw)
2595{
2596 /*
cdd6c482 2597 * Groups consisting entirely of software events can always go on.
3b6f9e5c 2598 */
4ff6a8de 2599 if (event->group_caps & PERF_EV_CAP_SOFTWARE)
3b6f9e5c
PM
2600 return 1;
2601 /*
2602 * If an exclusive group is already on, no other hardware
cdd6c482 2603 * events can go on.
3b6f9e5c
PM
2604 */
2605 if (cpuctx->exclusive)
2606 return 0;
2607 /*
2608 * If this group is exclusive and there are already
cdd6c482 2609 * events on the CPU, it can't go on.
3b6f9e5c 2610 */
cdd6c482 2611 if (event->attr.exclusive && cpuctx->active_oncpu)
3b6f9e5c
PM
2612 return 0;
2613 /*
2614 * Otherwise, try to add it if all previous groups were able
2615 * to go on.
2616 */
2617 return can_add_hw;
2618}
2619
cdd6c482
IM
2620static void add_event_to_ctx(struct perf_event *event,
2621 struct perf_event_context *ctx)
53cfbf59 2622{
cdd6c482 2623 list_add_event(event, ctx);
8a49542c 2624 perf_group_attach(event);
53cfbf59
PM
2625}
2626
bd2afa49
PZ
2627static void ctx_sched_out(struct perf_event_context *ctx,
2628 struct perf_cpu_context *cpuctx,
2629 enum event_type_t event_type);
2c29ef0f
PZ
2630static void
2631ctx_sched_in(struct perf_event_context *ctx,
2632 struct perf_cpu_context *cpuctx,
2633 enum event_type_t event_type,
2634 struct task_struct *task);
fe4b04fa 2635
bd2afa49 2636static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
487f05e1
AS
2637 struct perf_event_context *ctx,
2638 enum event_type_t event_type)
bd2afa49
PZ
2639{
2640 if (!cpuctx->task_ctx)
2641 return;
2642
2643 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2644 return;
2645
487f05e1 2646 ctx_sched_out(ctx, cpuctx, event_type);
bd2afa49
PZ
2647}
2648
dce5855b
PZ
2649static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2650 struct perf_event_context *ctx,
2651 struct task_struct *task)
2652{
2653 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2654 if (ctx)
2655 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2656 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2657 if (ctx)
2658 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2659}
2660
487f05e1
AS
2661/*
2662 * We want to maintain the following priority of scheduling:
2663 * - CPU pinned (EVENT_CPU | EVENT_PINNED)
2664 * - task pinned (EVENT_PINNED)
2665 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE)
2666 * - task flexible (EVENT_FLEXIBLE).
2667 *
2668 * In order to avoid unscheduling and scheduling back in everything every
2669 * time an event is added, only do it for the groups of equal priority and
2670 * below.
2671 *
2672 * This can be called after a batch operation on task events, in which case
2673 * event_type is a bit mask of the types of events involved. For CPU events,
2674 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE.
2675 */
3e349507 2676static void ctx_resched(struct perf_cpu_context *cpuctx,
487f05e1
AS
2677 struct perf_event_context *task_ctx,
2678 enum event_type_t event_type)
0017960f 2679{
bd903afe 2680 enum event_type_t ctx_event_type;
487f05e1
AS
2681 bool cpu_event = !!(event_type & EVENT_CPU);
2682
2683 /*
2684 * If pinned groups are involved, flexible groups also need to be
2685 * scheduled out.
2686 */
2687 if (event_type & EVENT_PINNED)
2688 event_type |= EVENT_FLEXIBLE;
2689
bd903afe
SL
2690 ctx_event_type = event_type & EVENT_ALL;
2691
3e349507
PZ
2692 perf_pmu_disable(cpuctx->ctx.pmu);
2693 if (task_ctx)
487f05e1
AS
2694 task_ctx_sched_out(cpuctx, task_ctx, event_type);
2695
2696 /*
2697 * Decide which cpu ctx groups to schedule out based on the types
2698 * of events that caused rescheduling:
2699 * - EVENT_CPU: schedule out corresponding groups;
2700 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups;
2701 * - otherwise, do nothing more.
2702 */
2703 if (cpu_event)
2704 cpu_ctx_sched_out(cpuctx, ctx_event_type);
2705 else if (ctx_event_type & EVENT_PINNED)
2706 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2707
3e349507
PZ
2708 perf_event_sched_in(cpuctx, task_ctx, current);
2709 perf_pmu_enable(cpuctx->ctx.pmu);
0017960f
PZ
2710}
2711
c68d224e
SE
2712void perf_pmu_resched(struct pmu *pmu)
2713{
2714 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2715 struct perf_event_context *task_ctx = cpuctx->task_ctx;
2716
2717 perf_ctx_lock(cpuctx, task_ctx);
2718 ctx_resched(cpuctx, task_ctx, EVENT_ALL|EVENT_CPU);
2719 perf_ctx_unlock(cpuctx, task_ctx);
2720}
2721
0793a61d 2722/*
cdd6c482 2723 * Cross CPU call to install and enable a performance event
682076ae 2724 *
a096309b
PZ
2725 * Very similar to remote_function() + event_function() but cannot assume that
2726 * things like ctx->is_active and cpuctx->task_ctx are set.
0793a61d 2727 */
fe4b04fa 2728static int __perf_install_in_context(void *info)
0793a61d 2729{
a096309b
PZ
2730 struct perf_event *event = info;
2731 struct perf_event_context *ctx = event->ctx;
108b02cf 2732 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
2c29ef0f 2733 struct perf_event_context *task_ctx = cpuctx->task_ctx;
63cae12b 2734 bool reprogram = true;
a096309b 2735 int ret = 0;
0793a61d 2736
63b6da39 2737 raw_spin_lock(&cpuctx->ctx.lock);
39a43640 2738 if (ctx->task) {
b58f6b0d
PZ
2739 raw_spin_lock(&ctx->lock);
2740 task_ctx = ctx;
a096309b 2741
63cae12b 2742 reprogram = (ctx->task == current);
b58f6b0d 2743
39a43640 2744 /*
63cae12b
PZ
2745 * If the task is running, it must be running on this CPU,
2746 * otherwise we cannot reprogram things.
2747 *
2748 * If its not running, we don't care, ctx->lock will
2749 * serialize against it becoming runnable.
39a43640 2750 */
63cae12b
PZ
2751 if (task_curr(ctx->task) && !reprogram) {
2752 ret = -ESRCH;
2753 goto unlock;
2754 }
a096309b 2755
63cae12b 2756 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx);
63b6da39
PZ
2757 } else if (task_ctx) {
2758 raw_spin_lock(&task_ctx->lock);
2c29ef0f 2759 }
b58f6b0d 2760
33801b94 2761#ifdef CONFIG_CGROUP_PERF
33238c50 2762 if (event->state > PERF_EVENT_STATE_OFF && is_cgroup_event(event)) {
33801b94 2763 /*
2764 * If the current cgroup doesn't match the event's
2765 * cgroup, we should not try to schedule it.
2766 */
2767 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx);
2768 reprogram = cgroup_is_descendant(cgrp->css.cgroup,
2769 event->cgrp->css.cgroup);
2770 }
2771#endif
2772
63cae12b 2773 if (reprogram) {
a096309b
PZ
2774 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2775 add_event_to_ctx(event, ctx);
487f05e1 2776 ctx_resched(cpuctx, task_ctx, get_event_type(event));
a096309b
PZ
2777 } else {
2778 add_event_to_ctx(event, ctx);
2779 }
2780
63b6da39 2781unlock:
2c29ef0f 2782 perf_ctx_unlock(cpuctx, task_ctx);
fe4b04fa 2783
a096309b 2784 return ret;
0793a61d
TG
2785}
2786
8a58ddae
AS
2787static bool exclusive_event_installable(struct perf_event *event,
2788 struct perf_event_context *ctx);
2789
0793a61d 2790/*
a096309b
PZ
2791 * Attach a performance event to a context.
2792 *
2793 * Very similar to event_function_call, see comment there.
0793a61d
TG
2794 */
2795static void
cdd6c482
IM
2796perf_install_in_context(struct perf_event_context *ctx,
2797 struct perf_event *event,
0793a61d
TG
2798 int cpu)
2799{
a096309b 2800 struct task_struct *task = READ_ONCE(ctx->task);
39a43640 2801
fe4b04fa
PZ
2802 lockdep_assert_held(&ctx->mutex);
2803
8a58ddae
AS
2804 WARN_ON_ONCE(!exclusive_event_installable(event, ctx));
2805
0cda4c02
YZ
2806 if (event->cpu != -1)
2807 event->cpu = cpu;
c3f00c70 2808
0b8f1e2e
PZ
2809 /*
2810 * Ensures that if we can observe event->ctx, both the event and ctx
2811 * will be 'complete'. See perf_iterate_sb_cpu().
2812 */
2813 smp_store_release(&event->ctx, ctx);
2814
db0503e4
PZ
2815 /*
2816 * perf_event_attr::disabled events will not run and can be initialized
2817 * without IPI. Except when this is the first event for the context, in
2818 * that case we need the magic of the IPI to set ctx->is_active.
2819 *
2820 * The IOC_ENABLE that is sure to follow the creation of a disabled
2821 * event will issue the IPI and reprogram the hardware.
2822 */
2823 if (__perf_effective_state(event) == PERF_EVENT_STATE_OFF && ctx->nr_events) {
2824 raw_spin_lock_irq(&ctx->lock);
2825 if (ctx->task == TASK_TOMBSTONE) {
2826 raw_spin_unlock_irq(&ctx->lock);
2827 return;
2828 }
2829 add_event_to_ctx(event, ctx);
2830 raw_spin_unlock_irq(&ctx->lock);
2831 return;
2832 }
2833
a096309b
PZ
2834 if (!task) {
2835 cpu_function_call(cpu, __perf_install_in_context, event);
2836 return;
2837 }
2838
2839 /*
2840 * Should not happen, we validate the ctx is still alive before calling.
2841 */
2842 if (WARN_ON_ONCE(task == TASK_TOMBSTONE))
2843 return;
2844
39a43640
PZ
2845 /*
2846 * Installing events is tricky because we cannot rely on ctx->is_active
2847 * to be set in case this is the nr_events 0 -> 1 transition.
63cae12b
PZ
2848 *
2849 * Instead we use task_curr(), which tells us if the task is running.
2850 * However, since we use task_curr() outside of rq::lock, we can race
2851 * against the actual state. This means the result can be wrong.
2852 *
2853 * If we get a false positive, we retry, this is harmless.
2854 *
2855 * If we get a false negative, things are complicated. If we are after
2856 * perf_event_context_sched_in() ctx::lock will serialize us, and the
2857 * value must be correct. If we're before, it doesn't matter since
2858 * perf_event_context_sched_in() will program the counter.
2859 *
2860 * However, this hinges on the remote context switch having observed
2861 * our task->perf_event_ctxp[] store, such that it will in fact take
2862 * ctx::lock in perf_event_context_sched_in().
2863 *
2864 * We do this by task_function_call(), if the IPI fails to hit the task
2865 * we know any future context switch of task must see the
2866 * perf_event_ctpx[] store.
39a43640 2867 */
63cae12b 2868
63b6da39 2869 /*
63cae12b
PZ
2870 * This smp_mb() orders the task->perf_event_ctxp[] store with the
2871 * task_cpu() load, such that if the IPI then does not find the task
2872 * running, a future context switch of that task must observe the
2873 * store.
63b6da39 2874 */
63cae12b
PZ
2875 smp_mb();
2876again:
2877 if (!task_function_call(task, __perf_install_in_context, event))
a096309b
PZ
2878 return;
2879
2880 raw_spin_lock_irq(&ctx->lock);
2881 task = ctx->task;
84c4e620 2882 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) {
a096309b
PZ
2883 /*
2884 * Cannot happen because we already checked above (which also
2885 * cannot happen), and we hold ctx->mutex, which serializes us
2886 * against perf_event_exit_task_context().
2887 */
63b6da39
PZ
2888 raw_spin_unlock_irq(&ctx->lock);
2889 return;
2890 }
39a43640 2891 /*
63cae12b
PZ
2892 * If the task is not running, ctx->lock will avoid it becoming so,
2893 * thus we can safely install the event.
39a43640 2894 */
63cae12b
PZ
2895 if (task_curr(task)) {
2896 raw_spin_unlock_irq(&ctx->lock);
2897 goto again;
2898 }
2899 add_event_to_ctx(event, ctx);
2900 raw_spin_unlock_irq(&ctx->lock);
0793a61d
TG
2901}
2902
d859e29f 2903/*
cdd6c482 2904 * Cross CPU call to enable a performance event
d859e29f 2905 */
fae3fde6
PZ
2906static void __perf_event_enable(struct perf_event *event,
2907 struct perf_cpu_context *cpuctx,
2908 struct perf_event_context *ctx,
2909 void *info)
04289bb9 2910{
cdd6c482 2911 struct perf_event *leader = event->group_leader;
fae3fde6 2912 struct perf_event_context *task_ctx;
04289bb9 2913
6e801e01
PZ
2914 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2915 event->state <= PERF_EVENT_STATE_ERROR)
fae3fde6 2916 return;
3cbed429 2917
bd2afa49
PZ
2918 if (ctx->is_active)
2919 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
2920
0d3d73aa 2921 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
33238c50 2922 perf_cgroup_event_enable(event, ctx);
04289bb9 2923
fae3fde6
PZ
2924 if (!ctx->is_active)
2925 return;
2926
e5d1367f 2927 if (!event_filter_match(event)) {
bd2afa49 2928 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
fae3fde6 2929 return;
e5d1367f 2930 }
f4c4176f 2931
04289bb9 2932 /*
cdd6c482 2933 * If the event is in a group and isn't the group leader,
d859e29f 2934 * then don't put it on unless the group is on.
04289bb9 2935 */
bd2afa49
PZ
2936 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) {
2937 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
fae3fde6 2938 return;
bd2afa49 2939 }
fe4b04fa 2940
fae3fde6
PZ
2941 task_ctx = cpuctx->task_ctx;
2942 if (ctx->task)
2943 WARN_ON_ONCE(task_ctx != ctx);
d859e29f 2944
487f05e1 2945 ctx_resched(cpuctx, task_ctx, get_event_type(event));
7b648018
PZ
2946}
2947
d859e29f 2948/*
788faab7 2949 * Enable an event.
c93f7669 2950 *
cdd6c482
IM
2951 * If event->ctx is a cloned context, callers must make sure that
2952 * every task struct that event->ctx->task could possibly point to
c93f7669 2953 * remains valid. This condition is satisfied when called through
cdd6c482
IM
2954 * perf_event_for_each_child or perf_event_for_each as described
2955 * for perf_event_disable.
d859e29f 2956 */
f63a8daa 2957static void _perf_event_enable(struct perf_event *event)
d859e29f 2958{
cdd6c482 2959 struct perf_event_context *ctx = event->ctx;
d859e29f 2960
7b648018 2961 raw_spin_lock_irq(&ctx->lock);
6e801e01
PZ
2962 if (event->state >= PERF_EVENT_STATE_INACTIVE ||
2963 event->state < PERF_EVENT_STATE_ERROR) {
7b648018 2964 raw_spin_unlock_irq(&ctx->lock);
d859e29f
PM
2965 return;
2966 }
2967
d859e29f 2968 /*
cdd6c482 2969 * If the event is in error state, clear that first.
7b648018
PZ
2970 *
2971 * That way, if we see the event in error state below, we know that it
2972 * has gone back into error state, as distinct from the task having
2973 * been scheduled away before the cross-call arrived.
d859e29f 2974 */
cdd6c482
IM
2975 if (event->state == PERF_EVENT_STATE_ERROR)
2976 event->state = PERF_EVENT_STATE_OFF;
e625cce1 2977 raw_spin_unlock_irq(&ctx->lock);
fe4b04fa 2978
fae3fde6 2979 event_function_call(event, __perf_event_enable, NULL);
d859e29f 2980}
f63a8daa
PZ
2981
2982/*
2983 * See perf_event_disable();
2984 */
2985void perf_event_enable(struct perf_event *event)
2986{
2987 struct perf_event_context *ctx;
2988
2989 ctx = perf_event_ctx_lock(event);
2990 _perf_event_enable(event);
2991 perf_event_ctx_unlock(event, ctx);
2992}
dcfce4a0 2993EXPORT_SYMBOL_GPL(perf_event_enable);
d859e29f 2994
375637bc
AS
2995struct stop_event_data {
2996 struct perf_event *event;
2997 unsigned int restart;
2998};
2999
95ff4ca2
AS
3000static int __perf_event_stop(void *info)
3001{
375637bc
AS
3002 struct stop_event_data *sd = info;
3003 struct perf_event *event = sd->event;
95ff4ca2 3004
375637bc 3005 /* if it's already INACTIVE, do nothing */
95ff4ca2
AS
3006 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
3007 return 0;
3008
3009 /* matches smp_wmb() in event_sched_in() */
3010 smp_rmb();
3011
3012 /*
3013 * There is a window with interrupts enabled before we get here,
3014 * so we need to check again lest we try to stop another CPU's event.
3015 */
3016 if (READ_ONCE(event->oncpu) != smp_processor_id())
3017 return -EAGAIN;
3018
3019 event->pmu->stop(event, PERF_EF_UPDATE);
3020
375637bc
AS
3021 /*
3022 * May race with the actual stop (through perf_pmu_output_stop()),
3023 * but it is only used for events with AUX ring buffer, and such
3024 * events will refuse to restart because of rb::aux_mmap_count==0,
3025 * see comments in perf_aux_output_begin().
3026 *
788faab7 3027 * Since this is happening on an event-local CPU, no trace is lost
375637bc
AS
3028 * while restarting.
3029 */
3030 if (sd->restart)
c9bbdd48 3031 event->pmu->start(event, 0);
375637bc 3032
95ff4ca2
AS
3033 return 0;
3034}
3035
767ae086 3036static int perf_event_stop(struct perf_event *event, int restart)
375637bc
AS
3037{
3038 struct stop_event_data sd = {
3039 .event = event,
767ae086 3040 .restart = restart,
375637bc
AS
3041 };
3042 int ret = 0;
3043
3044 do {
3045 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE)
3046 return 0;
3047
3048 /* matches smp_wmb() in event_sched_in() */
3049 smp_rmb();
3050
3051 /*
3052 * We only want to restart ACTIVE events, so if the event goes
3053 * inactive here (event->oncpu==-1), there's nothing more to do;
3054 * fall through with ret==-ENXIO.
3055 */
3056 ret = cpu_function_call(READ_ONCE(event->oncpu),
3057 __perf_event_stop, &sd);
3058 } while (ret == -EAGAIN);
3059
3060 return ret;
3061}
3062
3063/*
3064 * In order to contain the amount of racy and tricky in the address filter
3065 * configuration management, it is a two part process:
3066 *
3067 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below,
3068 * we update the addresses of corresponding vmas in
c60f83b8 3069 * event::addr_filter_ranges array and bump the event::addr_filters_gen;
375637bc
AS
3070 * (p2) when an event is scheduled in (pmu::add), it calls
3071 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync()
3072 * if the generation has changed since the previous call.
3073 *
3074 * If (p1) happens while the event is active, we restart it to force (p2).
3075 *
3076 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on
3077 * pre-existing mappings, called once when new filters arrive via SET_FILTER
3078 * ioctl;
3079 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly
3080 * registered mapping, called for every new mmap(), with mm::mmap_sem down
3081 * for reading;
3082 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process
3083 * of exec.
3084 */
3085void perf_event_addr_filters_sync(struct perf_event *event)
3086{
3087 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
3088
3089 if (!has_addr_filter(event))
3090 return;
3091
3092 raw_spin_lock(&ifh->lock);
3093 if (event->addr_filters_gen != event->hw.addr_filters_gen) {
3094 event->pmu->addr_filters_sync(event);
3095 event->hw.addr_filters_gen = event->addr_filters_gen;
3096 }
3097 raw_spin_unlock(&ifh->lock);
3098}
3099EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync);
3100
f63a8daa 3101static int _perf_event_refresh(struct perf_event *event, int refresh)
79f14641 3102{
2023b359 3103 /*
cdd6c482 3104 * not supported on inherited events
2023b359 3105 */
2e939d1d 3106 if (event->attr.inherit || !is_sampling_event(event))
2023b359
PZ
3107 return -EINVAL;
3108
cdd6c482 3109 atomic_add(refresh, &event->event_limit);
f63a8daa 3110 _perf_event_enable(event);
2023b359
PZ
3111
3112 return 0;
79f14641 3113}
f63a8daa
PZ
3114
3115/*
3116 * See perf_event_disable()
3117 */
3118int perf_event_refresh(struct perf_event *event, int refresh)
3119{
3120 struct perf_event_context *ctx;
3121 int ret;
3122
3123 ctx = perf_event_ctx_lock(event);
3124 ret = _perf_event_refresh(event, refresh);
3125 perf_event_ctx_unlock(event, ctx);
3126
3127 return ret;
3128}
26ca5c11 3129EXPORT_SYMBOL_GPL(perf_event_refresh);
79f14641 3130
32ff77e8
MC
3131static int perf_event_modify_breakpoint(struct perf_event *bp,
3132 struct perf_event_attr *attr)
3133{
3134 int err;
3135
3136 _perf_event_disable(bp);
3137
3138 err = modify_user_hw_breakpoint_check(bp, attr, true);
32ff77e8 3139
bf06278c 3140 if (!bp->attr.disabled)
32ff77e8 3141 _perf_event_enable(bp);
bf06278c
JO
3142
3143 return err;
32ff77e8
MC
3144}
3145
3146static int perf_event_modify_attr(struct perf_event *event,
3147 struct perf_event_attr *attr)
3148{
3149 if (event->attr.type != attr->type)
3150 return -EINVAL;
3151
3152 switch (event->attr.type) {
3153 case PERF_TYPE_BREAKPOINT:
3154 return perf_event_modify_breakpoint(event, attr);
3155 default:
3156 /* Place holder for future additions. */
3157 return -EOPNOTSUPP;
3158 }
3159}
3160
5b0311e1
FW
3161static void ctx_sched_out(struct perf_event_context *ctx,
3162 struct perf_cpu_context *cpuctx,
3163 enum event_type_t event_type)
235c7fc7 3164{
6668128a 3165 struct perf_event *event, *tmp;
db24d33e 3166 int is_active = ctx->is_active;
235c7fc7 3167
c994d613 3168 lockdep_assert_held(&ctx->lock);
235c7fc7 3169
39a43640
PZ
3170 if (likely(!ctx->nr_events)) {
3171 /*
3172 * See __perf_remove_from_context().
3173 */
3174 WARN_ON_ONCE(ctx->is_active);
3175 if (ctx->task)
3176 WARN_ON_ONCE(cpuctx->task_ctx);
facc4307 3177 return;
39a43640
PZ
3178 }
3179
db24d33e 3180 ctx->is_active &= ~event_type;
3cbaa590
PZ
3181 if (!(ctx->is_active & EVENT_ALL))
3182 ctx->is_active = 0;
3183
63e30d3e
PZ
3184 if (ctx->task) {
3185 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3186 if (!ctx->is_active)
3187 cpuctx->task_ctx = NULL;
3188 }
facc4307 3189
8fdc6539
PZ
3190 /*
3191 * Always update time if it was set; not only when it changes.
3192 * Otherwise we can 'forget' to update time for any but the last
3193 * context we sched out. For example:
3194 *
3195 * ctx_sched_out(.event_type = EVENT_FLEXIBLE)
3196 * ctx_sched_out(.event_type = EVENT_PINNED)
3197 *
3198 * would only update time for the pinned events.
3199 */
3cbaa590
PZ
3200 if (is_active & EVENT_TIME) {
3201 /* update (and stop) ctx time */
3202 update_context_time(ctx);
3203 update_cgrp_time_from_cpuctx(cpuctx);
3204 }
3205
8fdc6539
PZ
3206 is_active ^= ctx->is_active; /* changed bits */
3207
3cbaa590 3208 if (!ctx->nr_active || !(is_active & EVENT_ALL))
facc4307 3209 return;
5b0311e1 3210
075e0b00 3211 perf_pmu_disable(ctx->pmu);
3cbaa590 3212 if (is_active & EVENT_PINNED) {
6668128a 3213 list_for_each_entry_safe(event, tmp, &ctx->pinned_active, active_list)
889ff015 3214 group_sched_out(event, cpuctx, ctx);
9ed6060d 3215 }
889ff015 3216
3cbaa590 3217 if (is_active & EVENT_FLEXIBLE) {
6668128a 3218 list_for_each_entry_safe(event, tmp, &ctx->flexible_active, active_list)
8c9ed8e1 3219 group_sched_out(event, cpuctx, ctx);
90c91dfb
PZ
3220
3221 /*
3222 * Since we cleared EVENT_FLEXIBLE, also clear
3223 * rotate_necessary, is will be reset by
3224 * ctx_flexible_sched_in() when needed.
3225 */
3226 ctx->rotate_necessary = 0;
9ed6060d 3227 }
1b9a644f 3228 perf_pmu_enable(ctx->pmu);
235c7fc7
IM
3229}
3230
564c2b21 3231/*
5a3126d4
PZ
3232 * Test whether two contexts are equivalent, i.e. whether they have both been
3233 * cloned from the same version of the same context.
3234 *
3235 * Equivalence is measured using a generation number in the context that is
3236 * incremented on each modification to it; see unclone_ctx(), list_add_event()
3237 * and list_del_event().
564c2b21 3238 */
cdd6c482
IM
3239static int context_equiv(struct perf_event_context *ctx1,
3240 struct perf_event_context *ctx2)
564c2b21 3241{
211de6eb
PZ
3242 lockdep_assert_held(&ctx1->lock);
3243 lockdep_assert_held(&ctx2->lock);
3244
5a3126d4
PZ
3245 /* Pinning disables the swap optimization */
3246 if (ctx1->pin_count || ctx2->pin_count)
3247 return 0;
3248
3249 /* If ctx1 is the parent of ctx2 */
3250 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
3251 return 1;
3252
3253 /* If ctx2 is the parent of ctx1 */
3254 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
3255 return 1;
3256
3257 /*
3258 * If ctx1 and ctx2 have the same parent; we flatten the parent
3259 * hierarchy, see perf_event_init_context().
3260 */
3261 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
3262 ctx1->parent_gen == ctx2->parent_gen)
3263 return 1;
3264
3265 /* Unmatched */
3266 return 0;
564c2b21
PM
3267}
3268
cdd6c482
IM
3269static void __perf_event_sync_stat(struct perf_event *event,
3270 struct perf_event *next_event)
bfbd3381
PZ
3271{
3272 u64 value;
3273
cdd6c482 3274 if (!event->attr.inherit_stat)
bfbd3381
PZ
3275 return;
3276
3277 /*
cdd6c482 3278 * Update the event value, we cannot use perf_event_read()
bfbd3381
PZ
3279 * because we're in the middle of a context switch and have IRQs
3280 * disabled, which upsets smp_call_function_single(), however
cdd6c482 3281 * we know the event must be on the current CPU, therefore we
bfbd3381
PZ
3282 * don't need to use it.
3283 */
0d3d73aa 3284 if (event->state == PERF_EVENT_STATE_ACTIVE)
3dbebf15 3285 event->pmu->read(event);
bfbd3381 3286
0d3d73aa 3287 perf_event_update_time(event);
bfbd3381
PZ
3288
3289 /*
cdd6c482 3290 * In order to keep per-task stats reliable we need to flip the event
bfbd3381
PZ
3291 * values when we flip the contexts.
3292 */
e7850595
PZ
3293 value = local64_read(&next_event->count);
3294 value = local64_xchg(&event->count, value);
3295 local64_set(&next_event->count, value);
bfbd3381 3296
cdd6c482
IM
3297 swap(event->total_time_enabled, next_event->total_time_enabled);
3298 swap(event->total_time_running, next_event->total_time_running);
19d2e755 3299
bfbd3381 3300 /*
19d2e755 3301 * Since we swizzled the values, update the user visible data too.
bfbd3381 3302 */
cdd6c482
IM
3303 perf_event_update_userpage(event);
3304 perf_event_update_userpage(next_event);
bfbd3381
PZ
3305}
3306
cdd6c482
IM
3307static void perf_event_sync_stat(struct perf_event_context *ctx,
3308 struct perf_event_context *next_ctx)
bfbd3381 3309{
cdd6c482 3310 struct perf_event *event, *next_event;
bfbd3381
PZ
3311
3312 if (!ctx->nr_stat)
3313 return;
3314
02ffdbc8
PZ
3315 update_context_time(ctx);
3316
cdd6c482
IM
3317 event = list_first_entry(&ctx->event_list,
3318 struct perf_event, event_entry);
bfbd3381 3319
cdd6c482
IM
3320 next_event = list_first_entry(&next_ctx->event_list,
3321 struct perf_event, event_entry);
bfbd3381 3322
cdd6c482
IM
3323 while (&event->event_entry != &ctx->event_list &&
3324 &next_event->event_entry != &next_ctx->event_list) {
bfbd3381 3325
cdd6c482 3326 __perf_event_sync_stat(event, next_event);
bfbd3381 3327
cdd6c482
IM
3328 event = list_next_entry(event, event_entry);
3329 next_event = list_next_entry(next_event, event_entry);
bfbd3381
PZ
3330 }
3331}
3332
fe4b04fa
PZ
3333static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
3334 struct task_struct *next)
0793a61d 3335{
8dc85d54 3336 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
cdd6c482 3337 struct perf_event_context *next_ctx;
5a3126d4 3338 struct perf_event_context *parent, *next_parent;
108b02cf 3339 struct perf_cpu_context *cpuctx;
c93f7669 3340 int do_switch = 1;
0793a61d 3341
108b02cf
PZ
3342 if (likely(!ctx))
3343 return;
10989fb2 3344
108b02cf
PZ
3345 cpuctx = __get_cpu_context(ctx);
3346 if (!cpuctx->task_ctx)
0793a61d
TG
3347 return;
3348
c93f7669 3349 rcu_read_lock();
8dc85d54 3350 next_ctx = next->perf_event_ctxp[ctxn];
5a3126d4
PZ
3351 if (!next_ctx)
3352 goto unlock;
3353
3354 parent = rcu_dereference(ctx->parent_ctx);
3355 next_parent = rcu_dereference(next_ctx->parent_ctx);
3356
3357 /* If neither context have a parent context; they cannot be clones. */
802c8a61 3358 if (!parent && !next_parent)
5a3126d4
PZ
3359 goto unlock;
3360
3361 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
c93f7669
PM
3362 /*
3363 * Looks like the two contexts are clones, so we might be
3364 * able to optimize the context switch. We lock both
3365 * contexts and check that they are clones under the
3366 * lock (including re-checking that neither has been
3367 * uncloned in the meantime). It doesn't matter which
3368 * order we take the locks because no other cpu could
3369 * be trying to lock both of these tasks.
3370 */
e625cce1
TG
3371 raw_spin_lock(&ctx->lock);
3372 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
c93f7669 3373 if (context_equiv(ctx, next_ctx)) {
c2b98a86
AB
3374 struct pmu *pmu = ctx->pmu;
3375
63b6da39
PZ
3376 WRITE_ONCE(ctx->task, next);
3377 WRITE_ONCE(next_ctx->task, task);
5a158c3c 3378
c2b98a86
AB
3379 /*
3380 * PMU specific parts of task perf context can require
3381 * additional synchronization. As an example of such
3382 * synchronization see implementation details of Intel
3383 * LBR call stack data profiling;
3384 */
3385 if (pmu->swap_task_ctx)
3386 pmu->swap_task_ctx(ctx, next_ctx);
3387 else
3388 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
5a158c3c 3389
63b6da39
PZ
3390 /*
3391 * RCU_INIT_POINTER here is safe because we've not
3392 * modified the ctx and the above modification of
3393 * ctx->task and ctx->task_ctx_data are immaterial
3394 * since those values are always verified under
3395 * ctx->lock which we're now holding.
3396 */
3397 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx);
3398 RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx);
3399
c93f7669 3400 do_switch = 0;
bfbd3381 3401
cdd6c482 3402 perf_event_sync_stat(ctx, next_ctx);
c93f7669 3403 }
e625cce1
TG
3404 raw_spin_unlock(&next_ctx->lock);
3405 raw_spin_unlock(&ctx->lock);
564c2b21 3406 }
5a3126d4 3407unlock:
c93f7669 3408 rcu_read_unlock();
564c2b21 3409
c93f7669 3410 if (do_switch) {
facc4307 3411 raw_spin_lock(&ctx->lock);
487f05e1 3412 task_ctx_sched_out(cpuctx, ctx, EVENT_ALL);
facc4307 3413 raw_spin_unlock(&ctx->lock);
c93f7669 3414 }
0793a61d
TG
3415}
3416
e48c1788
PZ
3417static DEFINE_PER_CPU(struct list_head, sched_cb_list);
3418
ba532500
YZ
3419void perf_sched_cb_dec(struct pmu *pmu)
3420{
e48c1788
PZ
3421 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3422
ba532500 3423 this_cpu_dec(perf_sched_cb_usages);
e48c1788
PZ
3424
3425 if (!--cpuctx->sched_cb_usage)
3426 list_del(&cpuctx->sched_cb_entry);
ba532500
YZ
3427}
3428
e48c1788 3429
ba532500
YZ
3430void perf_sched_cb_inc(struct pmu *pmu)
3431{
e48c1788
PZ
3432 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3433
3434 if (!cpuctx->sched_cb_usage++)
3435 list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list));
3436
ba532500
YZ
3437 this_cpu_inc(perf_sched_cb_usages);
3438}
3439
3440/*
3441 * This function provides the context switch callback to the lower code
3442 * layer. It is invoked ONLY when the context switch callback is enabled.
09e61b4f
PZ
3443 *
3444 * This callback is relevant even to per-cpu events; for example multi event
3445 * PEBS requires this to provide PID/TID information. This requires we flush
3446 * all queued PEBS records before we context switch to a new task.
ba532500
YZ
3447 */
3448static void perf_pmu_sched_task(struct task_struct *prev,
3449 struct task_struct *next,
3450 bool sched_in)
3451{
3452 struct perf_cpu_context *cpuctx;
3453 struct pmu *pmu;
ba532500
YZ
3454
3455 if (prev == next)
3456 return;
3457
e48c1788 3458 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
1fd7e416 3459 pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */
ba532500 3460
e48c1788
PZ
3461 if (WARN_ON_ONCE(!pmu->sched_task))
3462 continue;
ba532500 3463
e48c1788
PZ
3464 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
3465 perf_pmu_disable(pmu);
ba532500 3466
e48c1788 3467 pmu->sched_task(cpuctx->task_ctx, sched_in);
ba532500 3468
e48c1788
PZ
3469 perf_pmu_enable(pmu);
3470 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
ba532500 3471 }
ba532500
YZ
3472}
3473
45ac1403
AH
3474static void perf_event_switch(struct task_struct *task,
3475 struct task_struct *next_prev, bool sched_in);
3476
8dc85d54
PZ
3477#define for_each_task_context_nr(ctxn) \
3478 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
3479
3480/*
3481 * Called from scheduler to remove the events of the current task,
3482 * with interrupts disabled.
3483 *
3484 * We stop each event and update the event value in event->count.
3485 *
3486 * This does not protect us against NMI, but disable()
3487 * sets the disabled bit in the control field of event _before_
3488 * accessing the event control register. If a NMI hits, then it will
3489 * not restart the event.
3490 */
ab0cce56
JO
3491void __perf_event_task_sched_out(struct task_struct *task,
3492 struct task_struct *next)
8dc85d54
PZ
3493{
3494 int ctxn;
3495
ba532500
YZ
3496 if (__this_cpu_read(perf_sched_cb_usages))
3497 perf_pmu_sched_task(task, next, false);
3498
45ac1403
AH
3499 if (atomic_read(&nr_switch_events))
3500 perf_event_switch(task, next, false);
3501
8dc85d54
PZ
3502 for_each_task_context_nr(ctxn)
3503 perf_event_context_sched_out(task, ctxn, next);
e5d1367f
SE
3504
3505 /*
3506 * if cgroup events exist on this CPU, then we need
3507 * to check if we have to switch out PMU state.
3508 * cgroup event are system-wide mode only
3509 */
4a32fea9 3510 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
a8d757ef 3511 perf_cgroup_sched_out(task, next);
8dc85d54
PZ
3512}
3513
5b0311e1
FW
3514/*
3515 * Called with IRQs disabled
3516 */
3517static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
3518 enum event_type_t event_type)
3519{
3520 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
04289bb9
IM
3521}
3522
6eef8a71 3523static bool perf_less_group_idx(const void *l, const void *r)
0793a61d 3524{
24fb6b8e
IR
3525 const struct perf_event *le = *(const struct perf_event **)l;
3526 const struct perf_event *re = *(const struct perf_event **)r;
6eef8a71
IR
3527
3528 return le->group_index < re->group_index;
3529}
3530
3531static void swap_ptr(void *l, void *r)
3532{
3533 void **lp = l, **rp = r;
3534
3535 swap(*lp, *rp);
3536}
3537
3538static const struct min_heap_callbacks perf_min_heap = {
3539 .elem_size = sizeof(struct perf_event *),
3540 .less = perf_less_group_idx,
3541 .swp = swap_ptr,
3542};
3543
3544static void __heap_add(struct min_heap *heap, struct perf_event *event)
3545{
3546 struct perf_event **itrs = heap->data;
3547
3548 if (event) {
3549 itrs[heap->nr] = event;
3550 heap->nr++;
3551 }
3552}
3553
836196be
IR
3554static noinline int visit_groups_merge(struct perf_cpu_context *cpuctx,
3555 struct perf_event_groups *groups, int cpu,
6eef8a71
IR
3556 int (*func)(struct perf_event *, void *),
3557 void *data)
3558{
95ed6c70
IR
3559#ifdef CONFIG_CGROUP_PERF
3560 struct cgroup_subsys_state *css = NULL;
3561#endif
6eef8a71
IR
3562 /* Space for per CPU and/or any CPU event iterators. */
3563 struct perf_event *itrs[2];
836196be
IR
3564 struct min_heap event_heap;
3565 struct perf_event **evt;
1cac7b1a 3566 int ret;
8e1a2031 3567
836196be
IR
3568 if (cpuctx) {
3569 event_heap = (struct min_heap){
3570 .data = cpuctx->heap,
3571 .nr = 0,
3572 .size = cpuctx->heap_size,
3573 };
c2283c93
IR
3574
3575 lockdep_assert_held(&cpuctx->ctx.lock);
95ed6c70
IR
3576
3577#ifdef CONFIG_CGROUP_PERF
3578 if (cpuctx->cgrp)
3579 css = &cpuctx->cgrp->css;
3580#endif
836196be
IR
3581 } else {
3582 event_heap = (struct min_heap){
3583 .data = itrs,
3584 .nr = 0,
3585 .size = ARRAY_SIZE(itrs),
3586 };
3587 /* Events not within a CPU context may be on any CPU. */
95ed6c70 3588 __heap_add(&event_heap, perf_event_groups_first(groups, -1, NULL));
836196be
IR
3589 }
3590 evt = event_heap.data;
3591
95ed6c70
IR
3592 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, NULL));
3593
3594#ifdef CONFIG_CGROUP_PERF
3595 for (; css; css = css->parent)
3596 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, css->cgroup));
3597#endif
1cac7b1a 3598
6eef8a71 3599 min_heapify_all(&event_heap, &perf_min_heap);
1cac7b1a 3600
6eef8a71 3601 while (event_heap.nr) {
1cac7b1a
PZ
3602 ret = func(*evt, data);
3603 if (ret)
3604 return ret;
3605
3606 *evt = perf_event_groups_next(*evt);
6eef8a71
IR
3607 if (*evt)
3608 min_heapify(&event_heap, 0, &perf_min_heap);
3609 else
3610 min_heap_pop(&event_heap, &perf_min_heap);
8e1a2031 3611 }
0793a61d 3612
1cac7b1a
PZ
3613 return 0;
3614}
3615
ab6f824c 3616static int merge_sched_in(struct perf_event *event, void *data)
1cac7b1a 3617{
2c2366c7
PZ
3618 struct perf_event_context *ctx = event->ctx;
3619 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
3620 int *can_add_hw = data;
ab6f824c 3621
1cac7b1a
PZ
3622 if (event->state <= PERF_EVENT_STATE_OFF)
3623 return 0;
3624
3625 if (!event_filter_match(event))
3626 return 0;
3627
2c2366c7
PZ
3628 if (group_can_go_on(event, cpuctx, *can_add_hw)) {
3629 if (!group_sched_in(event, cpuctx, ctx))
ab6f824c 3630 list_add_tail(&event->active_list, get_event_list(event));
6668128a 3631 }
1cac7b1a 3632
ab6f824c 3633 if (event->state == PERF_EVENT_STATE_INACTIVE) {
33238c50
PZ
3634 if (event->attr.pinned) {
3635 perf_cgroup_event_disable(event, ctx);
ab6f824c 3636 perf_event_set_state(event, PERF_EVENT_STATE_ERROR);
33238c50 3637 }
1cac7b1a 3638
2c2366c7
PZ
3639 *can_add_hw = 0;
3640 ctx->rotate_necessary = 1;
3b6f9e5c 3641 }
1cac7b1a
PZ
3642
3643 return 0;
5b0311e1
FW
3644}
3645
3646static void
1cac7b1a
PZ
3647ctx_pinned_sched_in(struct perf_event_context *ctx,
3648 struct perf_cpu_context *cpuctx)
5b0311e1 3649{
2c2366c7 3650 int can_add_hw = 1;
3b6f9e5c 3651
836196be
IR
3652 if (ctx != &cpuctx->ctx)
3653 cpuctx = NULL;
3654
3655 visit_groups_merge(cpuctx, &ctx->pinned_groups,
1cac7b1a 3656 smp_processor_id(),
2c2366c7 3657 merge_sched_in, &can_add_hw);
1cac7b1a 3658}
8e1a2031 3659
1cac7b1a
PZ
3660static void
3661ctx_flexible_sched_in(struct perf_event_context *ctx,
3662 struct perf_cpu_context *cpuctx)
3663{
2c2366c7 3664 int can_add_hw = 1;
0793a61d 3665
836196be
IR
3666 if (ctx != &cpuctx->ctx)
3667 cpuctx = NULL;
3668
3669 visit_groups_merge(cpuctx, &ctx->flexible_groups,
1cac7b1a 3670 smp_processor_id(),
2c2366c7 3671 merge_sched_in, &can_add_hw);
5b0311e1
FW
3672}
3673
3674static void
3675ctx_sched_in(struct perf_event_context *ctx,
3676 struct perf_cpu_context *cpuctx,
e5d1367f
SE
3677 enum event_type_t event_type,
3678 struct task_struct *task)
5b0311e1 3679{
db24d33e 3680 int is_active = ctx->is_active;
c994d613
PZ
3681 u64 now;
3682
3683 lockdep_assert_held(&ctx->lock);
e5d1367f 3684
5b0311e1 3685 if (likely(!ctx->nr_events))
facc4307 3686 return;
5b0311e1 3687
3cbaa590 3688 ctx->is_active |= (event_type | EVENT_TIME);
63e30d3e
PZ
3689 if (ctx->task) {
3690 if (!is_active)
3691 cpuctx->task_ctx = ctx;
3692 else
3693 WARN_ON_ONCE(cpuctx->task_ctx != ctx);
3694 }
3695
3cbaa590
PZ
3696 is_active ^= ctx->is_active; /* changed bits */
3697
3698 if (is_active & EVENT_TIME) {
3699 /* start ctx time */
3700 now = perf_clock();
3701 ctx->timestamp = now;
3702 perf_cgroup_set_timestamp(task, ctx);
3703 }
3704
5b0311e1
FW
3705 /*
3706 * First go through the list and put on any pinned groups
3707 * in order to give them the best chance of going on.
3708 */
3cbaa590 3709 if (is_active & EVENT_PINNED)
6e37738a 3710 ctx_pinned_sched_in(ctx, cpuctx);
5b0311e1
FW
3711
3712 /* Then walk through the lower prio flexible groups */
3cbaa590 3713 if (is_active & EVENT_FLEXIBLE)
6e37738a 3714 ctx_flexible_sched_in(ctx, cpuctx);
235c7fc7
IM
3715}
3716
329c0e01 3717static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
e5d1367f
SE
3718 enum event_type_t event_type,
3719 struct task_struct *task)
329c0e01
FW
3720{
3721 struct perf_event_context *ctx = &cpuctx->ctx;
3722
e5d1367f 3723 ctx_sched_in(ctx, cpuctx, event_type, task);
329c0e01
FW
3724}
3725
e5d1367f
SE
3726static void perf_event_context_sched_in(struct perf_event_context *ctx,
3727 struct task_struct *task)
235c7fc7 3728{
108b02cf 3729 struct perf_cpu_context *cpuctx;
235c7fc7 3730
108b02cf 3731 cpuctx = __get_cpu_context(ctx);
329c0e01
FW
3732 if (cpuctx->task_ctx == ctx)
3733 return;
3734
facc4307 3735 perf_ctx_lock(cpuctx, ctx);
fdccc3fb 3736 /*
3737 * We must check ctx->nr_events while holding ctx->lock, such
3738 * that we serialize against perf_install_in_context().
3739 */
3740 if (!ctx->nr_events)
3741 goto unlock;
3742
1b9a644f 3743 perf_pmu_disable(ctx->pmu);
329c0e01
FW
3744 /*
3745 * We want to keep the following priority order:
3746 * cpu pinned (that don't need to move), task pinned,
3747 * cpu flexible, task flexible.
fe45bafb
AS
3748 *
3749 * However, if task's ctx is not carrying any pinned
3750 * events, no need to flip the cpuctx's events around.
329c0e01 3751 */
8e1a2031 3752 if (!RB_EMPTY_ROOT(&ctx->pinned_groups.tree))
fe45bafb 3753 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
63e30d3e 3754 perf_event_sched_in(cpuctx, ctx, task);
facc4307 3755 perf_pmu_enable(ctx->pmu);
fdccc3fb 3756
3757unlock:
facc4307 3758 perf_ctx_unlock(cpuctx, ctx);
235c7fc7
IM
3759}
3760
8dc85d54
PZ
3761/*
3762 * Called from scheduler to add the events of the current task
3763 * with interrupts disabled.
3764 *
3765 * We restore the event value and then enable it.
3766 *
3767 * This does not protect us against NMI, but enable()
3768 * sets the enabled bit in the control field of event _before_
3769 * accessing the event control register. If a NMI hits, then it will
3770 * keep the event running.
3771 */
ab0cce56
JO
3772void __perf_event_task_sched_in(struct task_struct *prev,
3773 struct task_struct *task)
8dc85d54
PZ
3774{
3775 struct perf_event_context *ctx;
3776 int ctxn;
3777
7e41d177
PZ
3778 /*
3779 * If cgroup events exist on this CPU, then we need to check if we have
3780 * to switch in PMU state; cgroup event are system-wide mode only.
3781 *
3782 * Since cgroup events are CPU events, we must schedule these in before
3783 * we schedule in the task events.
3784 */
3785 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
3786 perf_cgroup_sched_in(prev, task);
3787
8dc85d54
PZ
3788 for_each_task_context_nr(ctxn) {
3789 ctx = task->perf_event_ctxp[ctxn];
3790 if (likely(!ctx))
3791 continue;
3792
e5d1367f 3793 perf_event_context_sched_in(ctx, task);
8dc85d54 3794 }
d010b332 3795
45ac1403
AH
3796 if (atomic_read(&nr_switch_events))
3797 perf_event_switch(task, prev, true);
3798
ba532500
YZ
3799 if (__this_cpu_read(perf_sched_cb_usages))
3800 perf_pmu_sched_task(prev, task, true);
235c7fc7
IM
3801}
3802
abd50713
PZ
3803static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
3804{
3805 u64 frequency = event->attr.sample_freq;
3806 u64 sec = NSEC_PER_SEC;
3807 u64 divisor, dividend;
3808
3809 int count_fls, nsec_fls, frequency_fls, sec_fls;
3810
3811 count_fls = fls64(count);
3812 nsec_fls = fls64(nsec);
3813 frequency_fls = fls64(frequency);
3814 sec_fls = 30;
3815
3816 /*
3817 * We got @count in @nsec, with a target of sample_freq HZ
3818 * the target period becomes:
3819 *
3820 * @count * 10^9
3821 * period = -------------------
3822 * @nsec * sample_freq
3823 *
3824 */
3825
3826 /*
3827 * Reduce accuracy by one bit such that @a and @b converge
3828 * to a similar magnitude.
3829 */
fe4b04fa 3830#define REDUCE_FLS(a, b) \
abd50713
PZ
3831do { \
3832 if (a##_fls > b##_fls) { \
3833 a >>= 1; \
3834 a##_fls--; \
3835 } else { \
3836 b >>= 1; \
3837 b##_fls--; \
3838 } \
3839} while (0)
3840
3841 /*
3842 * Reduce accuracy until either term fits in a u64, then proceed with
3843 * the other, so that finally we can do a u64/u64 division.
3844 */
3845 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
3846 REDUCE_FLS(nsec, frequency);
3847 REDUCE_FLS(sec, count);
3848 }
3849
3850 if (count_fls + sec_fls > 64) {
3851 divisor = nsec * frequency;
3852
3853 while (count_fls + sec_fls > 64) {
3854 REDUCE_FLS(count, sec);
3855 divisor >>= 1;
3856 }
3857
3858 dividend = count * sec;
3859 } else {
3860 dividend = count * sec;
3861
3862 while (nsec_fls + frequency_fls > 64) {
3863 REDUCE_FLS(nsec, frequency);
3864 dividend >>= 1;
3865 }
3866
3867 divisor = nsec * frequency;
3868 }
3869
f6ab91ad
PZ
3870 if (!divisor)
3871 return dividend;
3872
abd50713
PZ
3873 return div64_u64(dividend, divisor);
3874}
3875
e050e3f0
SE
3876static DEFINE_PER_CPU(int, perf_throttled_count);
3877static DEFINE_PER_CPU(u64, perf_throttled_seq);
3878
f39d47ff 3879static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
bd2b5b12 3880{
cdd6c482 3881 struct hw_perf_event *hwc = &event->hw;
f6ab91ad 3882 s64 period, sample_period;
bd2b5b12
PZ
3883 s64 delta;
3884
abd50713 3885 period = perf_calculate_period(event, nsec, count);
bd2b5b12
PZ
3886
3887 delta = (s64)(period - hwc->sample_period);
3888 delta = (delta + 7) / 8; /* low pass filter */
3889
3890 sample_period = hwc->sample_period + delta;
3891
3892 if (!sample_period)
3893 sample_period = 1;
3894
bd2b5b12 3895 hwc->sample_period = sample_period;
abd50713 3896
e7850595 3897 if (local64_read(&hwc->period_left) > 8*sample_period) {
f39d47ff
SE
3898 if (disable)
3899 event->pmu->stop(event, PERF_EF_UPDATE);
3900
e7850595 3901 local64_set(&hwc->period_left, 0);
f39d47ff
SE
3902
3903 if (disable)
3904 event->pmu->start(event, PERF_EF_RELOAD);
abd50713 3905 }
bd2b5b12
PZ
3906}
3907
e050e3f0
SE
3908/*
3909 * combine freq adjustment with unthrottling to avoid two passes over the
3910 * events. At the same time, make sure, having freq events does not change
3911 * the rate of unthrottling as that would introduce bias.
3912 */
3913static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
3914 int needs_unthr)
60db5e09 3915{
cdd6c482
IM
3916 struct perf_event *event;
3917 struct hw_perf_event *hwc;
e050e3f0 3918 u64 now, period = TICK_NSEC;
abd50713 3919 s64 delta;
60db5e09 3920
e050e3f0
SE
3921 /*
3922 * only need to iterate over all events iff:
3923 * - context have events in frequency mode (needs freq adjust)
3924 * - there are events to unthrottle on this cpu
3925 */
3926 if (!(ctx->nr_freq || needs_unthr))
0f5a2601
PZ
3927 return;
3928
e050e3f0 3929 raw_spin_lock(&ctx->lock);
f39d47ff 3930 perf_pmu_disable(ctx->pmu);
e050e3f0 3931
03541f8b 3932 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
cdd6c482 3933 if (event->state != PERF_EVENT_STATE_ACTIVE)
60db5e09
PZ
3934 continue;
3935
5632ab12 3936 if (!event_filter_match(event))
5d27c23d
PZ
3937 continue;
3938
44377277
AS
3939 perf_pmu_disable(event->pmu);
3940
cdd6c482 3941 hwc = &event->hw;
6a24ed6c 3942
ae23bff1 3943 if (hwc->interrupts == MAX_INTERRUPTS) {
e050e3f0 3944 hwc->interrupts = 0;
cdd6c482 3945 perf_log_throttle(event, 1);
a4eaf7f1 3946 event->pmu->start(event, 0);
a78ac325
PZ
3947 }
3948
cdd6c482 3949 if (!event->attr.freq || !event->attr.sample_freq)
44377277 3950 goto next;
60db5e09 3951
e050e3f0
SE
3952 /*
3953 * stop the event and update event->count
3954 */
3955 event->pmu->stop(event, PERF_EF_UPDATE);
3956
e7850595 3957 now = local64_read(&event->count);
abd50713
PZ
3958 delta = now - hwc->freq_count_stamp;
3959 hwc->freq_count_stamp = now;
60db5e09 3960
e050e3f0
SE
3961 /*
3962 * restart the event
3963 * reload only if value has changed
f39d47ff
SE
3964 * we have stopped the event so tell that
3965 * to perf_adjust_period() to avoid stopping it
3966 * twice.
e050e3f0 3967 */
abd50713 3968 if (delta > 0)
f39d47ff 3969 perf_adjust_period(event, period, delta, false);
e050e3f0
SE
3970
3971 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
44377277
AS
3972 next:
3973 perf_pmu_enable(event->pmu);
60db5e09 3974 }
e050e3f0 3975
f39d47ff 3976 perf_pmu_enable(ctx->pmu);
e050e3f0 3977 raw_spin_unlock(&ctx->lock);
60db5e09
PZ
3978}
3979
235c7fc7 3980/*
8703a7cf 3981 * Move @event to the tail of the @ctx's elegible events.
235c7fc7 3982 */
8703a7cf 3983static void rotate_ctx(struct perf_event_context *ctx, struct perf_event *event)
0793a61d 3984{
dddd3379
TG
3985 /*
3986 * Rotate the first entry last of non-pinned groups. Rotation might be
3987 * disabled by the inheritance code.
3988 */
8703a7cf
PZ
3989 if (ctx->rotate_disable)
3990 return;
8e1a2031 3991
8703a7cf
PZ
3992 perf_event_groups_delete(&ctx->flexible_groups, event);
3993 perf_event_groups_insert(&ctx->flexible_groups, event);
235c7fc7
IM
3994}
3995
7fa343b7 3996/* pick an event from the flexible_groups to rotate */
8d5bce0c 3997static inline struct perf_event *
7fa343b7 3998ctx_event_to_rotate(struct perf_event_context *ctx)
235c7fc7 3999{
7fa343b7
SL
4000 struct perf_event *event;
4001
4002 /* pick the first active flexible event */
4003 event = list_first_entry_or_null(&ctx->flexible_active,
4004 struct perf_event, active_list);
4005
4006 /* if no active flexible event, pick the first event */
4007 if (!event) {
4008 event = rb_entry_safe(rb_first(&ctx->flexible_groups.tree),
4009 typeof(*event), group_node);
4010 }
4011
90c91dfb
PZ
4012 /*
4013 * Unconditionally clear rotate_necessary; if ctx_flexible_sched_in()
4014 * finds there are unschedulable events, it will set it again.
4015 */
4016 ctx->rotate_necessary = 0;
4017
7fa343b7 4018 return event;
8d5bce0c
PZ
4019}
4020
4021static bool perf_rotate_context(struct perf_cpu_context *cpuctx)
4022{
4023 struct perf_event *cpu_event = NULL, *task_event = NULL;
fd7d5517
IR
4024 struct perf_event_context *task_ctx = NULL;
4025 int cpu_rotate, task_rotate;
8d5bce0c
PZ
4026
4027 /*
4028 * Since we run this from IRQ context, nobody can install new
4029 * events, thus the event count values are stable.
4030 */
7fc23a53 4031
fd7d5517
IR
4032 cpu_rotate = cpuctx->ctx.rotate_necessary;
4033 task_ctx = cpuctx->task_ctx;
4034 task_rotate = task_ctx ? task_ctx->rotate_necessary : 0;
9717e6cd 4035
8d5bce0c
PZ
4036 if (!(cpu_rotate || task_rotate))
4037 return false;
0f5a2601 4038
facc4307 4039 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
1b9a644f 4040 perf_pmu_disable(cpuctx->ctx.pmu);
60db5e09 4041
8d5bce0c 4042 if (task_rotate)
7fa343b7 4043 task_event = ctx_event_to_rotate(task_ctx);
8d5bce0c 4044 if (cpu_rotate)
7fa343b7 4045 cpu_event = ctx_event_to_rotate(&cpuctx->ctx);
8703a7cf 4046
8d5bce0c
PZ
4047 /*
4048 * As per the order given at ctx_resched() first 'pop' task flexible
4049 * and then, if needed CPU flexible.
4050 */
fd7d5517
IR
4051 if (task_event || (task_ctx && cpu_event))
4052 ctx_sched_out(task_ctx, cpuctx, EVENT_FLEXIBLE);
8d5bce0c
PZ
4053 if (cpu_event)
4054 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
0793a61d 4055
8d5bce0c 4056 if (task_event)
fd7d5517 4057 rotate_ctx(task_ctx, task_event);
8d5bce0c
PZ
4058 if (cpu_event)
4059 rotate_ctx(&cpuctx->ctx, cpu_event);
235c7fc7 4060
fd7d5517 4061 perf_event_sched_in(cpuctx, task_ctx, current);
235c7fc7 4062
0f5a2601
PZ
4063 perf_pmu_enable(cpuctx->ctx.pmu);
4064 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
9e630205 4065
8d5bce0c 4066 return true;
e9d2b064
PZ
4067}
4068
4069void perf_event_task_tick(void)
4070{
2fde4f94
MR
4071 struct list_head *head = this_cpu_ptr(&active_ctx_list);
4072 struct perf_event_context *ctx, *tmp;
e050e3f0 4073 int throttled;
b5ab4cd5 4074
16444645 4075 lockdep_assert_irqs_disabled();
e9d2b064 4076
e050e3f0
SE
4077 __this_cpu_inc(perf_throttled_seq);
4078 throttled = __this_cpu_xchg(perf_throttled_count, 0);
555e0c1e 4079 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
e050e3f0 4080
2fde4f94 4081 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
e050e3f0 4082 perf_adjust_freq_unthr_context(ctx, throttled);
0793a61d
TG
4083}
4084
889ff015
FW
4085static int event_enable_on_exec(struct perf_event *event,
4086 struct perf_event_context *ctx)
4087{
4088 if (!event->attr.enable_on_exec)
4089 return 0;
4090
4091 event->attr.enable_on_exec = 0;
4092 if (event->state >= PERF_EVENT_STATE_INACTIVE)
4093 return 0;
4094
0d3d73aa 4095 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE);
889ff015
FW
4096
4097 return 1;
4098}
4099
57e7986e 4100/*
cdd6c482 4101 * Enable all of a task's events that have been marked enable-on-exec.
57e7986e
PM
4102 * This expects task == current.
4103 */
c1274499 4104static void perf_event_enable_on_exec(int ctxn)
57e7986e 4105{
c1274499 4106 struct perf_event_context *ctx, *clone_ctx = NULL;
487f05e1 4107 enum event_type_t event_type = 0;
3e349507 4108 struct perf_cpu_context *cpuctx;
cdd6c482 4109 struct perf_event *event;
57e7986e
PM
4110 unsigned long flags;
4111 int enabled = 0;
4112
4113 local_irq_save(flags);
c1274499 4114 ctx = current->perf_event_ctxp[ctxn];
cdd6c482 4115 if (!ctx || !ctx->nr_events)
57e7986e
PM
4116 goto out;
4117
3e349507
PZ
4118 cpuctx = __get_cpu_context(ctx);
4119 perf_ctx_lock(cpuctx, ctx);
7fce2509 4120 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
487f05e1 4121 list_for_each_entry(event, &ctx->event_list, event_entry) {
3e349507 4122 enabled |= event_enable_on_exec(event, ctx);
487f05e1
AS
4123 event_type |= get_event_type(event);
4124 }
57e7986e
PM
4125
4126 /*
3e349507 4127 * Unclone and reschedule this context if we enabled any event.
57e7986e 4128 */
3e349507 4129 if (enabled) {
211de6eb 4130 clone_ctx = unclone_ctx(ctx);
487f05e1 4131 ctx_resched(cpuctx, ctx, event_type);
7bbba0eb
PZ
4132 } else {
4133 ctx_sched_in(ctx, cpuctx, EVENT_TIME, current);
3e349507
PZ
4134 }
4135 perf_ctx_unlock(cpuctx, ctx);
57e7986e 4136
9ed6060d 4137out:
57e7986e 4138 local_irq_restore(flags);
211de6eb
PZ
4139
4140 if (clone_ctx)
4141 put_ctx(clone_ctx);
57e7986e
PM
4142}
4143
0492d4c5
PZ
4144struct perf_read_data {
4145 struct perf_event *event;
4146 bool group;
7d88962e 4147 int ret;
0492d4c5
PZ
4148};
4149
451d24d1 4150static int __perf_event_read_cpu(struct perf_event *event, int event_cpu)
d6a2f903 4151{
d6a2f903
DCC
4152 u16 local_pkg, event_pkg;
4153
4154 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) {
451d24d1
PZ
4155 int local_cpu = smp_processor_id();
4156
4157 event_pkg = topology_physical_package_id(event_cpu);
4158 local_pkg = topology_physical_package_id(local_cpu);
d6a2f903
DCC
4159
4160 if (event_pkg == local_pkg)
4161 return local_cpu;
4162 }
4163
4164 return event_cpu;
4165}
4166
0793a61d 4167/*
cdd6c482 4168 * Cross CPU call to read the hardware event
0793a61d 4169 */
cdd6c482 4170static void __perf_event_read(void *info)
0793a61d 4171{
0492d4c5
PZ
4172 struct perf_read_data *data = info;
4173 struct perf_event *sub, *event = data->event;
cdd6c482 4174 struct perf_event_context *ctx = event->ctx;
108b02cf 4175 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
4a00c16e 4176 struct pmu *pmu = event->pmu;
621a01ea 4177
e1ac3614
PM
4178 /*
4179 * If this is a task context, we need to check whether it is
4180 * the current task context of this cpu. If not it has been
4181 * scheduled out before the smp call arrived. In that case
cdd6c482
IM
4182 * event->count would have been updated to a recent sample
4183 * when the event was scheduled out.
e1ac3614
PM
4184 */
4185 if (ctx->task && cpuctx->task_ctx != ctx)
4186 return;
4187
e625cce1 4188 raw_spin_lock(&ctx->lock);
0c1cbc18 4189 if (ctx->is_active & EVENT_TIME) {
542e72fc 4190 update_context_time(ctx);
e5d1367f
SE
4191 update_cgrp_time_from_event(event);
4192 }
0492d4c5 4193
0d3d73aa
PZ
4194 perf_event_update_time(event);
4195 if (data->group)
4196 perf_event_update_sibling_time(event);
0c1cbc18 4197
4a00c16e
SB
4198 if (event->state != PERF_EVENT_STATE_ACTIVE)
4199 goto unlock;
0492d4c5 4200
4a00c16e
SB
4201 if (!data->group) {
4202 pmu->read(event);
4203 data->ret = 0;
0492d4c5 4204 goto unlock;
4a00c16e
SB
4205 }
4206
4207 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
4208
4209 pmu->read(event);
0492d4c5 4210
edb39592 4211 for_each_sibling_event(sub, event) {
4a00c16e
SB
4212 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
4213 /*
4214 * Use sibling's PMU rather than @event's since
4215 * sibling could be on different (eg: software) PMU.
4216 */
0492d4c5 4217 sub->pmu->read(sub);
4a00c16e 4218 }
0492d4c5 4219 }
4a00c16e
SB
4220
4221 data->ret = pmu->commit_txn(pmu);
0492d4c5
PZ
4222
4223unlock:
e625cce1 4224 raw_spin_unlock(&ctx->lock);
0793a61d
TG
4225}
4226
b5e58793
PZ
4227static inline u64 perf_event_count(struct perf_event *event)
4228{
c39a0e2c 4229 return local64_read(&event->count) + atomic64_read(&event->child_count);
b5e58793
PZ
4230}
4231
ffe8690c
KX
4232/*
4233 * NMI-safe method to read a local event, that is an event that
4234 * is:
4235 * - either for the current task, or for this CPU
4236 * - does not have inherit set, for inherited task events
4237 * will not be local and we cannot read them atomically
4238 * - must not have a pmu::count method
4239 */
7d9285e8
YS
4240int perf_event_read_local(struct perf_event *event, u64 *value,
4241 u64 *enabled, u64 *running)
ffe8690c
KX
4242{
4243 unsigned long flags;
f91840a3 4244 int ret = 0;
ffe8690c
KX
4245
4246 /*
4247 * Disabling interrupts avoids all counter scheduling (context
4248 * switches, timer based rotation and IPIs).
4249 */
4250 local_irq_save(flags);
4251
ffe8690c
KX
4252 /*
4253 * It must not be an event with inherit set, we cannot read
4254 * all child counters from atomic context.
4255 */
f91840a3
AS
4256 if (event->attr.inherit) {
4257 ret = -EOPNOTSUPP;
4258 goto out;
4259 }
ffe8690c 4260
f91840a3
AS
4261 /* If this is a per-task event, it must be for current */
4262 if ((event->attach_state & PERF_ATTACH_TASK) &&
4263 event->hw.target != current) {
4264 ret = -EINVAL;
4265 goto out;
4266 }
4267
4268 /* If this is a per-CPU event, it must be for this CPU */
4269 if (!(event->attach_state & PERF_ATTACH_TASK) &&
4270 event->cpu != smp_processor_id()) {
4271 ret = -EINVAL;
4272 goto out;
4273 }
ffe8690c 4274
befb1b3c
RC
4275 /* If this is a pinned event it must be running on this CPU */
4276 if (event->attr.pinned && event->oncpu != smp_processor_id()) {
4277 ret = -EBUSY;
4278 goto out;
4279 }
4280
ffe8690c
KX
4281 /*
4282 * If the event is currently on this CPU, its either a per-task event,
4283 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
4284 * oncpu == -1).
4285 */
4286 if (event->oncpu == smp_processor_id())
4287 event->pmu->read(event);
4288
f91840a3 4289 *value = local64_read(&event->count);
0d3d73aa
PZ
4290 if (enabled || running) {
4291 u64 now = event->shadow_ctx_time + perf_clock();
4292 u64 __enabled, __running;
4293
4294 __perf_update_times(event, now, &__enabled, &__running);
4295 if (enabled)
4296 *enabled = __enabled;
4297 if (running)
4298 *running = __running;
4299 }
f91840a3 4300out:
ffe8690c
KX
4301 local_irq_restore(flags);
4302
f91840a3 4303 return ret;
ffe8690c
KX
4304}
4305
7d88962e 4306static int perf_event_read(struct perf_event *event, bool group)
0793a61d 4307{
0c1cbc18 4308 enum perf_event_state state = READ_ONCE(event->state);
451d24d1 4309 int event_cpu, ret = 0;
7d88962e 4310
0793a61d 4311 /*
cdd6c482
IM
4312 * If event is enabled and currently active on a CPU, update the
4313 * value in the event structure:
0793a61d 4314 */
0c1cbc18
PZ
4315again:
4316 if (state == PERF_EVENT_STATE_ACTIVE) {
4317 struct perf_read_data data;
4318
4319 /*
4320 * Orders the ->state and ->oncpu loads such that if we see
4321 * ACTIVE we must also see the right ->oncpu.
4322 *
4323 * Matches the smp_wmb() from event_sched_in().
4324 */
4325 smp_rmb();
d6a2f903 4326
451d24d1
PZ
4327 event_cpu = READ_ONCE(event->oncpu);
4328 if ((unsigned)event_cpu >= nr_cpu_ids)
4329 return 0;
4330
0c1cbc18
PZ
4331 data = (struct perf_read_data){
4332 .event = event,
4333 .group = group,
4334 .ret = 0,
4335 };
4336
451d24d1
PZ
4337 preempt_disable();
4338 event_cpu = __perf_event_read_cpu(event, event_cpu);
d6a2f903 4339
58763148
PZ
4340 /*
4341 * Purposely ignore the smp_call_function_single() return
4342 * value.
4343 *
451d24d1 4344 * If event_cpu isn't a valid CPU it means the event got
58763148
PZ
4345 * scheduled out and that will have updated the event count.
4346 *
4347 * Therefore, either way, we'll have an up-to-date event count
4348 * after this.
4349 */
451d24d1
PZ
4350 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1);
4351 preempt_enable();
58763148 4352 ret = data.ret;
0c1cbc18
PZ
4353
4354 } else if (state == PERF_EVENT_STATE_INACTIVE) {
2b8988c9
PZ
4355 struct perf_event_context *ctx = event->ctx;
4356 unsigned long flags;
4357
e625cce1 4358 raw_spin_lock_irqsave(&ctx->lock, flags);
0c1cbc18
PZ
4359 state = event->state;
4360 if (state != PERF_EVENT_STATE_INACTIVE) {
4361 raw_spin_unlock_irqrestore(&ctx->lock, flags);
4362 goto again;
4363 }
4364
c530ccd9 4365 /*
0c1cbc18
PZ
4366 * May read while context is not active (e.g., thread is
4367 * blocked), in that case we cannot update context time
c530ccd9 4368 */
0c1cbc18 4369 if (ctx->is_active & EVENT_TIME) {
c530ccd9 4370 update_context_time(ctx);
e5d1367f
SE
4371 update_cgrp_time_from_event(event);
4372 }
0c1cbc18 4373
0d3d73aa 4374 perf_event_update_time(event);
0492d4c5 4375 if (group)
0d3d73aa 4376 perf_event_update_sibling_time(event);
e625cce1 4377 raw_spin_unlock_irqrestore(&ctx->lock, flags);
0793a61d 4378 }
7d88962e
SB
4379
4380 return ret;
0793a61d
TG
4381}
4382
a63eaf34 4383/*
cdd6c482 4384 * Initialize the perf_event context in a task_struct:
a63eaf34 4385 */
eb184479 4386static void __perf_event_init_context(struct perf_event_context *ctx)
a63eaf34 4387{
e625cce1 4388 raw_spin_lock_init(&ctx->lock);
a63eaf34 4389 mutex_init(&ctx->mutex);
2fde4f94 4390 INIT_LIST_HEAD(&ctx->active_ctx_list);
8e1a2031
AB
4391 perf_event_groups_init(&ctx->pinned_groups);
4392 perf_event_groups_init(&ctx->flexible_groups);
a63eaf34 4393 INIT_LIST_HEAD(&ctx->event_list);
6668128a
PZ
4394 INIT_LIST_HEAD(&ctx->pinned_active);
4395 INIT_LIST_HEAD(&ctx->flexible_active);
8c94abbb 4396 refcount_set(&ctx->refcount, 1);
eb184479
PZ
4397}
4398
4399static struct perf_event_context *
4400alloc_perf_context(struct pmu *pmu, struct task_struct *task)
4401{
4402 struct perf_event_context *ctx;
4403
4404 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
4405 if (!ctx)
4406 return NULL;
4407
4408 __perf_event_init_context(ctx);
7b3c92b8
MWO
4409 if (task)
4410 ctx->task = get_task_struct(task);
eb184479
PZ
4411 ctx->pmu = pmu;
4412
4413 return ctx;
a63eaf34
PM
4414}
4415
2ebd4ffb
MH
4416static struct task_struct *
4417find_lively_task_by_vpid(pid_t vpid)
4418{
4419 struct task_struct *task;
0793a61d
TG
4420
4421 rcu_read_lock();
2ebd4ffb 4422 if (!vpid)
0793a61d
TG
4423 task = current;
4424 else
2ebd4ffb 4425 task = find_task_by_vpid(vpid);
0793a61d
TG
4426 if (task)
4427 get_task_struct(task);
4428 rcu_read_unlock();
4429
4430 if (!task)
4431 return ERR_PTR(-ESRCH);
4432
2ebd4ffb 4433 return task;
2ebd4ffb
MH
4434}
4435
fe4b04fa
PZ
4436/*
4437 * Returns a matching context with refcount and pincount.
4438 */
108b02cf 4439static struct perf_event_context *
4af57ef2
YZ
4440find_get_context(struct pmu *pmu, struct task_struct *task,
4441 struct perf_event *event)
0793a61d 4442{
211de6eb 4443 struct perf_event_context *ctx, *clone_ctx = NULL;
22a4f650 4444 struct perf_cpu_context *cpuctx;
4af57ef2 4445 void *task_ctx_data = NULL;
25346b93 4446 unsigned long flags;
8dc85d54 4447 int ctxn, err;
4af57ef2 4448 int cpu = event->cpu;
0793a61d 4449
22a4ec72 4450 if (!task) {
cdd6c482 4451 /* Must be root to operate on a CPU event: */
da97e184
JFG
4452 err = perf_allow_cpu(&event->attr);
4453 if (err)
4454 return ERR_PTR(err);
0793a61d 4455
108b02cf 4456 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
0793a61d 4457 ctx = &cpuctx->ctx;
c93f7669 4458 get_ctx(ctx);
fe4b04fa 4459 ++ctx->pin_count;
0793a61d 4460
0793a61d
TG
4461 return ctx;
4462 }
4463
8dc85d54
PZ
4464 err = -EINVAL;
4465 ctxn = pmu->task_ctx_nr;
4466 if (ctxn < 0)
4467 goto errout;
4468
4af57ef2
YZ
4469 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
4470 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
4471 if (!task_ctx_data) {
4472 err = -ENOMEM;
4473 goto errout;
4474 }
4475 }
4476
9ed6060d 4477retry:
8dc85d54 4478 ctx = perf_lock_task_context(task, ctxn, &flags);
c93f7669 4479 if (ctx) {
211de6eb 4480 clone_ctx = unclone_ctx(ctx);
fe4b04fa 4481 ++ctx->pin_count;
4af57ef2
YZ
4482
4483 if (task_ctx_data && !ctx->task_ctx_data) {
4484 ctx->task_ctx_data = task_ctx_data;
4485 task_ctx_data = NULL;
4486 }
e625cce1 4487 raw_spin_unlock_irqrestore(&ctx->lock, flags);
211de6eb
PZ
4488
4489 if (clone_ctx)
4490 put_ctx(clone_ctx);
9137fb28 4491 } else {
eb184479 4492 ctx = alloc_perf_context(pmu, task);
c93f7669
PM
4493 err = -ENOMEM;
4494 if (!ctx)
4495 goto errout;
eb184479 4496
4af57ef2
YZ
4497 if (task_ctx_data) {
4498 ctx->task_ctx_data = task_ctx_data;
4499 task_ctx_data = NULL;
4500 }
4501
dbe08d82
ON
4502 err = 0;
4503 mutex_lock(&task->perf_event_mutex);
4504 /*
4505 * If it has already passed perf_event_exit_task().
4506 * we must see PF_EXITING, it takes this mutex too.
4507 */
4508 if (task->flags & PF_EXITING)
4509 err = -ESRCH;
4510 else if (task->perf_event_ctxp[ctxn])
4511 err = -EAGAIN;
fe4b04fa 4512 else {
9137fb28 4513 get_ctx(ctx);
fe4b04fa 4514 ++ctx->pin_count;
dbe08d82 4515 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
fe4b04fa 4516 }
dbe08d82
ON
4517 mutex_unlock(&task->perf_event_mutex);
4518
4519 if (unlikely(err)) {
9137fb28 4520 put_ctx(ctx);
dbe08d82
ON
4521
4522 if (err == -EAGAIN)
4523 goto retry;
4524 goto errout;
a63eaf34
PM
4525 }
4526 }
4527
4af57ef2 4528 kfree(task_ctx_data);
0793a61d 4529 return ctx;
c93f7669 4530
9ed6060d 4531errout:
4af57ef2 4532 kfree(task_ctx_data);
c93f7669 4533 return ERR_PTR(err);
0793a61d
TG
4534}
4535
6fb2915d 4536static void perf_event_free_filter(struct perf_event *event);
2541517c 4537static void perf_event_free_bpf_prog(struct perf_event *event);
6fb2915d 4538
cdd6c482 4539static void free_event_rcu(struct rcu_head *head)
592903cd 4540{
cdd6c482 4541 struct perf_event *event;
592903cd 4542
cdd6c482
IM
4543 event = container_of(head, struct perf_event, rcu_head);
4544 if (event->ns)
4545 put_pid_ns(event->ns);
6fb2915d 4546 perf_event_free_filter(event);
cdd6c482 4547 kfree(event);
592903cd
PZ
4548}
4549
b69cf536 4550static void ring_buffer_attach(struct perf_event *event,
56de4e8f 4551 struct perf_buffer *rb);
925d519a 4552
f2fb6bef
KL
4553static void detach_sb_event(struct perf_event *event)
4554{
4555 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
4556
4557 raw_spin_lock(&pel->lock);
4558 list_del_rcu(&event->sb_list);
4559 raw_spin_unlock(&pel->lock);
4560}
4561
a4f144eb 4562static bool is_sb_event(struct perf_event *event)
f2fb6bef 4563{
a4f144eb
DCC
4564 struct perf_event_attr *attr = &event->attr;
4565
f2fb6bef 4566 if (event->parent)
a4f144eb 4567 return false;
f2fb6bef
KL
4568
4569 if (event->attach_state & PERF_ATTACH_TASK)
a4f144eb 4570 return false;
f2fb6bef 4571
a4f144eb
DCC
4572 if (attr->mmap || attr->mmap_data || attr->mmap2 ||
4573 attr->comm || attr->comm_exec ||
76193a94 4574 attr->task || attr->ksymbol ||
21038f2b
SL
4575 attr->context_switch ||
4576 attr->bpf_event)
a4f144eb
DCC
4577 return true;
4578 return false;
4579}
4580
4581static void unaccount_pmu_sb_event(struct perf_event *event)
4582{
4583 if (is_sb_event(event))
4584 detach_sb_event(event);
f2fb6bef
KL
4585}
4586
4beb31f3 4587static void unaccount_event_cpu(struct perf_event *event, int cpu)
f1600952 4588{
4beb31f3
FW
4589 if (event->parent)
4590 return;
4591
4beb31f3
FW
4592 if (is_cgroup_event(event))
4593 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
4594}
925d519a 4595
555e0c1e
FW
4596#ifdef CONFIG_NO_HZ_FULL
4597static DEFINE_SPINLOCK(nr_freq_lock);
4598#endif
4599
4600static void unaccount_freq_event_nohz(void)
4601{
4602#ifdef CONFIG_NO_HZ_FULL
4603 spin_lock(&nr_freq_lock);
4604 if (atomic_dec_and_test(&nr_freq_events))
4605 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS);
4606 spin_unlock(&nr_freq_lock);
4607#endif
4608}
4609
4610static void unaccount_freq_event(void)
4611{
4612 if (tick_nohz_full_enabled())
4613 unaccount_freq_event_nohz();
4614 else
4615 atomic_dec(&nr_freq_events);
4616}
4617
4beb31f3
FW
4618static void unaccount_event(struct perf_event *event)
4619{
25432ae9
PZ
4620 bool dec = false;
4621
4beb31f3
FW
4622 if (event->parent)
4623 return;
4624
4625 if (event->attach_state & PERF_ATTACH_TASK)
25432ae9 4626 dec = true;
4beb31f3
FW
4627 if (event->attr.mmap || event->attr.mmap_data)
4628 atomic_dec(&nr_mmap_events);
4629 if (event->attr.comm)
4630 atomic_dec(&nr_comm_events);
e4222673
HB
4631 if (event->attr.namespaces)
4632 atomic_dec(&nr_namespaces_events);
96aaab68
NK
4633 if (event->attr.cgroup)
4634 atomic_dec(&nr_cgroup_events);
4beb31f3
FW
4635 if (event->attr.task)
4636 atomic_dec(&nr_task_events);
948b26b6 4637 if (event->attr.freq)
555e0c1e 4638 unaccount_freq_event();
45ac1403 4639 if (event->attr.context_switch) {
25432ae9 4640 dec = true;
45ac1403
AH
4641 atomic_dec(&nr_switch_events);
4642 }
4beb31f3 4643 if (is_cgroup_event(event))
25432ae9 4644 dec = true;
4beb31f3 4645 if (has_branch_stack(event))
25432ae9 4646 dec = true;
76193a94
SL
4647 if (event->attr.ksymbol)
4648 atomic_dec(&nr_ksymbol_events);
6ee52e2a
SL
4649 if (event->attr.bpf_event)
4650 atomic_dec(&nr_bpf_events);
25432ae9 4651
9107c89e
PZ
4652 if (dec) {
4653 if (!atomic_add_unless(&perf_sched_count, -1, 1))
4654 schedule_delayed_work(&perf_sched_work, HZ);
4655 }
4beb31f3
FW
4656
4657 unaccount_event_cpu(event, event->cpu);
f2fb6bef
KL
4658
4659 unaccount_pmu_sb_event(event);
4beb31f3 4660}
925d519a 4661
9107c89e
PZ
4662static void perf_sched_delayed(struct work_struct *work)
4663{
4664 mutex_lock(&perf_sched_mutex);
4665 if (atomic_dec_and_test(&perf_sched_count))
4666 static_branch_disable(&perf_sched_events);
4667 mutex_unlock(&perf_sched_mutex);
4668}
4669
bed5b25a
AS
4670/*
4671 * The following implement mutual exclusion of events on "exclusive" pmus
4672 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
4673 * at a time, so we disallow creating events that might conflict, namely:
4674 *
4675 * 1) cpu-wide events in the presence of per-task events,
4676 * 2) per-task events in the presence of cpu-wide events,
4677 * 3) two matching events on the same context.
4678 *
4679 * The former two cases are handled in the allocation path (perf_event_alloc(),
a0733e69 4680 * _free_event()), the latter -- before the first perf_install_in_context().
bed5b25a
AS
4681 */
4682static int exclusive_event_init(struct perf_event *event)
4683{
4684 struct pmu *pmu = event->pmu;
4685
8a58ddae 4686 if (!is_exclusive_pmu(pmu))
bed5b25a
AS
4687 return 0;
4688
4689 /*
4690 * Prevent co-existence of per-task and cpu-wide events on the
4691 * same exclusive pmu.
4692 *
4693 * Negative pmu::exclusive_cnt means there are cpu-wide
4694 * events on this "exclusive" pmu, positive means there are
4695 * per-task events.
4696 *
4697 * Since this is called in perf_event_alloc() path, event::ctx
4698 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
4699 * to mean "per-task event", because unlike other attach states it
4700 * never gets cleared.
4701 */
4702 if (event->attach_state & PERF_ATTACH_TASK) {
4703 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
4704 return -EBUSY;
4705 } else {
4706 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
4707 return -EBUSY;
4708 }
4709
4710 return 0;
4711}
4712
4713static void exclusive_event_destroy(struct perf_event *event)
4714{
4715 struct pmu *pmu = event->pmu;
4716
8a58ddae 4717 if (!is_exclusive_pmu(pmu))
bed5b25a
AS
4718 return;
4719
4720 /* see comment in exclusive_event_init() */
4721 if (event->attach_state & PERF_ATTACH_TASK)
4722 atomic_dec(&pmu->exclusive_cnt);
4723 else
4724 atomic_inc(&pmu->exclusive_cnt);
4725}
4726
4727static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
4728{
3bf6215a 4729 if ((e1->pmu == e2->pmu) &&
bed5b25a
AS
4730 (e1->cpu == e2->cpu ||
4731 e1->cpu == -1 ||
4732 e2->cpu == -1))
4733 return true;
4734 return false;
4735}
4736
bed5b25a
AS
4737static bool exclusive_event_installable(struct perf_event *event,
4738 struct perf_event_context *ctx)
4739{
4740 struct perf_event *iter_event;
4741 struct pmu *pmu = event->pmu;
4742
8a58ddae
AS
4743 lockdep_assert_held(&ctx->mutex);
4744
4745 if (!is_exclusive_pmu(pmu))
bed5b25a
AS
4746 return true;
4747
4748 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
4749 if (exclusive_event_match(iter_event, event))
4750 return false;
4751 }
4752
4753 return true;
4754}
4755
375637bc
AS
4756static void perf_addr_filters_splice(struct perf_event *event,
4757 struct list_head *head);
4758
683ede43 4759static void _free_event(struct perf_event *event)
f1600952 4760{
e360adbe 4761 irq_work_sync(&event->pending);
925d519a 4762
4beb31f3 4763 unaccount_event(event);
9ee318a7 4764
da97e184
JFG
4765 security_perf_event_free(event);
4766
76369139 4767 if (event->rb) {
9bb5d40c
PZ
4768 /*
4769 * Can happen when we close an event with re-directed output.
4770 *
4771 * Since we have a 0 refcount, perf_mmap_close() will skip
4772 * over us; possibly making our ring_buffer_put() the last.
4773 */
4774 mutex_lock(&event->mmap_mutex);
b69cf536 4775 ring_buffer_attach(event, NULL);
9bb5d40c 4776 mutex_unlock(&event->mmap_mutex);
a4be7c27
PZ
4777 }
4778
e5d1367f
SE
4779 if (is_cgroup_event(event))
4780 perf_detach_cgroup(event);
4781
a0733e69
PZ
4782 if (!event->parent) {
4783 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
4784 put_callchain_buffers();
4785 }
4786
4787 perf_event_free_bpf_prog(event);
375637bc 4788 perf_addr_filters_splice(event, NULL);
c60f83b8 4789 kfree(event->addr_filter_ranges);
a0733e69
PZ
4790
4791 if (event->destroy)
4792 event->destroy(event);
4793
1cf8dfe8
PZ
4794 /*
4795 * Must be after ->destroy(), due to uprobe_perf_close() using
4796 * hw.target.
4797 */
621b6d2e
PB
4798 if (event->hw.target)
4799 put_task_struct(event->hw.target);
4800
1cf8dfe8
PZ
4801 /*
4802 * perf_event_free_task() relies on put_ctx() being 'last', in particular
4803 * all task references must be cleaned up.
4804 */
4805 if (event->ctx)
4806 put_ctx(event->ctx);
4807
62a92c8f
AS
4808 exclusive_event_destroy(event);
4809 module_put(event->pmu->module);
a0733e69
PZ
4810
4811 call_rcu(&event->rcu_head, free_event_rcu);
f1600952
PZ
4812}
4813
683ede43
PZ
4814/*
4815 * Used to free events which have a known refcount of 1, such as in error paths
4816 * where the event isn't exposed yet and inherited events.
4817 */
4818static void free_event(struct perf_event *event)
0793a61d 4819{
683ede43
PZ
4820 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
4821 "unexpected event refcount: %ld; ptr=%p\n",
4822 atomic_long_read(&event->refcount), event)) {
4823 /* leak to avoid use-after-free */
4824 return;
4825 }
0793a61d 4826
683ede43 4827 _free_event(event);
0793a61d
TG
4828}
4829
a66a3052 4830/*
f8697762 4831 * Remove user event from the owner task.
a66a3052 4832 */
f8697762 4833static void perf_remove_from_owner(struct perf_event *event)
fb0459d7 4834{
8882135b 4835 struct task_struct *owner;
fb0459d7 4836
8882135b 4837 rcu_read_lock();
8882135b 4838 /*
f47c02c0
PZ
4839 * Matches the smp_store_release() in perf_event_exit_task(). If we
4840 * observe !owner it means the list deletion is complete and we can
4841 * indeed free this event, otherwise we need to serialize on
8882135b
PZ
4842 * owner->perf_event_mutex.
4843 */
506458ef 4844 owner = READ_ONCE(event->owner);
8882135b
PZ
4845 if (owner) {
4846 /*
4847 * Since delayed_put_task_struct() also drops the last
4848 * task reference we can safely take a new reference
4849 * while holding the rcu_read_lock().
4850 */
4851 get_task_struct(owner);
4852 }
4853 rcu_read_unlock();
4854
4855 if (owner) {
f63a8daa
PZ
4856 /*
4857 * If we're here through perf_event_exit_task() we're already
4858 * holding ctx->mutex which would be an inversion wrt. the
4859 * normal lock order.
4860 *
4861 * However we can safely take this lock because its the child
4862 * ctx->mutex.
4863 */
4864 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
4865
8882135b
PZ
4866 /*
4867 * We have to re-check the event->owner field, if it is cleared
4868 * we raced with perf_event_exit_task(), acquiring the mutex
4869 * ensured they're done, and we can proceed with freeing the
4870 * event.
4871 */
f47c02c0 4872 if (event->owner) {
8882135b 4873 list_del_init(&event->owner_entry);
f47c02c0
PZ
4874 smp_store_release(&event->owner, NULL);
4875 }
8882135b
PZ
4876 mutex_unlock(&owner->perf_event_mutex);
4877 put_task_struct(owner);
4878 }
f8697762
JO
4879}
4880
f8697762
JO
4881static void put_event(struct perf_event *event)
4882{
f8697762
JO
4883 if (!atomic_long_dec_and_test(&event->refcount))
4884 return;
4885
c6e5b732
PZ
4886 _free_event(event);
4887}
4888
4889/*
4890 * Kill an event dead; while event:refcount will preserve the event
4891 * object, it will not preserve its functionality. Once the last 'user'
4892 * gives up the object, we'll destroy the thing.
4893 */
4894int perf_event_release_kernel(struct perf_event *event)
4895{
a4f4bb6d 4896 struct perf_event_context *ctx = event->ctx;
c6e5b732 4897 struct perf_event *child, *tmp;
82d94856 4898 LIST_HEAD(free_list);
c6e5b732 4899
a4f4bb6d
PZ
4900 /*
4901 * If we got here through err_file: fput(event_file); we will not have
4902 * attached to a context yet.
4903 */
4904 if (!ctx) {
4905 WARN_ON_ONCE(event->attach_state &
4906 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP));
4907 goto no_ctx;
4908 }
4909
f8697762
JO
4910 if (!is_kernel_event(event))
4911 perf_remove_from_owner(event);
8882135b 4912
5fa7c8ec 4913 ctx = perf_event_ctx_lock(event);
a83fe28e 4914 WARN_ON_ONCE(ctx->parent_ctx);
a69b0ca4 4915 perf_remove_from_context(event, DETACH_GROUP);
683ede43 4916
a69b0ca4 4917 raw_spin_lock_irq(&ctx->lock);
683ede43 4918 /*
d8a8cfc7 4919 * Mark this event as STATE_DEAD, there is no external reference to it
a69b0ca4 4920 * anymore.
683ede43 4921 *
a69b0ca4
PZ
4922 * Anybody acquiring event->child_mutex after the below loop _must_
4923 * also see this, most importantly inherit_event() which will avoid
4924 * placing more children on the list.
683ede43 4925 *
c6e5b732
PZ
4926 * Thus this guarantees that we will in fact observe and kill _ALL_
4927 * child events.
683ede43 4928 */
a69b0ca4
PZ
4929 event->state = PERF_EVENT_STATE_DEAD;
4930 raw_spin_unlock_irq(&ctx->lock);
4931
4932 perf_event_ctx_unlock(event, ctx);
683ede43 4933
c6e5b732
PZ
4934again:
4935 mutex_lock(&event->child_mutex);
4936 list_for_each_entry(child, &event->child_list, child_list) {
a6fa941d 4937
c6e5b732
PZ
4938 /*
4939 * Cannot change, child events are not migrated, see the
4940 * comment with perf_event_ctx_lock_nested().
4941 */
506458ef 4942 ctx = READ_ONCE(child->ctx);
c6e5b732
PZ
4943 /*
4944 * Since child_mutex nests inside ctx::mutex, we must jump
4945 * through hoops. We start by grabbing a reference on the ctx.
4946 *
4947 * Since the event cannot get freed while we hold the
4948 * child_mutex, the context must also exist and have a !0
4949 * reference count.
4950 */
4951 get_ctx(ctx);
4952
4953 /*
4954 * Now that we have a ctx ref, we can drop child_mutex, and
4955 * acquire ctx::mutex without fear of it going away. Then we
4956 * can re-acquire child_mutex.
4957 */
4958 mutex_unlock(&event->child_mutex);
4959 mutex_lock(&ctx->mutex);
4960 mutex_lock(&event->child_mutex);
4961
4962 /*
4963 * Now that we hold ctx::mutex and child_mutex, revalidate our
4964 * state, if child is still the first entry, it didn't get freed
4965 * and we can continue doing so.
4966 */
4967 tmp = list_first_entry_or_null(&event->child_list,
4968 struct perf_event, child_list);
4969 if (tmp == child) {
4970 perf_remove_from_context(child, DETACH_GROUP);
82d94856 4971 list_move(&child->child_list, &free_list);
c6e5b732
PZ
4972 /*
4973 * This matches the refcount bump in inherit_event();
4974 * this can't be the last reference.
4975 */
4976 put_event(event);
4977 }
4978
4979 mutex_unlock(&event->child_mutex);
4980 mutex_unlock(&ctx->mutex);
4981 put_ctx(ctx);
4982 goto again;
4983 }
4984 mutex_unlock(&event->child_mutex);
4985
82d94856 4986 list_for_each_entry_safe(child, tmp, &free_list, child_list) {
1cf8dfe8
PZ
4987 void *var = &child->ctx->refcount;
4988
82d94856
PZ
4989 list_del(&child->child_list);
4990 free_event(child);
1cf8dfe8
PZ
4991
4992 /*
4993 * Wake any perf_event_free_task() waiting for this event to be
4994 * freed.
4995 */
4996 smp_mb(); /* pairs with wait_var_event() */
4997 wake_up_var(var);
82d94856
PZ
4998 }
4999
a4f4bb6d
PZ
5000no_ctx:
5001 put_event(event); /* Must be the 'last' reference */
683ede43
PZ
5002 return 0;
5003}
5004EXPORT_SYMBOL_GPL(perf_event_release_kernel);
5005
8b10c5e2
PZ
5006/*
5007 * Called when the last reference to the file is gone.
5008 */
a6fa941d
AV
5009static int perf_release(struct inode *inode, struct file *file)
5010{
c6e5b732 5011 perf_event_release_kernel(file->private_data);
a6fa941d 5012 return 0;
fb0459d7 5013}
fb0459d7 5014
ca0dd44c 5015static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
e53c0994 5016{
cdd6c482 5017 struct perf_event *child;
e53c0994
PZ
5018 u64 total = 0;
5019
59ed446f
PZ
5020 *enabled = 0;
5021 *running = 0;
5022
6f10581a 5023 mutex_lock(&event->child_mutex);
01add3ea 5024
7d88962e 5025 (void)perf_event_read(event, false);
01add3ea
SB
5026 total += perf_event_count(event);
5027
59ed446f
PZ
5028 *enabled += event->total_time_enabled +
5029 atomic64_read(&event->child_total_time_enabled);
5030 *running += event->total_time_running +
5031 atomic64_read(&event->child_total_time_running);
5032
5033 list_for_each_entry(child, &event->child_list, child_list) {
7d88962e 5034 (void)perf_event_read(child, false);
01add3ea 5035 total += perf_event_count(child);
59ed446f
PZ
5036 *enabled += child->total_time_enabled;
5037 *running += child->total_time_running;
5038 }
6f10581a 5039 mutex_unlock(&event->child_mutex);
e53c0994
PZ
5040
5041 return total;
5042}
ca0dd44c
PZ
5043
5044u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
5045{
5046 struct perf_event_context *ctx;
5047 u64 count;
5048
5049 ctx = perf_event_ctx_lock(event);
5050 count = __perf_event_read_value(event, enabled, running);
5051 perf_event_ctx_unlock(event, ctx);
5052
5053 return count;
5054}
fb0459d7 5055EXPORT_SYMBOL_GPL(perf_event_read_value);
e53c0994 5056
7d88962e 5057static int __perf_read_group_add(struct perf_event *leader,
fa8c2693 5058 u64 read_format, u64 *values)
3dab77fb 5059{
2aeb1883 5060 struct perf_event_context *ctx = leader->ctx;
fa8c2693 5061 struct perf_event *sub;
2aeb1883 5062 unsigned long flags;
fa8c2693 5063 int n = 1; /* skip @nr */
7d88962e 5064 int ret;
f63a8daa 5065
7d88962e
SB
5066 ret = perf_event_read(leader, true);
5067 if (ret)
5068 return ret;
abf4868b 5069
a9cd8194
PZ
5070 raw_spin_lock_irqsave(&ctx->lock, flags);
5071
fa8c2693
PZ
5072 /*
5073 * Since we co-schedule groups, {enabled,running} times of siblings
5074 * will be identical to those of the leader, so we only publish one
5075 * set.
5076 */
5077 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
5078 values[n++] += leader->total_time_enabled +
5079 atomic64_read(&leader->child_total_time_enabled);
5080 }
3dab77fb 5081
fa8c2693
PZ
5082 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
5083 values[n++] += leader->total_time_running +
5084 atomic64_read(&leader->child_total_time_running);
5085 }
5086
5087 /*
5088 * Write {count,id} tuples for every sibling.
5089 */
5090 values[n++] += perf_event_count(leader);
abf4868b
PZ
5091 if (read_format & PERF_FORMAT_ID)
5092 values[n++] = primary_event_id(leader);
3dab77fb 5093
edb39592 5094 for_each_sibling_event(sub, leader) {
fa8c2693
PZ
5095 values[n++] += perf_event_count(sub);
5096 if (read_format & PERF_FORMAT_ID)
5097 values[n++] = primary_event_id(sub);
5098 }
7d88962e 5099
2aeb1883 5100 raw_spin_unlock_irqrestore(&ctx->lock, flags);
7d88962e 5101 return 0;
fa8c2693 5102}
3dab77fb 5103
fa8c2693
PZ
5104static int perf_read_group(struct perf_event *event,
5105 u64 read_format, char __user *buf)
5106{
5107 struct perf_event *leader = event->group_leader, *child;
5108 struct perf_event_context *ctx = leader->ctx;
7d88962e 5109 int ret;
fa8c2693 5110 u64 *values;
3dab77fb 5111
fa8c2693 5112 lockdep_assert_held(&ctx->mutex);
3dab77fb 5113
fa8c2693
PZ
5114 values = kzalloc(event->read_size, GFP_KERNEL);
5115 if (!values)
5116 return -ENOMEM;
3dab77fb 5117
fa8c2693
PZ
5118 values[0] = 1 + leader->nr_siblings;
5119
5120 /*
5121 * By locking the child_mutex of the leader we effectively
5122 * lock the child list of all siblings.. XXX explain how.
5123 */
5124 mutex_lock(&leader->child_mutex);
abf4868b 5125
7d88962e
SB
5126 ret = __perf_read_group_add(leader, read_format, values);
5127 if (ret)
5128 goto unlock;
5129
5130 list_for_each_entry(child, &leader->child_list, child_list) {
5131 ret = __perf_read_group_add(child, read_format, values);
5132 if (ret)
5133 goto unlock;
5134 }
abf4868b 5135
fa8c2693 5136 mutex_unlock(&leader->child_mutex);
abf4868b 5137
7d88962e 5138 ret = event->read_size;
fa8c2693
PZ
5139 if (copy_to_user(buf, values, event->read_size))
5140 ret = -EFAULT;
7d88962e 5141 goto out;
fa8c2693 5142
7d88962e
SB
5143unlock:
5144 mutex_unlock(&leader->child_mutex);
5145out:
fa8c2693 5146 kfree(values);
abf4868b 5147 return ret;
3dab77fb
PZ
5148}
5149
b15f495b 5150static int perf_read_one(struct perf_event *event,
3dab77fb
PZ
5151 u64 read_format, char __user *buf)
5152{
59ed446f 5153 u64 enabled, running;
3dab77fb
PZ
5154 u64 values[4];
5155 int n = 0;
5156
ca0dd44c 5157 values[n++] = __perf_event_read_value(event, &enabled, &running);
59ed446f
PZ
5158 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
5159 values[n++] = enabled;
5160 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
5161 values[n++] = running;
3dab77fb 5162 if (read_format & PERF_FORMAT_ID)
cdd6c482 5163 values[n++] = primary_event_id(event);
3dab77fb
PZ
5164
5165 if (copy_to_user(buf, values, n * sizeof(u64)))
5166 return -EFAULT;
5167
5168 return n * sizeof(u64);
5169}
5170
dc633982
JO
5171static bool is_event_hup(struct perf_event *event)
5172{
5173 bool no_children;
5174
a69b0ca4 5175 if (event->state > PERF_EVENT_STATE_EXIT)
dc633982
JO
5176 return false;
5177
5178 mutex_lock(&event->child_mutex);
5179 no_children = list_empty(&event->child_list);
5180 mutex_unlock(&event->child_mutex);
5181 return no_children;
5182}
5183
0793a61d 5184/*
cdd6c482 5185 * Read the performance event - simple non blocking version for now
0793a61d
TG
5186 */
5187static ssize_t
b15f495b 5188__perf_read(struct perf_event *event, char __user *buf, size_t count)
0793a61d 5189{
cdd6c482 5190 u64 read_format = event->attr.read_format;
3dab77fb 5191 int ret;
0793a61d 5192
3b6f9e5c 5193 /*
788faab7 5194 * Return end-of-file for a read on an event that is in
3b6f9e5c
PM
5195 * error state (i.e. because it was pinned but it couldn't be
5196 * scheduled on to the CPU at some point).
5197 */
cdd6c482 5198 if (event->state == PERF_EVENT_STATE_ERROR)
3b6f9e5c
PM
5199 return 0;
5200
c320c7b7 5201 if (count < event->read_size)
3dab77fb
PZ
5202 return -ENOSPC;
5203
cdd6c482 5204 WARN_ON_ONCE(event->ctx->parent_ctx);
3dab77fb 5205 if (read_format & PERF_FORMAT_GROUP)
b15f495b 5206 ret = perf_read_group(event, read_format, buf);
3dab77fb 5207 else
b15f495b 5208 ret = perf_read_one(event, read_format, buf);
0793a61d 5209
3dab77fb 5210 return ret;
0793a61d
TG
5211}
5212
0793a61d
TG
5213static ssize_t
5214perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
5215{
cdd6c482 5216 struct perf_event *event = file->private_data;
f63a8daa
PZ
5217 struct perf_event_context *ctx;
5218 int ret;
0793a61d 5219
da97e184
JFG
5220 ret = security_perf_event_read(event);
5221 if (ret)
5222 return ret;
5223
f63a8daa 5224 ctx = perf_event_ctx_lock(event);
b15f495b 5225 ret = __perf_read(event, buf, count);
f63a8daa
PZ
5226 perf_event_ctx_unlock(event, ctx);
5227
5228 return ret;
0793a61d
TG
5229}
5230
9dd95748 5231static __poll_t perf_poll(struct file *file, poll_table *wait)
0793a61d 5232{
cdd6c482 5233 struct perf_event *event = file->private_data;
56de4e8f 5234 struct perf_buffer *rb;
a9a08845 5235 __poll_t events = EPOLLHUP;
c7138f37 5236
e708d7ad 5237 poll_wait(file, &event->waitq, wait);
179033b3 5238
dc633982 5239 if (is_event_hup(event))
179033b3 5240 return events;
c7138f37 5241
10c6db11 5242 /*
9bb5d40c
PZ
5243 * Pin the event->rb by taking event->mmap_mutex; otherwise
5244 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
10c6db11
PZ
5245 */
5246 mutex_lock(&event->mmap_mutex);
9bb5d40c
PZ
5247 rb = event->rb;
5248 if (rb)
76369139 5249 events = atomic_xchg(&rb->poll, 0);
10c6db11 5250 mutex_unlock(&event->mmap_mutex);
0793a61d
TG
5251 return events;
5252}
5253
f63a8daa 5254static void _perf_event_reset(struct perf_event *event)
6de6a7b9 5255{
7d88962e 5256 (void)perf_event_read(event, false);
e7850595 5257 local64_set(&event->count, 0);
cdd6c482 5258 perf_event_update_userpage(event);
3df5edad
PZ
5259}
5260
52ba4b0b
LX
5261/* Assume it's not an event with inherit set. */
5262u64 perf_event_pause(struct perf_event *event, bool reset)
5263{
5264 struct perf_event_context *ctx;
5265 u64 count;
5266
5267 ctx = perf_event_ctx_lock(event);
5268 WARN_ON_ONCE(event->attr.inherit);
5269 _perf_event_disable(event);
5270 count = local64_read(&event->count);
5271 if (reset)
5272 local64_set(&event->count, 0);
5273 perf_event_ctx_unlock(event, ctx);
5274
5275 return count;
5276}
5277EXPORT_SYMBOL_GPL(perf_event_pause);
5278
c93f7669 5279/*
cdd6c482
IM
5280 * Holding the top-level event's child_mutex means that any
5281 * descendant process that has inherited this event will block
8ba289b8 5282 * in perf_event_exit_event() if it goes to exit, thus satisfying the
cdd6c482 5283 * task existence requirements of perf_event_enable/disable.
c93f7669 5284 */
cdd6c482
IM
5285static void perf_event_for_each_child(struct perf_event *event,
5286 void (*func)(struct perf_event *))
3df5edad 5287{
cdd6c482 5288 struct perf_event *child;
3df5edad 5289
cdd6c482 5290 WARN_ON_ONCE(event->ctx->parent_ctx);
f63a8daa 5291
cdd6c482
IM
5292 mutex_lock(&event->child_mutex);
5293 func(event);
5294 list_for_each_entry(child, &event->child_list, child_list)
3df5edad 5295 func(child);
cdd6c482 5296 mutex_unlock(&event->child_mutex);
3df5edad
PZ
5297}
5298
cdd6c482
IM
5299static void perf_event_for_each(struct perf_event *event,
5300 void (*func)(struct perf_event *))
3df5edad 5301{
cdd6c482
IM
5302 struct perf_event_context *ctx = event->ctx;
5303 struct perf_event *sibling;
3df5edad 5304
f63a8daa
PZ
5305 lockdep_assert_held(&ctx->mutex);
5306
cdd6c482 5307 event = event->group_leader;
75f937f2 5308
cdd6c482 5309 perf_event_for_each_child(event, func);
edb39592 5310 for_each_sibling_event(sibling, event)
724b6daa 5311 perf_event_for_each_child(sibling, func);
6de6a7b9
PZ
5312}
5313
fae3fde6
PZ
5314static void __perf_event_period(struct perf_event *event,
5315 struct perf_cpu_context *cpuctx,
5316 struct perf_event_context *ctx,
5317 void *info)
c7999c6f 5318{
fae3fde6 5319 u64 value = *((u64 *)info);
c7999c6f 5320 bool active;
08247e31 5321
cdd6c482 5322 if (event->attr.freq) {
cdd6c482 5323 event->attr.sample_freq = value;
08247e31 5324 } else {
cdd6c482
IM
5325 event->attr.sample_period = value;
5326 event->hw.sample_period = value;
08247e31 5327 }
bad7192b
PZ
5328
5329 active = (event->state == PERF_EVENT_STATE_ACTIVE);
5330 if (active) {
5331 perf_pmu_disable(ctx->pmu);
1e02cd40
PZ
5332 /*
5333 * We could be throttled; unthrottle now to avoid the tick
5334 * trying to unthrottle while we already re-started the event.
5335 */
5336 if (event->hw.interrupts == MAX_INTERRUPTS) {
5337 event->hw.interrupts = 0;
5338 perf_log_throttle(event, 1);
5339 }
bad7192b
PZ
5340 event->pmu->stop(event, PERF_EF_UPDATE);
5341 }
5342
5343 local64_set(&event->hw.period_left, 0);
5344
5345 if (active) {
5346 event->pmu->start(event, PERF_EF_RELOAD);
5347 perf_pmu_enable(ctx->pmu);
5348 }
c7999c6f
PZ
5349}
5350
81ec3f3c
JO
5351static int perf_event_check_period(struct perf_event *event, u64 value)
5352{
5353 return event->pmu->check_period(event, value);
5354}
5355
3ca270fc 5356static int _perf_event_period(struct perf_event *event, u64 value)
c7999c6f 5357{
c7999c6f
PZ
5358 if (!is_sampling_event(event))
5359 return -EINVAL;
5360
c7999c6f
PZ
5361 if (!value)
5362 return -EINVAL;
5363
5364 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
5365 return -EINVAL;
5366
81ec3f3c
JO
5367 if (perf_event_check_period(event, value))
5368 return -EINVAL;
5369
913a90bc
RB
5370 if (!event->attr.freq && (value & (1ULL << 63)))
5371 return -EINVAL;
5372
fae3fde6 5373 event_function_call(event, __perf_event_period, &value);
08247e31 5374
c7999c6f 5375 return 0;
08247e31
PZ
5376}
5377
3ca270fc
LX
5378int perf_event_period(struct perf_event *event, u64 value)
5379{
5380 struct perf_event_context *ctx;
5381 int ret;
5382
5383 ctx = perf_event_ctx_lock(event);
5384 ret = _perf_event_period(event, value);
5385 perf_event_ctx_unlock(event, ctx);
5386
5387 return ret;
5388}
5389EXPORT_SYMBOL_GPL(perf_event_period);
5390
ac9721f3
PZ
5391static const struct file_operations perf_fops;
5392
2903ff01 5393static inline int perf_fget_light(int fd, struct fd *p)
ac9721f3 5394{
2903ff01
AV
5395 struct fd f = fdget(fd);
5396 if (!f.file)
5397 return -EBADF;
ac9721f3 5398
2903ff01
AV
5399 if (f.file->f_op != &perf_fops) {
5400 fdput(f);
5401 return -EBADF;
ac9721f3 5402 }
2903ff01
AV
5403 *p = f;
5404 return 0;
ac9721f3
PZ
5405}
5406
5407static int perf_event_set_output(struct perf_event *event,
5408 struct perf_event *output_event);
6fb2915d 5409static int perf_event_set_filter(struct perf_event *event, void __user *arg);
2541517c 5410static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
32ff77e8
MC
5411static int perf_copy_attr(struct perf_event_attr __user *uattr,
5412 struct perf_event_attr *attr);
a4be7c27 5413
f63a8daa 5414static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
d859e29f 5415{
cdd6c482 5416 void (*func)(struct perf_event *);
3df5edad 5417 u32 flags = arg;
d859e29f
PM
5418
5419 switch (cmd) {
cdd6c482 5420 case PERF_EVENT_IOC_ENABLE:
f63a8daa 5421 func = _perf_event_enable;
d859e29f 5422 break;
cdd6c482 5423 case PERF_EVENT_IOC_DISABLE:
f63a8daa 5424 func = _perf_event_disable;
79f14641 5425 break;
cdd6c482 5426 case PERF_EVENT_IOC_RESET:
f63a8daa 5427 func = _perf_event_reset;
6de6a7b9 5428 break;
3df5edad 5429
cdd6c482 5430 case PERF_EVENT_IOC_REFRESH:
f63a8daa 5431 return _perf_event_refresh(event, arg);
08247e31 5432
cdd6c482 5433 case PERF_EVENT_IOC_PERIOD:
3ca270fc
LX
5434 {
5435 u64 value;
08247e31 5436
3ca270fc
LX
5437 if (copy_from_user(&value, (u64 __user *)arg, sizeof(value)))
5438 return -EFAULT;
08247e31 5439
3ca270fc
LX
5440 return _perf_event_period(event, value);
5441 }
cf4957f1
JO
5442 case PERF_EVENT_IOC_ID:
5443 {
5444 u64 id = primary_event_id(event);
5445
5446 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
5447 return -EFAULT;
5448 return 0;
5449 }
5450
cdd6c482 5451 case PERF_EVENT_IOC_SET_OUTPUT:
ac9721f3 5452 {
ac9721f3 5453 int ret;
ac9721f3 5454 if (arg != -1) {
2903ff01
AV
5455 struct perf_event *output_event;
5456 struct fd output;
5457 ret = perf_fget_light(arg, &output);
5458 if (ret)
5459 return ret;
5460 output_event = output.file->private_data;
5461 ret = perf_event_set_output(event, output_event);
5462 fdput(output);
5463 } else {
5464 ret = perf_event_set_output(event, NULL);
ac9721f3 5465 }
ac9721f3
PZ
5466 return ret;
5467 }
a4be7c27 5468
6fb2915d
LZ
5469 case PERF_EVENT_IOC_SET_FILTER:
5470 return perf_event_set_filter(event, (void __user *)arg);
5471
2541517c
AS
5472 case PERF_EVENT_IOC_SET_BPF:
5473 return perf_event_set_bpf_prog(event, arg);
5474
86e7972f 5475 case PERF_EVENT_IOC_PAUSE_OUTPUT: {
56de4e8f 5476 struct perf_buffer *rb;
86e7972f
WN
5477
5478 rcu_read_lock();
5479 rb = rcu_dereference(event->rb);
5480 if (!rb || !rb->nr_pages) {
5481 rcu_read_unlock();
5482 return -EINVAL;
5483 }
5484 rb_toggle_paused(rb, !!arg);
5485 rcu_read_unlock();
5486 return 0;
5487 }
f371b304
YS
5488
5489 case PERF_EVENT_IOC_QUERY_BPF:
f4e2298e 5490 return perf_event_query_prog_array(event, (void __user *)arg);
32ff77e8
MC
5491
5492 case PERF_EVENT_IOC_MODIFY_ATTRIBUTES: {
5493 struct perf_event_attr new_attr;
5494 int err = perf_copy_attr((struct perf_event_attr __user *)arg,
5495 &new_attr);
5496
5497 if (err)
5498 return err;
5499
5500 return perf_event_modify_attr(event, &new_attr);
5501 }
d859e29f 5502 default:
3df5edad 5503 return -ENOTTY;
d859e29f 5504 }
3df5edad
PZ
5505
5506 if (flags & PERF_IOC_FLAG_GROUP)
cdd6c482 5507 perf_event_for_each(event, func);
3df5edad 5508 else
cdd6c482 5509 perf_event_for_each_child(event, func);
3df5edad
PZ
5510
5511 return 0;
d859e29f
PM
5512}
5513
f63a8daa
PZ
5514static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5515{
5516 struct perf_event *event = file->private_data;
5517 struct perf_event_context *ctx;
5518 long ret;
5519
da97e184
JFG
5520 /* Treat ioctl like writes as it is likely a mutating operation. */
5521 ret = security_perf_event_write(event);
5522 if (ret)
5523 return ret;
5524
f63a8daa
PZ
5525 ctx = perf_event_ctx_lock(event);
5526 ret = _perf_ioctl(event, cmd, arg);
5527 perf_event_ctx_unlock(event, ctx);
5528
5529 return ret;
5530}
5531
b3f20785
PM
5532#ifdef CONFIG_COMPAT
5533static long perf_compat_ioctl(struct file *file, unsigned int cmd,
5534 unsigned long arg)
5535{
5536 switch (_IOC_NR(cmd)) {
5537 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
5538 case _IOC_NR(PERF_EVENT_IOC_ID):
82489c5f
ES
5539 case _IOC_NR(PERF_EVENT_IOC_QUERY_BPF):
5540 case _IOC_NR(PERF_EVENT_IOC_MODIFY_ATTRIBUTES):
b3f20785
PM
5541 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
5542 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
5543 cmd &= ~IOCSIZE_MASK;
5544 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
5545 }
5546 break;
5547 }
5548 return perf_ioctl(file, cmd, arg);
5549}
5550#else
5551# define perf_compat_ioctl NULL
5552#endif
5553
cdd6c482 5554int perf_event_task_enable(void)
771d7cde 5555{
f63a8daa 5556 struct perf_event_context *ctx;
cdd6c482 5557 struct perf_event *event;
771d7cde 5558
cdd6c482 5559 mutex_lock(&current->perf_event_mutex);
f63a8daa
PZ
5560 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5561 ctx = perf_event_ctx_lock(event);
5562 perf_event_for_each_child(event, _perf_event_enable);
5563 perf_event_ctx_unlock(event, ctx);
5564 }
cdd6c482 5565 mutex_unlock(&current->perf_event_mutex);
771d7cde
PZ
5566
5567 return 0;
5568}
5569
cdd6c482 5570int perf_event_task_disable(void)
771d7cde 5571{
f63a8daa 5572 struct perf_event_context *ctx;
cdd6c482 5573 struct perf_event *event;
771d7cde 5574
cdd6c482 5575 mutex_lock(&current->perf_event_mutex);
f63a8daa
PZ
5576 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
5577 ctx = perf_event_ctx_lock(event);
5578 perf_event_for_each_child(event, _perf_event_disable);
5579 perf_event_ctx_unlock(event, ctx);
5580 }
cdd6c482 5581 mutex_unlock(&current->perf_event_mutex);
771d7cde
PZ
5582
5583 return 0;
5584}
5585
cdd6c482 5586static int perf_event_index(struct perf_event *event)
194002b2 5587{
a4eaf7f1
PZ
5588 if (event->hw.state & PERF_HES_STOPPED)
5589 return 0;
5590
cdd6c482 5591 if (event->state != PERF_EVENT_STATE_ACTIVE)
194002b2
PZ
5592 return 0;
5593
35edc2a5 5594 return event->pmu->event_idx(event);
194002b2
PZ
5595}
5596
c4794295 5597static void calc_timer_values(struct perf_event *event,
e3f3541c 5598 u64 *now,
7f310a5d
EM
5599 u64 *enabled,
5600 u64 *running)
c4794295 5601{
e3f3541c 5602 u64 ctx_time;
c4794295 5603
e3f3541c
PZ
5604 *now = perf_clock();
5605 ctx_time = event->shadow_ctx_time + *now;
0d3d73aa 5606 __perf_update_times(event, ctx_time, enabled, running);
c4794295
EM
5607}
5608
fa731587
PZ
5609static void perf_event_init_userpage(struct perf_event *event)
5610{
5611 struct perf_event_mmap_page *userpg;
56de4e8f 5612 struct perf_buffer *rb;
fa731587
PZ
5613
5614 rcu_read_lock();
5615 rb = rcu_dereference(event->rb);
5616 if (!rb)
5617 goto unlock;
5618
5619 userpg = rb->user_page;
5620
5621 /* Allow new userspace to detect that bit 0 is deprecated */
5622 userpg->cap_bit0_is_deprecated = 1;
5623 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
e8c6deac
AS
5624 userpg->data_offset = PAGE_SIZE;
5625 userpg->data_size = perf_data_size(rb);
fa731587
PZ
5626
5627unlock:
5628 rcu_read_unlock();
5629}
5630
c1317ec2
AL
5631void __weak arch_perf_update_userpage(
5632 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
e3f3541c
PZ
5633{
5634}
5635
38ff667b
PZ
5636/*
5637 * Callers need to ensure there can be no nesting of this function, otherwise
5638 * the seqlock logic goes bad. We can not serialize this because the arch
5639 * code calls this from NMI context.
5640 */
cdd6c482 5641void perf_event_update_userpage(struct perf_event *event)
37d81828 5642{
cdd6c482 5643 struct perf_event_mmap_page *userpg;
56de4e8f 5644 struct perf_buffer *rb;
e3f3541c 5645 u64 enabled, running, now;
38ff667b
PZ
5646
5647 rcu_read_lock();
5ec4c599
PZ
5648 rb = rcu_dereference(event->rb);
5649 if (!rb)
5650 goto unlock;
5651
0d641208
EM
5652 /*
5653 * compute total_time_enabled, total_time_running
5654 * based on snapshot values taken when the event
5655 * was last scheduled in.
5656 *
5657 * we cannot simply called update_context_time()
5658 * because of locking issue as we can be called in
5659 * NMI context
5660 */
e3f3541c 5661 calc_timer_values(event, &now, &enabled, &running);
38ff667b 5662
76369139 5663 userpg = rb->user_page;
7b732a75 5664 /*
9d2dcc8f
MF
5665 * Disable preemption to guarantee consistent time stamps are stored to
5666 * the user page.
7b732a75
PZ
5667 */
5668 preempt_disable();
37d81828 5669 ++userpg->lock;
92f22a38 5670 barrier();
cdd6c482 5671 userpg->index = perf_event_index(event);
b5e58793 5672 userpg->offset = perf_event_count(event);
365a4038 5673 if (userpg->index)
e7850595 5674 userpg->offset -= local64_read(&event->hw.prev_count);
7b732a75 5675
0d641208 5676 userpg->time_enabled = enabled +
cdd6c482 5677 atomic64_read(&event->child_total_time_enabled);
7f8b4e4e 5678
0d641208 5679 userpg->time_running = running +
cdd6c482 5680 atomic64_read(&event->child_total_time_running);
7f8b4e4e 5681
c1317ec2 5682 arch_perf_update_userpage(event, userpg, now);
e3f3541c 5683
92f22a38 5684 barrier();
37d81828 5685 ++userpg->lock;
7b732a75 5686 preempt_enable();
38ff667b 5687unlock:
7b732a75 5688 rcu_read_unlock();
37d81828 5689}
82975c46 5690EXPORT_SYMBOL_GPL(perf_event_update_userpage);
37d81828 5691
9e3ed2d7 5692static vm_fault_t perf_mmap_fault(struct vm_fault *vmf)
906010b2 5693{
11bac800 5694 struct perf_event *event = vmf->vma->vm_file->private_data;
56de4e8f 5695 struct perf_buffer *rb;
9e3ed2d7 5696 vm_fault_t ret = VM_FAULT_SIGBUS;
906010b2
PZ
5697
5698 if (vmf->flags & FAULT_FLAG_MKWRITE) {
5699 if (vmf->pgoff == 0)
5700 ret = 0;
5701 return ret;
5702 }
5703
5704 rcu_read_lock();
76369139
FW
5705 rb = rcu_dereference(event->rb);
5706 if (!rb)
906010b2
PZ
5707 goto unlock;
5708
5709 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
5710 goto unlock;
5711
76369139 5712 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
906010b2
PZ
5713 if (!vmf->page)
5714 goto unlock;
5715
5716 get_page(vmf->page);
11bac800 5717 vmf->page->mapping = vmf->vma->vm_file->f_mapping;
906010b2
PZ
5718 vmf->page->index = vmf->pgoff;
5719
5720 ret = 0;
5721unlock:
5722 rcu_read_unlock();
5723
5724 return ret;
5725}
5726
10c6db11 5727static void ring_buffer_attach(struct perf_event *event,
56de4e8f 5728 struct perf_buffer *rb)
10c6db11 5729{
56de4e8f 5730 struct perf_buffer *old_rb = NULL;
10c6db11
PZ
5731 unsigned long flags;
5732
b69cf536
PZ
5733 if (event->rb) {
5734 /*
5735 * Should be impossible, we set this when removing
5736 * event->rb_entry and wait/clear when adding event->rb_entry.
5737 */
5738 WARN_ON_ONCE(event->rcu_pending);
10c6db11 5739
b69cf536 5740 old_rb = event->rb;
b69cf536
PZ
5741 spin_lock_irqsave(&old_rb->event_lock, flags);
5742 list_del_rcu(&event->rb_entry);
5743 spin_unlock_irqrestore(&old_rb->event_lock, flags);
10c6db11 5744
2f993cf0
ON
5745 event->rcu_batches = get_state_synchronize_rcu();
5746 event->rcu_pending = 1;
b69cf536 5747 }
10c6db11 5748
b69cf536 5749 if (rb) {
2f993cf0
ON
5750 if (event->rcu_pending) {
5751 cond_synchronize_rcu(event->rcu_batches);
5752 event->rcu_pending = 0;
5753 }
5754
b69cf536
PZ
5755 spin_lock_irqsave(&rb->event_lock, flags);
5756 list_add_rcu(&event->rb_entry, &rb->event_list);
5757 spin_unlock_irqrestore(&rb->event_lock, flags);
5758 }
5759
767ae086
AS
5760 /*
5761 * Avoid racing with perf_mmap_close(AUX): stop the event
5762 * before swizzling the event::rb pointer; if it's getting
5763 * unmapped, its aux_mmap_count will be 0 and it won't
5764 * restart. See the comment in __perf_pmu_output_stop().
5765 *
5766 * Data will inevitably be lost when set_output is done in
5767 * mid-air, but then again, whoever does it like this is
5768 * not in for the data anyway.
5769 */
5770 if (has_aux(event))
5771 perf_event_stop(event, 0);
5772
b69cf536
PZ
5773 rcu_assign_pointer(event->rb, rb);
5774
5775 if (old_rb) {
5776 ring_buffer_put(old_rb);
5777 /*
5778 * Since we detached before setting the new rb, so that we
5779 * could attach the new rb, we could have missed a wakeup.
5780 * Provide it now.
5781 */
5782 wake_up_all(&event->waitq);
5783 }
10c6db11
PZ
5784}
5785
5786static void ring_buffer_wakeup(struct perf_event *event)
5787{
56de4e8f 5788 struct perf_buffer *rb;
10c6db11
PZ
5789
5790 rcu_read_lock();
5791 rb = rcu_dereference(event->rb);
9bb5d40c
PZ
5792 if (rb) {
5793 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
5794 wake_up_all(&event->waitq);
5795 }
10c6db11
PZ
5796 rcu_read_unlock();
5797}
5798
56de4e8f 5799struct perf_buffer *ring_buffer_get(struct perf_event *event)
7b732a75 5800{
56de4e8f 5801 struct perf_buffer *rb;
7b732a75 5802
ac9721f3 5803 rcu_read_lock();
76369139
FW
5804 rb = rcu_dereference(event->rb);
5805 if (rb) {
fecb8ed2 5806 if (!refcount_inc_not_zero(&rb->refcount))
76369139 5807 rb = NULL;
ac9721f3
PZ
5808 }
5809 rcu_read_unlock();
5810
76369139 5811 return rb;
ac9721f3
PZ
5812}
5813
56de4e8f 5814void ring_buffer_put(struct perf_buffer *rb)
ac9721f3 5815{
fecb8ed2 5816 if (!refcount_dec_and_test(&rb->refcount))
ac9721f3 5817 return;
7b732a75 5818
9bb5d40c 5819 WARN_ON_ONCE(!list_empty(&rb->event_list));
10c6db11 5820
76369139 5821 call_rcu(&rb->rcu_head, rb_free_rcu);
7b732a75
PZ
5822}
5823
5824static void perf_mmap_open(struct vm_area_struct *vma)
5825{
cdd6c482 5826 struct perf_event *event = vma->vm_file->private_data;
7b732a75 5827
cdd6c482 5828 atomic_inc(&event->mmap_count);
9bb5d40c 5829 atomic_inc(&event->rb->mmap_count);
1e0fb9ec 5830
45bfb2e5
PZ
5831 if (vma->vm_pgoff)
5832 atomic_inc(&event->rb->aux_mmap_count);
5833
1e0fb9ec 5834 if (event->pmu->event_mapped)
bfe33492 5835 event->pmu->event_mapped(event, vma->vm_mm);
7b732a75
PZ
5836}
5837
95ff4ca2
AS
5838static void perf_pmu_output_stop(struct perf_event *event);
5839
9bb5d40c
PZ
5840/*
5841 * A buffer can be mmap()ed multiple times; either directly through the same
5842 * event, or through other events by use of perf_event_set_output().
5843 *
5844 * In order to undo the VM accounting done by perf_mmap() we need to destroy
5845 * the buffer here, where we still have a VM context. This means we need
5846 * to detach all events redirecting to us.
5847 */
7b732a75
PZ
5848static void perf_mmap_close(struct vm_area_struct *vma)
5849{
cdd6c482 5850 struct perf_event *event = vma->vm_file->private_data;
7b732a75 5851
56de4e8f 5852 struct perf_buffer *rb = ring_buffer_get(event);
9bb5d40c
PZ
5853 struct user_struct *mmap_user = rb->mmap_user;
5854 int mmap_locked = rb->mmap_locked;
5855 unsigned long size = perf_data_size(rb);
789f90fc 5856
1e0fb9ec 5857 if (event->pmu->event_unmapped)
bfe33492 5858 event->pmu->event_unmapped(event, vma->vm_mm);
1e0fb9ec 5859
45bfb2e5
PZ
5860 /*
5861 * rb->aux_mmap_count will always drop before rb->mmap_count and
5862 * event->mmap_count, so it is ok to use event->mmap_mutex to
5863 * serialize with perf_mmap here.
5864 */
5865 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
5866 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
95ff4ca2
AS
5867 /*
5868 * Stop all AUX events that are writing to this buffer,
5869 * so that we can free its AUX pages and corresponding PMU
5870 * data. Note that after rb::aux_mmap_count dropped to zero,
5871 * they won't start any more (see perf_aux_output_begin()).
5872 */
5873 perf_pmu_output_stop(event);
5874
5875 /* now it's safe to free the pages */
36b3db03
AS
5876 atomic_long_sub(rb->aux_nr_pages - rb->aux_mmap_locked, &mmap_user->locked_vm);
5877 atomic64_sub(rb->aux_mmap_locked, &vma->vm_mm->pinned_vm);
45bfb2e5 5878
95ff4ca2 5879 /* this has to be the last one */
45bfb2e5 5880 rb_free_aux(rb);
ca3bb3d0 5881 WARN_ON_ONCE(refcount_read(&rb->aux_refcount));
95ff4ca2 5882
45bfb2e5
PZ
5883 mutex_unlock(&event->mmap_mutex);
5884 }
5885
9bb5d40c
PZ
5886 atomic_dec(&rb->mmap_count);
5887
5888 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
b69cf536 5889 goto out_put;
9bb5d40c 5890
b69cf536 5891 ring_buffer_attach(event, NULL);
9bb5d40c
PZ
5892 mutex_unlock(&event->mmap_mutex);
5893
5894 /* If there's still other mmap()s of this buffer, we're done. */
b69cf536
PZ
5895 if (atomic_read(&rb->mmap_count))
5896 goto out_put;
ac9721f3 5897
9bb5d40c
PZ
5898 /*
5899 * No other mmap()s, detach from all other events that might redirect
5900 * into the now unreachable buffer. Somewhat complicated by the
5901 * fact that rb::event_lock otherwise nests inside mmap_mutex.
5902 */
5903again:
5904 rcu_read_lock();
5905 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
5906 if (!atomic_long_inc_not_zero(&event->refcount)) {
5907 /*
5908 * This event is en-route to free_event() which will
5909 * detach it and remove it from the list.
5910 */
5911 continue;
5912 }
5913 rcu_read_unlock();
789f90fc 5914
9bb5d40c
PZ
5915 mutex_lock(&event->mmap_mutex);
5916 /*
5917 * Check we didn't race with perf_event_set_output() which can
5918 * swizzle the rb from under us while we were waiting to
5919 * acquire mmap_mutex.
5920 *
5921 * If we find a different rb; ignore this event, a next
5922 * iteration will no longer find it on the list. We have to
5923 * still restart the iteration to make sure we're not now
5924 * iterating the wrong list.
5925 */
b69cf536
PZ
5926 if (event->rb == rb)
5927 ring_buffer_attach(event, NULL);
5928
cdd6c482 5929 mutex_unlock(&event->mmap_mutex);
9bb5d40c 5930 put_event(event);
ac9721f3 5931
9bb5d40c
PZ
5932 /*
5933 * Restart the iteration; either we're on the wrong list or
5934 * destroyed its integrity by doing a deletion.
5935 */
5936 goto again;
7b732a75 5937 }
9bb5d40c
PZ
5938 rcu_read_unlock();
5939
5940 /*
5941 * It could be there's still a few 0-ref events on the list; they'll
5942 * get cleaned up by free_event() -- they'll also still have their
5943 * ref on the rb and will free it whenever they are done with it.
5944 *
5945 * Aside from that, this buffer is 'fully' detached and unmapped,
5946 * undo the VM accounting.
5947 */
5948
d44248a4
SL
5949 atomic_long_sub((size >> PAGE_SHIFT) + 1 - mmap_locked,
5950 &mmap_user->locked_vm);
70f8a3ca 5951 atomic64_sub(mmap_locked, &vma->vm_mm->pinned_vm);
9bb5d40c
PZ
5952 free_uid(mmap_user);
5953
b69cf536 5954out_put:
9bb5d40c 5955 ring_buffer_put(rb); /* could be last */
37d81828
PM
5956}
5957
f0f37e2f 5958static const struct vm_operations_struct perf_mmap_vmops = {
43a21ea8 5959 .open = perf_mmap_open,
fca0c116 5960 .close = perf_mmap_close, /* non mergeable */
43a21ea8
PZ
5961 .fault = perf_mmap_fault,
5962 .page_mkwrite = perf_mmap_fault,
37d81828
PM
5963};
5964
5965static int perf_mmap(struct file *file, struct vm_area_struct *vma)
5966{
cdd6c482 5967 struct perf_event *event = file->private_data;
22a4f650 5968 unsigned long user_locked, user_lock_limit;
789f90fc 5969 struct user_struct *user = current_user();
56de4e8f 5970 struct perf_buffer *rb = NULL;
22a4f650 5971 unsigned long locked, lock_limit;
7b732a75
PZ
5972 unsigned long vma_size;
5973 unsigned long nr_pages;
45bfb2e5 5974 long user_extra = 0, extra = 0;
d57e34fd 5975 int ret = 0, flags = 0;
37d81828 5976
c7920614
PZ
5977 /*
5978 * Don't allow mmap() of inherited per-task counters. This would
5979 * create a performance issue due to all children writing to the
76369139 5980 * same rb.
c7920614
PZ
5981 */
5982 if (event->cpu == -1 && event->attr.inherit)
5983 return -EINVAL;
5984
43a21ea8 5985 if (!(vma->vm_flags & VM_SHARED))
37d81828 5986 return -EINVAL;
7b732a75 5987
da97e184
JFG
5988 ret = security_perf_event_read(event);
5989 if (ret)
5990 return ret;
5991
7b732a75 5992 vma_size = vma->vm_end - vma->vm_start;
45bfb2e5
PZ
5993
5994 if (vma->vm_pgoff == 0) {
5995 nr_pages = (vma_size / PAGE_SIZE) - 1;
5996 } else {
5997 /*
5998 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
5999 * mapped, all subsequent mappings should have the same size
6000 * and offset. Must be above the normal perf buffer.
6001 */
6002 u64 aux_offset, aux_size;
6003
6004 if (!event->rb)
6005 return -EINVAL;
6006
6007 nr_pages = vma_size / PAGE_SIZE;
6008
6009 mutex_lock(&event->mmap_mutex);
6010 ret = -EINVAL;
6011
6012 rb = event->rb;
6013 if (!rb)
6014 goto aux_unlock;
6015
6aa7de05
MR
6016 aux_offset = READ_ONCE(rb->user_page->aux_offset);
6017 aux_size = READ_ONCE(rb->user_page->aux_size);
45bfb2e5
PZ
6018
6019 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
6020 goto aux_unlock;
6021
6022 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
6023 goto aux_unlock;
6024
6025 /* already mapped with a different offset */
6026 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
6027 goto aux_unlock;
6028
6029 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
6030 goto aux_unlock;
6031
6032 /* already mapped with a different size */
6033 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
6034 goto aux_unlock;
6035
6036 if (!is_power_of_2(nr_pages))
6037 goto aux_unlock;
6038
6039 if (!atomic_inc_not_zero(&rb->mmap_count))
6040 goto aux_unlock;
6041
6042 if (rb_has_aux(rb)) {
6043 atomic_inc(&rb->aux_mmap_count);
6044 ret = 0;
6045 goto unlock;
6046 }
6047
6048 atomic_set(&rb->aux_mmap_count, 1);
6049 user_extra = nr_pages;
6050
6051 goto accounting;
6052 }
7b732a75 6053
7730d865 6054 /*
76369139 6055 * If we have rb pages ensure they're a power-of-two number, so we
7730d865
PZ
6056 * can do bitmasks instead of modulo.
6057 */
2ed11312 6058 if (nr_pages != 0 && !is_power_of_2(nr_pages))
37d81828
PM
6059 return -EINVAL;
6060
7b732a75 6061 if (vma_size != PAGE_SIZE * (1 + nr_pages))
37d81828
PM
6062 return -EINVAL;
6063
cdd6c482 6064 WARN_ON_ONCE(event->ctx->parent_ctx);
9bb5d40c 6065again:
cdd6c482 6066 mutex_lock(&event->mmap_mutex);
76369139 6067 if (event->rb) {
9bb5d40c 6068 if (event->rb->nr_pages != nr_pages) {
ebb3c4c4 6069 ret = -EINVAL;
9bb5d40c
PZ
6070 goto unlock;
6071 }
6072
6073 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
6074 /*
6075 * Raced against perf_mmap_close() through
6076 * perf_event_set_output(). Try again, hope for better
6077 * luck.
6078 */
6079 mutex_unlock(&event->mmap_mutex);
6080 goto again;
6081 }
6082
ebb3c4c4
PZ
6083 goto unlock;
6084 }
6085
789f90fc 6086 user_extra = nr_pages + 1;
45bfb2e5
PZ
6087
6088accounting:
cdd6c482 6089 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
a3862d3f
IM
6090
6091 /*
6092 * Increase the limit linearly with more CPUs:
6093 */
6094 user_lock_limit *= num_online_cpus();
6095
00346155
SL
6096 user_locked = atomic_long_read(&user->locked_vm);
6097
6098 /*
6099 * sysctl_perf_event_mlock may have changed, so that
6100 * user->locked_vm > user_lock_limit
6101 */
6102 if (user_locked > user_lock_limit)
6103 user_locked = user_lock_limit;
6104 user_locked += user_extra;
c5078f78 6105
c4b75479 6106 if (user_locked > user_lock_limit) {
d44248a4
SL
6107 /*
6108 * charge locked_vm until it hits user_lock_limit;
6109 * charge the rest from pinned_vm
6110 */
789f90fc 6111 extra = user_locked - user_lock_limit;
d44248a4
SL
6112 user_extra -= extra;
6113 }
7b732a75 6114
78d7d407 6115 lock_limit = rlimit(RLIMIT_MEMLOCK);
7b732a75 6116 lock_limit >>= PAGE_SHIFT;
70f8a3ca 6117 locked = atomic64_read(&vma->vm_mm->pinned_vm) + extra;
7b732a75 6118
da97e184 6119 if ((locked > lock_limit) && perf_is_paranoid() &&
459ec28a 6120 !capable(CAP_IPC_LOCK)) {
ebb3c4c4
PZ
6121 ret = -EPERM;
6122 goto unlock;
6123 }
7b732a75 6124
45bfb2e5 6125 WARN_ON(!rb && event->rb);
906010b2 6126
d57e34fd 6127 if (vma->vm_flags & VM_WRITE)
76369139 6128 flags |= RING_BUFFER_WRITABLE;
d57e34fd 6129
76369139 6130 if (!rb) {
45bfb2e5
PZ
6131 rb = rb_alloc(nr_pages,
6132 event->attr.watermark ? event->attr.wakeup_watermark : 0,
6133 event->cpu, flags);
26cb63ad 6134
45bfb2e5
PZ
6135 if (!rb) {
6136 ret = -ENOMEM;
6137 goto unlock;
6138 }
43a21ea8 6139
45bfb2e5
PZ
6140 atomic_set(&rb->mmap_count, 1);
6141 rb->mmap_user = get_current_user();
6142 rb->mmap_locked = extra;
26cb63ad 6143
45bfb2e5 6144 ring_buffer_attach(event, rb);
ac9721f3 6145
45bfb2e5
PZ
6146 perf_event_init_userpage(event);
6147 perf_event_update_userpage(event);
6148 } else {
1a594131
AS
6149 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
6150 event->attr.aux_watermark, flags);
45bfb2e5
PZ
6151 if (!ret)
6152 rb->aux_mmap_locked = extra;
6153 }
9a0f05cb 6154
ebb3c4c4 6155unlock:
45bfb2e5
PZ
6156 if (!ret) {
6157 atomic_long_add(user_extra, &user->locked_vm);
70f8a3ca 6158 atomic64_add(extra, &vma->vm_mm->pinned_vm);
45bfb2e5 6159
ac9721f3 6160 atomic_inc(&event->mmap_count);
45bfb2e5
PZ
6161 } else if (rb) {
6162 atomic_dec(&rb->mmap_count);
6163 }
6164aux_unlock:
cdd6c482 6165 mutex_unlock(&event->mmap_mutex);
37d81828 6166
9bb5d40c
PZ
6167 /*
6168 * Since pinned accounting is per vm we cannot allow fork() to copy our
6169 * vma.
6170 */
26cb63ad 6171 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
37d81828 6172 vma->vm_ops = &perf_mmap_vmops;
7b732a75 6173
1e0fb9ec 6174 if (event->pmu->event_mapped)
bfe33492 6175 event->pmu->event_mapped(event, vma->vm_mm);
1e0fb9ec 6176
7b732a75 6177 return ret;
37d81828
PM
6178}
6179
3c446b3d
PZ
6180static int perf_fasync(int fd, struct file *filp, int on)
6181{
496ad9aa 6182 struct inode *inode = file_inode(filp);
cdd6c482 6183 struct perf_event *event = filp->private_data;
3c446b3d
PZ
6184 int retval;
6185
5955102c 6186 inode_lock(inode);
cdd6c482 6187 retval = fasync_helper(fd, filp, on, &event->fasync);
5955102c 6188 inode_unlock(inode);
3c446b3d
PZ
6189
6190 if (retval < 0)
6191 return retval;
6192
6193 return 0;
6194}
6195
0793a61d 6196static const struct file_operations perf_fops = {
3326c1ce 6197 .llseek = no_llseek,
0793a61d
TG
6198 .release = perf_release,
6199 .read = perf_read,
6200 .poll = perf_poll,
d859e29f 6201 .unlocked_ioctl = perf_ioctl,
b3f20785 6202 .compat_ioctl = perf_compat_ioctl,
37d81828 6203 .mmap = perf_mmap,
3c446b3d 6204 .fasync = perf_fasync,
0793a61d
TG
6205};
6206
925d519a 6207/*
cdd6c482 6208 * Perf event wakeup
925d519a
PZ
6209 *
6210 * If there's data, ensure we set the poll() state and publish everything
6211 * to user-space before waking everybody up.
6212 */
6213
fed66e2c
PZ
6214static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
6215{
6216 /* only the parent has fasync state */
6217 if (event->parent)
6218 event = event->parent;
6219 return &event->fasync;
6220}
6221
cdd6c482 6222void perf_event_wakeup(struct perf_event *event)
925d519a 6223{
10c6db11 6224 ring_buffer_wakeup(event);
4c9e2542 6225
cdd6c482 6226 if (event->pending_kill) {
fed66e2c 6227 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
cdd6c482 6228 event->pending_kill = 0;
4c9e2542 6229 }
925d519a
PZ
6230}
6231
1d54ad94
PZ
6232static void perf_pending_event_disable(struct perf_event *event)
6233{
6234 int cpu = READ_ONCE(event->pending_disable);
6235
6236 if (cpu < 0)
6237 return;
6238
6239 if (cpu == smp_processor_id()) {
6240 WRITE_ONCE(event->pending_disable, -1);
6241 perf_event_disable_local(event);
6242 return;
6243 }
6244
6245 /*
6246 * CPU-A CPU-B
6247 *
6248 * perf_event_disable_inatomic()
6249 * @pending_disable = CPU-A;
6250 * irq_work_queue();
6251 *
6252 * sched-out
6253 * @pending_disable = -1;
6254 *
6255 * sched-in
6256 * perf_event_disable_inatomic()
6257 * @pending_disable = CPU-B;
6258 * irq_work_queue(); // FAILS
6259 *
6260 * irq_work_run()
6261 * perf_pending_event()
6262 *
6263 * But the event runs on CPU-B and wants disabling there.
6264 */
6265 irq_work_queue_on(&event->pending, cpu);
6266}
6267
e360adbe 6268static void perf_pending_event(struct irq_work *entry)
79f14641 6269{
1d54ad94 6270 struct perf_event *event = container_of(entry, struct perf_event, pending);
d525211f
PZ
6271 int rctx;
6272
6273 rctx = perf_swevent_get_recursion_context();
6274 /*
6275 * If we 'fail' here, that's OK, it means recursion is already disabled
6276 * and we won't recurse 'further'.
6277 */
79f14641 6278
1d54ad94 6279 perf_pending_event_disable(event);
79f14641 6280
cdd6c482
IM
6281 if (event->pending_wakeup) {
6282 event->pending_wakeup = 0;
6283 perf_event_wakeup(event);
79f14641 6284 }
d525211f
PZ
6285
6286 if (rctx >= 0)
6287 perf_swevent_put_recursion_context(rctx);
79f14641
PZ
6288}
6289
39447b38
ZY
6290/*
6291 * We assume there is only KVM supporting the callbacks.
6292 * Later on, we might change it to a list if there is
6293 * another virtualization implementation supporting the callbacks.
6294 */
6295struct perf_guest_info_callbacks *perf_guest_cbs;
6296
6297int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
6298{
6299 perf_guest_cbs = cbs;
6300 return 0;
6301}
6302EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
6303
6304int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
6305{
6306 perf_guest_cbs = NULL;
6307 return 0;
6308}
6309EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
6310
4018994f
JO
6311static void
6312perf_output_sample_regs(struct perf_output_handle *handle,
6313 struct pt_regs *regs, u64 mask)
6314{
6315 int bit;
29dd3288 6316 DECLARE_BITMAP(_mask, 64);
4018994f 6317
29dd3288
MS
6318 bitmap_from_u64(_mask, mask);
6319 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) {
4018994f
JO
6320 u64 val;
6321
6322 val = perf_reg_value(regs, bit);
6323 perf_output_put(handle, val);
6324 }
6325}
6326
60e2364e 6327static void perf_sample_regs_user(struct perf_regs *regs_user,
88a7c26a
AL
6328 struct pt_regs *regs,
6329 struct pt_regs *regs_user_copy)
4018994f 6330{
88a7c26a
AL
6331 if (user_mode(regs)) {
6332 regs_user->abi = perf_reg_abi(current);
2565711f 6333 regs_user->regs = regs;
085ebfe9 6334 } else if (!(current->flags & PF_KTHREAD)) {
88a7c26a 6335 perf_get_regs_user(regs_user, regs, regs_user_copy);
2565711f
PZ
6336 } else {
6337 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
6338 regs_user->regs = NULL;
4018994f
JO
6339 }
6340}
6341
60e2364e
SE
6342static void perf_sample_regs_intr(struct perf_regs *regs_intr,
6343 struct pt_regs *regs)
6344{
6345 regs_intr->regs = regs;
6346 regs_intr->abi = perf_reg_abi(current);
6347}
6348
6349
c5ebcedb
JO
6350/*
6351 * Get remaining task size from user stack pointer.
6352 *
6353 * It'd be better to take stack vma map and limit this more
9f014e3a 6354 * precisely, but there's no way to get it safely under interrupt,
c5ebcedb
JO
6355 * so using TASK_SIZE as limit.
6356 */
6357static u64 perf_ustack_task_size(struct pt_regs *regs)
6358{
6359 unsigned long addr = perf_user_stack_pointer(regs);
6360
6361 if (!addr || addr >= TASK_SIZE)
6362 return 0;
6363
6364 return TASK_SIZE - addr;
6365}
6366
6367static u16
6368perf_sample_ustack_size(u16 stack_size, u16 header_size,
6369 struct pt_regs *regs)
6370{
6371 u64 task_size;
6372
6373 /* No regs, no stack pointer, no dump. */
6374 if (!regs)
6375 return 0;
6376
6377 /*
6378 * Check if we fit in with the requested stack size into the:
6379 * - TASK_SIZE
6380 * If we don't, we limit the size to the TASK_SIZE.
6381 *
6382 * - remaining sample size
6383 * If we don't, we customize the stack size to
6384 * fit in to the remaining sample size.
6385 */
6386
6387 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
6388 stack_size = min(stack_size, (u16) task_size);
6389
6390 /* Current header size plus static size and dynamic size. */
6391 header_size += 2 * sizeof(u64);
6392
6393 /* Do we fit in with the current stack dump size? */
6394 if ((u16) (header_size + stack_size) < header_size) {
6395 /*
6396 * If we overflow the maximum size for the sample,
6397 * we customize the stack dump size to fit in.
6398 */
6399 stack_size = USHRT_MAX - header_size - sizeof(u64);
6400 stack_size = round_up(stack_size, sizeof(u64));
6401 }
6402
6403 return stack_size;
6404}
6405
6406static void
6407perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
6408 struct pt_regs *regs)
6409{
6410 /* Case of a kernel thread, nothing to dump */
6411 if (!regs) {
6412 u64 size = 0;
6413 perf_output_put(handle, size);
6414 } else {
6415 unsigned long sp;
6416 unsigned int rem;
6417 u64 dyn_size;
02e18447 6418 mm_segment_t fs;
c5ebcedb
JO
6419
6420 /*
6421 * We dump:
6422 * static size
6423 * - the size requested by user or the best one we can fit
6424 * in to the sample max size
6425 * data
6426 * - user stack dump data
6427 * dynamic size
6428 * - the actual dumped size
6429 */
6430
6431 /* Static size. */
6432 perf_output_put(handle, dump_size);
6433
6434 /* Data. */
6435 sp = perf_user_stack_pointer(regs);
02e18447
YC
6436 fs = get_fs();
6437 set_fs(USER_DS);
c5ebcedb 6438 rem = __output_copy_user(handle, (void *) sp, dump_size);
02e18447 6439 set_fs(fs);
c5ebcedb
JO
6440 dyn_size = dump_size - rem;
6441
6442 perf_output_skip(handle, rem);
6443
6444 /* Dynamic size. */
6445 perf_output_put(handle, dyn_size);
6446 }
6447}
6448
a4faf00d
AS
6449static unsigned long perf_prepare_sample_aux(struct perf_event *event,
6450 struct perf_sample_data *data,
6451 size_t size)
6452{
6453 struct perf_event *sampler = event->aux_event;
56de4e8f 6454 struct perf_buffer *rb;
a4faf00d
AS
6455
6456 data->aux_size = 0;
6457
6458 if (!sampler)
6459 goto out;
6460
6461 if (WARN_ON_ONCE(READ_ONCE(sampler->state) != PERF_EVENT_STATE_ACTIVE))
6462 goto out;
6463
6464 if (WARN_ON_ONCE(READ_ONCE(sampler->oncpu) != smp_processor_id()))
6465 goto out;
6466
6467 rb = ring_buffer_get(sampler->parent ? sampler->parent : sampler);
6468 if (!rb)
6469 goto out;
6470
6471 /*
6472 * If this is an NMI hit inside sampling code, don't take
6473 * the sample. See also perf_aux_sample_output().
6474 */
6475 if (READ_ONCE(rb->aux_in_sampling)) {
6476 data->aux_size = 0;
6477 } else {
6478 size = min_t(size_t, size, perf_aux_size(rb));
6479 data->aux_size = ALIGN(size, sizeof(u64));
6480 }
6481 ring_buffer_put(rb);
6482
6483out:
6484 return data->aux_size;
6485}
6486
56de4e8f 6487long perf_pmu_snapshot_aux(struct perf_buffer *rb,
a4faf00d
AS
6488 struct perf_event *event,
6489 struct perf_output_handle *handle,
6490 unsigned long size)
6491{
6492 unsigned long flags;
6493 long ret;
6494
6495 /*
6496 * Normal ->start()/->stop() callbacks run in IRQ mode in scheduler
6497 * paths. If we start calling them in NMI context, they may race with
6498 * the IRQ ones, that is, for example, re-starting an event that's just
6499 * been stopped, which is why we're using a separate callback that
6500 * doesn't change the event state.
6501 *
6502 * IRQs need to be disabled to prevent IPIs from racing with us.
6503 */
6504 local_irq_save(flags);
6505 /*
6506 * Guard against NMI hits inside the critical section;
6507 * see also perf_prepare_sample_aux().
6508 */
6509 WRITE_ONCE(rb->aux_in_sampling, 1);
6510 barrier();
6511
6512 ret = event->pmu->snapshot_aux(event, handle, size);
6513
6514 barrier();
6515 WRITE_ONCE(rb->aux_in_sampling, 0);
6516 local_irq_restore(flags);
6517
6518 return ret;
6519}
6520
6521static void perf_aux_sample_output(struct perf_event *event,
6522 struct perf_output_handle *handle,
6523 struct perf_sample_data *data)
6524{
6525 struct perf_event *sampler = event->aux_event;
56de4e8f 6526 struct perf_buffer *rb;
a4faf00d 6527 unsigned long pad;
a4faf00d
AS
6528 long size;
6529
6530 if (WARN_ON_ONCE(!sampler || !data->aux_size))
6531 return;
6532
6533 rb = ring_buffer_get(sampler->parent ? sampler->parent : sampler);
6534 if (!rb)
6535 return;
6536
6537 size = perf_pmu_snapshot_aux(rb, sampler, handle, data->aux_size);
6538
6539 /*
6540 * An error here means that perf_output_copy() failed (returned a
6541 * non-zero surplus that it didn't copy), which in its current
6542 * enlightened implementation is not possible. If that changes, we'd
6543 * like to know.
6544 */
6545 if (WARN_ON_ONCE(size < 0))
6546 goto out_put;
6547
6548 /*
6549 * The pad comes from ALIGN()ing data->aux_size up to u64 in
6550 * perf_prepare_sample_aux(), so should not be more than that.
6551 */
6552 pad = data->aux_size - size;
6553 if (WARN_ON_ONCE(pad >= sizeof(u64)))
6554 pad = 8;
6555
6556 if (pad) {
6557 u64 zero = 0;
6558 perf_output_copy(handle, &zero, pad);
6559 }
6560
6561out_put:
6562 ring_buffer_put(rb);
6563}
6564
c980d109
ACM
6565static void __perf_event_header__init_id(struct perf_event_header *header,
6566 struct perf_sample_data *data,
6567 struct perf_event *event)
6844c09d
ACM
6568{
6569 u64 sample_type = event->attr.sample_type;
6570
6571 data->type = sample_type;
6572 header->size += event->id_header_size;
6573
6574 if (sample_type & PERF_SAMPLE_TID) {
6575 /* namespace issues */
6576 data->tid_entry.pid = perf_event_pid(event, current);
6577 data->tid_entry.tid = perf_event_tid(event, current);
6578 }
6579
6580 if (sample_type & PERF_SAMPLE_TIME)
34f43927 6581 data->time = perf_event_clock(event);
6844c09d 6582
ff3d527c 6583 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
6844c09d
ACM
6584 data->id = primary_event_id(event);
6585
6586 if (sample_type & PERF_SAMPLE_STREAM_ID)
6587 data->stream_id = event->id;
6588
6589 if (sample_type & PERF_SAMPLE_CPU) {
6590 data->cpu_entry.cpu = raw_smp_processor_id();
6591 data->cpu_entry.reserved = 0;
6592 }
6593}
6594
76369139
FW
6595void perf_event_header__init_id(struct perf_event_header *header,
6596 struct perf_sample_data *data,
6597 struct perf_event *event)
c980d109
ACM
6598{
6599 if (event->attr.sample_id_all)
6600 __perf_event_header__init_id(header, data, event);
6601}
6602
6603static void __perf_event__output_id_sample(struct perf_output_handle *handle,
6604 struct perf_sample_data *data)
6605{
6606 u64 sample_type = data->type;
6607
6608 if (sample_type & PERF_SAMPLE_TID)
6609 perf_output_put(handle, data->tid_entry);
6610
6611 if (sample_type & PERF_SAMPLE_TIME)
6612 perf_output_put(handle, data->time);
6613
6614 if (sample_type & PERF_SAMPLE_ID)
6615 perf_output_put(handle, data->id);
6616
6617 if (sample_type & PERF_SAMPLE_STREAM_ID)
6618 perf_output_put(handle, data->stream_id);
6619
6620 if (sample_type & PERF_SAMPLE_CPU)
6621 perf_output_put(handle, data->cpu_entry);
ff3d527c
AH
6622
6623 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6624 perf_output_put(handle, data->id);
c980d109
ACM
6625}
6626
76369139
FW
6627void perf_event__output_id_sample(struct perf_event *event,
6628 struct perf_output_handle *handle,
6629 struct perf_sample_data *sample)
c980d109
ACM
6630{
6631 if (event->attr.sample_id_all)
6632 __perf_event__output_id_sample(handle, sample);
6633}
6634
3dab77fb 6635static void perf_output_read_one(struct perf_output_handle *handle,
eed01528
SE
6636 struct perf_event *event,
6637 u64 enabled, u64 running)
3dab77fb 6638{
cdd6c482 6639 u64 read_format = event->attr.read_format;
3dab77fb
PZ
6640 u64 values[4];
6641 int n = 0;
6642
b5e58793 6643 values[n++] = perf_event_count(event);
3dab77fb 6644 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
eed01528 6645 values[n++] = enabled +
cdd6c482 6646 atomic64_read(&event->child_total_time_enabled);
3dab77fb
PZ
6647 }
6648 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
eed01528 6649 values[n++] = running +
cdd6c482 6650 atomic64_read(&event->child_total_time_running);
3dab77fb
PZ
6651 }
6652 if (read_format & PERF_FORMAT_ID)
cdd6c482 6653 values[n++] = primary_event_id(event);
3dab77fb 6654
76369139 6655 __output_copy(handle, values, n * sizeof(u64));
3dab77fb
PZ
6656}
6657
3dab77fb 6658static void perf_output_read_group(struct perf_output_handle *handle,
eed01528
SE
6659 struct perf_event *event,
6660 u64 enabled, u64 running)
3dab77fb 6661{
cdd6c482
IM
6662 struct perf_event *leader = event->group_leader, *sub;
6663 u64 read_format = event->attr.read_format;
3dab77fb
PZ
6664 u64 values[5];
6665 int n = 0;
6666
6667 values[n++] = 1 + leader->nr_siblings;
6668
6669 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
eed01528 6670 values[n++] = enabled;
3dab77fb
PZ
6671
6672 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
eed01528 6673 values[n++] = running;
3dab77fb 6674
9e5b127d
PZ
6675 if ((leader != event) &&
6676 (leader->state == PERF_EVENT_STATE_ACTIVE))
3dab77fb
PZ
6677 leader->pmu->read(leader);
6678
b5e58793 6679 values[n++] = perf_event_count(leader);
3dab77fb 6680 if (read_format & PERF_FORMAT_ID)
cdd6c482 6681 values[n++] = primary_event_id(leader);
3dab77fb 6682
76369139 6683 __output_copy(handle, values, n * sizeof(u64));
3dab77fb 6684
edb39592 6685 for_each_sibling_event(sub, leader) {
3dab77fb
PZ
6686 n = 0;
6687
6f5ab001
JO
6688 if ((sub != event) &&
6689 (sub->state == PERF_EVENT_STATE_ACTIVE))
3dab77fb
PZ
6690 sub->pmu->read(sub);
6691
b5e58793 6692 values[n++] = perf_event_count(sub);
3dab77fb 6693 if (read_format & PERF_FORMAT_ID)
cdd6c482 6694 values[n++] = primary_event_id(sub);
3dab77fb 6695
76369139 6696 __output_copy(handle, values, n * sizeof(u64));
3dab77fb
PZ
6697 }
6698}
6699
eed01528
SE
6700#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
6701 PERF_FORMAT_TOTAL_TIME_RUNNING)
6702
ba5213ae
PZ
6703/*
6704 * XXX PERF_SAMPLE_READ vs inherited events seems difficult.
6705 *
6706 * The problem is that its both hard and excessively expensive to iterate the
6707 * child list, not to mention that its impossible to IPI the children running
6708 * on another CPU, from interrupt/NMI context.
6709 */
3dab77fb 6710static void perf_output_read(struct perf_output_handle *handle,
cdd6c482 6711 struct perf_event *event)
3dab77fb 6712{
e3f3541c 6713 u64 enabled = 0, running = 0, now;
eed01528
SE
6714 u64 read_format = event->attr.read_format;
6715
6716 /*
6717 * compute total_time_enabled, total_time_running
6718 * based on snapshot values taken when the event
6719 * was last scheduled in.
6720 *
6721 * we cannot simply called update_context_time()
6722 * because of locking issue as we are called in
6723 * NMI context
6724 */
c4794295 6725 if (read_format & PERF_FORMAT_TOTAL_TIMES)
e3f3541c 6726 calc_timer_values(event, &now, &enabled, &running);
eed01528 6727
cdd6c482 6728 if (event->attr.read_format & PERF_FORMAT_GROUP)
eed01528 6729 perf_output_read_group(handle, event, enabled, running);
3dab77fb 6730 else
eed01528 6731 perf_output_read_one(handle, event, enabled, running);
3dab77fb
PZ
6732}
6733
bbfd5e4f
KL
6734static inline bool perf_sample_save_hw_index(struct perf_event *event)
6735{
6736 return event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_HW_INDEX;
6737}
6738
5622f295
MM
6739void perf_output_sample(struct perf_output_handle *handle,
6740 struct perf_event_header *header,
6741 struct perf_sample_data *data,
cdd6c482 6742 struct perf_event *event)
5622f295
MM
6743{
6744 u64 sample_type = data->type;
6745
6746 perf_output_put(handle, *header);
6747
ff3d527c
AH
6748 if (sample_type & PERF_SAMPLE_IDENTIFIER)
6749 perf_output_put(handle, data->id);
6750
5622f295
MM
6751 if (sample_type & PERF_SAMPLE_IP)
6752 perf_output_put(handle, data->ip);
6753
6754 if (sample_type & PERF_SAMPLE_TID)
6755 perf_output_put(handle, data->tid_entry);
6756
6757 if (sample_type & PERF_SAMPLE_TIME)
6758 perf_output_put(handle, data->time);
6759
6760 if (sample_type & PERF_SAMPLE_ADDR)
6761 perf_output_put(handle, data->addr);
6762
6763 if (sample_type & PERF_SAMPLE_ID)
6764 perf_output_put(handle, data->id);
6765
6766 if (sample_type & PERF_SAMPLE_STREAM_ID)
6767 perf_output_put(handle, data->stream_id);
6768
6769 if (sample_type & PERF_SAMPLE_CPU)
6770 perf_output_put(handle, data->cpu_entry);
6771
6772 if (sample_type & PERF_SAMPLE_PERIOD)
6773 perf_output_put(handle, data->period);
6774
6775 if (sample_type & PERF_SAMPLE_READ)
cdd6c482 6776 perf_output_read(handle, event);
5622f295
MM
6777
6778 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
99e818cc 6779 int size = 1;
5622f295 6780
99e818cc
JO
6781 size += data->callchain->nr;
6782 size *= sizeof(u64);
6783 __output_copy(handle, data->callchain, size);
5622f295
MM
6784 }
6785
6786 if (sample_type & PERF_SAMPLE_RAW) {
7e3f977e
DB
6787 struct perf_raw_record *raw = data->raw;
6788
6789 if (raw) {
6790 struct perf_raw_frag *frag = &raw->frag;
6791
6792 perf_output_put(handle, raw->size);
6793 do {
6794 if (frag->copy) {
6795 __output_custom(handle, frag->copy,
6796 frag->data, frag->size);
6797 } else {
6798 __output_copy(handle, frag->data,
6799 frag->size);
6800 }
6801 if (perf_raw_frag_last(frag))
6802 break;
6803 frag = frag->next;
6804 } while (1);
6805 if (frag->pad)
6806 __output_skip(handle, NULL, frag->pad);
5622f295
MM
6807 } else {
6808 struct {
6809 u32 size;
6810 u32 data;
6811 } raw = {
6812 .size = sizeof(u32),
6813 .data = 0,
6814 };
6815 perf_output_put(handle, raw);
6816 }
6817 }
a7ac67ea 6818
bce38cd5
SE
6819 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
6820 if (data->br_stack) {
6821 size_t size;
6822
6823 size = data->br_stack->nr
6824 * sizeof(struct perf_branch_entry);
6825
6826 perf_output_put(handle, data->br_stack->nr);
bbfd5e4f
KL
6827 if (perf_sample_save_hw_index(event))
6828 perf_output_put(handle, data->br_stack->hw_idx);
bce38cd5
SE
6829 perf_output_copy(handle, data->br_stack->entries, size);
6830 } else {
6831 /*
6832 * we always store at least the value of nr
6833 */
6834 u64 nr = 0;
6835 perf_output_put(handle, nr);
6836 }
6837 }
4018994f
JO
6838
6839 if (sample_type & PERF_SAMPLE_REGS_USER) {
6840 u64 abi = data->regs_user.abi;
6841
6842 /*
6843 * If there are no regs to dump, notice it through
6844 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
6845 */
6846 perf_output_put(handle, abi);
6847
6848 if (abi) {
6849 u64 mask = event->attr.sample_regs_user;
6850 perf_output_sample_regs(handle,
6851 data->regs_user.regs,
6852 mask);
6853 }
6854 }
c5ebcedb 6855
a5cdd40c 6856 if (sample_type & PERF_SAMPLE_STACK_USER) {
c5ebcedb
JO
6857 perf_output_sample_ustack(handle,
6858 data->stack_user_size,
6859 data->regs_user.regs);
a5cdd40c 6860 }
c3feedf2
AK
6861
6862 if (sample_type & PERF_SAMPLE_WEIGHT)
6863 perf_output_put(handle, data->weight);
d6be9ad6
SE
6864
6865 if (sample_type & PERF_SAMPLE_DATA_SRC)
6866 perf_output_put(handle, data->data_src.val);
a5cdd40c 6867
fdfbbd07
AK
6868 if (sample_type & PERF_SAMPLE_TRANSACTION)
6869 perf_output_put(handle, data->txn);
6870
60e2364e
SE
6871 if (sample_type & PERF_SAMPLE_REGS_INTR) {
6872 u64 abi = data->regs_intr.abi;
6873 /*
6874 * If there are no regs to dump, notice it through
6875 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
6876 */
6877 perf_output_put(handle, abi);
6878
6879 if (abi) {
6880 u64 mask = event->attr.sample_regs_intr;
6881
6882 perf_output_sample_regs(handle,
6883 data->regs_intr.regs,
6884 mask);
6885 }
6886 }
6887
fc7ce9c7
KL
6888 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
6889 perf_output_put(handle, data->phys_addr);
6890
6546b19f
NK
6891 if (sample_type & PERF_SAMPLE_CGROUP)
6892 perf_output_put(handle, data->cgroup);
6893
a4faf00d
AS
6894 if (sample_type & PERF_SAMPLE_AUX) {
6895 perf_output_put(handle, data->aux_size);
6896
6897 if (data->aux_size)
6898 perf_aux_sample_output(event, handle, data);
6899 }
6900
a5cdd40c
PZ
6901 if (!event->attr.watermark) {
6902 int wakeup_events = event->attr.wakeup_events;
6903
6904 if (wakeup_events) {
56de4e8f 6905 struct perf_buffer *rb = handle->rb;
a5cdd40c
PZ
6906 int events = local_inc_return(&rb->events);
6907
6908 if (events >= wakeup_events) {
6909 local_sub(wakeup_events, &rb->events);
6910 local_inc(&rb->wakeup);
6911 }
6912 }
6913 }
5622f295
MM
6914}
6915
fc7ce9c7
KL
6916static u64 perf_virt_to_phys(u64 virt)
6917{
6918 u64 phys_addr = 0;
6919 struct page *p = NULL;
6920
6921 if (!virt)
6922 return 0;
6923
6924 if (virt >= TASK_SIZE) {
6925 /* If it's vmalloc()d memory, leave phys_addr as 0 */
6926 if (virt_addr_valid((void *)(uintptr_t)virt) &&
6927 !(virt >= VMALLOC_START && virt < VMALLOC_END))
6928 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt);
6929 } else {
6930 /*
6931 * Walking the pages tables for user address.
6932 * Interrupts are disabled, so it prevents any tear down
6933 * of the page tables.
6934 * Try IRQ-safe __get_user_pages_fast first.
6935 * If failed, leave phys_addr as 0.
6936 */
6937 if ((current->mm != NULL) &&
6938 (__get_user_pages_fast(virt, 1, 0, &p) == 1))
6939 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
6940
6941 if (p)
6942 put_page(p);
6943 }
6944
6945 return phys_addr;
6946}
6947
99e818cc
JO
6948static struct perf_callchain_entry __empty_callchain = { .nr = 0, };
6949
6cbc304f 6950struct perf_callchain_entry *
8cf7e0e2
JO
6951perf_callchain(struct perf_event *event, struct pt_regs *regs)
6952{
6953 bool kernel = !event->attr.exclude_callchain_kernel;
6954 bool user = !event->attr.exclude_callchain_user;
6955 /* Disallow cross-task user callchains. */
6956 bool crosstask = event->ctx->task && event->ctx->task != current;
6957 const u32 max_stack = event->attr.sample_max_stack;
99e818cc 6958 struct perf_callchain_entry *callchain;
8cf7e0e2
JO
6959
6960 if (!kernel && !user)
99e818cc 6961 return &__empty_callchain;
8cf7e0e2 6962
99e818cc
JO
6963 callchain = get_perf_callchain(regs, 0, kernel, user,
6964 max_stack, crosstask, true);
6965 return callchain ?: &__empty_callchain;
8cf7e0e2
JO
6966}
6967
5622f295
MM
6968void perf_prepare_sample(struct perf_event_header *header,
6969 struct perf_sample_data *data,
cdd6c482 6970 struct perf_event *event,
5622f295 6971 struct pt_regs *regs)
7b732a75 6972{
cdd6c482 6973 u64 sample_type = event->attr.sample_type;
7b732a75 6974
cdd6c482 6975 header->type = PERF_RECORD_SAMPLE;
c320c7b7 6976 header->size = sizeof(*header) + event->header_size;
5622f295
MM
6977
6978 header->misc = 0;
6979 header->misc |= perf_misc_flags(regs);
6fab0192 6980
c980d109 6981 __perf_event_header__init_id(header, data, event);
6844c09d 6982
c320c7b7 6983 if (sample_type & PERF_SAMPLE_IP)
5622f295
MM
6984 data->ip = perf_instruction_pointer(regs);
6985
b23f3325 6986 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5622f295 6987 int size = 1;
394ee076 6988
6cbc304f
PZ
6989 if (!(sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
6990 data->callchain = perf_callchain(event, regs);
6991
99e818cc 6992 size += data->callchain->nr;
5622f295
MM
6993
6994 header->size += size * sizeof(u64);
394ee076
PZ
6995 }
6996
3a43ce68 6997 if (sample_type & PERF_SAMPLE_RAW) {
7e3f977e
DB
6998 struct perf_raw_record *raw = data->raw;
6999 int size;
7000
7001 if (raw) {
7002 struct perf_raw_frag *frag = &raw->frag;
7003 u32 sum = 0;
7004
7005 do {
7006 sum += frag->size;
7007 if (perf_raw_frag_last(frag))
7008 break;
7009 frag = frag->next;
7010 } while (1);
7011
7012 size = round_up(sum + sizeof(u32), sizeof(u64));
7013 raw->size = size - sizeof(u32);
7014 frag->pad = raw->size - sum;
7015 } else {
7016 size = sizeof(u64);
7017 }
a044560c 7018
7e3f977e 7019 header->size += size;
7f453c24 7020 }
bce38cd5
SE
7021
7022 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
7023 int size = sizeof(u64); /* nr */
7024 if (data->br_stack) {
bbfd5e4f
KL
7025 if (perf_sample_save_hw_index(event))
7026 size += sizeof(u64);
7027
bce38cd5
SE
7028 size += data->br_stack->nr
7029 * sizeof(struct perf_branch_entry);
7030 }
7031 header->size += size;
7032 }
4018994f 7033
2565711f 7034 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
88a7c26a
AL
7035 perf_sample_regs_user(&data->regs_user, regs,
7036 &data->regs_user_copy);
2565711f 7037
4018994f
JO
7038 if (sample_type & PERF_SAMPLE_REGS_USER) {
7039 /* regs dump ABI info */
7040 int size = sizeof(u64);
7041
4018994f
JO
7042 if (data->regs_user.regs) {
7043 u64 mask = event->attr.sample_regs_user;
7044 size += hweight64(mask) * sizeof(u64);
7045 }
7046
7047 header->size += size;
7048 }
c5ebcedb
JO
7049
7050 if (sample_type & PERF_SAMPLE_STACK_USER) {
7051 /*
9f014e3a 7052 * Either we need PERF_SAMPLE_STACK_USER bit to be always
c5ebcedb
JO
7053 * processed as the last one or have additional check added
7054 * in case new sample type is added, because we could eat
7055 * up the rest of the sample size.
7056 */
c5ebcedb
JO
7057 u16 stack_size = event->attr.sample_stack_user;
7058 u16 size = sizeof(u64);
7059
c5ebcedb 7060 stack_size = perf_sample_ustack_size(stack_size, header->size,
2565711f 7061 data->regs_user.regs);
c5ebcedb
JO
7062
7063 /*
7064 * If there is something to dump, add space for the dump
7065 * itself and for the field that tells the dynamic size,
7066 * which is how many have been actually dumped.
7067 */
7068 if (stack_size)
7069 size += sizeof(u64) + stack_size;
7070
7071 data->stack_user_size = stack_size;
7072 header->size += size;
7073 }
60e2364e
SE
7074
7075 if (sample_type & PERF_SAMPLE_REGS_INTR) {
7076 /* regs dump ABI info */
7077 int size = sizeof(u64);
7078
7079 perf_sample_regs_intr(&data->regs_intr, regs);
7080
7081 if (data->regs_intr.regs) {
7082 u64 mask = event->attr.sample_regs_intr;
7083
7084 size += hweight64(mask) * sizeof(u64);
7085 }
7086
7087 header->size += size;
7088 }
fc7ce9c7
KL
7089
7090 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
7091 data->phys_addr = perf_virt_to_phys(data->addr);
a4faf00d 7092
6546b19f
NK
7093#ifdef CONFIG_CGROUP_PERF
7094 if (sample_type & PERF_SAMPLE_CGROUP) {
7095 struct cgroup *cgrp;
7096
7097 /* protected by RCU */
7098 cgrp = task_css_check(current, perf_event_cgrp_id, 1)->cgroup;
7099 data->cgroup = cgroup_id(cgrp);
7100 }
7101#endif
7102
a4faf00d
AS
7103 if (sample_type & PERF_SAMPLE_AUX) {
7104 u64 size;
7105
7106 header->size += sizeof(u64); /* size */
7107
7108 /*
7109 * Given the 16bit nature of header::size, an AUX sample can
7110 * easily overflow it, what with all the preceding sample bits.
7111 * Make sure this doesn't happen by using up to U16_MAX bytes
7112 * per sample in total (rounded down to 8 byte boundary).
7113 */
7114 size = min_t(size_t, U16_MAX - header->size,
7115 event->attr.aux_sample_size);
7116 size = rounddown(size, 8);
7117 size = perf_prepare_sample_aux(event, data, size);
7118
7119 WARN_ON_ONCE(size + header->size > U16_MAX);
7120 header->size += size;
7121 }
7122 /*
7123 * If you're adding more sample types here, you likely need to do
7124 * something about the overflowing header::size, like repurpose the
7125 * lowest 3 bits of size, which should be always zero at the moment.
7126 * This raises a more important question, do we really need 512k sized
7127 * samples and why, so good argumentation is in order for whatever you
7128 * do here next.
7129 */
7130 WARN_ON_ONCE(header->size & 7);
5622f295 7131}
7f453c24 7132
56201969 7133static __always_inline int
9ecda41a
WN
7134__perf_event_output(struct perf_event *event,
7135 struct perf_sample_data *data,
7136 struct pt_regs *regs,
7137 int (*output_begin)(struct perf_output_handle *,
7138 struct perf_event *,
7139 unsigned int))
5622f295
MM
7140{
7141 struct perf_output_handle handle;
7142 struct perf_event_header header;
56201969 7143 int err;
689802b2 7144
927c7a9e
FW
7145 /* protect the callchain buffers */
7146 rcu_read_lock();
7147
cdd6c482 7148 perf_prepare_sample(&header, data, event, regs);
5c148194 7149
56201969
ACM
7150 err = output_begin(&handle, event, header.size);
7151 if (err)
927c7a9e 7152 goto exit;
0322cd6e 7153
cdd6c482 7154 perf_output_sample(&handle, &header, data, event);
f413cdb8 7155
8a057d84 7156 perf_output_end(&handle);
927c7a9e
FW
7157
7158exit:
7159 rcu_read_unlock();
56201969 7160 return err;
0322cd6e
PZ
7161}
7162
9ecda41a
WN
7163void
7164perf_event_output_forward(struct perf_event *event,
7165 struct perf_sample_data *data,
7166 struct pt_regs *regs)
7167{
7168 __perf_event_output(event, data, regs, perf_output_begin_forward);
7169}
7170
7171void
7172perf_event_output_backward(struct perf_event *event,
7173 struct perf_sample_data *data,
7174 struct pt_regs *regs)
7175{
7176 __perf_event_output(event, data, regs, perf_output_begin_backward);
7177}
7178
56201969 7179int
9ecda41a
WN
7180perf_event_output(struct perf_event *event,
7181 struct perf_sample_data *data,
7182 struct pt_regs *regs)
7183{
56201969 7184 return __perf_event_output(event, data, regs, perf_output_begin);
9ecda41a
WN
7185}
7186
38b200d6 7187/*
cdd6c482 7188 * read event_id
38b200d6
PZ
7189 */
7190
7191struct perf_read_event {
7192 struct perf_event_header header;
7193
7194 u32 pid;
7195 u32 tid;
38b200d6
PZ
7196};
7197
7198static void
cdd6c482 7199perf_event_read_event(struct perf_event *event,
38b200d6
PZ
7200 struct task_struct *task)
7201{
7202 struct perf_output_handle handle;
c980d109 7203 struct perf_sample_data sample;
dfc65094 7204 struct perf_read_event read_event = {
38b200d6 7205 .header = {
cdd6c482 7206 .type = PERF_RECORD_READ,
38b200d6 7207 .misc = 0,
c320c7b7 7208 .size = sizeof(read_event) + event->read_size,
38b200d6 7209 },
cdd6c482
IM
7210 .pid = perf_event_pid(event, task),
7211 .tid = perf_event_tid(event, task),
38b200d6 7212 };
3dab77fb 7213 int ret;
38b200d6 7214
c980d109 7215 perf_event_header__init_id(&read_event.header, &sample, event);
a7ac67ea 7216 ret = perf_output_begin(&handle, event, read_event.header.size);
38b200d6
PZ
7217 if (ret)
7218 return;
7219
dfc65094 7220 perf_output_put(&handle, read_event);
cdd6c482 7221 perf_output_read(&handle, event);
c980d109 7222 perf_event__output_id_sample(event, &handle, &sample);
3dab77fb 7223
38b200d6
PZ
7224 perf_output_end(&handle);
7225}
7226
aab5b71e 7227typedef void (perf_iterate_f)(struct perf_event *event, void *data);
52d857a8
JO
7228
7229static void
aab5b71e
PZ
7230perf_iterate_ctx(struct perf_event_context *ctx,
7231 perf_iterate_f output,
b73e4fef 7232 void *data, bool all)
52d857a8
JO
7233{
7234 struct perf_event *event;
7235
7236 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
b73e4fef
AS
7237 if (!all) {
7238 if (event->state < PERF_EVENT_STATE_INACTIVE)
7239 continue;
7240 if (!event_filter_match(event))
7241 continue;
7242 }
7243
67516844 7244 output(event, data);
52d857a8
JO
7245 }
7246}
7247
aab5b71e 7248static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
f2fb6bef
KL
7249{
7250 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
7251 struct perf_event *event;
7252
7253 list_for_each_entry_rcu(event, &pel->list, sb_list) {
0b8f1e2e
PZ
7254 /*
7255 * Skip events that are not fully formed yet; ensure that
7256 * if we observe event->ctx, both event and ctx will be
7257 * complete enough. See perf_install_in_context().
7258 */
7259 if (!smp_load_acquire(&event->ctx))
7260 continue;
7261
f2fb6bef
KL
7262 if (event->state < PERF_EVENT_STATE_INACTIVE)
7263 continue;
7264 if (!event_filter_match(event))
7265 continue;
7266 output(event, data);
7267 }
7268}
7269
aab5b71e
PZ
7270/*
7271 * Iterate all events that need to receive side-band events.
7272 *
7273 * For new callers; ensure that account_pmu_sb_event() includes
7274 * your event, otherwise it might not get delivered.
7275 */
52d857a8 7276static void
aab5b71e 7277perf_iterate_sb(perf_iterate_f output, void *data,
52d857a8
JO
7278 struct perf_event_context *task_ctx)
7279{
52d857a8 7280 struct perf_event_context *ctx;
52d857a8
JO
7281 int ctxn;
7282
aab5b71e
PZ
7283 rcu_read_lock();
7284 preempt_disable();
7285
4e93ad60 7286 /*
aab5b71e
PZ
7287 * If we have task_ctx != NULL we only notify the task context itself.
7288 * The task_ctx is set only for EXIT events before releasing task
4e93ad60
JO
7289 * context.
7290 */
7291 if (task_ctx) {
aab5b71e
PZ
7292 perf_iterate_ctx(task_ctx, output, data, false);
7293 goto done;
4e93ad60
JO
7294 }
7295
aab5b71e 7296 perf_iterate_sb_cpu(output, data);
f2fb6bef
KL
7297
7298 for_each_task_context_nr(ctxn) {
52d857a8
JO
7299 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7300 if (ctx)
aab5b71e 7301 perf_iterate_ctx(ctx, output, data, false);
52d857a8 7302 }
aab5b71e 7303done:
f2fb6bef 7304 preempt_enable();
52d857a8 7305 rcu_read_unlock();
95ff4ca2
AS
7306}
7307
375637bc
AS
7308/*
7309 * Clear all file-based filters at exec, they'll have to be
7310 * re-instated when/if these objects are mmapped again.
7311 */
7312static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
7313{
7314 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7315 struct perf_addr_filter *filter;
7316 unsigned int restart = 0, count = 0;
7317 unsigned long flags;
7318
7319 if (!has_addr_filter(event))
7320 return;
7321
7322 raw_spin_lock_irqsave(&ifh->lock, flags);
7323 list_for_each_entry(filter, &ifh->list, entry) {
9511bce9 7324 if (filter->path.dentry) {
c60f83b8
AS
7325 event->addr_filter_ranges[count].start = 0;
7326 event->addr_filter_ranges[count].size = 0;
375637bc
AS
7327 restart++;
7328 }
7329
7330 count++;
7331 }
7332
7333 if (restart)
7334 event->addr_filters_gen++;
7335 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7336
7337 if (restart)
767ae086 7338 perf_event_stop(event, 1);
375637bc
AS
7339}
7340
7341void perf_event_exec(void)
7342{
7343 struct perf_event_context *ctx;
7344 int ctxn;
7345
7346 rcu_read_lock();
7347 for_each_task_context_nr(ctxn) {
7348 ctx = current->perf_event_ctxp[ctxn];
7349 if (!ctx)
7350 continue;
7351
7352 perf_event_enable_on_exec(ctxn);
7353
aab5b71e 7354 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
375637bc
AS
7355 true);
7356 }
7357 rcu_read_unlock();
7358}
7359
95ff4ca2 7360struct remote_output {
56de4e8f 7361 struct perf_buffer *rb;
95ff4ca2
AS
7362 int err;
7363};
7364
7365static void __perf_event_output_stop(struct perf_event *event, void *data)
7366{
7367 struct perf_event *parent = event->parent;
7368 struct remote_output *ro = data;
56de4e8f 7369 struct perf_buffer *rb = ro->rb;
375637bc
AS
7370 struct stop_event_data sd = {
7371 .event = event,
7372 };
95ff4ca2
AS
7373
7374 if (!has_aux(event))
7375 return;
7376
7377 if (!parent)
7378 parent = event;
7379
7380 /*
7381 * In case of inheritance, it will be the parent that links to the
767ae086
AS
7382 * ring-buffer, but it will be the child that's actually using it.
7383 *
7384 * We are using event::rb to determine if the event should be stopped,
7385 * however this may race with ring_buffer_attach() (through set_output),
7386 * which will make us skip the event that actually needs to be stopped.
7387 * So ring_buffer_attach() has to stop an aux event before re-assigning
7388 * its rb pointer.
95ff4ca2
AS
7389 */
7390 if (rcu_dereference(parent->rb) == rb)
375637bc 7391 ro->err = __perf_event_stop(&sd);
95ff4ca2
AS
7392}
7393
7394static int __perf_pmu_output_stop(void *info)
7395{
7396 struct perf_event *event = info;
f3a519e4 7397 struct pmu *pmu = event->ctx->pmu;
8b6a3fe8 7398 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
95ff4ca2
AS
7399 struct remote_output ro = {
7400 .rb = event->rb,
7401 };
7402
7403 rcu_read_lock();
aab5b71e 7404 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
95ff4ca2 7405 if (cpuctx->task_ctx)
aab5b71e 7406 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
b73e4fef 7407 &ro, false);
95ff4ca2
AS
7408 rcu_read_unlock();
7409
7410 return ro.err;
7411}
7412
7413static void perf_pmu_output_stop(struct perf_event *event)
7414{
7415 struct perf_event *iter;
7416 int err, cpu;
7417
7418restart:
7419 rcu_read_lock();
7420 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
7421 /*
7422 * For per-CPU events, we need to make sure that neither they
7423 * nor their children are running; for cpu==-1 events it's
7424 * sufficient to stop the event itself if it's active, since
7425 * it can't have children.
7426 */
7427 cpu = iter->cpu;
7428 if (cpu == -1)
7429 cpu = READ_ONCE(iter->oncpu);
7430
7431 if (cpu == -1)
7432 continue;
7433
7434 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
7435 if (err == -EAGAIN) {
7436 rcu_read_unlock();
7437 goto restart;
7438 }
7439 }
7440 rcu_read_unlock();
52d857a8
JO
7441}
7442
60313ebe 7443/*
9f498cc5
PZ
7444 * task tracking -- fork/exit
7445 *
13d7a241 7446 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
60313ebe
PZ
7447 */
7448
9f498cc5 7449struct perf_task_event {
3a80b4a3 7450 struct task_struct *task;
cdd6c482 7451 struct perf_event_context *task_ctx;
60313ebe
PZ
7452
7453 struct {
7454 struct perf_event_header header;
7455
7456 u32 pid;
7457 u32 ppid;
9f498cc5
PZ
7458 u32 tid;
7459 u32 ptid;
393b2ad8 7460 u64 time;
cdd6c482 7461 } event_id;
60313ebe
PZ
7462};
7463
67516844
JO
7464static int perf_event_task_match(struct perf_event *event)
7465{
13d7a241
SE
7466 return event->attr.comm || event->attr.mmap ||
7467 event->attr.mmap2 || event->attr.mmap_data ||
7468 event->attr.task;
67516844
JO
7469}
7470
cdd6c482 7471static void perf_event_task_output(struct perf_event *event,
52d857a8 7472 void *data)
60313ebe 7473{
52d857a8 7474 struct perf_task_event *task_event = data;
60313ebe 7475 struct perf_output_handle handle;
c980d109 7476 struct perf_sample_data sample;
9f498cc5 7477 struct task_struct *task = task_event->task;
c980d109 7478 int ret, size = task_event->event_id.header.size;
8bb39f9a 7479
67516844
JO
7480 if (!perf_event_task_match(event))
7481 return;
7482
c980d109 7483 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
60313ebe 7484
c980d109 7485 ret = perf_output_begin(&handle, event,
a7ac67ea 7486 task_event->event_id.header.size);
ef60777c 7487 if (ret)
c980d109 7488 goto out;
60313ebe 7489
cdd6c482
IM
7490 task_event->event_id.pid = perf_event_pid(event, task);
7491 task_event->event_id.ppid = perf_event_pid(event, current);
60313ebe 7492
cdd6c482
IM
7493 task_event->event_id.tid = perf_event_tid(event, task);
7494 task_event->event_id.ptid = perf_event_tid(event, current);
9f498cc5 7495
34f43927
PZ
7496 task_event->event_id.time = perf_event_clock(event);
7497
cdd6c482 7498 perf_output_put(&handle, task_event->event_id);
393b2ad8 7499
c980d109
ACM
7500 perf_event__output_id_sample(event, &handle, &sample);
7501
60313ebe 7502 perf_output_end(&handle);
c980d109
ACM
7503out:
7504 task_event->event_id.header.size = size;
60313ebe
PZ
7505}
7506
cdd6c482
IM
7507static void perf_event_task(struct task_struct *task,
7508 struct perf_event_context *task_ctx,
3a80b4a3 7509 int new)
60313ebe 7510{
9f498cc5 7511 struct perf_task_event task_event;
60313ebe 7512
cdd6c482
IM
7513 if (!atomic_read(&nr_comm_events) &&
7514 !atomic_read(&nr_mmap_events) &&
7515 !atomic_read(&nr_task_events))
60313ebe
PZ
7516 return;
7517
9f498cc5 7518 task_event = (struct perf_task_event){
3a80b4a3
PZ
7519 .task = task,
7520 .task_ctx = task_ctx,
cdd6c482 7521 .event_id = {
60313ebe 7522 .header = {
cdd6c482 7523 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
573402db 7524 .misc = 0,
cdd6c482 7525 .size = sizeof(task_event.event_id),
60313ebe 7526 },
573402db
PZ
7527 /* .pid */
7528 /* .ppid */
9f498cc5
PZ
7529 /* .tid */
7530 /* .ptid */
34f43927 7531 /* .time */
60313ebe
PZ
7532 },
7533 };
7534
aab5b71e 7535 perf_iterate_sb(perf_event_task_output,
52d857a8
JO
7536 &task_event,
7537 task_ctx);
9f498cc5
PZ
7538}
7539
cdd6c482 7540void perf_event_fork(struct task_struct *task)
9f498cc5 7541{
cdd6c482 7542 perf_event_task(task, NULL, 1);
e4222673 7543 perf_event_namespaces(task);
60313ebe
PZ
7544}
7545
8d1b2d93
PZ
7546/*
7547 * comm tracking
7548 */
7549
7550struct perf_comm_event {
22a4f650
IM
7551 struct task_struct *task;
7552 char *comm;
8d1b2d93
PZ
7553 int comm_size;
7554
7555 struct {
7556 struct perf_event_header header;
7557
7558 u32 pid;
7559 u32 tid;
cdd6c482 7560 } event_id;
8d1b2d93
PZ
7561};
7562
67516844
JO
7563static int perf_event_comm_match(struct perf_event *event)
7564{
7565 return event->attr.comm;
7566}
7567
cdd6c482 7568static void perf_event_comm_output(struct perf_event *event,
52d857a8 7569 void *data)
8d1b2d93 7570{
52d857a8 7571 struct perf_comm_event *comm_event = data;
8d1b2d93 7572 struct perf_output_handle handle;
c980d109 7573 struct perf_sample_data sample;
cdd6c482 7574 int size = comm_event->event_id.header.size;
c980d109
ACM
7575 int ret;
7576
67516844
JO
7577 if (!perf_event_comm_match(event))
7578 return;
7579
c980d109
ACM
7580 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
7581 ret = perf_output_begin(&handle, event,
a7ac67ea 7582 comm_event->event_id.header.size);
8d1b2d93
PZ
7583
7584 if (ret)
c980d109 7585 goto out;
8d1b2d93 7586
cdd6c482
IM
7587 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
7588 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
709e50cf 7589
cdd6c482 7590 perf_output_put(&handle, comm_event->event_id);
76369139 7591 __output_copy(&handle, comm_event->comm,
8d1b2d93 7592 comm_event->comm_size);
c980d109
ACM
7593
7594 perf_event__output_id_sample(event, &handle, &sample);
7595
8d1b2d93 7596 perf_output_end(&handle);
c980d109
ACM
7597out:
7598 comm_event->event_id.header.size = size;
8d1b2d93
PZ
7599}
7600
cdd6c482 7601static void perf_event_comm_event(struct perf_comm_event *comm_event)
8d1b2d93 7602{
413ee3b4 7603 char comm[TASK_COMM_LEN];
8d1b2d93 7604 unsigned int size;
8d1b2d93 7605
413ee3b4 7606 memset(comm, 0, sizeof(comm));
96b02d78 7607 strlcpy(comm, comm_event->task->comm, sizeof(comm));
888fcee0 7608 size = ALIGN(strlen(comm)+1, sizeof(u64));
8d1b2d93
PZ
7609
7610 comm_event->comm = comm;
7611 comm_event->comm_size = size;
7612
cdd6c482 7613 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
8dc85d54 7614
aab5b71e 7615 perf_iterate_sb(perf_event_comm_output,
52d857a8
JO
7616 comm_event,
7617 NULL);
8d1b2d93
PZ
7618}
7619
82b89778 7620void perf_event_comm(struct task_struct *task, bool exec)
8d1b2d93 7621{
9ee318a7
PZ
7622 struct perf_comm_event comm_event;
7623
cdd6c482 7624 if (!atomic_read(&nr_comm_events))
9ee318a7 7625 return;
a63eaf34 7626
9ee318a7 7627 comm_event = (struct perf_comm_event){
8d1b2d93 7628 .task = task,
573402db
PZ
7629 /* .comm */
7630 /* .comm_size */
cdd6c482 7631 .event_id = {
573402db 7632 .header = {
cdd6c482 7633 .type = PERF_RECORD_COMM,
82b89778 7634 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
573402db
PZ
7635 /* .size */
7636 },
7637 /* .pid */
7638 /* .tid */
8d1b2d93
PZ
7639 },
7640 };
7641
cdd6c482 7642 perf_event_comm_event(&comm_event);
8d1b2d93
PZ
7643}
7644
e4222673
HB
7645/*
7646 * namespaces tracking
7647 */
7648
7649struct perf_namespaces_event {
7650 struct task_struct *task;
7651
7652 struct {
7653 struct perf_event_header header;
7654
7655 u32 pid;
7656 u32 tid;
7657 u64 nr_namespaces;
7658 struct perf_ns_link_info link_info[NR_NAMESPACES];
7659 } event_id;
7660};
7661
7662static int perf_event_namespaces_match(struct perf_event *event)
7663{
7664 return event->attr.namespaces;
7665}
7666
7667static void perf_event_namespaces_output(struct perf_event *event,
7668 void *data)
7669{
7670 struct perf_namespaces_event *namespaces_event = data;
7671 struct perf_output_handle handle;
7672 struct perf_sample_data sample;
34900ec5 7673 u16 header_size = namespaces_event->event_id.header.size;
e4222673
HB
7674 int ret;
7675
7676 if (!perf_event_namespaces_match(event))
7677 return;
7678
7679 perf_event_header__init_id(&namespaces_event->event_id.header,
7680 &sample, event);
7681 ret = perf_output_begin(&handle, event,
7682 namespaces_event->event_id.header.size);
7683 if (ret)
34900ec5 7684 goto out;
e4222673
HB
7685
7686 namespaces_event->event_id.pid = perf_event_pid(event,
7687 namespaces_event->task);
7688 namespaces_event->event_id.tid = perf_event_tid(event,
7689 namespaces_event->task);
7690
7691 perf_output_put(&handle, namespaces_event->event_id);
7692
7693 perf_event__output_id_sample(event, &handle, &sample);
7694
7695 perf_output_end(&handle);
34900ec5
JO
7696out:
7697 namespaces_event->event_id.header.size = header_size;
e4222673
HB
7698}
7699
7700static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
7701 struct task_struct *task,
7702 const struct proc_ns_operations *ns_ops)
7703{
7704 struct path ns_path;
7705 struct inode *ns_inode;
ce623f89 7706 int error;
e4222673
HB
7707
7708 error = ns_get_path(&ns_path, task, ns_ops);
7709 if (!error) {
7710 ns_inode = ns_path.dentry->d_inode;
7711 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
7712 ns_link_info->ino = ns_inode->i_ino;
0e18dd12 7713 path_put(&ns_path);
e4222673
HB
7714 }
7715}
7716
7717void perf_event_namespaces(struct task_struct *task)
7718{
7719 struct perf_namespaces_event namespaces_event;
7720 struct perf_ns_link_info *ns_link_info;
7721
7722 if (!atomic_read(&nr_namespaces_events))
7723 return;
7724
7725 namespaces_event = (struct perf_namespaces_event){
7726 .task = task,
7727 .event_id = {
7728 .header = {
7729 .type = PERF_RECORD_NAMESPACES,
7730 .misc = 0,
7731 .size = sizeof(namespaces_event.event_id),
7732 },
7733 /* .pid */
7734 /* .tid */
7735 .nr_namespaces = NR_NAMESPACES,
7736 /* .link_info[NR_NAMESPACES] */
7737 },
7738 };
7739
7740 ns_link_info = namespaces_event.event_id.link_info;
7741
7742 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
7743 task, &mntns_operations);
7744
7745#ifdef CONFIG_USER_NS
7746 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
7747 task, &userns_operations);
7748#endif
7749#ifdef CONFIG_NET_NS
7750 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
7751 task, &netns_operations);
7752#endif
7753#ifdef CONFIG_UTS_NS
7754 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
7755 task, &utsns_operations);
7756#endif
7757#ifdef CONFIG_IPC_NS
7758 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
7759 task, &ipcns_operations);
7760#endif
7761#ifdef CONFIG_PID_NS
7762 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
7763 task, &pidns_operations);
7764#endif
7765#ifdef CONFIG_CGROUPS
7766 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
7767 task, &cgroupns_operations);
7768#endif
7769
7770 perf_iterate_sb(perf_event_namespaces_output,
7771 &namespaces_event,
7772 NULL);
7773}
7774
96aaab68
NK
7775/*
7776 * cgroup tracking
7777 */
7778#ifdef CONFIG_CGROUP_PERF
7779
7780struct perf_cgroup_event {
7781 char *path;
7782 int path_size;
7783 struct {
7784 struct perf_event_header header;
7785 u64 id;
7786 char path[];
7787 } event_id;
7788};
7789
7790static int perf_event_cgroup_match(struct perf_event *event)
7791{
7792 return event->attr.cgroup;
7793}
7794
7795static void perf_event_cgroup_output(struct perf_event *event, void *data)
7796{
7797 struct perf_cgroup_event *cgroup_event = data;
7798 struct perf_output_handle handle;
7799 struct perf_sample_data sample;
7800 u16 header_size = cgroup_event->event_id.header.size;
7801 int ret;
7802
7803 if (!perf_event_cgroup_match(event))
7804 return;
7805
7806 perf_event_header__init_id(&cgroup_event->event_id.header,
7807 &sample, event);
7808 ret = perf_output_begin(&handle, event,
7809 cgroup_event->event_id.header.size);
7810 if (ret)
7811 goto out;
7812
7813 perf_output_put(&handle, cgroup_event->event_id);
7814 __output_copy(&handle, cgroup_event->path, cgroup_event->path_size);
7815
7816 perf_event__output_id_sample(event, &handle, &sample);
7817
7818 perf_output_end(&handle);
7819out:
7820 cgroup_event->event_id.header.size = header_size;
7821}
7822
7823static void perf_event_cgroup(struct cgroup *cgrp)
7824{
7825 struct perf_cgroup_event cgroup_event;
7826 char path_enomem[16] = "//enomem";
7827 char *pathname;
7828 size_t size;
7829
7830 if (!atomic_read(&nr_cgroup_events))
7831 return;
7832
7833 cgroup_event = (struct perf_cgroup_event){
7834 .event_id = {
7835 .header = {
7836 .type = PERF_RECORD_CGROUP,
7837 .misc = 0,
7838 .size = sizeof(cgroup_event.event_id),
7839 },
7840 .id = cgroup_id(cgrp),
7841 },
7842 };
7843
7844 pathname = kmalloc(PATH_MAX, GFP_KERNEL);
7845 if (pathname == NULL) {
7846 cgroup_event.path = path_enomem;
7847 } else {
7848 /* just to be sure to have enough space for alignment */
7849 cgroup_path(cgrp, pathname, PATH_MAX - sizeof(u64));
7850 cgroup_event.path = pathname;
7851 }
7852
7853 /*
7854 * Since our buffer works in 8 byte units we need to align our string
7855 * size to a multiple of 8. However, we must guarantee the tail end is
7856 * zero'd out to avoid leaking random bits to userspace.
7857 */
7858 size = strlen(cgroup_event.path) + 1;
7859 while (!IS_ALIGNED(size, sizeof(u64)))
7860 cgroup_event.path[size++] = '\0';
7861
7862 cgroup_event.event_id.header.size += size;
7863 cgroup_event.path_size = size;
7864
7865 perf_iterate_sb(perf_event_cgroup_output,
7866 &cgroup_event,
7867 NULL);
7868
7869 kfree(pathname);
7870}
7871
7872#endif
7873
0a4a9391
PZ
7874/*
7875 * mmap tracking
7876 */
7877
7878struct perf_mmap_event {
089dd79d
PZ
7879 struct vm_area_struct *vma;
7880
7881 const char *file_name;
7882 int file_size;
13d7a241
SE
7883 int maj, min;
7884 u64 ino;
7885 u64 ino_generation;
f972eb63 7886 u32 prot, flags;
0a4a9391
PZ
7887
7888 struct {
7889 struct perf_event_header header;
7890
7891 u32 pid;
7892 u32 tid;
7893 u64 start;
7894 u64 len;
7895 u64 pgoff;
cdd6c482 7896 } event_id;
0a4a9391
PZ
7897};
7898
67516844
JO
7899static int perf_event_mmap_match(struct perf_event *event,
7900 void *data)
7901{
7902 struct perf_mmap_event *mmap_event = data;
7903 struct vm_area_struct *vma = mmap_event->vma;
7904 int executable = vma->vm_flags & VM_EXEC;
7905
7906 return (!executable && event->attr.mmap_data) ||
13d7a241 7907 (executable && (event->attr.mmap || event->attr.mmap2));
67516844
JO
7908}
7909
cdd6c482 7910static void perf_event_mmap_output(struct perf_event *event,
52d857a8 7911 void *data)
0a4a9391 7912{
52d857a8 7913 struct perf_mmap_event *mmap_event = data;
0a4a9391 7914 struct perf_output_handle handle;
c980d109 7915 struct perf_sample_data sample;
cdd6c482 7916 int size = mmap_event->event_id.header.size;
d9c1bb2f 7917 u32 type = mmap_event->event_id.header.type;
c980d109 7918 int ret;
0a4a9391 7919
67516844
JO
7920 if (!perf_event_mmap_match(event, data))
7921 return;
7922
13d7a241
SE
7923 if (event->attr.mmap2) {
7924 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
7925 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
7926 mmap_event->event_id.header.size += sizeof(mmap_event->min);
7927 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
d008d525 7928 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
f972eb63
PZ
7929 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
7930 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
13d7a241
SE
7931 }
7932
c980d109
ACM
7933 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
7934 ret = perf_output_begin(&handle, event,
a7ac67ea 7935 mmap_event->event_id.header.size);
0a4a9391 7936 if (ret)
c980d109 7937 goto out;
0a4a9391 7938
cdd6c482
IM
7939 mmap_event->event_id.pid = perf_event_pid(event, current);
7940 mmap_event->event_id.tid = perf_event_tid(event, current);
709e50cf 7941
cdd6c482 7942 perf_output_put(&handle, mmap_event->event_id);
13d7a241
SE
7943
7944 if (event->attr.mmap2) {
7945 perf_output_put(&handle, mmap_event->maj);
7946 perf_output_put(&handle, mmap_event->min);
7947 perf_output_put(&handle, mmap_event->ino);
7948 perf_output_put(&handle, mmap_event->ino_generation);
f972eb63
PZ
7949 perf_output_put(&handle, mmap_event->prot);
7950 perf_output_put(&handle, mmap_event->flags);
13d7a241
SE
7951 }
7952
76369139 7953 __output_copy(&handle, mmap_event->file_name,
0a4a9391 7954 mmap_event->file_size);
c980d109
ACM
7955
7956 perf_event__output_id_sample(event, &handle, &sample);
7957
78d613eb 7958 perf_output_end(&handle);
c980d109
ACM
7959out:
7960 mmap_event->event_id.header.size = size;
d9c1bb2f 7961 mmap_event->event_id.header.type = type;
0a4a9391
PZ
7962}
7963
cdd6c482 7964static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
0a4a9391 7965{
089dd79d
PZ
7966 struct vm_area_struct *vma = mmap_event->vma;
7967 struct file *file = vma->vm_file;
13d7a241
SE
7968 int maj = 0, min = 0;
7969 u64 ino = 0, gen = 0;
f972eb63 7970 u32 prot = 0, flags = 0;
0a4a9391
PZ
7971 unsigned int size;
7972 char tmp[16];
7973 char *buf = NULL;
2c42cfbf 7974 char *name;
413ee3b4 7975
0b3589be
PZ
7976 if (vma->vm_flags & VM_READ)
7977 prot |= PROT_READ;
7978 if (vma->vm_flags & VM_WRITE)
7979 prot |= PROT_WRITE;
7980 if (vma->vm_flags & VM_EXEC)
7981 prot |= PROT_EXEC;
7982
7983 if (vma->vm_flags & VM_MAYSHARE)
7984 flags = MAP_SHARED;
7985 else
7986 flags = MAP_PRIVATE;
7987
7988 if (vma->vm_flags & VM_DENYWRITE)
7989 flags |= MAP_DENYWRITE;
7990 if (vma->vm_flags & VM_MAYEXEC)
7991 flags |= MAP_EXECUTABLE;
7992 if (vma->vm_flags & VM_LOCKED)
7993 flags |= MAP_LOCKED;
03911132 7994 if (is_vm_hugetlb_page(vma))
0b3589be
PZ
7995 flags |= MAP_HUGETLB;
7996
0a4a9391 7997 if (file) {
13d7a241
SE
7998 struct inode *inode;
7999 dev_t dev;
3ea2f2b9 8000
2c42cfbf 8001 buf = kmalloc(PATH_MAX, GFP_KERNEL);
0a4a9391 8002 if (!buf) {
c7e548b4
ON
8003 name = "//enomem";
8004 goto cpy_name;
0a4a9391 8005 }
413ee3b4 8006 /*
3ea2f2b9 8007 * d_path() works from the end of the rb backwards, so we
413ee3b4
AB
8008 * need to add enough zero bytes after the string to handle
8009 * the 64bit alignment we do later.
8010 */
9bf39ab2 8011 name = file_path(file, buf, PATH_MAX - sizeof(u64));
0a4a9391 8012 if (IS_ERR(name)) {
c7e548b4
ON
8013 name = "//toolong";
8014 goto cpy_name;
0a4a9391 8015 }
13d7a241
SE
8016 inode = file_inode(vma->vm_file);
8017 dev = inode->i_sb->s_dev;
8018 ino = inode->i_ino;
8019 gen = inode->i_generation;
8020 maj = MAJOR(dev);
8021 min = MINOR(dev);
f972eb63 8022
c7e548b4 8023 goto got_name;
0a4a9391 8024 } else {
fbe26abe
JO
8025 if (vma->vm_ops && vma->vm_ops->name) {
8026 name = (char *) vma->vm_ops->name(vma);
8027 if (name)
8028 goto cpy_name;
8029 }
8030
2c42cfbf 8031 name = (char *)arch_vma_name(vma);
c7e548b4
ON
8032 if (name)
8033 goto cpy_name;
089dd79d 8034
32c5fb7e 8035 if (vma->vm_start <= vma->vm_mm->start_brk &&
3af9e859 8036 vma->vm_end >= vma->vm_mm->brk) {
c7e548b4
ON
8037 name = "[heap]";
8038 goto cpy_name;
32c5fb7e
ON
8039 }
8040 if (vma->vm_start <= vma->vm_mm->start_stack &&
3af9e859 8041 vma->vm_end >= vma->vm_mm->start_stack) {
c7e548b4
ON
8042 name = "[stack]";
8043 goto cpy_name;
089dd79d
PZ
8044 }
8045
c7e548b4
ON
8046 name = "//anon";
8047 goto cpy_name;
0a4a9391
PZ
8048 }
8049
c7e548b4
ON
8050cpy_name:
8051 strlcpy(tmp, name, sizeof(tmp));
8052 name = tmp;
0a4a9391 8053got_name:
2c42cfbf
PZ
8054 /*
8055 * Since our buffer works in 8 byte units we need to align our string
8056 * size to a multiple of 8. However, we must guarantee the tail end is
8057 * zero'd out to avoid leaking random bits to userspace.
8058 */
8059 size = strlen(name)+1;
8060 while (!IS_ALIGNED(size, sizeof(u64)))
8061 name[size++] = '\0';
0a4a9391
PZ
8062
8063 mmap_event->file_name = name;
8064 mmap_event->file_size = size;
13d7a241
SE
8065 mmap_event->maj = maj;
8066 mmap_event->min = min;
8067 mmap_event->ino = ino;
8068 mmap_event->ino_generation = gen;
f972eb63
PZ
8069 mmap_event->prot = prot;
8070 mmap_event->flags = flags;
0a4a9391 8071
2fe85427
SE
8072 if (!(vma->vm_flags & VM_EXEC))
8073 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
8074
cdd6c482 8075 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
0a4a9391 8076
aab5b71e 8077 perf_iterate_sb(perf_event_mmap_output,
52d857a8
JO
8078 mmap_event,
8079 NULL);
665c2142 8080
0a4a9391
PZ
8081 kfree(buf);
8082}
8083
375637bc
AS
8084/*
8085 * Check whether inode and address range match filter criteria.
8086 */
8087static bool perf_addr_filter_match(struct perf_addr_filter *filter,
8088 struct file *file, unsigned long offset,
8089 unsigned long size)
8090{
7f635ff1
MP
8091 /* d_inode(NULL) won't be equal to any mapped user-space file */
8092 if (!filter->path.dentry)
8093 return false;
8094
9511bce9 8095 if (d_inode(filter->path.dentry) != file_inode(file))
375637bc
AS
8096 return false;
8097
8098 if (filter->offset > offset + size)
8099 return false;
8100
8101 if (filter->offset + filter->size < offset)
8102 return false;
8103
8104 return true;
8105}
8106
c60f83b8
AS
8107static bool perf_addr_filter_vma_adjust(struct perf_addr_filter *filter,
8108 struct vm_area_struct *vma,
8109 struct perf_addr_filter_range *fr)
8110{
8111 unsigned long vma_size = vma->vm_end - vma->vm_start;
8112 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
8113 struct file *file = vma->vm_file;
8114
8115 if (!perf_addr_filter_match(filter, file, off, vma_size))
8116 return false;
8117
8118 if (filter->offset < off) {
8119 fr->start = vma->vm_start;
8120 fr->size = min(vma_size, filter->size - (off - filter->offset));
8121 } else {
8122 fr->start = vma->vm_start + filter->offset - off;
8123 fr->size = min(vma->vm_end - fr->start, filter->size);
8124 }
8125
8126 return true;
8127}
8128
375637bc
AS
8129static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
8130{
8131 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
8132 struct vm_area_struct *vma = data;
375637bc
AS
8133 struct perf_addr_filter *filter;
8134 unsigned int restart = 0, count = 0;
c60f83b8 8135 unsigned long flags;
375637bc
AS
8136
8137 if (!has_addr_filter(event))
8138 return;
8139
c60f83b8 8140 if (!vma->vm_file)
375637bc
AS
8141 return;
8142
8143 raw_spin_lock_irqsave(&ifh->lock, flags);
8144 list_for_each_entry(filter, &ifh->list, entry) {
c60f83b8
AS
8145 if (perf_addr_filter_vma_adjust(filter, vma,
8146 &event->addr_filter_ranges[count]))
375637bc 8147 restart++;
375637bc
AS
8148
8149 count++;
8150 }
8151
8152 if (restart)
8153 event->addr_filters_gen++;
8154 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8155
8156 if (restart)
767ae086 8157 perf_event_stop(event, 1);
375637bc
AS
8158}
8159
8160/*
8161 * Adjust all task's events' filters to the new vma
8162 */
8163static void perf_addr_filters_adjust(struct vm_area_struct *vma)
8164{
8165 struct perf_event_context *ctx;
8166 int ctxn;
8167
12b40a23
MP
8168 /*
8169 * Data tracing isn't supported yet and as such there is no need
8170 * to keep track of anything that isn't related to executable code:
8171 */
8172 if (!(vma->vm_flags & VM_EXEC))
8173 return;
8174
375637bc
AS
8175 rcu_read_lock();
8176 for_each_task_context_nr(ctxn) {
8177 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
8178 if (!ctx)
8179 continue;
8180
aab5b71e 8181 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
375637bc
AS
8182 }
8183 rcu_read_unlock();
8184}
8185
3af9e859 8186void perf_event_mmap(struct vm_area_struct *vma)
0a4a9391 8187{
9ee318a7
PZ
8188 struct perf_mmap_event mmap_event;
8189
cdd6c482 8190 if (!atomic_read(&nr_mmap_events))
9ee318a7
PZ
8191 return;
8192
8193 mmap_event = (struct perf_mmap_event){
089dd79d 8194 .vma = vma,
573402db
PZ
8195 /* .file_name */
8196 /* .file_size */
cdd6c482 8197 .event_id = {
573402db 8198 .header = {
cdd6c482 8199 .type = PERF_RECORD_MMAP,
39447b38 8200 .misc = PERF_RECORD_MISC_USER,
573402db
PZ
8201 /* .size */
8202 },
8203 /* .pid */
8204 /* .tid */
089dd79d
PZ
8205 .start = vma->vm_start,
8206 .len = vma->vm_end - vma->vm_start,
3a0304e9 8207 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
0a4a9391 8208 },
13d7a241
SE
8209 /* .maj (attr_mmap2 only) */
8210 /* .min (attr_mmap2 only) */
8211 /* .ino (attr_mmap2 only) */
8212 /* .ino_generation (attr_mmap2 only) */
f972eb63
PZ
8213 /* .prot (attr_mmap2 only) */
8214 /* .flags (attr_mmap2 only) */
0a4a9391
PZ
8215 };
8216
375637bc 8217 perf_addr_filters_adjust(vma);
cdd6c482 8218 perf_event_mmap_event(&mmap_event);
0a4a9391
PZ
8219}
8220
68db7e98
AS
8221void perf_event_aux_event(struct perf_event *event, unsigned long head,
8222 unsigned long size, u64 flags)
8223{
8224 struct perf_output_handle handle;
8225 struct perf_sample_data sample;
8226 struct perf_aux_event {
8227 struct perf_event_header header;
8228 u64 offset;
8229 u64 size;
8230 u64 flags;
8231 } rec = {
8232 .header = {
8233 .type = PERF_RECORD_AUX,
8234 .misc = 0,
8235 .size = sizeof(rec),
8236 },
8237 .offset = head,
8238 .size = size,
8239 .flags = flags,
8240 };
8241 int ret;
8242
8243 perf_event_header__init_id(&rec.header, &sample, event);
8244 ret = perf_output_begin(&handle, event, rec.header.size);
8245
8246 if (ret)
8247 return;
8248
8249 perf_output_put(&handle, rec);
8250 perf_event__output_id_sample(event, &handle, &sample);
8251
8252 perf_output_end(&handle);
8253}
8254
f38b0dbb
KL
8255/*
8256 * Lost/dropped samples logging
8257 */
8258void perf_log_lost_samples(struct perf_event *event, u64 lost)
8259{
8260 struct perf_output_handle handle;
8261 struct perf_sample_data sample;
8262 int ret;
8263
8264 struct {
8265 struct perf_event_header header;
8266 u64 lost;
8267 } lost_samples_event = {
8268 .header = {
8269 .type = PERF_RECORD_LOST_SAMPLES,
8270 .misc = 0,
8271 .size = sizeof(lost_samples_event),
8272 },
8273 .lost = lost,
8274 };
8275
8276 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
8277
8278 ret = perf_output_begin(&handle, event,
8279 lost_samples_event.header.size);
8280 if (ret)
8281 return;
8282
8283 perf_output_put(&handle, lost_samples_event);
8284 perf_event__output_id_sample(event, &handle, &sample);
8285 perf_output_end(&handle);
8286}
8287
45ac1403
AH
8288/*
8289 * context_switch tracking
8290 */
8291
8292struct perf_switch_event {
8293 struct task_struct *task;
8294 struct task_struct *next_prev;
8295
8296 struct {
8297 struct perf_event_header header;
8298 u32 next_prev_pid;
8299 u32 next_prev_tid;
8300 } event_id;
8301};
8302
8303static int perf_event_switch_match(struct perf_event *event)
8304{
8305 return event->attr.context_switch;
8306}
8307
8308static void perf_event_switch_output(struct perf_event *event, void *data)
8309{
8310 struct perf_switch_event *se = data;
8311 struct perf_output_handle handle;
8312 struct perf_sample_data sample;
8313 int ret;
8314
8315 if (!perf_event_switch_match(event))
8316 return;
8317
8318 /* Only CPU-wide events are allowed to see next/prev pid/tid */
8319 if (event->ctx->task) {
8320 se->event_id.header.type = PERF_RECORD_SWITCH;
8321 se->event_id.header.size = sizeof(se->event_id.header);
8322 } else {
8323 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
8324 se->event_id.header.size = sizeof(se->event_id);
8325 se->event_id.next_prev_pid =
8326 perf_event_pid(event, se->next_prev);
8327 se->event_id.next_prev_tid =
8328 perf_event_tid(event, se->next_prev);
8329 }
8330
8331 perf_event_header__init_id(&se->event_id.header, &sample, event);
8332
8333 ret = perf_output_begin(&handle, event, se->event_id.header.size);
8334 if (ret)
8335 return;
8336
8337 if (event->ctx->task)
8338 perf_output_put(&handle, se->event_id.header);
8339 else
8340 perf_output_put(&handle, se->event_id);
8341
8342 perf_event__output_id_sample(event, &handle, &sample);
8343
8344 perf_output_end(&handle);
8345}
8346
8347static void perf_event_switch(struct task_struct *task,
8348 struct task_struct *next_prev, bool sched_in)
8349{
8350 struct perf_switch_event switch_event;
8351
8352 /* N.B. caller checks nr_switch_events != 0 */
8353
8354 switch_event = (struct perf_switch_event){
8355 .task = task,
8356 .next_prev = next_prev,
8357 .event_id = {
8358 .header = {
8359 /* .type */
8360 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
8361 /* .size */
8362 },
8363 /* .next_prev_pid */
8364 /* .next_prev_tid */
8365 },
8366 };
8367
101592b4
AB
8368 if (!sched_in && task->state == TASK_RUNNING)
8369 switch_event.event_id.header.misc |=
8370 PERF_RECORD_MISC_SWITCH_OUT_PREEMPT;
8371
aab5b71e 8372 perf_iterate_sb(perf_event_switch_output,
45ac1403
AH
8373 &switch_event,
8374 NULL);
8375}
8376
a78ac325
PZ
8377/*
8378 * IRQ throttle logging
8379 */
8380
cdd6c482 8381static void perf_log_throttle(struct perf_event *event, int enable)
a78ac325
PZ
8382{
8383 struct perf_output_handle handle;
c980d109 8384 struct perf_sample_data sample;
a78ac325
PZ
8385 int ret;
8386
8387 struct {
8388 struct perf_event_header header;
8389 u64 time;
cca3f454 8390 u64 id;
7f453c24 8391 u64 stream_id;
a78ac325
PZ
8392 } throttle_event = {
8393 .header = {
cdd6c482 8394 .type = PERF_RECORD_THROTTLE,
a78ac325
PZ
8395 .misc = 0,
8396 .size = sizeof(throttle_event),
8397 },
34f43927 8398 .time = perf_event_clock(event),
cdd6c482
IM
8399 .id = primary_event_id(event),
8400 .stream_id = event->id,
a78ac325
PZ
8401 };
8402
966ee4d6 8403 if (enable)
cdd6c482 8404 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
966ee4d6 8405
c980d109
ACM
8406 perf_event_header__init_id(&throttle_event.header, &sample, event);
8407
8408 ret = perf_output_begin(&handle, event,
a7ac67ea 8409 throttle_event.header.size);
a78ac325
PZ
8410 if (ret)
8411 return;
8412
8413 perf_output_put(&handle, throttle_event);
c980d109 8414 perf_event__output_id_sample(event, &handle, &sample);
a78ac325
PZ
8415 perf_output_end(&handle);
8416}
8417
76193a94
SL
8418/*
8419 * ksymbol register/unregister tracking
8420 */
8421
8422struct perf_ksymbol_event {
8423 const char *name;
8424 int name_len;
8425 struct {
8426 struct perf_event_header header;
8427 u64 addr;
8428 u32 len;
8429 u16 ksym_type;
8430 u16 flags;
8431 } event_id;
8432};
8433
8434static int perf_event_ksymbol_match(struct perf_event *event)
8435{
8436 return event->attr.ksymbol;
8437}
8438
8439static void perf_event_ksymbol_output(struct perf_event *event, void *data)
8440{
8441 struct perf_ksymbol_event *ksymbol_event = data;
8442 struct perf_output_handle handle;
8443 struct perf_sample_data sample;
8444 int ret;
8445
8446 if (!perf_event_ksymbol_match(event))
8447 return;
8448
8449 perf_event_header__init_id(&ksymbol_event->event_id.header,
8450 &sample, event);
8451 ret = perf_output_begin(&handle, event,
8452 ksymbol_event->event_id.header.size);
8453 if (ret)
8454 return;
8455
8456 perf_output_put(&handle, ksymbol_event->event_id);
8457 __output_copy(&handle, ksymbol_event->name, ksymbol_event->name_len);
8458 perf_event__output_id_sample(event, &handle, &sample);
8459
8460 perf_output_end(&handle);
8461}
8462
8463void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len, bool unregister,
8464 const char *sym)
8465{
8466 struct perf_ksymbol_event ksymbol_event;
8467 char name[KSYM_NAME_LEN];
8468 u16 flags = 0;
8469 int name_len;
8470
8471 if (!atomic_read(&nr_ksymbol_events))
8472 return;
8473
8474 if (ksym_type >= PERF_RECORD_KSYMBOL_TYPE_MAX ||
8475 ksym_type == PERF_RECORD_KSYMBOL_TYPE_UNKNOWN)
8476 goto err;
8477
8478 strlcpy(name, sym, KSYM_NAME_LEN);
8479 name_len = strlen(name) + 1;
8480 while (!IS_ALIGNED(name_len, sizeof(u64)))
8481 name[name_len++] = '\0';
8482 BUILD_BUG_ON(KSYM_NAME_LEN % sizeof(u64));
8483
8484 if (unregister)
8485 flags |= PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER;
8486
8487 ksymbol_event = (struct perf_ksymbol_event){
8488 .name = name,
8489 .name_len = name_len,
8490 .event_id = {
8491 .header = {
8492 .type = PERF_RECORD_KSYMBOL,
8493 .size = sizeof(ksymbol_event.event_id) +
8494 name_len,
8495 },
8496 .addr = addr,
8497 .len = len,
8498 .ksym_type = ksym_type,
8499 .flags = flags,
8500 },
8501 };
8502
8503 perf_iterate_sb(perf_event_ksymbol_output, &ksymbol_event, NULL);
8504 return;
8505err:
8506 WARN_ONCE(1, "%s: Invalid KSYMBOL type 0x%x\n", __func__, ksym_type);
8507}
8508
6ee52e2a
SL
8509/*
8510 * bpf program load/unload tracking
8511 */
8512
8513struct perf_bpf_event {
8514 struct bpf_prog *prog;
8515 struct {
8516 struct perf_event_header header;
8517 u16 type;
8518 u16 flags;
8519 u32 id;
8520 u8 tag[BPF_TAG_SIZE];
8521 } event_id;
8522};
8523
8524static int perf_event_bpf_match(struct perf_event *event)
8525{
8526 return event->attr.bpf_event;
8527}
8528
8529static void perf_event_bpf_output(struct perf_event *event, void *data)
8530{
8531 struct perf_bpf_event *bpf_event = data;
8532 struct perf_output_handle handle;
8533 struct perf_sample_data sample;
8534 int ret;
8535
8536 if (!perf_event_bpf_match(event))
8537 return;
8538
8539 perf_event_header__init_id(&bpf_event->event_id.header,
8540 &sample, event);
8541 ret = perf_output_begin(&handle, event,
8542 bpf_event->event_id.header.size);
8543 if (ret)
8544 return;
8545
8546 perf_output_put(&handle, bpf_event->event_id);
8547 perf_event__output_id_sample(event, &handle, &sample);
8548
8549 perf_output_end(&handle);
8550}
8551
8552static void perf_event_bpf_emit_ksymbols(struct bpf_prog *prog,
8553 enum perf_bpf_event_type type)
8554{
8555 bool unregister = type == PERF_BPF_EVENT_PROG_UNLOAD;
6ee52e2a
SL
8556 int i;
8557
8558 if (prog->aux->func_cnt == 0) {
6ee52e2a
SL
8559 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF,
8560 (u64)(unsigned long)prog->bpf_func,
bfea9a85
JO
8561 prog->jited_len, unregister,
8562 prog->aux->ksym.name);
6ee52e2a
SL
8563 } else {
8564 for (i = 0; i < prog->aux->func_cnt; i++) {
8565 struct bpf_prog *subprog = prog->aux->func[i];
8566
6ee52e2a
SL
8567 perf_event_ksymbol(
8568 PERF_RECORD_KSYMBOL_TYPE_BPF,
8569 (u64)(unsigned long)subprog->bpf_func,
bfea9a85
JO
8570 subprog->jited_len, unregister,
8571 prog->aux->ksym.name);
6ee52e2a
SL
8572 }
8573 }
8574}
8575
8576void perf_event_bpf_event(struct bpf_prog *prog,
8577 enum perf_bpf_event_type type,
8578 u16 flags)
8579{
8580 struct perf_bpf_event bpf_event;
8581
8582 if (type <= PERF_BPF_EVENT_UNKNOWN ||
8583 type >= PERF_BPF_EVENT_MAX)
8584 return;
8585
8586 switch (type) {
8587 case PERF_BPF_EVENT_PROG_LOAD:
8588 case PERF_BPF_EVENT_PROG_UNLOAD:
8589 if (atomic_read(&nr_ksymbol_events))
8590 perf_event_bpf_emit_ksymbols(prog, type);
8591 break;
8592 default:
8593 break;
8594 }
8595
8596 if (!atomic_read(&nr_bpf_events))
8597 return;
8598
8599 bpf_event = (struct perf_bpf_event){
8600 .prog = prog,
8601 .event_id = {
8602 .header = {
8603 .type = PERF_RECORD_BPF_EVENT,
8604 .size = sizeof(bpf_event.event_id),
8605 },
8606 .type = type,
8607 .flags = flags,
8608 .id = prog->aux->id,
8609 },
8610 };
8611
8612 BUILD_BUG_ON(BPF_TAG_SIZE % sizeof(u64));
8613
8614 memcpy(bpf_event.event_id.tag, prog->tag, BPF_TAG_SIZE);
8615 perf_iterate_sb(perf_event_bpf_output, &bpf_event, NULL);
8616}
8617
8d4e6c4c
AS
8618void perf_event_itrace_started(struct perf_event *event)
8619{
8620 event->attach_state |= PERF_ATTACH_ITRACE;
8621}
8622
ec0d7729
AS
8623static void perf_log_itrace_start(struct perf_event *event)
8624{
8625 struct perf_output_handle handle;
8626 struct perf_sample_data sample;
8627 struct perf_aux_event {
8628 struct perf_event_header header;
8629 u32 pid;
8630 u32 tid;
8631 } rec;
8632 int ret;
8633
8634 if (event->parent)
8635 event = event->parent;
8636
8637 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
8d4e6c4c 8638 event->attach_state & PERF_ATTACH_ITRACE)
ec0d7729
AS
8639 return;
8640
ec0d7729
AS
8641 rec.header.type = PERF_RECORD_ITRACE_START;
8642 rec.header.misc = 0;
8643 rec.header.size = sizeof(rec);
8644 rec.pid = perf_event_pid(event, current);
8645 rec.tid = perf_event_tid(event, current);
8646
8647 perf_event_header__init_id(&rec.header, &sample, event);
8648 ret = perf_output_begin(&handle, event, rec.header.size);
8649
8650 if (ret)
8651 return;
8652
8653 perf_output_put(&handle, rec);
8654 perf_event__output_id_sample(event, &handle, &sample);
8655
8656 perf_output_end(&handle);
8657}
8658
475113d9
JO
8659static int
8660__perf_event_account_interrupt(struct perf_event *event, int throttle)
f6c7d5fe 8661{
cdd6c482 8662 struct hw_perf_event *hwc = &event->hw;
79f14641 8663 int ret = 0;
475113d9 8664 u64 seq;
96398826 8665
e050e3f0
SE
8666 seq = __this_cpu_read(perf_throttled_seq);
8667 if (seq != hwc->interrupts_seq) {
8668 hwc->interrupts_seq = seq;
8669 hwc->interrupts = 1;
8670 } else {
8671 hwc->interrupts++;
8672 if (unlikely(throttle
8673 && hwc->interrupts >= max_samples_per_tick)) {
8674 __this_cpu_inc(perf_throttled_count);
555e0c1e 8675 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
163ec435
PZ
8676 hwc->interrupts = MAX_INTERRUPTS;
8677 perf_log_throttle(event, 0);
a78ac325
PZ
8678 ret = 1;
8679 }
e050e3f0 8680 }
60db5e09 8681
cdd6c482 8682 if (event->attr.freq) {
def0a9b2 8683 u64 now = perf_clock();
abd50713 8684 s64 delta = now - hwc->freq_time_stamp;
bd2b5b12 8685
abd50713 8686 hwc->freq_time_stamp = now;
bd2b5b12 8687
abd50713 8688 if (delta > 0 && delta < 2*TICK_NSEC)
f39d47ff 8689 perf_adjust_period(event, delta, hwc->last_period, true);
bd2b5b12
PZ
8690 }
8691
475113d9
JO
8692 return ret;
8693}
8694
8695int perf_event_account_interrupt(struct perf_event *event)
8696{
8697 return __perf_event_account_interrupt(event, 1);
8698}
8699
8700/*
8701 * Generic event overflow handling, sampling.
8702 */
8703
8704static int __perf_event_overflow(struct perf_event *event,
8705 int throttle, struct perf_sample_data *data,
8706 struct pt_regs *regs)
8707{
8708 int events = atomic_read(&event->event_limit);
8709 int ret = 0;
8710
8711 /*
8712 * Non-sampling counters might still use the PMI to fold short
8713 * hardware counters, ignore those.
8714 */
8715 if (unlikely(!is_sampling_event(event)))
8716 return 0;
8717
8718 ret = __perf_event_account_interrupt(event, throttle);
cc1582c2 8719
2023b359
PZ
8720 /*
8721 * XXX event_limit might not quite work as expected on inherited
cdd6c482 8722 * events
2023b359
PZ
8723 */
8724
cdd6c482
IM
8725 event->pending_kill = POLL_IN;
8726 if (events && atomic_dec_and_test(&event->event_limit)) {
79f14641 8727 ret = 1;
cdd6c482 8728 event->pending_kill = POLL_HUP;
5aab90ce
JO
8729
8730 perf_event_disable_inatomic(event);
79f14641
PZ
8731 }
8732
aa6a5f3c 8733 READ_ONCE(event->overflow_handler)(event, data, regs);
453f19ee 8734
fed66e2c 8735 if (*perf_event_fasync(event) && event->pending_kill) {
a8b0ca17
PZ
8736 event->pending_wakeup = 1;
8737 irq_work_queue(&event->pending);
f506b3dc
PZ
8738 }
8739
79f14641 8740 return ret;
f6c7d5fe
PZ
8741}
8742
a8b0ca17 8743int perf_event_overflow(struct perf_event *event,
5622f295
MM
8744 struct perf_sample_data *data,
8745 struct pt_regs *regs)
850bc73f 8746{
a8b0ca17 8747 return __perf_event_overflow(event, 1, data, regs);
850bc73f
PZ
8748}
8749
15dbf27c 8750/*
cdd6c482 8751 * Generic software event infrastructure
15dbf27c
PZ
8752 */
8753
b28ab83c
PZ
8754struct swevent_htable {
8755 struct swevent_hlist *swevent_hlist;
8756 struct mutex hlist_mutex;
8757 int hlist_refcount;
8758
8759 /* Recursion avoidance in each contexts */
8760 int recursion[PERF_NR_CONTEXTS];
8761};
8762
8763static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
8764
7b4b6658 8765/*
cdd6c482
IM
8766 * We directly increment event->count and keep a second value in
8767 * event->hw.period_left to count intervals. This period event
7b4b6658
PZ
8768 * is kept in the range [-sample_period, 0] so that we can use the
8769 * sign as trigger.
8770 */
8771
ab573844 8772u64 perf_swevent_set_period(struct perf_event *event)
15dbf27c 8773{
cdd6c482 8774 struct hw_perf_event *hwc = &event->hw;
7b4b6658
PZ
8775 u64 period = hwc->last_period;
8776 u64 nr, offset;
8777 s64 old, val;
8778
8779 hwc->last_period = hwc->sample_period;
15dbf27c
PZ
8780
8781again:
e7850595 8782 old = val = local64_read(&hwc->period_left);
7b4b6658
PZ
8783 if (val < 0)
8784 return 0;
15dbf27c 8785
7b4b6658
PZ
8786 nr = div64_u64(period + val, period);
8787 offset = nr * period;
8788 val -= offset;
e7850595 8789 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
7b4b6658 8790 goto again;
15dbf27c 8791
7b4b6658 8792 return nr;
15dbf27c
PZ
8793}
8794
0cff784a 8795static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
a8b0ca17 8796 struct perf_sample_data *data,
5622f295 8797 struct pt_regs *regs)
15dbf27c 8798{
cdd6c482 8799 struct hw_perf_event *hwc = &event->hw;
850bc73f 8800 int throttle = 0;
15dbf27c 8801
0cff784a
PZ
8802 if (!overflow)
8803 overflow = perf_swevent_set_period(event);
15dbf27c 8804
7b4b6658
PZ
8805 if (hwc->interrupts == MAX_INTERRUPTS)
8806 return;
15dbf27c 8807
7b4b6658 8808 for (; overflow; overflow--) {
a8b0ca17 8809 if (__perf_event_overflow(event, throttle,
5622f295 8810 data, regs)) {
7b4b6658
PZ
8811 /*
8812 * We inhibit the overflow from happening when
8813 * hwc->interrupts == MAX_INTERRUPTS.
8814 */
8815 break;
8816 }
cf450a73 8817 throttle = 1;
7b4b6658 8818 }
15dbf27c
PZ
8819}
8820
a4eaf7f1 8821static void perf_swevent_event(struct perf_event *event, u64 nr,
a8b0ca17 8822 struct perf_sample_data *data,
5622f295 8823 struct pt_regs *regs)
7b4b6658 8824{
cdd6c482 8825 struct hw_perf_event *hwc = &event->hw;
d6d020e9 8826
e7850595 8827 local64_add(nr, &event->count);
d6d020e9 8828
0cff784a
PZ
8829 if (!regs)
8830 return;
8831
6c7e550f 8832 if (!is_sampling_event(event))
7b4b6658 8833 return;
d6d020e9 8834
5d81e5cf
AV
8835 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
8836 data->period = nr;
8837 return perf_swevent_overflow(event, 1, data, regs);
8838 } else
8839 data->period = event->hw.last_period;
8840
0cff784a 8841 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
a8b0ca17 8842 return perf_swevent_overflow(event, 1, data, regs);
0cff784a 8843
e7850595 8844 if (local64_add_negative(nr, &hwc->period_left))
7b4b6658 8845 return;
df1a132b 8846
a8b0ca17 8847 perf_swevent_overflow(event, 0, data, regs);
d6d020e9
PZ
8848}
8849
f5ffe02e
FW
8850static int perf_exclude_event(struct perf_event *event,
8851 struct pt_regs *regs)
8852{
a4eaf7f1 8853 if (event->hw.state & PERF_HES_STOPPED)
91b2f482 8854 return 1;
a4eaf7f1 8855
f5ffe02e
FW
8856 if (regs) {
8857 if (event->attr.exclude_user && user_mode(regs))
8858 return 1;
8859
8860 if (event->attr.exclude_kernel && !user_mode(regs))
8861 return 1;
8862 }
8863
8864 return 0;
8865}
8866
cdd6c482 8867static int perf_swevent_match(struct perf_event *event,
1c432d89 8868 enum perf_type_id type,
6fb2915d
LZ
8869 u32 event_id,
8870 struct perf_sample_data *data,
8871 struct pt_regs *regs)
15dbf27c 8872{
cdd6c482 8873 if (event->attr.type != type)
a21ca2ca 8874 return 0;
f5ffe02e 8875
cdd6c482 8876 if (event->attr.config != event_id)
15dbf27c
PZ
8877 return 0;
8878
f5ffe02e
FW
8879 if (perf_exclude_event(event, regs))
8880 return 0;
15dbf27c
PZ
8881
8882 return 1;
8883}
8884
76e1d904
FW
8885static inline u64 swevent_hash(u64 type, u32 event_id)
8886{
8887 u64 val = event_id | (type << 32);
8888
8889 return hash_64(val, SWEVENT_HLIST_BITS);
8890}
8891
49f135ed
FW
8892static inline struct hlist_head *
8893__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
76e1d904 8894{
49f135ed
FW
8895 u64 hash = swevent_hash(type, event_id);
8896
8897 return &hlist->heads[hash];
8898}
76e1d904 8899
49f135ed
FW
8900/* For the read side: events when they trigger */
8901static inline struct hlist_head *
b28ab83c 8902find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
49f135ed
FW
8903{
8904 struct swevent_hlist *hlist;
76e1d904 8905
b28ab83c 8906 hlist = rcu_dereference(swhash->swevent_hlist);
76e1d904
FW
8907 if (!hlist)
8908 return NULL;
8909
49f135ed
FW
8910 return __find_swevent_head(hlist, type, event_id);
8911}
8912
8913/* For the event head insertion and removal in the hlist */
8914static inline struct hlist_head *
b28ab83c 8915find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
49f135ed
FW
8916{
8917 struct swevent_hlist *hlist;
8918 u32 event_id = event->attr.config;
8919 u64 type = event->attr.type;
8920
8921 /*
8922 * Event scheduling is always serialized against hlist allocation
8923 * and release. Which makes the protected version suitable here.
8924 * The context lock guarantees that.
8925 */
b28ab83c 8926 hlist = rcu_dereference_protected(swhash->swevent_hlist,
49f135ed
FW
8927 lockdep_is_held(&event->ctx->lock));
8928 if (!hlist)
8929 return NULL;
8930
8931 return __find_swevent_head(hlist, type, event_id);
76e1d904
FW
8932}
8933
8934static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
a8b0ca17 8935 u64 nr,
76e1d904
FW
8936 struct perf_sample_data *data,
8937 struct pt_regs *regs)
15dbf27c 8938{
4a32fea9 8939 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
cdd6c482 8940 struct perf_event *event;
76e1d904 8941 struct hlist_head *head;
15dbf27c 8942
76e1d904 8943 rcu_read_lock();
b28ab83c 8944 head = find_swevent_head_rcu(swhash, type, event_id);
76e1d904
FW
8945 if (!head)
8946 goto end;
8947
b67bfe0d 8948 hlist_for_each_entry_rcu(event, head, hlist_entry) {
6fb2915d 8949 if (perf_swevent_match(event, type, event_id, data, regs))
a8b0ca17 8950 perf_swevent_event(event, nr, data, regs);
15dbf27c 8951 }
76e1d904
FW
8952end:
8953 rcu_read_unlock();
15dbf27c
PZ
8954}
8955
86038c5e
PZI
8956DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
8957
4ed7c92d 8958int perf_swevent_get_recursion_context(void)
96f6d444 8959{
4a32fea9 8960 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
96f6d444 8961
b28ab83c 8962 return get_recursion_context(swhash->recursion);
96f6d444 8963}
645e8cc0 8964EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
96f6d444 8965
98b5c2c6 8966void perf_swevent_put_recursion_context(int rctx)
15dbf27c 8967{
4a32fea9 8968 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
927c7a9e 8969
b28ab83c 8970 put_recursion_context(swhash->recursion, rctx);
ce71b9df 8971}
15dbf27c 8972
86038c5e 8973void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
b8e83514 8974{
a4234bfc 8975 struct perf_sample_data data;
4ed7c92d 8976
86038c5e 8977 if (WARN_ON_ONCE(!regs))
4ed7c92d 8978 return;
a4234bfc 8979
fd0d000b 8980 perf_sample_data_init(&data, addr, 0);
a8b0ca17 8981 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
86038c5e
PZI
8982}
8983
8984void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
8985{
8986 int rctx;
8987
8988 preempt_disable_notrace();
8989 rctx = perf_swevent_get_recursion_context();
8990 if (unlikely(rctx < 0))
8991 goto fail;
8992
8993 ___perf_sw_event(event_id, nr, regs, addr);
4ed7c92d
PZ
8994
8995 perf_swevent_put_recursion_context(rctx);
86038c5e 8996fail:
1c024eca 8997 preempt_enable_notrace();
b8e83514
PZ
8998}
8999
cdd6c482 9000static void perf_swevent_read(struct perf_event *event)
15dbf27c 9001{
15dbf27c
PZ
9002}
9003
a4eaf7f1 9004static int perf_swevent_add(struct perf_event *event, int flags)
15dbf27c 9005{
4a32fea9 9006 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
cdd6c482 9007 struct hw_perf_event *hwc = &event->hw;
76e1d904
FW
9008 struct hlist_head *head;
9009
6c7e550f 9010 if (is_sampling_event(event)) {
7b4b6658 9011 hwc->last_period = hwc->sample_period;
cdd6c482 9012 perf_swevent_set_period(event);
7b4b6658 9013 }
76e1d904 9014
a4eaf7f1
PZ
9015 hwc->state = !(flags & PERF_EF_START);
9016
b28ab83c 9017 head = find_swevent_head(swhash, event);
12ca6ad2 9018 if (WARN_ON_ONCE(!head))
76e1d904
FW
9019 return -EINVAL;
9020
9021 hlist_add_head_rcu(&event->hlist_entry, head);
6a694a60 9022 perf_event_update_userpage(event);
76e1d904 9023
15dbf27c
PZ
9024 return 0;
9025}
9026
a4eaf7f1 9027static void perf_swevent_del(struct perf_event *event, int flags)
15dbf27c 9028{
76e1d904 9029 hlist_del_rcu(&event->hlist_entry);
15dbf27c
PZ
9030}
9031
a4eaf7f1 9032static void perf_swevent_start(struct perf_event *event, int flags)
5c92d124 9033{
a4eaf7f1 9034 event->hw.state = 0;
d6d020e9 9035}
aa9c4c0f 9036
a4eaf7f1 9037static void perf_swevent_stop(struct perf_event *event, int flags)
d6d020e9 9038{
a4eaf7f1 9039 event->hw.state = PERF_HES_STOPPED;
bae43c99
IM
9040}
9041
49f135ed
FW
9042/* Deref the hlist from the update side */
9043static inline struct swevent_hlist *
b28ab83c 9044swevent_hlist_deref(struct swevent_htable *swhash)
49f135ed 9045{
b28ab83c
PZ
9046 return rcu_dereference_protected(swhash->swevent_hlist,
9047 lockdep_is_held(&swhash->hlist_mutex));
49f135ed
FW
9048}
9049
b28ab83c 9050static void swevent_hlist_release(struct swevent_htable *swhash)
76e1d904 9051{
b28ab83c 9052 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
76e1d904 9053
49f135ed 9054 if (!hlist)
76e1d904
FW
9055 return;
9056
70691d4a 9057 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
fa4bbc4c 9058 kfree_rcu(hlist, rcu_head);
76e1d904
FW
9059}
9060
3b364d7b 9061static void swevent_hlist_put_cpu(int cpu)
76e1d904 9062{
b28ab83c 9063 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
76e1d904 9064
b28ab83c 9065 mutex_lock(&swhash->hlist_mutex);
76e1d904 9066
b28ab83c
PZ
9067 if (!--swhash->hlist_refcount)
9068 swevent_hlist_release(swhash);
76e1d904 9069
b28ab83c 9070 mutex_unlock(&swhash->hlist_mutex);
76e1d904
FW
9071}
9072
3b364d7b 9073static void swevent_hlist_put(void)
76e1d904
FW
9074{
9075 int cpu;
9076
76e1d904 9077 for_each_possible_cpu(cpu)
3b364d7b 9078 swevent_hlist_put_cpu(cpu);
76e1d904
FW
9079}
9080
3b364d7b 9081static int swevent_hlist_get_cpu(int cpu)
76e1d904 9082{
b28ab83c 9083 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
76e1d904
FW
9084 int err = 0;
9085
b28ab83c 9086 mutex_lock(&swhash->hlist_mutex);
a63fbed7
TG
9087 if (!swevent_hlist_deref(swhash) &&
9088 cpumask_test_cpu(cpu, perf_online_mask)) {
76e1d904
FW
9089 struct swevent_hlist *hlist;
9090
9091 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
9092 if (!hlist) {
9093 err = -ENOMEM;
9094 goto exit;
9095 }
b28ab83c 9096 rcu_assign_pointer(swhash->swevent_hlist, hlist);
76e1d904 9097 }
b28ab83c 9098 swhash->hlist_refcount++;
9ed6060d 9099exit:
b28ab83c 9100 mutex_unlock(&swhash->hlist_mutex);
76e1d904
FW
9101
9102 return err;
9103}
9104
3b364d7b 9105static int swevent_hlist_get(void)
76e1d904 9106{
3b364d7b 9107 int err, cpu, failed_cpu;
76e1d904 9108
a63fbed7 9109 mutex_lock(&pmus_lock);
76e1d904 9110 for_each_possible_cpu(cpu) {
3b364d7b 9111 err = swevent_hlist_get_cpu(cpu);
76e1d904
FW
9112 if (err) {
9113 failed_cpu = cpu;
9114 goto fail;
9115 }
9116 }
a63fbed7 9117 mutex_unlock(&pmus_lock);
76e1d904 9118 return 0;
9ed6060d 9119fail:
76e1d904
FW
9120 for_each_possible_cpu(cpu) {
9121 if (cpu == failed_cpu)
9122 break;
3b364d7b 9123 swevent_hlist_put_cpu(cpu);
76e1d904 9124 }
a63fbed7 9125 mutex_unlock(&pmus_lock);
76e1d904
FW
9126 return err;
9127}
9128
c5905afb 9129struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
95476b64 9130
b0a873eb
PZ
9131static void sw_perf_event_destroy(struct perf_event *event)
9132{
9133 u64 event_id = event->attr.config;
95476b64 9134
b0a873eb
PZ
9135 WARN_ON(event->parent);
9136
c5905afb 9137 static_key_slow_dec(&perf_swevent_enabled[event_id]);
3b364d7b 9138 swevent_hlist_put();
b0a873eb
PZ
9139}
9140
9141static int perf_swevent_init(struct perf_event *event)
9142{
8176cced 9143 u64 event_id = event->attr.config;
b0a873eb
PZ
9144
9145 if (event->attr.type != PERF_TYPE_SOFTWARE)
9146 return -ENOENT;
9147
2481c5fa
SE
9148 /*
9149 * no branch sampling for software events
9150 */
9151 if (has_branch_stack(event))
9152 return -EOPNOTSUPP;
9153
b0a873eb
PZ
9154 switch (event_id) {
9155 case PERF_COUNT_SW_CPU_CLOCK:
9156 case PERF_COUNT_SW_TASK_CLOCK:
9157 return -ENOENT;
9158
9159 default:
9160 break;
9161 }
9162
ce677831 9163 if (event_id >= PERF_COUNT_SW_MAX)
b0a873eb
PZ
9164 return -ENOENT;
9165
9166 if (!event->parent) {
9167 int err;
9168
3b364d7b 9169 err = swevent_hlist_get();
b0a873eb
PZ
9170 if (err)
9171 return err;
9172
c5905afb 9173 static_key_slow_inc(&perf_swevent_enabled[event_id]);
b0a873eb
PZ
9174 event->destroy = sw_perf_event_destroy;
9175 }
9176
9177 return 0;
9178}
9179
9180static struct pmu perf_swevent = {
89a1e187 9181 .task_ctx_nr = perf_sw_context,
95476b64 9182
34f43927
PZ
9183 .capabilities = PERF_PMU_CAP_NO_NMI,
9184
b0a873eb 9185 .event_init = perf_swevent_init,
a4eaf7f1
PZ
9186 .add = perf_swevent_add,
9187 .del = perf_swevent_del,
9188 .start = perf_swevent_start,
9189 .stop = perf_swevent_stop,
1c024eca 9190 .read = perf_swevent_read,
1c024eca
PZ
9191};
9192
b0a873eb
PZ
9193#ifdef CONFIG_EVENT_TRACING
9194
1c024eca
PZ
9195static int perf_tp_filter_match(struct perf_event *event,
9196 struct perf_sample_data *data)
9197{
7e3f977e 9198 void *record = data->raw->frag.data;
1c024eca 9199
b71b437e
PZ
9200 /* only top level events have filters set */
9201 if (event->parent)
9202 event = event->parent;
9203
1c024eca
PZ
9204 if (likely(!event->filter) || filter_match_preds(event->filter, record))
9205 return 1;
9206 return 0;
9207}
9208
9209static int perf_tp_event_match(struct perf_event *event,
9210 struct perf_sample_data *data,
9211 struct pt_regs *regs)
9212{
a0f7d0f7
FW
9213 if (event->hw.state & PERF_HES_STOPPED)
9214 return 0;
580d607c 9215 /*
9fd2e48b 9216 * If exclude_kernel, only trace user-space tracepoints (uprobes)
580d607c 9217 */
9fd2e48b 9218 if (event->attr.exclude_kernel && !user_mode(regs))
1c024eca
PZ
9219 return 0;
9220
9221 if (!perf_tp_filter_match(event, data))
9222 return 0;
9223
9224 return 1;
9225}
9226
85b67bcb
AS
9227void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
9228 struct trace_event_call *call, u64 count,
9229 struct pt_regs *regs, struct hlist_head *head,
9230 struct task_struct *task)
9231{
e87c6bc3 9232 if (bpf_prog_array_valid(call)) {
85b67bcb 9233 *(struct pt_regs **)raw_data = regs;
e87c6bc3 9234 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) {
85b67bcb
AS
9235 perf_swevent_put_recursion_context(rctx);
9236 return;
9237 }
9238 }
9239 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
8fd0fbbe 9240 rctx, task);
85b67bcb
AS
9241}
9242EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
9243
1e1dcd93 9244void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
e6dab5ff 9245 struct pt_regs *regs, struct hlist_head *head, int rctx,
8fd0fbbe 9246 struct task_struct *task)
95476b64
FW
9247{
9248 struct perf_sample_data data;
8fd0fbbe 9249 struct perf_event *event;
1c024eca 9250
95476b64 9251 struct perf_raw_record raw = {
7e3f977e
DB
9252 .frag = {
9253 .size = entry_size,
9254 .data = record,
9255 },
95476b64
FW
9256 };
9257
1e1dcd93 9258 perf_sample_data_init(&data, 0, 0);
95476b64
FW
9259 data.raw = &raw;
9260
1e1dcd93
AS
9261 perf_trace_buf_update(record, event_type);
9262
8fd0fbbe 9263 hlist_for_each_entry_rcu(event, head, hlist_entry) {
1c024eca 9264 if (perf_tp_event_match(event, &data, regs))
a8b0ca17 9265 perf_swevent_event(event, count, &data, regs);
4f41c013 9266 }
ecc55f84 9267
e6dab5ff
AV
9268 /*
9269 * If we got specified a target task, also iterate its context and
9270 * deliver this event there too.
9271 */
9272 if (task && task != current) {
9273 struct perf_event_context *ctx;
9274 struct trace_entry *entry = record;
9275
9276 rcu_read_lock();
9277 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
9278 if (!ctx)
9279 goto unlock;
9280
9281 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
cd6fb677
JO
9282 if (event->cpu != smp_processor_id())
9283 continue;
e6dab5ff
AV
9284 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9285 continue;
9286 if (event->attr.config != entry->type)
9287 continue;
9288 if (perf_tp_event_match(event, &data, regs))
9289 perf_swevent_event(event, count, &data, regs);
9290 }
9291unlock:
9292 rcu_read_unlock();
9293 }
9294
ecc55f84 9295 perf_swevent_put_recursion_context(rctx);
95476b64
FW
9296}
9297EXPORT_SYMBOL_GPL(perf_tp_event);
9298
cdd6c482 9299static void tp_perf_event_destroy(struct perf_event *event)
e077df4f 9300{
1c024eca 9301 perf_trace_destroy(event);
e077df4f
PZ
9302}
9303
b0a873eb 9304static int perf_tp_event_init(struct perf_event *event)
e077df4f 9305{
76e1d904
FW
9306 int err;
9307
b0a873eb
PZ
9308 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9309 return -ENOENT;
9310
2481c5fa
SE
9311 /*
9312 * no branch sampling for tracepoint events
9313 */
9314 if (has_branch_stack(event))
9315 return -EOPNOTSUPP;
9316
1c024eca
PZ
9317 err = perf_trace_init(event);
9318 if (err)
b0a873eb 9319 return err;
e077df4f 9320
cdd6c482 9321 event->destroy = tp_perf_event_destroy;
e077df4f 9322
b0a873eb
PZ
9323 return 0;
9324}
9325
9326static struct pmu perf_tracepoint = {
89a1e187
PZ
9327 .task_ctx_nr = perf_sw_context,
9328
b0a873eb 9329 .event_init = perf_tp_event_init,
a4eaf7f1
PZ
9330 .add = perf_trace_add,
9331 .del = perf_trace_del,
9332 .start = perf_swevent_start,
9333 .stop = perf_swevent_stop,
b0a873eb 9334 .read = perf_swevent_read,
b0a873eb
PZ
9335};
9336
33ea4b24 9337#if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
e12f03d7
SL
9338/*
9339 * Flags in config, used by dynamic PMU kprobe and uprobe
9340 * The flags should match following PMU_FORMAT_ATTR().
9341 *
9342 * PERF_PROBE_CONFIG_IS_RETPROBE if set, create kretprobe/uretprobe
9343 * if not set, create kprobe/uprobe
a6ca88b2
SL
9344 *
9345 * The following values specify a reference counter (or semaphore in the
9346 * terminology of tools like dtrace, systemtap, etc.) Userspace Statically
9347 * Defined Tracepoints (USDT). Currently, we use 40 bit for the offset.
9348 *
9349 * PERF_UPROBE_REF_CTR_OFFSET_BITS # of bits in config as th offset
9350 * PERF_UPROBE_REF_CTR_OFFSET_SHIFT # of bits to shift left
e12f03d7
SL
9351 */
9352enum perf_probe_config {
9353 PERF_PROBE_CONFIG_IS_RETPROBE = 1U << 0, /* [k,u]retprobe */
a6ca88b2
SL
9354 PERF_UPROBE_REF_CTR_OFFSET_BITS = 32,
9355 PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 64 - PERF_UPROBE_REF_CTR_OFFSET_BITS,
e12f03d7
SL
9356};
9357
9358PMU_FORMAT_ATTR(retprobe, "config:0");
a6ca88b2 9359#endif
e12f03d7 9360
a6ca88b2
SL
9361#ifdef CONFIG_KPROBE_EVENTS
9362static struct attribute *kprobe_attrs[] = {
e12f03d7
SL
9363 &format_attr_retprobe.attr,
9364 NULL,
9365};
9366
a6ca88b2 9367static struct attribute_group kprobe_format_group = {
e12f03d7 9368 .name = "format",
a6ca88b2 9369 .attrs = kprobe_attrs,
e12f03d7
SL
9370};
9371
a6ca88b2
SL
9372static const struct attribute_group *kprobe_attr_groups[] = {
9373 &kprobe_format_group,
e12f03d7
SL
9374 NULL,
9375};
9376
9377static int perf_kprobe_event_init(struct perf_event *event);
9378static struct pmu perf_kprobe = {
9379 .task_ctx_nr = perf_sw_context,
9380 .event_init = perf_kprobe_event_init,
9381 .add = perf_trace_add,
9382 .del = perf_trace_del,
9383 .start = perf_swevent_start,
9384 .stop = perf_swevent_stop,
9385 .read = perf_swevent_read,
a6ca88b2 9386 .attr_groups = kprobe_attr_groups,
e12f03d7
SL
9387};
9388
9389static int perf_kprobe_event_init(struct perf_event *event)
9390{
9391 int err;
9392 bool is_retprobe;
9393
9394 if (event->attr.type != perf_kprobe.type)
9395 return -ENOENT;
32e6e967
SL
9396
9397 if (!capable(CAP_SYS_ADMIN))
9398 return -EACCES;
9399
e12f03d7
SL
9400 /*
9401 * no branch sampling for probe events
9402 */
9403 if (has_branch_stack(event))
9404 return -EOPNOTSUPP;
9405
9406 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
9407 err = perf_kprobe_init(event, is_retprobe);
9408 if (err)
9409 return err;
9410
9411 event->destroy = perf_kprobe_destroy;
9412
9413 return 0;
9414}
9415#endif /* CONFIG_KPROBE_EVENTS */
9416
33ea4b24 9417#ifdef CONFIG_UPROBE_EVENTS
a6ca88b2
SL
9418PMU_FORMAT_ATTR(ref_ctr_offset, "config:32-63");
9419
9420static struct attribute *uprobe_attrs[] = {
9421 &format_attr_retprobe.attr,
9422 &format_attr_ref_ctr_offset.attr,
9423 NULL,
9424};
9425
9426static struct attribute_group uprobe_format_group = {
9427 .name = "format",
9428 .attrs = uprobe_attrs,
9429};
9430
9431static const struct attribute_group *uprobe_attr_groups[] = {
9432 &uprobe_format_group,
9433 NULL,
9434};
9435
33ea4b24
SL
9436static int perf_uprobe_event_init(struct perf_event *event);
9437static struct pmu perf_uprobe = {
9438 .task_ctx_nr = perf_sw_context,
9439 .event_init = perf_uprobe_event_init,
9440 .add = perf_trace_add,
9441 .del = perf_trace_del,
9442 .start = perf_swevent_start,
9443 .stop = perf_swevent_stop,
9444 .read = perf_swevent_read,
a6ca88b2 9445 .attr_groups = uprobe_attr_groups,
33ea4b24
SL
9446};
9447
9448static int perf_uprobe_event_init(struct perf_event *event)
9449{
9450 int err;
a6ca88b2 9451 unsigned long ref_ctr_offset;
33ea4b24
SL
9452 bool is_retprobe;
9453
9454 if (event->attr.type != perf_uprobe.type)
9455 return -ENOENT;
32e6e967
SL
9456
9457 if (!capable(CAP_SYS_ADMIN))
9458 return -EACCES;
9459
33ea4b24
SL
9460 /*
9461 * no branch sampling for probe events
9462 */
9463 if (has_branch_stack(event))
9464 return -EOPNOTSUPP;
9465
9466 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
a6ca88b2
SL
9467 ref_ctr_offset = event->attr.config >> PERF_UPROBE_REF_CTR_OFFSET_SHIFT;
9468 err = perf_uprobe_init(event, ref_ctr_offset, is_retprobe);
33ea4b24
SL
9469 if (err)
9470 return err;
9471
9472 event->destroy = perf_uprobe_destroy;
9473
9474 return 0;
9475}
9476#endif /* CONFIG_UPROBE_EVENTS */
9477
b0a873eb
PZ
9478static inline void perf_tp_register(void)
9479{
2e80a82a 9480 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
e12f03d7
SL
9481#ifdef CONFIG_KPROBE_EVENTS
9482 perf_pmu_register(&perf_kprobe, "kprobe", -1);
9483#endif
33ea4b24
SL
9484#ifdef CONFIG_UPROBE_EVENTS
9485 perf_pmu_register(&perf_uprobe, "uprobe", -1);
9486#endif
e077df4f 9487}
6fb2915d 9488
6fb2915d
LZ
9489static void perf_event_free_filter(struct perf_event *event)
9490{
9491 ftrace_profile_free_filter(event);
9492}
9493
aa6a5f3c
AS
9494#ifdef CONFIG_BPF_SYSCALL
9495static void bpf_overflow_handler(struct perf_event *event,
9496 struct perf_sample_data *data,
9497 struct pt_regs *regs)
9498{
9499 struct bpf_perf_event_data_kern ctx = {
9500 .data = data,
7d9285e8 9501 .event = event,
aa6a5f3c
AS
9502 };
9503 int ret = 0;
9504
c895f6f7 9505 ctx.regs = perf_arch_bpf_user_pt_regs(regs);
aa6a5f3c
AS
9506 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
9507 goto out;
9508 rcu_read_lock();
88575199 9509 ret = BPF_PROG_RUN(event->prog, &ctx);
aa6a5f3c
AS
9510 rcu_read_unlock();
9511out:
9512 __this_cpu_dec(bpf_prog_active);
aa6a5f3c
AS
9513 if (!ret)
9514 return;
9515
9516 event->orig_overflow_handler(event, data, regs);
9517}
9518
9519static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
9520{
9521 struct bpf_prog *prog;
9522
9523 if (event->overflow_handler_context)
9524 /* hw breakpoint or kernel counter */
9525 return -EINVAL;
9526
9527 if (event->prog)
9528 return -EEXIST;
9529
9530 prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
9531 if (IS_ERR(prog))
9532 return PTR_ERR(prog);
9533
9534 event->prog = prog;
9535 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
9536 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
9537 return 0;
9538}
9539
9540static void perf_event_free_bpf_handler(struct perf_event *event)
9541{
9542 struct bpf_prog *prog = event->prog;
9543
9544 if (!prog)
9545 return;
9546
9547 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
9548 event->prog = NULL;
9549 bpf_prog_put(prog);
9550}
9551#else
9552static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
9553{
9554 return -EOPNOTSUPP;
9555}
9556static void perf_event_free_bpf_handler(struct perf_event *event)
9557{
9558}
9559#endif
9560
e12f03d7
SL
9561/*
9562 * returns true if the event is a tracepoint, or a kprobe/upprobe created
9563 * with perf_event_open()
9564 */
9565static inline bool perf_event_is_tracing(struct perf_event *event)
9566{
9567 if (event->pmu == &perf_tracepoint)
9568 return true;
9569#ifdef CONFIG_KPROBE_EVENTS
9570 if (event->pmu == &perf_kprobe)
9571 return true;
33ea4b24
SL
9572#endif
9573#ifdef CONFIG_UPROBE_EVENTS
9574 if (event->pmu == &perf_uprobe)
9575 return true;
e12f03d7
SL
9576#endif
9577 return false;
9578}
9579
2541517c
AS
9580static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
9581{
cf5f5cea 9582 bool is_kprobe, is_tracepoint, is_syscall_tp;
2541517c 9583 struct bpf_prog *prog;
e87c6bc3 9584 int ret;
2541517c 9585
e12f03d7 9586 if (!perf_event_is_tracing(event))
f91840a3 9587 return perf_event_set_bpf_handler(event, prog_fd);
2541517c 9588
98b5c2c6
AS
9589 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
9590 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
cf5f5cea
YS
9591 is_syscall_tp = is_syscall_trace_event(event->tp_event);
9592 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
98b5c2c6 9593 /* bpf programs can only be attached to u/kprobe or tracepoint */
2541517c
AS
9594 return -EINVAL;
9595
9596 prog = bpf_prog_get(prog_fd);
9597 if (IS_ERR(prog))
9598 return PTR_ERR(prog);
9599
98b5c2c6 9600 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
cf5f5cea
YS
9601 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
9602 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
2541517c
AS
9603 /* valid fd, but invalid bpf program type */
9604 bpf_prog_put(prog);
9605 return -EINVAL;
9606 }
9607
9802d865
JB
9608 /* Kprobe override only works for kprobes, not uprobes. */
9609 if (prog->kprobe_override &&
9610 !(event->tp_event->flags & TRACE_EVENT_FL_KPROBE)) {
9611 bpf_prog_put(prog);
9612 return -EINVAL;
9613 }
9614
cf5f5cea 9615 if (is_tracepoint || is_syscall_tp) {
32bbe007
AS
9616 int off = trace_event_get_offsets(event->tp_event);
9617
9618 if (prog->aux->max_ctx_offset > off) {
9619 bpf_prog_put(prog);
9620 return -EACCES;
9621 }
9622 }
2541517c 9623
e87c6bc3
YS
9624 ret = perf_event_attach_bpf_prog(event, prog);
9625 if (ret)
9626 bpf_prog_put(prog);
9627 return ret;
2541517c
AS
9628}
9629
9630static void perf_event_free_bpf_prog(struct perf_event *event)
9631{
e12f03d7 9632 if (!perf_event_is_tracing(event)) {
0b4c6841 9633 perf_event_free_bpf_handler(event);
2541517c 9634 return;
2541517c 9635 }
e87c6bc3 9636 perf_event_detach_bpf_prog(event);
2541517c
AS
9637}
9638
e077df4f 9639#else
6fb2915d 9640
b0a873eb 9641static inline void perf_tp_register(void)
e077df4f 9642{
e077df4f 9643}
6fb2915d 9644
6fb2915d
LZ
9645static void perf_event_free_filter(struct perf_event *event)
9646{
9647}
9648
2541517c
AS
9649static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
9650{
9651 return -ENOENT;
9652}
9653
9654static void perf_event_free_bpf_prog(struct perf_event *event)
9655{
9656}
07b139c8 9657#endif /* CONFIG_EVENT_TRACING */
e077df4f 9658
24f1e32c 9659#ifdef CONFIG_HAVE_HW_BREAKPOINT
f5ffe02e 9660void perf_bp_event(struct perf_event *bp, void *data)
24f1e32c 9661{
f5ffe02e
FW
9662 struct perf_sample_data sample;
9663 struct pt_regs *regs = data;
9664
fd0d000b 9665 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
f5ffe02e 9666
a4eaf7f1 9667 if (!bp->hw.state && !perf_exclude_event(bp, regs))
a8b0ca17 9668 perf_swevent_event(bp, 1, &sample, regs);
24f1e32c
FW
9669}
9670#endif
9671
375637bc
AS
9672/*
9673 * Allocate a new address filter
9674 */
9675static struct perf_addr_filter *
9676perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
9677{
9678 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
9679 struct perf_addr_filter *filter;
9680
9681 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
9682 if (!filter)
9683 return NULL;
9684
9685 INIT_LIST_HEAD(&filter->entry);
9686 list_add_tail(&filter->entry, filters);
9687
9688 return filter;
9689}
9690
9691static void free_filters_list(struct list_head *filters)
9692{
9693 struct perf_addr_filter *filter, *iter;
9694
9695 list_for_each_entry_safe(filter, iter, filters, entry) {
9511bce9 9696 path_put(&filter->path);
375637bc
AS
9697 list_del(&filter->entry);
9698 kfree(filter);
9699 }
9700}
9701
9702/*
9703 * Free existing address filters and optionally install new ones
9704 */
9705static void perf_addr_filters_splice(struct perf_event *event,
9706 struct list_head *head)
9707{
9708 unsigned long flags;
9709 LIST_HEAD(list);
9710
9711 if (!has_addr_filter(event))
9712 return;
9713
9714 /* don't bother with children, they don't have their own filters */
9715 if (event->parent)
9716 return;
9717
9718 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
9719
9720 list_splice_init(&event->addr_filters.list, &list);
9721 if (head)
9722 list_splice(head, &event->addr_filters.list);
9723
9724 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
9725
9726 free_filters_list(&list);
9727}
9728
9729/*
9730 * Scan through mm's vmas and see if one of them matches the
9731 * @filter; if so, adjust filter's address range.
9732 * Called with mm::mmap_sem down for reading.
9733 */
c60f83b8
AS
9734static void perf_addr_filter_apply(struct perf_addr_filter *filter,
9735 struct mm_struct *mm,
9736 struct perf_addr_filter_range *fr)
375637bc
AS
9737{
9738 struct vm_area_struct *vma;
9739
9740 for (vma = mm->mmap; vma; vma = vma->vm_next) {
c60f83b8 9741 if (!vma->vm_file)
375637bc
AS
9742 continue;
9743
c60f83b8
AS
9744 if (perf_addr_filter_vma_adjust(filter, vma, fr))
9745 return;
375637bc 9746 }
375637bc
AS
9747}
9748
9749/*
9750 * Update event's address range filters based on the
9751 * task's existing mappings, if any.
9752 */
9753static void perf_event_addr_filters_apply(struct perf_event *event)
9754{
9755 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
9756 struct task_struct *task = READ_ONCE(event->ctx->task);
9757 struct perf_addr_filter *filter;
9758 struct mm_struct *mm = NULL;
9759 unsigned int count = 0;
9760 unsigned long flags;
9761
9762 /*
9763 * We may observe TASK_TOMBSTONE, which means that the event tear-down
9764 * will stop on the parent's child_mutex that our caller is also holding
9765 */
9766 if (task == TASK_TOMBSTONE)
9767 return;
9768
52a44f83
AS
9769 if (ifh->nr_file_filters) {
9770 mm = get_task_mm(event->ctx->task);
9771 if (!mm)
9772 goto restart;
375637bc 9773
52a44f83
AS
9774 down_read(&mm->mmap_sem);
9775 }
375637bc
AS
9776
9777 raw_spin_lock_irqsave(&ifh->lock, flags);
9778 list_for_each_entry(filter, &ifh->list, entry) {
52a44f83
AS
9779 if (filter->path.dentry) {
9780 /*
9781 * Adjust base offset if the filter is associated to a
9782 * binary that needs to be mapped:
9783 */
9784 event->addr_filter_ranges[count].start = 0;
9785 event->addr_filter_ranges[count].size = 0;
375637bc 9786
c60f83b8 9787 perf_addr_filter_apply(filter, mm, &event->addr_filter_ranges[count]);
52a44f83
AS
9788 } else {
9789 event->addr_filter_ranges[count].start = filter->offset;
9790 event->addr_filter_ranges[count].size = filter->size;
9791 }
375637bc
AS
9792
9793 count++;
9794 }
9795
9796 event->addr_filters_gen++;
9797 raw_spin_unlock_irqrestore(&ifh->lock, flags);
9798
52a44f83
AS
9799 if (ifh->nr_file_filters) {
9800 up_read(&mm->mmap_sem);
375637bc 9801
52a44f83
AS
9802 mmput(mm);
9803 }
375637bc
AS
9804
9805restart:
767ae086 9806 perf_event_stop(event, 1);
375637bc
AS
9807}
9808
9809/*
9810 * Address range filtering: limiting the data to certain
9811 * instruction address ranges. Filters are ioctl()ed to us from
9812 * userspace as ascii strings.
9813 *
9814 * Filter string format:
9815 *
9816 * ACTION RANGE_SPEC
9817 * where ACTION is one of the
9818 * * "filter": limit the trace to this region
9819 * * "start": start tracing from this address
9820 * * "stop": stop tracing at this address/region;
9821 * RANGE_SPEC is
9822 * * for kernel addresses: <start address>[/<size>]
9823 * * for object files: <start address>[/<size>]@</path/to/object/file>
9824 *
6ed70cf3
AS
9825 * if <size> is not specified or is zero, the range is treated as a single
9826 * address; not valid for ACTION=="filter".
375637bc
AS
9827 */
9828enum {
e96271f3 9829 IF_ACT_NONE = -1,
375637bc
AS
9830 IF_ACT_FILTER,
9831 IF_ACT_START,
9832 IF_ACT_STOP,
9833 IF_SRC_FILE,
9834 IF_SRC_KERNEL,
9835 IF_SRC_FILEADDR,
9836 IF_SRC_KERNELADDR,
9837};
9838
9839enum {
9840 IF_STATE_ACTION = 0,
9841 IF_STATE_SOURCE,
9842 IF_STATE_END,
9843};
9844
9845static const match_table_t if_tokens = {
9846 { IF_ACT_FILTER, "filter" },
9847 { IF_ACT_START, "start" },
9848 { IF_ACT_STOP, "stop" },
9849 { IF_SRC_FILE, "%u/%u@%s" },
9850 { IF_SRC_KERNEL, "%u/%u" },
9851 { IF_SRC_FILEADDR, "%u@%s" },
9852 { IF_SRC_KERNELADDR, "%u" },
e96271f3 9853 { IF_ACT_NONE, NULL },
375637bc
AS
9854};
9855
9856/*
9857 * Address filter string parser
9858 */
9859static int
9860perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
9861 struct list_head *filters)
9862{
9863 struct perf_addr_filter *filter = NULL;
9864 char *start, *orig, *filename = NULL;
375637bc
AS
9865 substring_t args[MAX_OPT_ARGS];
9866 int state = IF_STATE_ACTION, token;
9867 unsigned int kernel = 0;
9868 int ret = -EINVAL;
9869
9870 orig = fstr = kstrdup(fstr, GFP_KERNEL);
9871 if (!fstr)
9872 return -ENOMEM;
9873
9874 while ((start = strsep(&fstr, " ,\n")) != NULL) {
6ed70cf3
AS
9875 static const enum perf_addr_filter_action_t actions[] = {
9876 [IF_ACT_FILTER] = PERF_ADDR_FILTER_ACTION_FILTER,
9877 [IF_ACT_START] = PERF_ADDR_FILTER_ACTION_START,
9878 [IF_ACT_STOP] = PERF_ADDR_FILTER_ACTION_STOP,
9879 };
375637bc
AS
9880 ret = -EINVAL;
9881
9882 if (!*start)
9883 continue;
9884
9885 /* filter definition begins */
9886 if (state == IF_STATE_ACTION) {
9887 filter = perf_addr_filter_new(event, filters);
9888 if (!filter)
9889 goto fail;
9890 }
9891
9892 token = match_token(start, if_tokens, args);
9893 switch (token) {
9894 case IF_ACT_FILTER:
9895 case IF_ACT_START:
375637bc
AS
9896 case IF_ACT_STOP:
9897 if (state != IF_STATE_ACTION)
9898 goto fail;
9899
6ed70cf3 9900 filter->action = actions[token];
375637bc
AS
9901 state = IF_STATE_SOURCE;
9902 break;
9903
9904 case IF_SRC_KERNELADDR:
9905 case IF_SRC_KERNEL:
9906 kernel = 1;
10c3405f 9907 /* fall through */
375637bc
AS
9908
9909 case IF_SRC_FILEADDR:
9910 case IF_SRC_FILE:
9911 if (state != IF_STATE_SOURCE)
9912 goto fail;
9913
375637bc
AS
9914 *args[0].to = 0;
9915 ret = kstrtoul(args[0].from, 0, &filter->offset);
9916 if (ret)
9917 goto fail;
9918
6ed70cf3 9919 if (token == IF_SRC_KERNEL || token == IF_SRC_FILE) {
375637bc
AS
9920 *args[1].to = 0;
9921 ret = kstrtoul(args[1].from, 0, &filter->size);
9922 if (ret)
9923 goto fail;
9924 }
9925
4059ffd0 9926 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
6ed70cf3 9927 int fpos = token == IF_SRC_FILE ? 2 : 1;
4059ffd0
MP
9928
9929 filename = match_strdup(&args[fpos]);
375637bc
AS
9930 if (!filename) {
9931 ret = -ENOMEM;
9932 goto fail;
9933 }
9934 }
9935
9936 state = IF_STATE_END;
9937 break;
9938
9939 default:
9940 goto fail;
9941 }
9942
9943 /*
9944 * Filter definition is fully parsed, validate and install it.
9945 * Make sure that it doesn't contradict itself or the event's
9946 * attribute.
9947 */
9948 if (state == IF_STATE_END) {
9ccbfbb1 9949 ret = -EINVAL;
375637bc
AS
9950 if (kernel && event->attr.exclude_kernel)
9951 goto fail;
9952
6ed70cf3
AS
9953 /*
9954 * ACTION "filter" must have a non-zero length region
9955 * specified.
9956 */
9957 if (filter->action == PERF_ADDR_FILTER_ACTION_FILTER &&
9958 !filter->size)
9959 goto fail;
9960
375637bc
AS
9961 if (!kernel) {
9962 if (!filename)
9963 goto fail;
9964
6ce77bfd
AS
9965 /*
9966 * For now, we only support file-based filters
9967 * in per-task events; doing so for CPU-wide
9968 * events requires additional context switching
9969 * trickery, since same object code will be
9970 * mapped at different virtual addresses in
9971 * different processes.
9972 */
9973 ret = -EOPNOTSUPP;
9974 if (!event->ctx->task)
9975 goto fail_free_name;
9976
375637bc 9977 /* look up the path and grab its inode */
9511bce9
SL
9978 ret = kern_path(filename, LOOKUP_FOLLOW,
9979 &filter->path);
375637bc
AS
9980 if (ret)
9981 goto fail_free_name;
9982
375637bc
AS
9983 kfree(filename);
9984 filename = NULL;
9985
9986 ret = -EINVAL;
9511bce9
SL
9987 if (!filter->path.dentry ||
9988 !S_ISREG(d_inode(filter->path.dentry)
9989 ->i_mode))
375637bc 9990 goto fail;
6ce77bfd
AS
9991
9992 event->addr_filters.nr_file_filters++;
375637bc
AS
9993 }
9994
9995 /* ready to consume more filters */
9996 state = IF_STATE_ACTION;
9997 filter = NULL;
9998 }
9999 }
10000
10001 if (state != IF_STATE_ACTION)
10002 goto fail;
10003
10004 kfree(orig);
10005
10006 return 0;
10007
10008fail_free_name:
10009 kfree(filename);
10010fail:
10011 free_filters_list(filters);
10012 kfree(orig);
10013
10014 return ret;
10015}
10016
10017static int
10018perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
10019{
10020 LIST_HEAD(filters);
10021 int ret;
10022
10023 /*
10024 * Since this is called in perf_ioctl() path, we're already holding
10025 * ctx::mutex.
10026 */
10027 lockdep_assert_held(&event->ctx->mutex);
10028
10029 if (WARN_ON_ONCE(event->parent))
10030 return -EINVAL;
10031
375637bc
AS
10032 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
10033 if (ret)
6ce77bfd 10034 goto fail_clear_files;
375637bc
AS
10035
10036 ret = event->pmu->addr_filters_validate(&filters);
6ce77bfd
AS
10037 if (ret)
10038 goto fail_free_filters;
375637bc
AS
10039
10040 /* remove existing filters, if any */
10041 perf_addr_filters_splice(event, &filters);
10042
10043 /* install new filters */
10044 perf_event_for_each_child(event, perf_event_addr_filters_apply);
10045
6ce77bfd
AS
10046 return ret;
10047
10048fail_free_filters:
10049 free_filters_list(&filters);
10050
10051fail_clear_files:
10052 event->addr_filters.nr_file_filters = 0;
10053
375637bc
AS
10054 return ret;
10055}
10056
c796bbbe
AS
10057static int perf_event_set_filter(struct perf_event *event, void __user *arg)
10058{
c796bbbe 10059 int ret = -EINVAL;
e12f03d7 10060 char *filter_str;
c796bbbe
AS
10061
10062 filter_str = strndup_user(arg, PAGE_SIZE);
10063 if (IS_ERR(filter_str))
10064 return PTR_ERR(filter_str);
10065
e12f03d7
SL
10066#ifdef CONFIG_EVENT_TRACING
10067 if (perf_event_is_tracing(event)) {
10068 struct perf_event_context *ctx = event->ctx;
10069
10070 /*
10071 * Beware, here be dragons!!
10072 *
10073 * the tracepoint muck will deadlock against ctx->mutex, but
10074 * the tracepoint stuff does not actually need it. So
10075 * temporarily drop ctx->mutex. As per perf_event_ctx_lock() we
10076 * already have a reference on ctx.
10077 *
10078 * This can result in event getting moved to a different ctx,
10079 * but that does not affect the tracepoint state.
10080 */
10081 mutex_unlock(&ctx->mutex);
10082 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
10083 mutex_lock(&ctx->mutex);
10084 } else
10085#endif
10086 if (has_addr_filter(event))
375637bc 10087 ret = perf_event_set_addr_filter(event, filter_str);
c796bbbe
AS
10088
10089 kfree(filter_str);
10090 return ret;
10091}
10092
b0a873eb
PZ
10093/*
10094 * hrtimer based swevent callback
10095 */
f29ac756 10096
b0a873eb 10097static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
f29ac756 10098{
b0a873eb
PZ
10099 enum hrtimer_restart ret = HRTIMER_RESTART;
10100 struct perf_sample_data data;
10101 struct pt_regs *regs;
10102 struct perf_event *event;
10103 u64 period;
f29ac756 10104
b0a873eb 10105 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
ba3dd36c
PZ
10106
10107 if (event->state != PERF_EVENT_STATE_ACTIVE)
10108 return HRTIMER_NORESTART;
10109
b0a873eb 10110 event->pmu->read(event);
f344011c 10111
fd0d000b 10112 perf_sample_data_init(&data, 0, event->hw.last_period);
b0a873eb
PZ
10113 regs = get_irq_regs();
10114
10115 if (regs && !perf_exclude_event(event, regs)) {
77aeeebd 10116 if (!(event->attr.exclude_idle && is_idle_task(current)))
33b07b8b 10117 if (__perf_event_overflow(event, 1, &data, regs))
b0a873eb
PZ
10118 ret = HRTIMER_NORESTART;
10119 }
24f1e32c 10120
b0a873eb
PZ
10121 period = max_t(u64, 10000, event->hw.sample_period);
10122 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
24f1e32c 10123
b0a873eb 10124 return ret;
f29ac756
PZ
10125}
10126
b0a873eb 10127static void perf_swevent_start_hrtimer(struct perf_event *event)
5c92d124 10128{
b0a873eb 10129 struct hw_perf_event *hwc = &event->hw;
5d508e82
FBH
10130 s64 period;
10131
10132 if (!is_sampling_event(event))
10133 return;
f5ffe02e 10134
5d508e82
FBH
10135 period = local64_read(&hwc->period_left);
10136 if (period) {
10137 if (period < 0)
10138 period = 10000;
fa407f35 10139
5d508e82
FBH
10140 local64_set(&hwc->period_left, 0);
10141 } else {
10142 period = max_t(u64, 10000, hwc->sample_period);
10143 }
3497d206 10144 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
30f9028b 10145 HRTIMER_MODE_REL_PINNED_HARD);
24f1e32c 10146}
b0a873eb
PZ
10147
10148static void perf_swevent_cancel_hrtimer(struct perf_event *event)
24f1e32c 10149{
b0a873eb
PZ
10150 struct hw_perf_event *hwc = &event->hw;
10151
6c7e550f 10152 if (is_sampling_event(event)) {
b0a873eb 10153 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
fa407f35 10154 local64_set(&hwc->period_left, ktime_to_ns(remaining));
b0a873eb
PZ
10155
10156 hrtimer_cancel(&hwc->hrtimer);
10157 }
24f1e32c
FW
10158}
10159
ba3dd36c
PZ
10160static void perf_swevent_init_hrtimer(struct perf_event *event)
10161{
10162 struct hw_perf_event *hwc = &event->hw;
10163
10164 if (!is_sampling_event(event))
10165 return;
10166
30f9028b 10167 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
ba3dd36c
PZ
10168 hwc->hrtimer.function = perf_swevent_hrtimer;
10169
10170 /*
10171 * Since hrtimers have a fixed rate, we can do a static freq->period
10172 * mapping and avoid the whole period adjust feedback stuff.
10173 */
10174 if (event->attr.freq) {
10175 long freq = event->attr.sample_freq;
10176
10177 event->attr.sample_period = NSEC_PER_SEC / freq;
10178 hwc->sample_period = event->attr.sample_period;
10179 local64_set(&hwc->period_left, hwc->sample_period);
778141e3 10180 hwc->last_period = hwc->sample_period;
ba3dd36c
PZ
10181 event->attr.freq = 0;
10182 }
10183}
10184
b0a873eb
PZ
10185/*
10186 * Software event: cpu wall time clock
10187 */
10188
10189static void cpu_clock_event_update(struct perf_event *event)
24f1e32c 10190{
b0a873eb
PZ
10191 s64 prev;
10192 u64 now;
10193
a4eaf7f1 10194 now = local_clock();
b0a873eb
PZ
10195 prev = local64_xchg(&event->hw.prev_count, now);
10196 local64_add(now - prev, &event->count);
24f1e32c 10197}
24f1e32c 10198
a4eaf7f1 10199static void cpu_clock_event_start(struct perf_event *event, int flags)
b0a873eb 10200{
a4eaf7f1 10201 local64_set(&event->hw.prev_count, local_clock());
b0a873eb 10202 perf_swevent_start_hrtimer(event);
b0a873eb
PZ
10203}
10204
a4eaf7f1 10205static void cpu_clock_event_stop(struct perf_event *event, int flags)
f29ac756 10206{
b0a873eb
PZ
10207 perf_swevent_cancel_hrtimer(event);
10208 cpu_clock_event_update(event);
10209}
f29ac756 10210
a4eaf7f1
PZ
10211static int cpu_clock_event_add(struct perf_event *event, int flags)
10212{
10213 if (flags & PERF_EF_START)
10214 cpu_clock_event_start(event, flags);
6a694a60 10215 perf_event_update_userpage(event);
a4eaf7f1
PZ
10216
10217 return 0;
10218}
10219
10220static void cpu_clock_event_del(struct perf_event *event, int flags)
10221{
10222 cpu_clock_event_stop(event, flags);
10223}
10224
b0a873eb
PZ
10225static void cpu_clock_event_read(struct perf_event *event)
10226{
10227 cpu_clock_event_update(event);
10228}
f344011c 10229
b0a873eb
PZ
10230static int cpu_clock_event_init(struct perf_event *event)
10231{
10232 if (event->attr.type != PERF_TYPE_SOFTWARE)
10233 return -ENOENT;
10234
10235 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
10236 return -ENOENT;
10237
2481c5fa
SE
10238 /*
10239 * no branch sampling for software events
10240 */
10241 if (has_branch_stack(event))
10242 return -EOPNOTSUPP;
10243
ba3dd36c
PZ
10244 perf_swevent_init_hrtimer(event);
10245
b0a873eb 10246 return 0;
f29ac756
PZ
10247}
10248
b0a873eb 10249static struct pmu perf_cpu_clock = {
89a1e187
PZ
10250 .task_ctx_nr = perf_sw_context,
10251
34f43927
PZ
10252 .capabilities = PERF_PMU_CAP_NO_NMI,
10253
b0a873eb 10254 .event_init = cpu_clock_event_init,
a4eaf7f1
PZ
10255 .add = cpu_clock_event_add,
10256 .del = cpu_clock_event_del,
10257 .start = cpu_clock_event_start,
10258 .stop = cpu_clock_event_stop,
b0a873eb
PZ
10259 .read = cpu_clock_event_read,
10260};
10261
10262/*
10263 * Software event: task time clock
10264 */
10265
10266static void task_clock_event_update(struct perf_event *event, u64 now)
5c92d124 10267{
b0a873eb
PZ
10268 u64 prev;
10269 s64 delta;
5c92d124 10270
b0a873eb
PZ
10271 prev = local64_xchg(&event->hw.prev_count, now);
10272 delta = now - prev;
10273 local64_add(delta, &event->count);
10274}
5c92d124 10275
a4eaf7f1 10276static void task_clock_event_start(struct perf_event *event, int flags)
b0a873eb 10277{
a4eaf7f1 10278 local64_set(&event->hw.prev_count, event->ctx->time);
b0a873eb 10279 perf_swevent_start_hrtimer(event);
b0a873eb
PZ
10280}
10281
a4eaf7f1 10282static void task_clock_event_stop(struct perf_event *event, int flags)
b0a873eb
PZ
10283{
10284 perf_swevent_cancel_hrtimer(event);
10285 task_clock_event_update(event, event->ctx->time);
a4eaf7f1
PZ
10286}
10287
10288static int task_clock_event_add(struct perf_event *event, int flags)
10289{
10290 if (flags & PERF_EF_START)
10291 task_clock_event_start(event, flags);
6a694a60 10292 perf_event_update_userpage(event);
b0a873eb 10293
a4eaf7f1
PZ
10294 return 0;
10295}
10296
10297static void task_clock_event_del(struct perf_event *event, int flags)
10298{
10299 task_clock_event_stop(event, PERF_EF_UPDATE);
b0a873eb
PZ
10300}
10301
10302static void task_clock_event_read(struct perf_event *event)
10303{
768a06e2
PZ
10304 u64 now = perf_clock();
10305 u64 delta = now - event->ctx->timestamp;
10306 u64 time = event->ctx->time + delta;
b0a873eb
PZ
10307
10308 task_clock_event_update(event, time);
10309}
10310
10311static int task_clock_event_init(struct perf_event *event)
6fb2915d 10312{
b0a873eb
PZ
10313 if (event->attr.type != PERF_TYPE_SOFTWARE)
10314 return -ENOENT;
10315
10316 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
10317 return -ENOENT;
10318
2481c5fa
SE
10319 /*
10320 * no branch sampling for software events
10321 */
10322 if (has_branch_stack(event))
10323 return -EOPNOTSUPP;
10324
ba3dd36c
PZ
10325 perf_swevent_init_hrtimer(event);
10326
b0a873eb 10327 return 0;
6fb2915d
LZ
10328}
10329
b0a873eb 10330static struct pmu perf_task_clock = {
89a1e187
PZ
10331 .task_ctx_nr = perf_sw_context,
10332
34f43927
PZ
10333 .capabilities = PERF_PMU_CAP_NO_NMI,
10334
b0a873eb 10335 .event_init = task_clock_event_init,
a4eaf7f1
PZ
10336 .add = task_clock_event_add,
10337 .del = task_clock_event_del,
10338 .start = task_clock_event_start,
10339 .stop = task_clock_event_stop,
b0a873eb
PZ
10340 .read = task_clock_event_read,
10341};
6fb2915d 10342
ad5133b7 10343static void perf_pmu_nop_void(struct pmu *pmu)
e077df4f 10344{
e077df4f 10345}
6fb2915d 10346
fbbe0701
SB
10347static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
10348{
10349}
10350
ad5133b7 10351static int perf_pmu_nop_int(struct pmu *pmu)
6fb2915d 10352{
ad5133b7 10353 return 0;
6fb2915d
LZ
10354}
10355
81ec3f3c
JO
10356static int perf_event_nop_int(struct perf_event *event, u64 value)
10357{
10358 return 0;
10359}
10360
18ab2cd3 10361static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
fbbe0701
SB
10362
10363static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
6fb2915d 10364{
fbbe0701
SB
10365 __this_cpu_write(nop_txn_flags, flags);
10366
10367 if (flags & ~PERF_PMU_TXN_ADD)
10368 return;
10369
ad5133b7 10370 perf_pmu_disable(pmu);
6fb2915d
LZ
10371}
10372
ad5133b7
PZ
10373static int perf_pmu_commit_txn(struct pmu *pmu)
10374{
fbbe0701
SB
10375 unsigned int flags = __this_cpu_read(nop_txn_flags);
10376
10377 __this_cpu_write(nop_txn_flags, 0);
10378
10379 if (flags & ~PERF_PMU_TXN_ADD)
10380 return 0;
10381
ad5133b7
PZ
10382 perf_pmu_enable(pmu);
10383 return 0;
10384}
e077df4f 10385
ad5133b7 10386static void perf_pmu_cancel_txn(struct pmu *pmu)
24f1e32c 10387{
fbbe0701
SB
10388 unsigned int flags = __this_cpu_read(nop_txn_flags);
10389
10390 __this_cpu_write(nop_txn_flags, 0);
10391
10392 if (flags & ~PERF_PMU_TXN_ADD)
10393 return;
10394
ad5133b7 10395 perf_pmu_enable(pmu);
24f1e32c
FW
10396}
10397
35edc2a5
PZ
10398static int perf_event_idx_default(struct perf_event *event)
10399{
c719f560 10400 return 0;
35edc2a5
PZ
10401}
10402
8dc85d54
PZ
10403/*
10404 * Ensures all contexts with the same task_ctx_nr have the same
10405 * pmu_cpu_context too.
10406 */
9e317041 10407static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
24f1e32c 10408{
8dc85d54 10409 struct pmu *pmu;
b326e956 10410
8dc85d54
PZ
10411 if (ctxn < 0)
10412 return NULL;
24f1e32c 10413
8dc85d54
PZ
10414 list_for_each_entry(pmu, &pmus, entry) {
10415 if (pmu->task_ctx_nr == ctxn)
10416 return pmu->pmu_cpu_context;
10417 }
24f1e32c 10418
8dc85d54 10419 return NULL;
24f1e32c
FW
10420}
10421
51676957
PZ
10422static void free_pmu_context(struct pmu *pmu)
10423{
df0062b2
WD
10424 /*
10425 * Static contexts such as perf_sw_context have a global lifetime
10426 * and may be shared between different PMUs. Avoid freeing them
10427 * when a single PMU is going away.
10428 */
10429 if (pmu->task_ctx_nr > perf_invalid_context)
10430 return;
10431
51676957 10432 free_percpu(pmu->pmu_cpu_context);
24f1e32c 10433}
6e855cd4
AS
10434
10435/*
10436 * Let userspace know that this PMU supports address range filtering:
10437 */
10438static ssize_t nr_addr_filters_show(struct device *dev,
10439 struct device_attribute *attr,
10440 char *page)
10441{
10442 struct pmu *pmu = dev_get_drvdata(dev);
10443
10444 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
10445}
10446DEVICE_ATTR_RO(nr_addr_filters);
10447
2e80a82a 10448static struct idr pmu_idr;
d6d020e9 10449
abe43400
PZ
10450static ssize_t
10451type_show(struct device *dev, struct device_attribute *attr, char *page)
10452{
10453 struct pmu *pmu = dev_get_drvdata(dev);
10454
10455 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
10456}
90826ca7 10457static DEVICE_ATTR_RO(type);
abe43400 10458
62b85639
SE
10459static ssize_t
10460perf_event_mux_interval_ms_show(struct device *dev,
10461 struct device_attribute *attr,
10462 char *page)
10463{
10464 struct pmu *pmu = dev_get_drvdata(dev);
10465
10466 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
10467}
10468
272325c4
PZ
10469static DEFINE_MUTEX(mux_interval_mutex);
10470
62b85639
SE
10471static ssize_t
10472perf_event_mux_interval_ms_store(struct device *dev,
10473 struct device_attribute *attr,
10474 const char *buf, size_t count)
10475{
10476 struct pmu *pmu = dev_get_drvdata(dev);
10477 int timer, cpu, ret;
10478
10479 ret = kstrtoint(buf, 0, &timer);
10480 if (ret)
10481 return ret;
10482
10483 if (timer < 1)
10484 return -EINVAL;
10485
10486 /* same value, noting to do */
10487 if (timer == pmu->hrtimer_interval_ms)
10488 return count;
10489
272325c4 10490 mutex_lock(&mux_interval_mutex);
62b85639
SE
10491 pmu->hrtimer_interval_ms = timer;
10492
10493 /* update all cpuctx for this PMU */
a63fbed7 10494 cpus_read_lock();
272325c4 10495 for_each_online_cpu(cpu) {
62b85639
SE
10496 struct perf_cpu_context *cpuctx;
10497 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
10498 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
10499
272325c4
PZ
10500 cpu_function_call(cpu,
10501 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
62b85639 10502 }
a63fbed7 10503 cpus_read_unlock();
272325c4 10504 mutex_unlock(&mux_interval_mutex);
62b85639
SE
10505
10506 return count;
10507}
90826ca7 10508static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
62b85639 10509
90826ca7
GKH
10510static struct attribute *pmu_dev_attrs[] = {
10511 &dev_attr_type.attr,
10512 &dev_attr_perf_event_mux_interval_ms.attr,
10513 NULL,
abe43400 10514};
90826ca7 10515ATTRIBUTE_GROUPS(pmu_dev);
abe43400
PZ
10516
10517static int pmu_bus_running;
10518static struct bus_type pmu_bus = {
10519 .name = "event_source",
90826ca7 10520 .dev_groups = pmu_dev_groups,
abe43400
PZ
10521};
10522
10523static void pmu_dev_release(struct device *dev)
10524{
10525 kfree(dev);
10526}
10527
10528static int pmu_dev_alloc(struct pmu *pmu)
10529{
10530 int ret = -ENOMEM;
10531
10532 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
10533 if (!pmu->dev)
10534 goto out;
10535
0c9d42ed 10536 pmu->dev->groups = pmu->attr_groups;
abe43400
PZ
10537 device_initialize(pmu->dev);
10538 ret = dev_set_name(pmu->dev, "%s", pmu->name);
10539 if (ret)
10540 goto free_dev;
10541
10542 dev_set_drvdata(pmu->dev, pmu);
10543 pmu->dev->bus = &pmu_bus;
10544 pmu->dev->release = pmu_dev_release;
10545 ret = device_add(pmu->dev);
10546 if (ret)
10547 goto free_dev;
10548
6e855cd4
AS
10549 /* For PMUs with address filters, throw in an extra attribute: */
10550 if (pmu->nr_addr_filters)
10551 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
10552
10553 if (ret)
10554 goto del_dev;
10555
f3a3a825
JO
10556 if (pmu->attr_update)
10557 ret = sysfs_update_groups(&pmu->dev->kobj, pmu->attr_update);
10558
10559 if (ret)
10560 goto del_dev;
10561
abe43400
PZ
10562out:
10563 return ret;
10564
6e855cd4
AS
10565del_dev:
10566 device_del(pmu->dev);
10567
abe43400
PZ
10568free_dev:
10569 put_device(pmu->dev);
10570 goto out;
10571}
10572
547e9fd7 10573static struct lock_class_key cpuctx_mutex;
facc4307 10574static struct lock_class_key cpuctx_lock;
547e9fd7 10575
03d8e80b 10576int perf_pmu_register(struct pmu *pmu, const char *name, int type)
24f1e32c 10577{
66d258c5 10578 int cpu, ret, max = PERF_TYPE_MAX;
24f1e32c 10579
b0a873eb 10580 mutex_lock(&pmus_lock);
33696fc0
PZ
10581 ret = -ENOMEM;
10582 pmu->pmu_disable_count = alloc_percpu(int);
10583 if (!pmu->pmu_disable_count)
10584 goto unlock;
f29ac756 10585
2e80a82a
PZ
10586 pmu->type = -1;
10587 if (!name)
10588 goto skip_type;
10589 pmu->name = name;
10590
66d258c5
PZ
10591 if (type != PERF_TYPE_SOFTWARE) {
10592 if (type >= 0)
10593 max = type;
10594
10595 ret = idr_alloc(&pmu_idr, pmu, max, 0, GFP_KERNEL);
10596 if (ret < 0)
2e80a82a 10597 goto free_pdc;
66d258c5
PZ
10598
10599 WARN_ON(type >= 0 && ret != type);
10600
10601 type = ret;
2e80a82a
PZ
10602 }
10603 pmu->type = type;
10604
abe43400
PZ
10605 if (pmu_bus_running) {
10606 ret = pmu_dev_alloc(pmu);
10607 if (ret)
10608 goto free_idr;
10609 }
10610
2e80a82a 10611skip_type:
26657848
PZ
10612 if (pmu->task_ctx_nr == perf_hw_context) {
10613 static int hw_context_taken = 0;
10614
5101ef20
MR
10615 /*
10616 * Other than systems with heterogeneous CPUs, it never makes
10617 * sense for two PMUs to share perf_hw_context. PMUs which are
10618 * uncore must use perf_invalid_context.
10619 */
10620 if (WARN_ON_ONCE(hw_context_taken &&
10621 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
26657848
PZ
10622 pmu->task_ctx_nr = perf_invalid_context;
10623
10624 hw_context_taken = 1;
10625 }
10626
8dc85d54
PZ
10627 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
10628 if (pmu->pmu_cpu_context)
10629 goto got_cpu_context;
f29ac756 10630
c4814202 10631 ret = -ENOMEM;
108b02cf
PZ
10632 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
10633 if (!pmu->pmu_cpu_context)
abe43400 10634 goto free_dev;
f344011c 10635
108b02cf
PZ
10636 for_each_possible_cpu(cpu) {
10637 struct perf_cpu_context *cpuctx;
10638
10639 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
eb184479 10640 __perf_event_init_context(&cpuctx->ctx);
547e9fd7 10641 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
facc4307 10642 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
108b02cf 10643 cpuctx->ctx.pmu = pmu;
a63fbed7 10644 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
9e630205 10645
272325c4 10646 __perf_mux_hrtimer_init(cpuctx, cpu);
836196be
IR
10647
10648 cpuctx->heap_size = ARRAY_SIZE(cpuctx->heap_default);
10649 cpuctx->heap = cpuctx->heap_default;
108b02cf 10650 }
76e1d904 10651
8dc85d54 10652got_cpu_context:
ad5133b7
PZ
10653 if (!pmu->start_txn) {
10654 if (pmu->pmu_enable) {
10655 /*
10656 * If we have pmu_enable/pmu_disable calls, install
10657 * transaction stubs that use that to try and batch
10658 * hardware accesses.
10659 */
10660 pmu->start_txn = perf_pmu_start_txn;
10661 pmu->commit_txn = perf_pmu_commit_txn;
10662 pmu->cancel_txn = perf_pmu_cancel_txn;
10663 } else {
fbbe0701 10664 pmu->start_txn = perf_pmu_nop_txn;
ad5133b7
PZ
10665 pmu->commit_txn = perf_pmu_nop_int;
10666 pmu->cancel_txn = perf_pmu_nop_void;
f344011c 10667 }
5c92d124 10668 }
15dbf27c 10669
ad5133b7
PZ
10670 if (!pmu->pmu_enable) {
10671 pmu->pmu_enable = perf_pmu_nop_void;
10672 pmu->pmu_disable = perf_pmu_nop_void;
10673 }
10674
81ec3f3c
JO
10675 if (!pmu->check_period)
10676 pmu->check_period = perf_event_nop_int;
10677
35edc2a5
PZ
10678 if (!pmu->event_idx)
10679 pmu->event_idx = perf_event_idx_default;
10680
d44f821b
LK
10681 /*
10682 * Ensure the TYPE_SOFTWARE PMUs are at the head of the list,
10683 * since these cannot be in the IDR. This way the linear search
10684 * is fast, provided a valid software event is provided.
10685 */
10686 if (type == PERF_TYPE_SOFTWARE || !name)
10687 list_add_rcu(&pmu->entry, &pmus);
10688 else
10689 list_add_tail_rcu(&pmu->entry, &pmus);
10690
bed5b25a 10691 atomic_set(&pmu->exclusive_cnt, 0);
33696fc0
PZ
10692 ret = 0;
10693unlock:
b0a873eb
PZ
10694 mutex_unlock(&pmus_lock);
10695
33696fc0 10696 return ret;
108b02cf 10697
abe43400
PZ
10698free_dev:
10699 device_del(pmu->dev);
10700 put_device(pmu->dev);
10701
2e80a82a 10702free_idr:
66d258c5 10703 if (pmu->type != PERF_TYPE_SOFTWARE)
2e80a82a
PZ
10704 idr_remove(&pmu_idr, pmu->type);
10705
108b02cf
PZ
10706free_pdc:
10707 free_percpu(pmu->pmu_disable_count);
10708 goto unlock;
f29ac756 10709}
c464c76e 10710EXPORT_SYMBOL_GPL(perf_pmu_register);
f29ac756 10711
b0a873eb 10712void perf_pmu_unregister(struct pmu *pmu)
5c92d124 10713{
b0a873eb
PZ
10714 mutex_lock(&pmus_lock);
10715 list_del_rcu(&pmu->entry);
5c92d124 10716
0475f9ea 10717 /*
cde8e884
PZ
10718 * We dereference the pmu list under both SRCU and regular RCU, so
10719 * synchronize against both of those.
0475f9ea 10720 */
b0a873eb 10721 synchronize_srcu(&pmus_srcu);
cde8e884 10722 synchronize_rcu();
d6d020e9 10723
33696fc0 10724 free_percpu(pmu->pmu_disable_count);
66d258c5 10725 if (pmu->type != PERF_TYPE_SOFTWARE)
2e80a82a 10726 idr_remove(&pmu_idr, pmu->type);
a9f97721 10727 if (pmu_bus_running) {
0933840a
JO
10728 if (pmu->nr_addr_filters)
10729 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
10730 device_del(pmu->dev);
10731 put_device(pmu->dev);
10732 }
51676957 10733 free_pmu_context(pmu);
a9f97721 10734 mutex_unlock(&pmus_lock);
b0a873eb 10735}
c464c76e 10736EXPORT_SYMBOL_GPL(perf_pmu_unregister);
d6d020e9 10737
e321d02d
KL
10738static inline bool has_extended_regs(struct perf_event *event)
10739{
10740 return (event->attr.sample_regs_user & PERF_REG_EXTENDED_MASK) ||
10741 (event->attr.sample_regs_intr & PERF_REG_EXTENDED_MASK);
10742}
10743
cc34b98b
MR
10744static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
10745{
ccd41c86 10746 struct perf_event_context *ctx = NULL;
cc34b98b
MR
10747 int ret;
10748
10749 if (!try_module_get(pmu->module))
10750 return -ENODEV;
ccd41c86 10751
0c7296ca
PZ
10752 /*
10753 * A number of pmu->event_init() methods iterate the sibling_list to,
10754 * for example, validate if the group fits on the PMU. Therefore,
10755 * if this is a sibling event, acquire the ctx->mutex to protect
10756 * the sibling_list.
10757 */
10758 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) {
8b10c5e2
PZ
10759 /*
10760 * This ctx->mutex can nest when we're called through
10761 * inheritance. See the perf_event_ctx_lock_nested() comment.
10762 */
10763 ctx = perf_event_ctx_lock_nested(event->group_leader,
10764 SINGLE_DEPTH_NESTING);
ccd41c86
PZ
10765 BUG_ON(!ctx);
10766 }
10767
cc34b98b
MR
10768 event->pmu = pmu;
10769 ret = pmu->event_init(event);
ccd41c86
PZ
10770
10771 if (ctx)
10772 perf_event_ctx_unlock(event->group_leader, ctx);
10773
cc6795ae 10774 if (!ret) {
e321d02d
KL
10775 if (!(pmu->capabilities & PERF_PMU_CAP_EXTENDED_REGS) &&
10776 has_extended_regs(event))
10777 ret = -EOPNOTSUPP;
10778
cc6795ae 10779 if (pmu->capabilities & PERF_PMU_CAP_NO_EXCLUDE &&
e321d02d 10780 event_has_any_exclude_flag(event))
cc6795ae 10781 ret = -EINVAL;
e321d02d
KL
10782
10783 if (ret && event->destroy)
10784 event->destroy(event);
cc6795ae
AM
10785 }
10786
cc34b98b
MR
10787 if (ret)
10788 module_put(pmu->module);
10789
10790 return ret;
10791}
10792
18ab2cd3 10793static struct pmu *perf_init_event(struct perf_event *event)
b0a873eb 10794{
66d258c5 10795 int idx, type, ret;
85c617ab 10796 struct pmu *pmu;
b0a873eb
PZ
10797
10798 idx = srcu_read_lock(&pmus_srcu);
2e80a82a 10799
40999312
KL
10800 /* Try parent's PMU first: */
10801 if (event->parent && event->parent->pmu) {
10802 pmu = event->parent->pmu;
10803 ret = perf_try_init_event(pmu, event);
10804 if (!ret)
10805 goto unlock;
10806 }
10807
66d258c5
PZ
10808 /*
10809 * PERF_TYPE_HARDWARE and PERF_TYPE_HW_CACHE
10810 * are often aliases for PERF_TYPE_RAW.
10811 */
10812 type = event->attr.type;
10813 if (type == PERF_TYPE_HARDWARE || type == PERF_TYPE_HW_CACHE)
10814 type = PERF_TYPE_RAW;
10815
10816again:
2e80a82a 10817 rcu_read_lock();
66d258c5 10818 pmu = idr_find(&pmu_idr, type);
2e80a82a 10819 rcu_read_unlock();
940c5b29 10820 if (pmu) {
cc34b98b 10821 ret = perf_try_init_event(pmu, event);
66d258c5
PZ
10822 if (ret == -ENOENT && event->attr.type != type) {
10823 type = event->attr.type;
10824 goto again;
10825 }
10826
940c5b29
LM
10827 if (ret)
10828 pmu = ERR_PTR(ret);
66d258c5 10829
2e80a82a 10830 goto unlock;
940c5b29 10831 }
2e80a82a 10832
9f0bff11 10833 list_for_each_entry_rcu(pmu, &pmus, entry, lockdep_is_held(&pmus_srcu)) {
cc34b98b 10834 ret = perf_try_init_event(pmu, event);
b0a873eb 10835 if (!ret)
e5f4d339 10836 goto unlock;
76e1d904 10837
b0a873eb
PZ
10838 if (ret != -ENOENT) {
10839 pmu = ERR_PTR(ret);
e5f4d339 10840 goto unlock;
f344011c 10841 }
5c92d124 10842 }
e5f4d339
PZ
10843 pmu = ERR_PTR(-ENOENT);
10844unlock:
b0a873eb 10845 srcu_read_unlock(&pmus_srcu, idx);
15dbf27c 10846
4aeb0b42 10847 return pmu;
5c92d124
IM
10848}
10849
f2fb6bef
KL
10850static void attach_sb_event(struct perf_event *event)
10851{
10852 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
10853
10854 raw_spin_lock(&pel->lock);
10855 list_add_rcu(&event->sb_list, &pel->list);
10856 raw_spin_unlock(&pel->lock);
10857}
10858
aab5b71e
PZ
10859/*
10860 * We keep a list of all !task (and therefore per-cpu) events
10861 * that need to receive side-band records.
10862 *
10863 * This avoids having to scan all the various PMU per-cpu contexts
10864 * looking for them.
10865 */
f2fb6bef
KL
10866static void account_pmu_sb_event(struct perf_event *event)
10867{
a4f144eb 10868 if (is_sb_event(event))
f2fb6bef
KL
10869 attach_sb_event(event);
10870}
10871
4beb31f3
FW
10872static void account_event_cpu(struct perf_event *event, int cpu)
10873{
10874 if (event->parent)
10875 return;
10876
4beb31f3
FW
10877 if (is_cgroup_event(event))
10878 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
10879}
10880
555e0c1e
FW
10881/* Freq events need the tick to stay alive (see perf_event_task_tick). */
10882static void account_freq_event_nohz(void)
10883{
10884#ifdef CONFIG_NO_HZ_FULL
10885 /* Lock so we don't race with concurrent unaccount */
10886 spin_lock(&nr_freq_lock);
10887 if (atomic_inc_return(&nr_freq_events) == 1)
10888 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
10889 spin_unlock(&nr_freq_lock);
10890#endif
10891}
10892
10893static void account_freq_event(void)
10894{
10895 if (tick_nohz_full_enabled())
10896 account_freq_event_nohz();
10897 else
10898 atomic_inc(&nr_freq_events);
10899}
10900
10901
766d6c07
FW
10902static void account_event(struct perf_event *event)
10903{
25432ae9
PZ
10904 bool inc = false;
10905
4beb31f3
FW
10906 if (event->parent)
10907 return;
10908
766d6c07 10909 if (event->attach_state & PERF_ATTACH_TASK)
25432ae9 10910 inc = true;
766d6c07
FW
10911 if (event->attr.mmap || event->attr.mmap_data)
10912 atomic_inc(&nr_mmap_events);
10913 if (event->attr.comm)
10914 atomic_inc(&nr_comm_events);
e4222673
HB
10915 if (event->attr.namespaces)
10916 atomic_inc(&nr_namespaces_events);
96aaab68
NK
10917 if (event->attr.cgroup)
10918 atomic_inc(&nr_cgroup_events);
766d6c07
FW
10919 if (event->attr.task)
10920 atomic_inc(&nr_task_events);
555e0c1e
FW
10921 if (event->attr.freq)
10922 account_freq_event();
45ac1403
AH
10923 if (event->attr.context_switch) {
10924 atomic_inc(&nr_switch_events);
25432ae9 10925 inc = true;
45ac1403 10926 }
4beb31f3 10927 if (has_branch_stack(event))
25432ae9 10928 inc = true;
4beb31f3 10929 if (is_cgroup_event(event))
25432ae9 10930 inc = true;
76193a94
SL
10931 if (event->attr.ksymbol)
10932 atomic_inc(&nr_ksymbol_events);
6ee52e2a
SL
10933 if (event->attr.bpf_event)
10934 atomic_inc(&nr_bpf_events);
25432ae9 10935
9107c89e 10936 if (inc) {
5bce9db1
AS
10937 /*
10938 * We need the mutex here because static_branch_enable()
10939 * must complete *before* the perf_sched_count increment
10940 * becomes visible.
10941 */
9107c89e
PZ
10942 if (atomic_inc_not_zero(&perf_sched_count))
10943 goto enabled;
10944
10945 mutex_lock(&perf_sched_mutex);
10946 if (!atomic_read(&perf_sched_count)) {
10947 static_branch_enable(&perf_sched_events);
10948 /*
10949 * Guarantee that all CPUs observe they key change and
10950 * call the perf scheduling hooks before proceeding to
10951 * install events that need them.
10952 */
0809d954 10953 synchronize_rcu();
9107c89e
PZ
10954 }
10955 /*
10956 * Now that we have waited for the sync_sched(), allow further
10957 * increments to by-pass the mutex.
10958 */
10959 atomic_inc(&perf_sched_count);
10960 mutex_unlock(&perf_sched_mutex);
10961 }
10962enabled:
4beb31f3
FW
10963
10964 account_event_cpu(event, event->cpu);
f2fb6bef
KL
10965
10966 account_pmu_sb_event(event);
766d6c07
FW
10967}
10968
0793a61d 10969/*
788faab7 10970 * Allocate and initialize an event structure
0793a61d 10971 */
cdd6c482 10972static struct perf_event *
c3f00c70 10973perf_event_alloc(struct perf_event_attr *attr, int cpu,
d580ff86
PZ
10974 struct task_struct *task,
10975 struct perf_event *group_leader,
10976 struct perf_event *parent_event,
4dc0da86 10977 perf_overflow_handler_t overflow_handler,
79dff51e 10978 void *context, int cgroup_fd)
0793a61d 10979{
51b0fe39 10980 struct pmu *pmu;
cdd6c482
IM
10981 struct perf_event *event;
10982 struct hw_perf_event *hwc;
90983b16 10983 long err = -EINVAL;
0793a61d 10984
66832eb4
ON
10985 if ((unsigned)cpu >= nr_cpu_ids) {
10986 if (!task || cpu != -1)
10987 return ERR_PTR(-EINVAL);
10988 }
10989
c3f00c70 10990 event = kzalloc(sizeof(*event), GFP_KERNEL);
cdd6c482 10991 if (!event)
d5d2bc0d 10992 return ERR_PTR(-ENOMEM);
0793a61d 10993
04289bb9 10994 /*
cdd6c482 10995 * Single events are their own group leaders, with an
04289bb9
IM
10996 * empty sibling list:
10997 */
10998 if (!group_leader)
cdd6c482 10999 group_leader = event;
04289bb9 11000
cdd6c482
IM
11001 mutex_init(&event->child_mutex);
11002 INIT_LIST_HEAD(&event->child_list);
fccc714b 11003
cdd6c482
IM
11004 INIT_LIST_HEAD(&event->event_entry);
11005 INIT_LIST_HEAD(&event->sibling_list);
6668128a 11006 INIT_LIST_HEAD(&event->active_list);
8e1a2031 11007 init_event_group(event);
10c6db11 11008 INIT_LIST_HEAD(&event->rb_entry);
71ad88ef 11009 INIT_LIST_HEAD(&event->active_entry);
375637bc 11010 INIT_LIST_HEAD(&event->addr_filters.list);
f3ae75de
SE
11011 INIT_HLIST_NODE(&event->hlist_entry);
11012
10c6db11 11013
cdd6c482 11014 init_waitqueue_head(&event->waitq);
1d54ad94 11015 event->pending_disable = -1;
e360adbe 11016 init_irq_work(&event->pending, perf_pending_event);
0793a61d 11017
cdd6c482 11018 mutex_init(&event->mmap_mutex);
375637bc 11019 raw_spin_lock_init(&event->addr_filters.lock);
7b732a75 11020
a6fa941d 11021 atomic_long_set(&event->refcount, 1);
cdd6c482
IM
11022 event->cpu = cpu;
11023 event->attr = *attr;
11024 event->group_leader = group_leader;
11025 event->pmu = NULL;
cdd6c482 11026 event->oncpu = -1;
a96bbc16 11027
cdd6c482 11028 event->parent = parent_event;
b84fbc9f 11029
17cf22c3 11030 event->ns = get_pid_ns(task_active_pid_ns(current));
cdd6c482 11031 event->id = atomic64_inc_return(&perf_event_id);
a96bbc16 11032
cdd6c482 11033 event->state = PERF_EVENT_STATE_INACTIVE;
329d876d 11034
d580ff86
PZ
11035 if (task) {
11036 event->attach_state = PERF_ATTACH_TASK;
d580ff86 11037 /*
50f16a8b
PZ
11038 * XXX pmu::event_init needs to know what task to account to
11039 * and we cannot use the ctx information because we need the
11040 * pmu before we get a ctx.
d580ff86 11041 */
7b3c92b8 11042 event->hw.target = get_task_struct(task);
d580ff86
PZ
11043 }
11044
34f43927
PZ
11045 event->clock = &local_clock;
11046 if (parent_event)
11047 event->clock = parent_event->clock;
11048
4dc0da86 11049 if (!overflow_handler && parent_event) {
b326e956 11050 overflow_handler = parent_event->overflow_handler;
4dc0da86 11051 context = parent_event->overflow_handler_context;
f1e4ba5b 11052#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
aa6a5f3c 11053 if (overflow_handler == bpf_overflow_handler) {
85192dbf 11054 struct bpf_prog *prog = parent_event->prog;
aa6a5f3c 11055
85192dbf 11056 bpf_prog_inc(prog);
aa6a5f3c
AS
11057 event->prog = prog;
11058 event->orig_overflow_handler =
11059 parent_event->orig_overflow_handler;
11060 }
11061#endif
4dc0da86 11062 }
66832eb4 11063
1879445d
WN
11064 if (overflow_handler) {
11065 event->overflow_handler = overflow_handler;
11066 event->overflow_handler_context = context;
9ecda41a
WN
11067 } else if (is_write_backward(event)){
11068 event->overflow_handler = perf_event_output_backward;
11069 event->overflow_handler_context = NULL;
1879445d 11070 } else {
9ecda41a 11071 event->overflow_handler = perf_event_output_forward;
1879445d
WN
11072 event->overflow_handler_context = NULL;
11073 }
97eaf530 11074
0231bb53 11075 perf_event__state_init(event);
a86ed508 11076
4aeb0b42 11077 pmu = NULL;
b8e83514 11078
cdd6c482 11079 hwc = &event->hw;
bd2b5b12 11080 hwc->sample_period = attr->sample_period;
0d48696f 11081 if (attr->freq && attr->sample_freq)
bd2b5b12 11082 hwc->sample_period = 1;
eced1dfc 11083 hwc->last_period = hwc->sample_period;
bd2b5b12 11084
e7850595 11085 local64_set(&hwc->period_left, hwc->sample_period);
60db5e09 11086
2023b359 11087 /*
ba5213ae
PZ
11088 * We currently do not support PERF_SAMPLE_READ on inherited events.
11089 * See perf_output_read().
2023b359 11090 */
ba5213ae 11091 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
90983b16 11092 goto err_ns;
a46a2300
YZ
11093
11094 if (!has_branch_stack(event))
11095 event->attr.branch_sample_type = 0;
2023b359 11096
b0a873eb 11097 pmu = perf_init_event(event);
85c617ab 11098 if (IS_ERR(pmu)) {
4aeb0b42 11099 err = PTR_ERR(pmu);
90983b16 11100 goto err_ns;
621a01ea 11101 }
d5d2bc0d 11102
09f4e8f0
PZ
11103 /*
11104 * Disallow uncore-cgroup events, they don't make sense as the cgroup will
11105 * be different on other CPUs in the uncore mask.
11106 */
11107 if (pmu->task_ctx_nr == perf_invalid_context && cgroup_fd != -1) {
11108 err = -EINVAL;
11109 goto err_pmu;
11110 }
11111
ab43762e
AS
11112 if (event->attr.aux_output &&
11113 !(pmu->capabilities & PERF_PMU_CAP_AUX_OUTPUT)) {
11114 err = -EOPNOTSUPP;
11115 goto err_pmu;
11116 }
11117
98add2af
PZ
11118 if (cgroup_fd != -1) {
11119 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
11120 if (err)
11121 goto err_pmu;
11122 }
11123
bed5b25a
AS
11124 err = exclusive_event_init(event);
11125 if (err)
11126 goto err_pmu;
11127
375637bc 11128 if (has_addr_filter(event)) {
c60f83b8
AS
11129 event->addr_filter_ranges = kcalloc(pmu->nr_addr_filters,
11130 sizeof(struct perf_addr_filter_range),
11131 GFP_KERNEL);
11132 if (!event->addr_filter_ranges) {
36cc2b92 11133 err = -ENOMEM;
375637bc 11134 goto err_per_task;
36cc2b92 11135 }
375637bc 11136
18736eef
AS
11137 /*
11138 * Clone the parent's vma offsets: they are valid until exec()
11139 * even if the mm is not shared with the parent.
11140 */
11141 if (event->parent) {
11142 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
11143
11144 raw_spin_lock_irq(&ifh->lock);
c60f83b8
AS
11145 memcpy(event->addr_filter_ranges,
11146 event->parent->addr_filter_ranges,
11147 pmu->nr_addr_filters * sizeof(struct perf_addr_filter_range));
18736eef
AS
11148 raw_spin_unlock_irq(&ifh->lock);
11149 }
11150
375637bc
AS
11151 /* force hw sync on the address filters */
11152 event->addr_filters_gen = 1;
11153 }
11154
cdd6c482 11155 if (!event->parent) {
927c7a9e 11156 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
97c79a38 11157 err = get_callchain_buffers(attr->sample_max_stack);
90983b16 11158 if (err)
375637bc 11159 goto err_addr_filters;
d010b332 11160 }
f344011c 11161 }
9ee318a7 11162
da97e184
JFG
11163 err = security_perf_event_alloc(event);
11164 if (err)
11165 goto err_callchain_buffer;
11166
927a5570
AS
11167 /* symmetric to unaccount_event() in _free_event() */
11168 account_event(event);
11169
cdd6c482 11170 return event;
90983b16 11171
da97e184
JFG
11172err_callchain_buffer:
11173 if (!event->parent) {
11174 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
11175 put_callchain_buffers();
11176 }
375637bc 11177err_addr_filters:
c60f83b8 11178 kfree(event->addr_filter_ranges);
375637bc 11179
bed5b25a
AS
11180err_per_task:
11181 exclusive_event_destroy(event);
11182
90983b16 11183err_pmu:
98add2af
PZ
11184 if (is_cgroup_event(event))
11185 perf_detach_cgroup(event);
90983b16
FW
11186 if (event->destroy)
11187 event->destroy(event);
c464c76e 11188 module_put(pmu->module);
90983b16
FW
11189err_ns:
11190 if (event->ns)
11191 put_pid_ns(event->ns);
621b6d2e
PB
11192 if (event->hw.target)
11193 put_task_struct(event->hw.target);
90983b16
FW
11194 kfree(event);
11195
11196 return ERR_PTR(err);
0793a61d
TG
11197}
11198
cdd6c482
IM
11199static int perf_copy_attr(struct perf_event_attr __user *uattr,
11200 struct perf_event_attr *attr)
974802ea 11201{
974802ea 11202 u32 size;
cdf8073d 11203 int ret;
974802ea 11204
c2ba8f41 11205 /* Zero the full structure, so that a short copy will be nice. */
974802ea
PZ
11206 memset(attr, 0, sizeof(*attr));
11207
11208 ret = get_user(size, &uattr->size);
11209 if (ret)
11210 return ret;
11211
c2ba8f41
AS
11212 /* ABI compatibility quirk: */
11213 if (!size)
974802ea 11214 size = PERF_ATTR_SIZE_VER0;
c2ba8f41 11215 if (size < PERF_ATTR_SIZE_VER0 || size > PAGE_SIZE)
974802ea
PZ
11216 goto err_size;
11217
c2ba8f41
AS
11218 ret = copy_struct_from_user(attr, sizeof(*attr), uattr, size);
11219 if (ret) {
11220 if (ret == -E2BIG)
11221 goto err_size;
11222 return ret;
974802ea
PZ
11223 }
11224
f12f42ac
MX
11225 attr->size = size;
11226
a4faf00d 11227 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3)
974802ea
PZ
11228 return -EINVAL;
11229
11230 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
11231 return -EINVAL;
11232
11233 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
11234 return -EINVAL;
11235
bce38cd5
SE
11236 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
11237 u64 mask = attr->branch_sample_type;
11238
11239 /* only using defined bits */
11240 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
11241 return -EINVAL;
11242
11243 /* at least one branch bit must be set */
11244 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
11245 return -EINVAL;
11246
bce38cd5
SE
11247 /* propagate priv level, when not set for branch */
11248 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
11249
11250 /* exclude_kernel checked on syscall entry */
11251 if (!attr->exclude_kernel)
11252 mask |= PERF_SAMPLE_BRANCH_KERNEL;
11253
11254 if (!attr->exclude_user)
11255 mask |= PERF_SAMPLE_BRANCH_USER;
11256
11257 if (!attr->exclude_hv)
11258 mask |= PERF_SAMPLE_BRANCH_HV;
11259 /*
11260 * adjust user setting (for HW filter setup)
11261 */
11262 attr->branch_sample_type = mask;
11263 }
e712209a 11264 /* privileged levels capture (kernel, hv): check permissions */
da97e184
JFG
11265 if (mask & PERF_SAMPLE_BRANCH_PERM_PLM) {
11266 ret = perf_allow_kernel(attr);
11267 if (ret)
11268 return ret;
11269 }
bce38cd5 11270 }
4018994f 11271
c5ebcedb 11272 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
4018994f 11273 ret = perf_reg_validate(attr->sample_regs_user);
c5ebcedb
JO
11274 if (ret)
11275 return ret;
11276 }
11277
11278 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
11279 if (!arch_perf_have_user_stack_dump())
11280 return -ENOSYS;
11281
11282 /*
11283 * We have __u32 type for the size, but so far
11284 * we can only use __u16 as maximum due to the
11285 * __u16 sample size limit.
11286 */
11287 if (attr->sample_stack_user >= USHRT_MAX)
78b562fb 11288 return -EINVAL;
c5ebcedb 11289 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
78b562fb 11290 return -EINVAL;
c5ebcedb 11291 }
4018994f 11292
5f970521
JO
11293 if (!attr->sample_max_stack)
11294 attr->sample_max_stack = sysctl_perf_event_max_stack;
11295
60e2364e
SE
11296 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
11297 ret = perf_reg_validate(attr->sample_regs_intr);
6546b19f
NK
11298
11299#ifndef CONFIG_CGROUP_PERF
11300 if (attr->sample_type & PERF_SAMPLE_CGROUP)
11301 return -EINVAL;
11302#endif
11303
974802ea
PZ
11304out:
11305 return ret;
11306
11307err_size:
11308 put_user(sizeof(*attr), &uattr->size);
11309 ret = -E2BIG;
11310 goto out;
11311}
11312
ac9721f3
PZ
11313static int
11314perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
a4be7c27 11315{
56de4e8f 11316 struct perf_buffer *rb = NULL;
a4be7c27
PZ
11317 int ret = -EINVAL;
11318
ac9721f3 11319 if (!output_event)
a4be7c27
PZ
11320 goto set;
11321
ac9721f3
PZ
11322 /* don't allow circular references */
11323 if (event == output_event)
a4be7c27
PZ
11324 goto out;
11325
0f139300
PZ
11326 /*
11327 * Don't allow cross-cpu buffers
11328 */
11329 if (output_event->cpu != event->cpu)
11330 goto out;
11331
11332 /*
76369139 11333 * If its not a per-cpu rb, it must be the same task.
0f139300
PZ
11334 */
11335 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
11336 goto out;
11337
34f43927
PZ
11338 /*
11339 * Mixing clocks in the same buffer is trouble you don't need.
11340 */
11341 if (output_event->clock != event->clock)
11342 goto out;
11343
9ecda41a
WN
11344 /*
11345 * Either writing ring buffer from beginning or from end.
11346 * Mixing is not allowed.
11347 */
11348 if (is_write_backward(output_event) != is_write_backward(event))
11349 goto out;
11350
45bfb2e5
PZ
11351 /*
11352 * If both events generate aux data, they must be on the same PMU
11353 */
11354 if (has_aux(event) && has_aux(output_event) &&
11355 event->pmu != output_event->pmu)
11356 goto out;
11357
a4be7c27 11358set:
cdd6c482 11359 mutex_lock(&event->mmap_mutex);
ac9721f3
PZ
11360 /* Can't redirect output if we've got an active mmap() */
11361 if (atomic_read(&event->mmap_count))
11362 goto unlock;
a4be7c27 11363
ac9721f3 11364 if (output_event) {
76369139
FW
11365 /* get the rb we want to redirect to */
11366 rb = ring_buffer_get(output_event);
11367 if (!rb)
ac9721f3 11368 goto unlock;
a4be7c27
PZ
11369 }
11370
b69cf536 11371 ring_buffer_attach(event, rb);
9bb5d40c 11372
a4be7c27 11373 ret = 0;
ac9721f3
PZ
11374unlock:
11375 mutex_unlock(&event->mmap_mutex);
11376
a4be7c27 11377out:
a4be7c27
PZ
11378 return ret;
11379}
11380
f63a8daa
PZ
11381static void mutex_lock_double(struct mutex *a, struct mutex *b)
11382{
11383 if (b < a)
11384 swap(a, b);
11385
11386 mutex_lock(a);
11387 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
11388}
11389
34f43927
PZ
11390static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
11391{
11392 bool nmi_safe = false;
11393
11394 switch (clk_id) {
11395 case CLOCK_MONOTONIC:
11396 event->clock = &ktime_get_mono_fast_ns;
11397 nmi_safe = true;
11398 break;
11399
11400 case CLOCK_MONOTONIC_RAW:
11401 event->clock = &ktime_get_raw_fast_ns;
11402 nmi_safe = true;
11403 break;
11404
11405 case CLOCK_REALTIME:
11406 event->clock = &ktime_get_real_ns;
11407 break;
11408
11409 case CLOCK_BOOTTIME:
9285ec4c 11410 event->clock = &ktime_get_boottime_ns;
34f43927
PZ
11411 break;
11412
11413 case CLOCK_TAI:
9285ec4c 11414 event->clock = &ktime_get_clocktai_ns;
34f43927
PZ
11415 break;
11416
11417 default:
11418 return -EINVAL;
11419 }
11420
11421 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
11422 return -EINVAL;
11423
11424 return 0;
11425}
11426
321027c1
PZ
11427/*
11428 * Variation on perf_event_ctx_lock_nested(), except we take two context
11429 * mutexes.
11430 */
11431static struct perf_event_context *
11432__perf_event_ctx_lock_double(struct perf_event *group_leader,
11433 struct perf_event_context *ctx)
11434{
11435 struct perf_event_context *gctx;
11436
11437again:
11438 rcu_read_lock();
11439 gctx = READ_ONCE(group_leader->ctx);
8c94abbb 11440 if (!refcount_inc_not_zero(&gctx->refcount)) {
321027c1
PZ
11441 rcu_read_unlock();
11442 goto again;
11443 }
11444 rcu_read_unlock();
11445
11446 mutex_lock_double(&gctx->mutex, &ctx->mutex);
11447
11448 if (group_leader->ctx != gctx) {
11449 mutex_unlock(&ctx->mutex);
11450 mutex_unlock(&gctx->mutex);
11451 put_ctx(gctx);
11452 goto again;
11453 }
11454
11455 return gctx;
11456}
11457
0793a61d 11458/**
cdd6c482 11459 * sys_perf_event_open - open a performance event, associate it to a task/cpu
9f66a381 11460 *
cdd6c482 11461 * @attr_uptr: event_id type attributes for monitoring/sampling
0793a61d 11462 * @pid: target pid
9f66a381 11463 * @cpu: target cpu
cdd6c482 11464 * @group_fd: group leader event fd
0793a61d 11465 */
cdd6c482
IM
11466SYSCALL_DEFINE5(perf_event_open,
11467 struct perf_event_attr __user *, attr_uptr,
2743a5b0 11468 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
0793a61d 11469{
b04243ef
PZ
11470 struct perf_event *group_leader = NULL, *output_event = NULL;
11471 struct perf_event *event, *sibling;
cdd6c482 11472 struct perf_event_attr attr;
f63a8daa 11473 struct perf_event_context *ctx, *uninitialized_var(gctx);
cdd6c482 11474 struct file *event_file = NULL;
2903ff01 11475 struct fd group = {NULL, 0};
38a81da2 11476 struct task_struct *task = NULL;
89a1e187 11477 struct pmu *pmu;
ea635c64 11478 int event_fd;
b04243ef 11479 int move_group = 0;
dc86cabe 11480 int err;
a21b0b35 11481 int f_flags = O_RDWR;
79dff51e 11482 int cgroup_fd = -1;
0793a61d 11483
2743a5b0 11484 /* for future expandability... */
e5d1367f 11485 if (flags & ~PERF_FLAG_ALL)
2743a5b0
PM
11486 return -EINVAL;
11487
da97e184
JFG
11488 /* Do we allow access to perf_event_open(2) ? */
11489 err = security_perf_event_open(&attr, PERF_SECURITY_OPEN);
11490 if (err)
11491 return err;
11492
dc86cabe
IM
11493 err = perf_copy_attr(attr_uptr, &attr);
11494 if (err)
11495 return err;
eab656ae 11496
0764771d 11497 if (!attr.exclude_kernel) {
da97e184
JFG
11498 err = perf_allow_kernel(&attr);
11499 if (err)
11500 return err;
0764771d
PZ
11501 }
11502
e4222673
HB
11503 if (attr.namespaces) {
11504 if (!capable(CAP_SYS_ADMIN))
11505 return -EACCES;
11506 }
11507
df58ab24 11508 if (attr.freq) {
cdd6c482 11509 if (attr.sample_freq > sysctl_perf_event_sample_rate)
df58ab24 11510 return -EINVAL;
0819b2e3
PZ
11511 } else {
11512 if (attr.sample_period & (1ULL << 63))
11513 return -EINVAL;
df58ab24
PZ
11514 }
11515
fc7ce9c7 11516 /* Only privileged users can get physical addresses */
da97e184
JFG
11517 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR)) {
11518 err = perf_allow_kernel(&attr);
11519 if (err)
11520 return err;
11521 }
fc7ce9c7 11522
b0c8fdc7
DH
11523 err = security_locked_down(LOCKDOWN_PERF);
11524 if (err && (attr.sample_type & PERF_SAMPLE_REGS_INTR))
11525 /* REGS_INTR can leak data, lockdown must prevent this */
11526 return err;
11527
11528 err = 0;
11529
e5d1367f
SE
11530 /*
11531 * In cgroup mode, the pid argument is used to pass the fd
11532 * opened to the cgroup directory in cgroupfs. The cpu argument
11533 * designates the cpu on which to monitor threads from that
11534 * cgroup.
11535 */
11536 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
11537 return -EINVAL;
11538
a21b0b35
YD
11539 if (flags & PERF_FLAG_FD_CLOEXEC)
11540 f_flags |= O_CLOEXEC;
11541
11542 event_fd = get_unused_fd_flags(f_flags);
ea635c64
AV
11543 if (event_fd < 0)
11544 return event_fd;
11545
ac9721f3 11546 if (group_fd != -1) {
2903ff01
AV
11547 err = perf_fget_light(group_fd, &group);
11548 if (err)
d14b12d7 11549 goto err_fd;
2903ff01 11550 group_leader = group.file->private_data;
ac9721f3
PZ
11551 if (flags & PERF_FLAG_FD_OUTPUT)
11552 output_event = group_leader;
11553 if (flags & PERF_FLAG_FD_NO_GROUP)
11554 group_leader = NULL;
11555 }
11556
e5d1367f 11557 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
c6be5a5c
PZ
11558 task = find_lively_task_by_vpid(pid);
11559 if (IS_ERR(task)) {
11560 err = PTR_ERR(task);
11561 goto err_group_fd;
11562 }
11563 }
11564
1f4ee503
PZ
11565 if (task && group_leader &&
11566 group_leader->attr.inherit != attr.inherit) {
11567 err = -EINVAL;
11568 goto err_task;
11569 }
11570
79c9ce57 11571 if (task) {
69143038 11572 err = mutex_lock_interruptible(&task->signal->exec_update_mutex);
79c9ce57 11573 if (err)
e5aeee51 11574 goto err_task;
79c9ce57
PZ
11575
11576 /*
11577 * Reuse ptrace permission checks for now.
11578 *
69143038 11579 * We must hold exec_update_mutex across this and any potential
79c9ce57
PZ
11580 * perf_install_in_context() call for this new event to
11581 * serialize against exec() altering our credentials (and the
11582 * perf_event_exit_task() that could imply).
11583 */
11584 err = -EACCES;
11585 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
11586 goto err_cred;
11587 }
11588
79dff51e
MF
11589 if (flags & PERF_FLAG_PID_CGROUP)
11590 cgroup_fd = pid;
11591
4dc0da86 11592 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
79dff51e 11593 NULL, NULL, cgroup_fd);
d14b12d7
SE
11594 if (IS_ERR(event)) {
11595 err = PTR_ERR(event);
79c9ce57 11596 goto err_cred;
d14b12d7
SE
11597 }
11598
53b25335
VW
11599 if (is_sampling_event(event)) {
11600 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
a1396555 11601 err = -EOPNOTSUPP;
53b25335
VW
11602 goto err_alloc;
11603 }
11604 }
11605
89a1e187
PZ
11606 /*
11607 * Special case software events and allow them to be part of
11608 * any hardware group.
11609 */
11610 pmu = event->pmu;
b04243ef 11611
34f43927
PZ
11612 if (attr.use_clockid) {
11613 err = perf_event_set_clock(event, attr.clockid);
11614 if (err)
11615 goto err_alloc;
11616 }
11617
4ff6a8de
DCC
11618 if (pmu->task_ctx_nr == perf_sw_context)
11619 event->event_caps |= PERF_EV_CAP_SOFTWARE;
11620
a1150c20
SL
11621 if (group_leader) {
11622 if (is_software_event(event) &&
11623 !in_software_context(group_leader)) {
b04243ef 11624 /*
a1150c20
SL
11625 * If the event is a sw event, but the group_leader
11626 * is on hw context.
b04243ef 11627 *
a1150c20
SL
11628 * Allow the addition of software events to hw
11629 * groups, this is safe because software events
11630 * never fail to schedule.
b04243ef 11631 */
a1150c20
SL
11632 pmu = group_leader->ctx->pmu;
11633 } else if (!is_software_event(event) &&
11634 is_software_event(group_leader) &&
4ff6a8de 11635 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
b04243ef
PZ
11636 /*
11637 * In case the group is a pure software group, and we
11638 * try to add a hardware event, move the whole group to
11639 * the hardware context.
11640 */
11641 move_group = 1;
11642 }
11643 }
89a1e187
PZ
11644
11645 /*
11646 * Get the target context (task or percpu):
11647 */
4af57ef2 11648 ctx = find_get_context(pmu, task, event);
89a1e187
PZ
11649 if (IS_ERR(ctx)) {
11650 err = PTR_ERR(ctx);
c6be5a5c 11651 goto err_alloc;
89a1e187
PZ
11652 }
11653
ccff286d 11654 /*
cdd6c482 11655 * Look up the group leader (we will attach this event to it):
04289bb9 11656 */
ac9721f3 11657 if (group_leader) {
dc86cabe 11658 err = -EINVAL;
04289bb9 11659
04289bb9 11660 /*
ccff286d
IM
11661 * Do not allow a recursive hierarchy (this new sibling
11662 * becoming part of another group-sibling):
11663 */
11664 if (group_leader->group_leader != group_leader)
c3f00c70 11665 goto err_context;
34f43927
PZ
11666
11667 /* All events in a group should have the same clock */
11668 if (group_leader->clock != event->clock)
11669 goto err_context;
11670
ccff286d 11671 /*
64aee2a9
MR
11672 * Make sure we're both events for the same CPU;
11673 * grouping events for different CPUs is broken; since
11674 * you can never concurrently schedule them anyhow.
04289bb9 11675 */
64aee2a9
MR
11676 if (group_leader->cpu != event->cpu)
11677 goto err_context;
c3c87e77 11678
64aee2a9
MR
11679 /*
11680 * Make sure we're both on the same task, or both
11681 * per-CPU events.
11682 */
11683 if (group_leader->ctx->task != ctx->task)
11684 goto err_context;
11685
11686 /*
11687 * Do not allow to attach to a group in a different task
11688 * or CPU context. If we're moving SW events, we'll fix
11689 * this up later, so allow that.
11690 */
11691 if (!move_group && group_leader->ctx != ctx)
11692 goto err_context;
b04243ef 11693
3b6f9e5c
PM
11694 /*
11695 * Only a group leader can be exclusive or pinned
11696 */
0d48696f 11697 if (attr.exclusive || attr.pinned)
c3f00c70 11698 goto err_context;
ac9721f3
PZ
11699 }
11700
11701 if (output_event) {
11702 err = perf_event_set_output(event, output_event);
11703 if (err)
c3f00c70 11704 goto err_context;
ac9721f3 11705 }
0793a61d 11706
a21b0b35
YD
11707 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
11708 f_flags);
ea635c64
AV
11709 if (IS_ERR(event_file)) {
11710 err = PTR_ERR(event_file);
201c2f85 11711 event_file = NULL;
c3f00c70 11712 goto err_context;
ea635c64 11713 }
9b51f66d 11714
b04243ef 11715 if (move_group) {
321027c1
PZ
11716 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
11717
84c4e620
PZ
11718 if (gctx->task == TASK_TOMBSTONE) {
11719 err = -ESRCH;
11720 goto err_locked;
11721 }
321027c1
PZ
11722
11723 /*
11724 * Check if we raced against another sys_perf_event_open() call
11725 * moving the software group underneath us.
11726 */
11727 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
11728 /*
11729 * If someone moved the group out from under us, check
11730 * if this new event wound up on the same ctx, if so
11731 * its the regular !move_group case, otherwise fail.
11732 */
11733 if (gctx != ctx) {
11734 err = -EINVAL;
11735 goto err_locked;
11736 } else {
11737 perf_event_ctx_unlock(group_leader, gctx);
11738 move_group = 0;
11739 }
11740 }
8a58ddae
AS
11741
11742 /*
11743 * Failure to create exclusive events returns -EBUSY.
11744 */
11745 err = -EBUSY;
11746 if (!exclusive_event_installable(group_leader, ctx))
11747 goto err_locked;
11748
11749 for_each_sibling_event(sibling, group_leader) {
11750 if (!exclusive_event_installable(sibling, ctx))
11751 goto err_locked;
11752 }
f55fc2a5
PZ
11753 } else {
11754 mutex_lock(&ctx->mutex);
11755 }
11756
84c4e620
PZ
11757 if (ctx->task == TASK_TOMBSTONE) {
11758 err = -ESRCH;
11759 goto err_locked;
11760 }
11761
a723968c
PZ
11762 if (!perf_event_validate_size(event)) {
11763 err = -E2BIG;
11764 goto err_locked;
11765 }
11766
a63fbed7
TG
11767 if (!task) {
11768 /*
11769 * Check if the @cpu we're creating an event for is online.
11770 *
11771 * We use the perf_cpu_context::ctx::mutex to serialize against
11772 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
11773 */
11774 struct perf_cpu_context *cpuctx =
11775 container_of(ctx, struct perf_cpu_context, ctx);
11776
11777 if (!cpuctx->online) {
11778 err = -ENODEV;
11779 goto err_locked;
11780 }
11781 }
11782
da9ec3d3
MR
11783 if (perf_need_aux_event(event) && !perf_get_aux_event(event, group_leader)) {
11784 err = -EINVAL;
ab43762e 11785 goto err_locked;
da9ec3d3 11786 }
a63fbed7 11787
f55fc2a5
PZ
11788 /*
11789 * Must be under the same ctx::mutex as perf_install_in_context(),
11790 * because we need to serialize with concurrent event creation.
11791 */
11792 if (!exclusive_event_installable(event, ctx)) {
f55fc2a5
PZ
11793 err = -EBUSY;
11794 goto err_locked;
11795 }
f63a8daa 11796
f55fc2a5
PZ
11797 WARN_ON_ONCE(ctx->parent_ctx);
11798
79c9ce57
PZ
11799 /*
11800 * This is the point on no return; we cannot fail hereafter. This is
11801 * where we start modifying current state.
11802 */
11803
f55fc2a5 11804 if (move_group) {
f63a8daa
PZ
11805 /*
11806 * See perf_event_ctx_lock() for comments on the details
11807 * of swizzling perf_event::ctx.
11808 */
45a0e07a 11809 perf_remove_from_context(group_leader, 0);
279b5165 11810 put_ctx(gctx);
0231bb53 11811
edb39592 11812 for_each_sibling_event(sibling, group_leader) {
45a0e07a 11813 perf_remove_from_context(sibling, 0);
b04243ef
PZ
11814 put_ctx(gctx);
11815 }
b04243ef 11816
f63a8daa
PZ
11817 /*
11818 * Wait for everybody to stop referencing the events through
11819 * the old lists, before installing it on new lists.
11820 */
0cda4c02 11821 synchronize_rcu();
f63a8daa 11822
8f95b435
PZI
11823 /*
11824 * Install the group siblings before the group leader.
11825 *
11826 * Because a group leader will try and install the entire group
11827 * (through the sibling list, which is still in-tact), we can
11828 * end up with siblings installed in the wrong context.
11829 *
11830 * By installing siblings first we NO-OP because they're not
11831 * reachable through the group lists.
11832 */
edb39592 11833 for_each_sibling_event(sibling, group_leader) {
8f95b435 11834 perf_event__state_init(sibling);
9fc81d87 11835 perf_install_in_context(ctx, sibling, sibling->cpu);
b04243ef
PZ
11836 get_ctx(ctx);
11837 }
8f95b435
PZI
11838
11839 /*
11840 * Removing from the context ends up with disabled
11841 * event. What we want here is event in the initial
11842 * startup state, ready to be add into new context.
11843 */
11844 perf_event__state_init(group_leader);
11845 perf_install_in_context(ctx, group_leader, group_leader->cpu);
11846 get_ctx(ctx);
bed5b25a
AS
11847 }
11848
f73e22ab
PZ
11849 /*
11850 * Precalculate sample_data sizes; do while holding ctx::mutex such
11851 * that we're serialized against further additions and before
11852 * perf_install_in_context() which is the point the event is active and
11853 * can use these values.
11854 */
11855 perf_event__header_size(event);
11856 perf_event__id_header_size(event);
11857
78cd2c74
PZ
11858 event->owner = current;
11859
e2d37cd2 11860 perf_install_in_context(ctx, event, event->cpu);
fe4b04fa 11861 perf_unpin_context(ctx);
f63a8daa 11862
f55fc2a5 11863 if (move_group)
321027c1 11864 perf_event_ctx_unlock(group_leader, gctx);
d859e29f 11865 mutex_unlock(&ctx->mutex);
9b51f66d 11866
79c9ce57 11867 if (task) {
69143038 11868 mutex_unlock(&task->signal->exec_update_mutex);
79c9ce57
PZ
11869 put_task_struct(task);
11870 }
11871
cdd6c482
IM
11872 mutex_lock(&current->perf_event_mutex);
11873 list_add_tail(&event->owner_entry, &current->perf_event_list);
11874 mutex_unlock(&current->perf_event_mutex);
082ff5a2 11875
8a49542c
PZ
11876 /*
11877 * Drop the reference on the group_event after placing the
11878 * new event on the sibling_list. This ensures destruction
11879 * of the group leader will find the pointer to itself in
11880 * perf_group_detach().
11881 */
2903ff01 11882 fdput(group);
ea635c64
AV
11883 fd_install(event_fd, event_file);
11884 return event_fd;
0793a61d 11885
f55fc2a5
PZ
11886err_locked:
11887 if (move_group)
321027c1 11888 perf_event_ctx_unlock(group_leader, gctx);
f55fc2a5
PZ
11889 mutex_unlock(&ctx->mutex);
11890/* err_file: */
11891 fput(event_file);
c3f00c70 11892err_context:
fe4b04fa 11893 perf_unpin_context(ctx);
ea635c64 11894 put_ctx(ctx);
c6be5a5c 11895err_alloc:
13005627
PZ
11896 /*
11897 * If event_file is set, the fput() above will have called ->release()
11898 * and that will take care of freeing the event.
11899 */
11900 if (!event_file)
11901 free_event(event);
79c9ce57
PZ
11902err_cred:
11903 if (task)
69143038 11904 mutex_unlock(&task->signal->exec_update_mutex);
1f4ee503 11905err_task:
e7d0bc04
PZ
11906 if (task)
11907 put_task_struct(task);
89a1e187 11908err_group_fd:
2903ff01 11909 fdput(group);
ea635c64
AV
11910err_fd:
11911 put_unused_fd(event_fd);
dc86cabe 11912 return err;
0793a61d
TG
11913}
11914
fb0459d7
AV
11915/**
11916 * perf_event_create_kernel_counter
11917 *
11918 * @attr: attributes of the counter to create
11919 * @cpu: cpu in which the counter is bound
38a81da2 11920 * @task: task to profile (NULL for percpu)
fb0459d7
AV
11921 */
11922struct perf_event *
11923perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
38a81da2 11924 struct task_struct *task,
4dc0da86
AK
11925 perf_overflow_handler_t overflow_handler,
11926 void *context)
fb0459d7 11927{
fb0459d7 11928 struct perf_event_context *ctx;
c3f00c70 11929 struct perf_event *event;
fb0459d7 11930 int err;
d859e29f 11931
dce5affb
AS
11932 /*
11933 * Grouping is not supported for kernel events, neither is 'AUX',
11934 * make sure the caller's intentions are adjusted.
11935 */
11936 if (attr->aux_output)
11937 return ERR_PTR(-EINVAL);
11938
4dc0da86 11939 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
79dff51e 11940 overflow_handler, context, -1);
c3f00c70
PZ
11941 if (IS_ERR(event)) {
11942 err = PTR_ERR(event);
11943 goto err;
11944 }
d859e29f 11945
f8697762 11946 /* Mark owner so we could distinguish it from user events. */
63b6da39 11947 event->owner = TASK_TOMBSTONE;
f8697762 11948
f25d8ba9
AS
11949 /*
11950 * Get the target context (task or percpu):
11951 */
4af57ef2 11952 ctx = find_get_context(event->pmu, task, event);
c6567f64
FW
11953 if (IS_ERR(ctx)) {
11954 err = PTR_ERR(ctx);
c3f00c70 11955 goto err_free;
d859e29f 11956 }
fb0459d7 11957
fb0459d7
AV
11958 WARN_ON_ONCE(ctx->parent_ctx);
11959 mutex_lock(&ctx->mutex);
84c4e620
PZ
11960 if (ctx->task == TASK_TOMBSTONE) {
11961 err = -ESRCH;
11962 goto err_unlock;
11963 }
11964
a63fbed7
TG
11965 if (!task) {
11966 /*
11967 * Check if the @cpu we're creating an event for is online.
11968 *
11969 * We use the perf_cpu_context::ctx::mutex to serialize against
11970 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
11971 */
11972 struct perf_cpu_context *cpuctx =
11973 container_of(ctx, struct perf_cpu_context, ctx);
11974 if (!cpuctx->online) {
11975 err = -ENODEV;
11976 goto err_unlock;
11977 }
11978 }
11979
bed5b25a 11980 if (!exclusive_event_installable(event, ctx)) {
bed5b25a 11981 err = -EBUSY;
84c4e620 11982 goto err_unlock;
bed5b25a
AS
11983 }
11984
4ce54af8 11985 perf_install_in_context(ctx, event, event->cpu);
fe4b04fa 11986 perf_unpin_context(ctx);
fb0459d7
AV
11987 mutex_unlock(&ctx->mutex);
11988
fb0459d7
AV
11989 return event;
11990
84c4e620
PZ
11991err_unlock:
11992 mutex_unlock(&ctx->mutex);
11993 perf_unpin_context(ctx);
11994 put_ctx(ctx);
c3f00c70
PZ
11995err_free:
11996 free_event(event);
11997err:
c6567f64 11998 return ERR_PTR(err);
9b51f66d 11999}
fb0459d7 12000EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
9b51f66d 12001
0cda4c02
YZ
12002void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
12003{
12004 struct perf_event_context *src_ctx;
12005 struct perf_event_context *dst_ctx;
12006 struct perf_event *event, *tmp;
12007 LIST_HEAD(events);
12008
12009 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
12010 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
12011
f63a8daa
PZ
12012 /*
12013 * See perf_event_ctx_lock() for comments on the details
12014 * of swizzling perf_event::ctx.
12015 */
12016 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
0cda4c02
YZ
12017 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
12018 event_entry) {
45a0e07a 12019 perf_remove_from_context(event, 0);
9a545de0 12020 unaccount_event_cpu(event, src_cpu);
0cda4c02 12021 put_ctx(src_ctx);
9886167d 12022 list_add(&event->migrate_entry, &events);
0cda4c02 12023 }
0cda4c02 12024
8f95b435
PZI
12025 /*
12026 * Wait for the events to quiesce before re-instating them.
12027 */
0cda4c02
YZ
12028 synchronize_rcu();
12029
8f95b435
PZI
12030 /*
12031 * Re-instate events in 2 passes.
12032 *
12033 * Skip over group leaders and only install siblings on this first
12034 * pass, siblings will not get enabled without a leader, however a
12035 * leader will enable its siblings, even if those are still on the old
12036 * context.
12037 */
12038 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12039 if (event->group_leader == event)
12040 continue;
12041
12042 list_del(&event->migrate_entry);
12043 if (event->state >= PERF_EVENT_STATE_OFF)
12044 event->state = PERF_EVENT_STATE_INACTIVE;
12045 account_event_cpu(event, dst_cpu);
12046 perf_install_in_context(dst_ctx, event, dst_cpu);
12047 get_ctx(dst_ctx);
12048 }
12049
12050 /*
12051 * Once all the siblings are setup properly, install the group leaders
12052 * to make it go.
12053 */
9886167d
PZ
12054 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12055 list_del(&event->migrate_entry);
0cda4c02
YZ
12056 if (event->state >= PERF_EVENT_STATE_OFF)
12057 event->state = PERF_EVENT_STATE_INACTIVE;
9a545de0 12058 account_event_cpu(event, dst_cpu);
0cda4c02
YZ
12059 perf_install_in_context(dst_ctx, event, dst_cpu);
12060 get_ctx(dst_ctx);
12061 }
12062 mutex_unlock(&dst_ctx->mutex);
f63a8daa 12063 mutex_unlock(&src_ctx->mutex);
0cda4c02
YZ
12064}
12065EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
12066
cdd6c482 12067static void sync_child_event(struct perf_event *child_event,
38b200d6 12068 struct task_struct *child)
d859e29f 12069{
cdd6c482 12070 struct perf_event *parent_event = child_event->parent;
8bc20959 12071 u64 child_val;
d859e29f 12072
cdd6c482
IM
12073 if (child_event->attr.inherit_stat)
12074 perf_event_read_event(child_event, child);
38b200d6 12075
b5e58793 12076 child_val = perf_event_count(child_event);
d859e29f
PM
12077
12078 /*
12079 * Add back the child's count to the parent's count:
12080 */
a6e6dea6 12081 atomic64_add(child_val, &parent_event->child_count);
cdd6c482
IM
12082 atomic64_add(child_event->total_time_enabled,
12083 &parent_event->child_total_time_enabled);
12084 atomic64_add(child_event->total_time_running,
12085 &parent_event->child_total_time_running);
d859e29f
PM
12086}
12087
9b51f66d 12088static void
8ba289b8
PZ
12089perf_event_exit_event(struct perf_event *child_event,
12090 struct perf_event_context *child_ctx,
12091 struct task_struct *child)
9b51f66d 12092{
8ba289b8
PZ
12093 struct perf_event *parent_event = child_event->parent;
12094
1903d50c
PZ
12095 /*
12096 * Do not destroy the 'original' grouping; because of the context
12097 * switch optimization the original events could've ended up in a
12098 * random child task.
12099 *
12100 * If we were to destroy the original group, all group related
12101 * operations would cease to function properly after this random
12102 * child dies.
12103 *
12104 * Do destroy all inherited groups, we don't care about those
12105 * and being thorough is better.
12106 */
32132a3d
PZ
12107 raw_spin_lock_irq(&child_ctx->lock);
12108 WARN_ON_ONCE(child_ctx->is_active);
12109
8ba289b8 12110 if (parent_event)
32132a3d
PZ
12111 perf_group_detach(child_event);
12112 list_del_event(child_event, child_ctx);
0d3d73aa 12113 perf_event_set_state(child_event, PERF_EVENT_STATE_EXIT); /* is_event_hup() */
32132a3d 12114 raw_spin_unlock_irq(&child_ctx->lock);
0cc0c027 12115
9b51f66d 12116 /*
8ba289b8 12117 * Parent events are governed by their filedesc, retain them.
9b51f66d 12118 */
8ba289b8 12119 if (!parent_event) {
179033b3 12120 perf_event_wakeup(child_event);
8ba289b8 12121 return;
4bcf349a 12122 }
8ba289b8
PZ
12123 /*
12124 * Child events can be cleaned up.
12125 */
12126
12127 sync_child_event(child_event, child);
12128
12129 /*
12130 * Remove this event from the parent's list
12131 */
12132 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
12133 mutex_lock(&parent_event->child_mutex);
12134 list_del_init(&child_event->child_list);
12135 mutex_unlock(&parent_event->child_mutex);
12136
12137 /*
12138 * Kick perf_poll() for is_event_hup().
12139 */
12140 perf_event_wakeup(parent_event);
12141 free_event(child_event);
12142 put_event(parent_event);
9b51f66d
IM
12143}
12144
8dc85d54 12145static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
9b51f66d 12146{
211de6eb 12147 struct perf_event_context *child_ctx, *clone_ctx = NULL;
63b6da39 12148 struct perf_event *child_event, *next;
63b6da39
PZ
12149
12150 WARN_ON_ONCE(child != current);
9b51f66d 12151
6a3351b6 12152 child_ctx = perf_pin_task_context(child, ctxn);
63b6da39 12153 if (!child_ctx)
9b51f66d
IM
12154 return;
12155
ad3a37de 12156 /*
6a3351b6
PZ
12157 * In order to reduce the amount of tricky in ctx tear-down, we hold
12158 * ctx::mutex over the entire thing. This serializes against almost
12159 * everything that wants to access the ctx.
12160 *
12161 * The exception is sys_perf_event_open() /
12162 * perf_event_create_kernel_count() which does find_get_context()
12163 * without ctx::mutex (it cannot because of the move_group double mutex
12164 * lock thing). See the comments in perf_install_in_context().
ad3a37de 12165 */
6a3351b6 12166 mutex_lock(&child_ctx->mutex);
c93f7669
PM
12167
12168 /*
6a3351b6
PZ
12169 * In a single ctx::lock section, de-schedule the events and detach the
12170 * context from the task such that we cannot ever get it scheduled back
12171 * in.
c93f7669 12172 */
6a3351b6 12173 raw_spin_lock_irq(&child_ctx->lock);
487f05e1 12174 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
4a1c0f26 12175
71a851b4 12176 /*
63b6da39
PZ
12177 * Now that the context is inactive, destroy the task <-> ctx relation
12178 * and mark the context dead.
71a851b4 12179 */
63b6da39
PZ
12180 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
12181 put_ctx(child_ctx); /* cannot be last */
12182 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
12183 put_task_struct(current); /* cannot be last */
4a1c0f26 12184
211de6eb 12185 clone_ctx = unclone_ctx(child_ctx);
6a3351b6 12186 raw_spin_unlock_irq(&child_ctx->lock);
9f498cc5 12187
211de6eb
PZ
12188 if (clone_ctx)
12189 put_ctx(clone_ctx);
4a1c0f26 12190
9f498cc5 12191 /*
cdd6c482
IM
12192 * Report the task dead after unscheduling the events so that we
12193 * won't get any samples after PERF_RECORD_EXIT. We can however still
12194 * get a few PERF_RECORD_READ events.
9f498cc5 12195 */
cdd6c482 12196 perf_event_task(child, child_ctx, 0);
a63eaf34 12197
ebf905fc 12198 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
8ba289b8 12199 perf_event_exit_event(child_event, child_ctx, child);
8bc20959 12200
a63eaf34
PM
12201 mutex_unlock(&child_ctx->mutex);
12202
12203 put_ctx(child_ctx);
9b51f66d
IM
12204}
12205
8dc85d54
PZ
12206/*
12207 * When a child task exits, feed back event values to parent events.
79c9ce57 12208 *
69143038 12209 * Can be called with exec_update_mutex held when called from
79c9ce57 12210 * install_exec_creds().
8dc85d54
PZ
12211 */
12212void perf_event_exit_task(struct task_struct *child)
12213{
8882135b 12214 struct perf_event *event, *tmp;
8dc85d54
PZ
12215 int ctxn;
12216
8882135b
PZ
12217 mutex_lock(&child->perf_event_mutex);
12218 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
12219 owner_entry) {
12220 list_del_init(&event->owner_entry);
12221
12222 /*
12223 * Ensure the list deletion is visible before we clear
12224 * the owner, closes a race against perf_release() where
12225 * we need to serialize on the owner->perf_event_mutex.
12226 */
f47c02c0 12227 smp_store_release(&event->owner, NULL);
8882135b
PZ
12228 }
12229 mutex_unlock(&child->perf_event_mutex);
12230
8dc85d54
PZ
12231 for_each_task_context_nr(ctxn)
12232 perf_event_exit_task_context(child, ctxn);
4e93ad60
JO
12233
12234 /*
12235 * The perf_event_exit_task_context calls perf_event_task
12236 * with child's task_ctx, which generates EXIT events for
12237 * child contexts and sets child->perf_event_ctxp[] to NULL.
12238 * At this point we need to send EXIT events to cpu contexts.
12239 */
12240 perf_event_task(child, NULL, 0);
8dc85d54
PZ
12241}
12242
889ff015
FW
12243static void perf_free_event(struct perf_event *event,
12244 struct perf_event_context *ctx)
12245{
12246 struct perf_event *parent = event->parent;
12247
12248 if (WARN_ON_ONCE(!parent))
12249 return;
12250
12251 mutex_lock(&parent->child_mutex);
12252 list_del_init(&event->child_list);
12253 mutex_unlock(&parent->child_mutex);
12254
a6fa941d 12255 put_event(parent);
889ff015 12256
652884fe 12257 raw_spin_lock_irq(&ctx->lock);
8a49542c 12258 perf_group_detach(event);
889ff015 12259 list_del_event(event, ctx);
652884fe 12260 raw_spin_unlock_irq(&ctx->lock);
889ff015
FW
12261 free_event(event);
12262}
12263
bbbee908 12264/*
1cf8dfe8
PZ
12265 * Free a context as created by inheritance by perf_event_init_task() below,
12266 * used by fork() in case of fail.
652884fe 12267 *
1cf8dfe8
PZ
12268 * Even though the task has never lived, the context and events have been
12269 * exposed through the child_list, so we must take care tearing it all down.
bbbee908 12270 */
cdd6c482 12271void perf_event_free_task(struct task_struct *task)
bbbee908 12272{
8dc85d54 12273 struct perf_event_context *ctx;
cdd6c482 12274 struct perf_event *event, *tmp;
8dc85d54 12275 int ctxn;
bbbee908 12276
8dc85d54
PZ
12277 for_each_task_context_nr(ctxn) {
12278 ctx = task->perf_event_ctxp[ctxn];
12279 if (!ctx)
12280 continue;
bbbee908 12281
8dc85d54 12282 mutex_lock(&ctx->mutex);
e552a838
PZ
12283 raw_spin_lock_irq(&ctx->lock);
12284 /*
12285 * Destroy the task <-> ctx relation and mark the context dead.
12286 *
12287 * This is important because even though the task hasn't been
12288 * exposed yet the context has been (through child_list).
12289 */
12290 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
12291 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
12292 put_task_struct(task); /* cannot be last */
12293 raw_spin_unlock_irq(&ctx->lock);
bbbee908 12294
15121c78 12295 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
8dc85d54 12296 perf_free_event(event, ctx);
bbbee908 12297
8dc85d54 12298 mutex_unlock(&ctx->mutex);
1cf8dfe8
PZ
12299
12300 /*
12301 * perf_event_release_kernel() could've stolen some of our
12302 * child events and still have them on its free_list. In that
12303 * case we must wait for these events to have been freed (in
12304 * particular all their references to this task must've been
12305 * dropped).
12306 *
12307 * Without this copy_process() will unconditionally free this
12308 * task (irrespective of its reference count) and
12309 * _free_event()'s put_task_struct(event->hw.target) will be a
12310 * use-after-free.
12311 *
12312 * Wait for all events to drop their context reference.
12313 */
12314 wait_var_event(&ctx->refcount, refcount_read(&ctx->refcount) == 1);
12315 put_ctx(ctx); /* must be last */
8dc85d54 12316 }
889ff015
FW
12317}
12318
4e231c79
PZ
12319void perf_event_delayed_put(struct task_struct *task)
12320{
12321 int ctxn;
12322
12323 for_each_task_context_nr(ctxn)
12324 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
12325}
12326
e03e7ee3 12327struct file *perf_event_get(unsigned int fd)
ffe8690c 12328{
02e5ad97 12329 struct file *file = fget(fd);
e03e7ee3
AS
12330 if (!file)
12331 return ERR_PTR(-EBADF);
ffe8690c 12332
e03e7ee3
AS
12333 if (file->f_op != &perf_fops) {
12334 fput(file);
12335 return ERR_PTR(-EBADF);
12336 }
ffe8690c 12337
e03e7ee3 12338 return file;
ffe8690c
KX
12339}
12340
f8d959a5
YS
12341const struct perf_event *perf_get_event(struct file *file)
12342{
12343 if (file->f_op != &perf_fops)
12344 return ERR_PTR(-EINVAL);
12345
12346 return file->private_data;
12347}
12348
ffe8690c
KX
12349const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
12350{
12351 if (!event)
12352 return ERR_PTR(-EINVAL);
12353
12354 return &event->attr;
12355}
12356
97dee4f3 12357/*
788faab7 12358 * Inherit an event from parent task to child task.
d8a8cfc7
PZ
12359 *
12360 * Returns:
12361 * - valid pointer on success
12362 * - NULL for orphaned events
12363 * - IS_ERR() on error
97dee4f3
PZ
12364 */
12365static struct perf_event *
12366inherit_event(struct perf_event *parent_event,
12367 struct task_struct *parent,
12368 struct perf_event_context *parent_ctx,
12369 struct task_struct *child,
12370 struct perf_event *group_leader,
12371 struct perf_event_context *child_ctx)
12372{
8ca2bd41 12373 enum perf_event_state parent_state = parent_event->state;
97dee4f3 12374 struct perf_event *child_event;
cee010ec 12375 unsigned long flags;
97dee4f3
PZ
12376
12377 /*
12378 * Instead of creating recursive hierarchies of events,
12379 * we link inherited events back to the original parent,
12380 * which has a filp for sure, which we use as the reference
12381 * count:
12382 */
12383 if (parent_event->parent)
12384 parent_event = parent_event->parent;
12385
12386 child_event = perf_event_alloc(&parent_event->attr,
12387 parent_event->cpu,
d580ff86 12388 child,
97dee4f3 12389 group_leader, parent_event,
79dff51e 12390 NULL, NULL, -1);
97dee4f3
PZ
12391 if (IS_ERR(child_event))
12392 return child_event;
a6fa941d 12393
313ccb96
JO
12394
12395 if ((child_event->attach_state & PERF_ATTACH_TASK_DATA) &&
12396 !child_ctx->task_ctx_data) {
12397 struct pmu *pmu = child_event->pmu;
12398
12399 child_ctx->task_ctx_data = kzalloc(pmu->task_ctx_size,
12400 GFP_KERNEL);
12401 if (!child_ctx->task_ctx_data) {
12402 free_event(child_event);
697d8778 12403 return ERR_PTR(-ENOMEM);
313ccb96
JO
12404 }
12405 }
12406
c6e5b732
PZ
12407 /*
12408 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
12409 * must be under the same lock in order to serialize against
12410 * perf_event_release_kernel(), such that either we must observe
12411 * is_orphaned_event() or they will observe us on the child_list.
12412 */
12413 mutex_lock(&parent_event->child_mutex);
fadfe7be
JO
12414 if (is_orphaned_event(parent_event) ||
12415 !atomic_long_inc_not_zero(&parent_event->refcount)) {
c6e5b732 12416 mutex_unlock(&parent_event->child_mutex);
313ccb96 12417 /* task_ctx_data is freed with child_ctx */
a6fa941d
AV
12418 free_event(child_event);
12419 return NULL;
12420 }
12421
97dee4f3
PZ
12422 get_ctx(child_ctx);
12423
12424 /*
12425 * Make the child state follow the state of the parent event,
12426 * not its attr.disabled bit. We hold the parent's mutex,
12427 * so we won't race with perf_event_{en, dis}able_family.
12428 */
1929def9 12429 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
97dee4f3
PZ
12430 child_event->state = PERF_EVENT_STATE_INACTIVE;
12431 else
12432 child_event->state = PERF_EVENT_STATE_OFF;
12433
12434 if (parent_event->attr.freq) {
12435 u64 sample_period = parent_event->hw.sample_period;
12436 struct hw_perf_event *hwc = &child_event->hw;
12437
12438 hwc->sample_period = sample_period;
12439 hwc->last_period = sample_period;
12440
12441 local64_set(&hwc->period_left, sample_period);
12442 }
12443
12444 child_event->ctx = child_ctx;
12445 child_event->overflow_handler = parent_event->overflow_handler;
4dc0da86
AK
12446 child_event->overflow_handler_context
12447 = parent_event->overflow_handler_context;
97dee4f3 12448
614b6780
TG
12449 /*
12450 * Precalculate sample_data sizes
12451 */
12452 perf_event__header_size(child_event);
6844c09d 12453 perf_event__id_header_size(child_event);
614b6780 12454
97dee4f3
PZ
12455 /*
12456 * Link it up in the child's context:
12457 */
cee010ec 12458 raw_spin_lock_irqsave(&child_ctx->lock, flags);
97dee4f3 12459 add_event_to_ctx(child_event, child_ctx);
cee010ec 12460 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
97dee4f3 12461
97dee4f3
PZ
12462 /*
12463 * Link this into the parent event's child list
12464 */
97dee4f3
PZ
12465 list_add_tail(&child_event->child_list, &parent_event->child_list);
12466 mutex_unlock(&parent_event->child_mutex);
12467
12468 return child_event;
12469}
12470
d8a8cfc7
PZ
12471/*
12472 * Inherits an event group.
12473 *
12474 * This will quietly suppress orphaned events; !inherit_event() is not an error.
12475 * This matches with perf_event_release_kernel() removing all child events.
12476 *
12477 * Returns:
12478 * - 0 on success
12479 * - <0 on error
12480 */
97dee4f3
PZ
12481static int inherit_group(struct perf_event *parent_event,
12482 struct task_struct *parent,
12483 struct perf_event_context *parent_ctx,
12484 struct task_struct *child,
12485 struct perf_event_context *child_ctx)
12486{
12487 struct perf_event *leader;
12488 struct perf_event *sub;
12489 struct perf_event *child_ctr;
12490
12491 leader = inherit_event(parent_event, parent, parent_ctx,
12492 child, NULL, child_ctx);
12493 if (IS_ERR(leader))
12494 return PTR_ERR(leader);
d8a8cfc7
PZ
12495 /*
12496 * @leader can be NULL here because of is_orphaned_event(). In this
12497 * case inherit_event() will create individual events, similar to what
12498 * perf_group_detach() would do anyway.
12499 */
edb39592 12500 for_each_sibling_event(sub, parent_event) {
97dee4f3
PZ
12501 child_ctr = inherit_event(sub, parent, parent_ctx,
12502 child, leader, child_ctx);
12503 if (IS_ERR(child_ctr))
12504 return PTR_ERR(child_ctr);
f733c6b5 12505
00496fe5 12506 if (sub->aux_event == parent_event && child_ctr &&
f733c6b5
AS
12507 !perf_get_aux_event(child_ctr, leader))
12508 return -EINVAL;
97dee4f3
PZ
12509 }
12510 return 0;
889ff015
FW
12511}
12512
d8a8cfc7
PZ
12513/*
12514 * Creates the child task context and tries to inherit the event-group.
12515 *
12516 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
12517 * inherited_all set when we 'fail' to inherit an orphaned event; this is
12518 * consistent with perf_event_release_kernel() removing all child events.
12519 *
12520 * Returns:
12521 * - 0 on success
12522 * - <0 on error
12523 */
889ff015
FW
12524static int
12525inherit_task_group(struct perf_event *event, struct task_struct *parent,
12526 struct perf_event_context *parent_ctx,
8dc85d54 12527 struct task_struct *child, int ctxn,
889ff015
FW
12528 int *inherited_all)
12529{
12530 int ret;
8dc85d54 12531 struct perf_event_context *child_ctx;
889ff015
FW
12532
12533 if (!event->attr.inherit) {
12534 *inherited_all = 0;
12535 return 0;
bbbee908
PZ
12536 }
12537
fe4b04fa 12538 child_ctx = child->perf_event_ctxp[ctxn];
889ff015
FW
12539 if (!child_ctx) {
12540 /*
12541 * This is executed from the parent task context, so
12542 * inherit events that have been marked for cloning.
12543 * First allocate and initialize a context for the
12544 * child.
12545 */
734df5ab 12546 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
889ff015
FW
12547 if (!child_ctx)
12548 return -ENOMEM;
bbbee908 12549
8dc85d54 12550 child->perf_event_ctxp[ctxn] = child_ctx;
889ff015
FW
12551 }
12552
12553 ret = inherit_group(event, parent, parent_ctx,
12554 child, child_ctx);
12555
12556 if (ret)
12557 *inherited_all = 0;
12558
12559 return ret;
bbbee908
PZ
12560}
12561
9b51f66d 12562/*
cdd6c482 12563 * Initialize the perf_event context in task_struct
9b51f66d 12564 */
985c8dcb 12565static int perf_event_init_context(struct task_struct *child, int ctxn)
9b51f66d 12566{
889ff015 12567 struct perf_event_context *child_ctx, *parent_ctx;
cdd6c482
IM
12568 struct perf_event_context *cloned_ctx;
12569 struct perf_event *event;
9b51f66d 12570 struct task_struct *parent = current;
564c2b21 12571 int inherited_all = 1;
dddd3379 12572 unsigned long flags;
6ab423e0 12573 int ret = 0;
9b51f66d 12574
8dc85d54 12575 if (likely(!parent->perf_event_ctxp[ctxn]))
6ab423e0
PZ
12576 return 0;
12577
ad3a37de 12578 /*
25346b93
PM
12579 * If the parent's context is a clone, pin it so it won't get
12580 * swapped under us.
ad3a37de 12581 */
8dc85d54 12582 parent_ctx = perf_pin_task_context(parent, ctxn);
ffb4ef21
PZ
12583 if (!parent_ctx)
12584 return 0;
25346b93 12585
ad3a37de
PM
12586 /*
12587 * No need to check if parent_ctx != NULL here; since we saw
12588 * it non-NULL earlier, the only reason for it to become NULL
12589 * is if we exit, and since we're currently in the middle of
12590 * a fork we can't be exiting at the same time.
12591 */
ad3a37de 12592
9b51f66d
IM
12593 /*
12594 * Lock the parent list. No need to lock the child - not PID
12595 * hashed yet and not running, so nobody can access it.
12596 */
d859e29f 12597 mutex_lock(&parent_ctx->mutex);
9b51f66d
IM
12598
12599 /*
12600 * We dont have to disable NMIs - we are only looking at
12601 * the list, not manipulating it:
12602 */
6e6804d2 12603 perf_event_groups_for_each(event, &parent_ctx->pinned_groups) {
8dc85d54
PZ
12604 ret = inherit_task_group(event, parent, parent_ctx,
12605 child, ctxn, &inherited_all);
889ff015 12606 if (ret)
e7cc4865 12607 goto out_unlock;
889ff015 12608 }
b93f7978 12609
dddd3379
TG
12610 /*
12611 * We can't hold ctx->lock when iterating the ->flexible_group list due
12612 * to allocations, but we need to prevent rotation because
12613 * rotate_ctx() will change the list from interrupt context.
12614 */
12615 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
12616 parent_ctx->rotate_disable = 1;
12617 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
12618
6e6804d2 12619 perf_event_groups_for_each(event, &parent_ctx->flexible_groups) {
8dc85d54
PZ
12620 ret = inherit_task_group(event, parent, parent_ctx,
12621 child, ctxn, &inherited_all);
889ff015 12622 if (ret)
e7cc4865 12623 goto out_unlock;
564c2b21
PM
12624 }
12625
dddd3379
TG
12626 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
12627 parent_ctx->rotate_disable = 0;
dddd3379 12628
8dc85d54 12629 child_ctx = child->perf_event_ctxp[ctxn];
889ff015 12630
05cbaa28 12631 if (child_ctx && inherited_all) {
564c2b21
PM
12632 /*
12633 * Mark the child context as a clone of the parent
12634 * context, or of whatever the parent is a clone of.
c5ed5145
PZ
12635 *
12636 * Note that if the parent is a clone, the holding of
12637 * parent_ctx->lock avoids it from being uncloned.
564c2b21 12638 */
c5ed5145 12639 cloned_ctx = parent_ctx->parent_ctx;
ad3a37de
PM
12640 if (cloned_ctx) {
12641 child_ctx->parent_ctx = cloned_ctx;
25346b93 12642 child_ctx->parent_gen = parent_ctx->parent_gen;
564c2b21
PM
12643 } else {
12644 child_ctx->parent_ctx = parent_ctx;
12645 child_ctx->parent_gen = parent_ctx->generation;
12646 }
12647 get_ctx(child_ctx->parent_ctx);
9b51f66d
IM
12648 }
12649
c5ed5145 12650 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
e7cc4865 12651out_unlock:
d859e29f 12652 mutex_unlock(&parent_ctx->mutex);
6ab423e0 12653
25346b93 12654 perf_unpin_context(parent_ctx);
fe4b04fa 12655 put_ctx(parent_ctx);
ad3a37de 12656
6ab423e0 12657 return ret;
9b51f66d
IM
12658}
12659
8dc85d54
PZ
12660/*
12661 * Initialize the perf_event context in task_struct
12662 */
12663int perf_event_init_task(struct task_struct *child)
12664{
12665 int ctxn, ret;
12666
8550d7cb
ON
12667 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
12668 mutex_init(&child->perf_event_mutex);
12669 INIT_LIST_HEAD(&child->perf_event_list);
12670
8dc85d54
PZ
12671 for_each_task_context_nr(ctxn) {
12672 ret = perf_event_init_context(child, ctxn);
6c72e350
PZ
12673 if (ret) {
12674 perf_event_free_task(child);
8dc85d54 12675 return ret;
6c72e350 12676 }
8dc85d54
PZ
12677 }
12678
12679 return 0;
12680}
12681
220b140b
PM
12682static void __init perf_event_init_all_cpus(void)
12683{
b28ab83c 12684 struct swevent_htable *swhash;
220b140b 12685 int cpu;
220b140b 12686
a63fbed7
TG
12687 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
12688
220b140b 12689 for_each_possible_cpu(cpu) {
b28ab83c
PZ
12690 swhash = &per_cpu(swevent_htable, cpu);
12691 mutex_init(&swhash->hlist_mutex);
2fde4f94 12692 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
f2fb6bef
KL
12693
12694 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
12695 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
e48c1788 12696
058fe1c0
DCC
12697#ifdef CONFIG_CGROUP_PERF
12698 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
12699#endif
e48c1788 12700 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
220b140b
PM
12701 }
12702}
12703
d18bf422 12704static void perf_swevent_init_cpu(unsigned int cpu)
0793a61d 12705{
108b02cf 12706 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
0793a61d 12707
b28ab83c 12708 mutex_lock(&swhash->hlist_mutex);
059fcd8c 12709 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
76e1d904
FW
12710 struct swevent_hlist *hlist;
12711
b28ab83c
PZ
12712 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
12713 WARN_ON(!hlist);
12714 rcu_assign_pointer(swhash->swevent_hlist, hlist);
76e1d904 12715 }
b28ab83c 12716 mutex_unlock(&swhash->hlist_mutex);
0793a61d
TG
12717}
12718
2965faa5 12719#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
108b02cf 12720static void __perf_event_exit_context(void *__info)
0793a61d 12721{
108b02cf 12722 struct perf_event_context *ctx = __info;
fae3fde6
PZ
12723 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
12724 struct perf_event *event;
0793a61d 12725
fae3fde6 12726 raw_spin_lock(&ctx->lock);
0ee098c9 12727 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
fae3fde6 12728 list_for_each_entry(event, &ctx->event_list, event_entry)
45a0e07a 12729 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
fae3fde6 12730 raw_spin_unlock(&ctx->lock);
0793a61d 12731}
108b02cf
PZ
12732
12733static void perf_event_exit_cpu_context(int cpu)
12734{
a63fbed7 12735 struct perf_cpu_context *cpuctx;
108b02cf
PZ
12736 struct perf_event_context *ctx;
12737 struct pmu *pmu;
108b02cf 12738
a63fbed7
TG
12739 mutex_lock(&pmus_lock);
12740 list_for_each_entry(pmu, &pmus, entry) {
12741 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
12742 ctx = &cpuctx->ctx;
108b02cf
PZ
12743
12744 mutex_lock(&ctx->mutex);
12745 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
a63fbed7 12746 cpuctx->online = 0;
108b02cf
PZ
12747 mutex_unlock(&ctx->mutex);
12748 }
a63fbed7
TG
12749 cpumask_clear_cpu(cpu, perf_online_mask);
12750 mutex_unlock(&pmus_lock);
108b02cf 12751}
00e16c3d
TG
12752#else
12753
12754static void perf_event_exit_cpu_context(int cpu) { }
12755
12756#endif
108b02cf 12757
a63fbed7
TG
12758int perf_event_init_cpu(unsigned int cpu)
12759{
12760 struct perf_cpu_context *cpuctx;
12761 struct perf_event_context *ctx;
12762 struct pmu *pmu;
12763
12764 perf_swevent_init_cpu(cpu);
12765
12766 mutex_lock(&pmus_lock);
12767 cpumask_set_cpu(cpu, perf_online_mask);
12768 list_for_each_entry(pmu, &pmus, entry) {
12769 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
12770 ctx = &cpuctx->ctx;
12771
12772 mutex_lock(&ctx->mutex);
12773 cpuctx->online = 1;
12774 mutex_unlock(&ctx->mutex);
12775 }
12776 mutex_unlock(&pmus_lock);
12777
12778 return 0;
12779}
12780
00e16c3d 12781int perf_event_exit_cpu(unsigned int cpu)
0793a61d 12782{
e3703f8c 12783 perf_event_exit_cpu_context(cpu);
00e16c3d 12784 return 0;
0793a61d 12785}
0793a61d 12786
c277443c
PZ
12787static int
12788perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
12789{
12790 int cpu;
12791
12792 for_each_online_cpu(cpu)
12793 perf_event_exit_cpu(cpu);
12794
12795 return NOTIFY_OK;
12796}
12797
12798/*
12799 * Run the perf reboot notifier at the very last possible moment so that
12800 * the generic watchdog code runs as long as possible.
12801 */
12802static struct notifier_block perf_reboot_notifier = {
12803 .notifier_call = perf_reboot,
12804 .priority = INT_MIN,
12805};
12806
cdd6c482 12807void __init perf_event_init(void)
0793a61d 12808{
3c502e7a
JW
12809 int ret;
12810
2e80a82a
PZ
12811 idr_init(&pmu_idr);
12812
220b140b 12813 perf_event_init_all_cpus();
b0a873eb 12814 init_srcu_struct(&pmus_srcu);
2e80a82a
PZ
12815 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
12816 perf_pmu_register(&perf_cpu_clock, NULL, -1);
12817 perf_pmu_register(&perf_task_clock, NULL, -1);
b0a873eb 12818 perf_tp_register();
00e16c3d 12819 perf_event_init_cpu(smp_processor_id());
c277443c 12820 register_reboot_notifier(&perf_reboot_notifier);
3c502e7a
JW
12821
12822 ret = init_hw_breakpoint();
12823 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
b2029520 12824
b01c3a00
JO
12825 /*
12826 * Build time assertion that we keep the data_head at the intended
12827 * location. IOW, validation we got the __reserved[] size right.
12828 */
12829 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
12830 != 1024);
0793a61d 12831}
abe43400 12832
fd979c01
CS
12833ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
12834 char *page)
12835{
12836 struct perf_pmu_events_attr *pmu_attr =
12837 container_of(attr, struct perf_pmu_events_attr, attr);
12838
12839 if (pmu_attr->event_str)
12840 return sprintf(page, "%s\n", pmu_attr->event_str);
12841
12842 return 0;
12843}
675965b0 12844EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
fd979c01 12845
abe43400
PZ
12846static int __init perf_event_sysfs_init(void)
12847{
12848 struct pmu *pmu;
12849 int ret;
12850
12851 mutex_lock(&pmus_lock);
12852
12853 ret = bus_register(&pmu_bus);
12854 if (ret)
12855 goto unlock;
12856
12857 list_for_each_entry(pmu, &pmus, entry) {
12858 if (!pmu->name || pmu->type < 0)
12859 continue;
12860
12861 ret = pmu_dev_alloc(pmu);
12862 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
12863 }
12864 pmu_bus_running = 1;
12865 ret = 0;
12866
12867unlock:
12868 mutex_unlock(&pmus_lock);
12869
12870 return ret;
12871}
12872device_initcall(perf_event_sysfs_init);
e5d1367f
SE
12873
12874#ifdef CONFIG_CGROUP_PERF
eb95419b
TH
12875static struct cgroup_subsys_state *
12876perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
e5d1367f
SE
12877{
12878 struct perf_cgroup *jc;
e5d1367f 12879
1b15d055 12880 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
e5d1367f
SE
12881 if (!jc)
12882 return ERR_PTR(-ENOMEM);
12883
e5d1367f
SE
12884 jc->info = alloc_percpu(struct perf_cgroup_info);
12885 if (!jc->info) {
12886 kfree(jc);
12887 return ERR_PTR(-ENOMEM);
12888 }
12889
e5d1367f
SE
12890 return &jc->css;
12891}
12892
eb95419b 12893static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
e5d1367f 12894{
eb95419b
TH
12895 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
12896
e5d1367f
SE
12897 free_percpu(jc->info);
12898 kfree(jc);
12899}
12900
96aaab68
NK
12901static int perf_cgroup_css_online(struct cgroup_subsys_state *css)
12902{
12903 perf_event_cgroup(css->cgroup);
12904 return 0;
12905}
12906
e5d1367f
SE
12907static int __perf_cgroup_move(void *info)
12908{
12909 struct task_struct *task = info;
ddaaf4e2 12910 rcu_read_lock();
e5d1367f 12911 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
ddaaf4e2 12912 rcu_read_unlock();
e5d1367f
SE
12913 return 0;
12914}
12915
1f7dd3e5 12916static void perf_cgroup_attach(struct cgroup_taskset *tset)
e5d1367f 12917{
bb9d97b6 12918 struct task_struct *task;
1f7dd3e5 12919 struct cgroup_subsys_state *css;
bb9d97b6 12920
1f7dd3e5 12921 cgroup_taskset_for_each(task, css, tset)
bb9d97b6 12922 task_function_call(task, __perf_cgroup_move, task);
e5d1367f
SE
12923}
12924
073219e9 12925struct cgroup_subsys perf_event_cgrp_subsys = {
92fb9748
TH
12926 .css_alloc = perf_cgroup_css_alloc,
12927 .css_free = perf_cgroup_css_free,
96aaab68 12928 .css_online = perf_cgroup_css_online,
bb9d97b6 12929 .attach = perf_cgroup_attach,
968ebff1
TH
12930 /*
12931 * Implicitly enable on dfl hierarchy so that perf events can
12932 * always be filtered by cgroup2 path as long as perf_event
12933 * controller is not mounted on a legacy hierarchy.
12934 */
12935 .implicit_on_dfl = true,
8cfd8147 12936 .threaded = true,
e5d1367f
SE
12937};
12938#endif /* CONFIG_CGROUP_PERF */