]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - kernel/events/core.c
perf/x86/cstate: Add Jasper Lake CPU 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 */
d3296fb3
JO
6937 if (current->mm != NULL) {
6938 pagefault_disable();
6939 if (__get_user_pages_fast(virt, 1, 0, &p) == 1)
6940 phys_addr = page_to_phys(p) + virt % PAGE_SIZE;
6941 pagefault_enable();
6942 }
fc7ce9c7
KL
6943
6944 if (p)
6945 put_page(p);
6946 }
6947
6948 return phys_addr;
6949}
6950
99e818cc
JO
6951static struct perf_callchain_entry __empty_callchain = { .nr = 0, };
6952
6cbc304f 6953struct perf_callchain_entry *
8cf7e0e2
JO
6954perf_callchain(struct perf_event *event, struct pt_regs *regs)
6955{
6956 bool kernel = !event->attr.exclude_callchain_kernel;
6957 bool user = !event->attr.exclude_callchain_user;
6958 /* Disallow cross-task user callchains. */
6959 bool crosstask = event->ctx->task && event->ctx->task != current;
6960 const u32 max_stack = event->attr.sample_max_stack;
99e818cc 6961 struct perf_callchain_entry *callchain;
8cf7e0e2
JO
6962
6963 if (!kernel && !user)
99e818cc 6964 return &__empty_callchain;
8cf7e0e2 6965
99e818cc
JO
6966 callchain = get_perf_callchain(regs, 0, kernel, user,
6967 max_stack, crosstask, true);
6968 return callchain ?: &__empty_callchain;
8cf7e0e2
JO
6969}
6970
5622f295
MM
6971void perf_prepare_sample(struct perf_event_header *header,
6972 struct perf_sample_data *data,
cdd6c482 6973 struct perf_event *event,
5622f295 6974 struct pt_regs *regs)
7b732a75 6975{
cdd6c482 6976 u64 sample_type = event->attr.sample_type;
7b732a75 6977
cdd6c482 6978 header->type = PERF_RECORD_SAMPLE;
c320c7b7 6979 header->size = sizeof(*header) + event->header_size;
5622f295
MM
6980
6981 header->misc = 0;
6982 header->misc |= perf_misc_flags(regs);
6fab0192 6983
c980d109 6984 __perf_event_header__init_id(header, data, event);
6844c09d 6985
c320c7b7 6986 if (sample_type & PERF_SAMPLE_IP)
5622f295
MM
6987 data->ip = perf_instruction_pointer(regs);
6988
b23f3325 6989 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5622f295 6990 int size = 1;
394ee076 6991
6cbc304f
PZ
6992 if (!(sample_type & __PERF_SAMPLE_CALLCHAIN_EARLY))
6993 data->callchain = perf_callchain(event, regs);
6994
99e818cc 6995 size += data->callchain->nr;
5622f295
MM
6996
6997 header->size += size * sizeof(u64);
394ee076
PZ
6998 }
6999
3a43ce68 7000 if (sample_type & PERF_SAMPLE_RAW) {
7e3f977e
DB
7001 struct perf_raw_record *raw = data->raw;
7002 int size;
7003
7004 if (raw) {
7005 struct perf_raw_frag *frag = &raw->frag;
7006 u32 sum = 0;
7007
7008 do {
7009 sum += frag->size;
7010 if (perf_raw_frag_last(frag))
7011 break;
7012 frag = frag->next;
7013 } while (1);
7014
7015 size = round_up(sum + sizeof(u32), sizeof(u64));
7016 raw->size = size - sizeof(u32);
7017 frag->pad = raw->size - sum;
7018 } else {
7019 size = sizeof(u64);
7020 }
a044560c 7021
7e3f977e 7022 header->size += size;
7f453c24 7023 }
bce38cd5
SE
7024
7025 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
7026 int size = sizeof(u64); /* nr */
7027 if (data->br_stack) {
bbfd5e4f
KL
7028 if (perf_sample_save_hw_index(event))
7029 size += sizeof(u64);
7030
bce38cd5
SE
7031 size += data->br_stack->nr
7032 * sizeof(struct perf_branch_entry);
7033 }
7034 header->size += size;
7035 }
4018994f 7036
2565711f 7037 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
88a7c26a
AL
7038 perf_sample_regs_user(&data->regs_user, regs,
7039 &data->regs_user_copy);
2565711f 7040
4018994f
JO
7041 if (sample_type & PERF_SAMPLE_REGS_USER) {
7042 /* regs dump ABI info */
7043 int size = sizeof(u64);
7044
4018994f
JO
7045 if (data->regs_user.regs) {
7046 u64 mask = event->attr.sample_regs_user;
7047 size += hweight64(mask) * sizeof(u64);
7048 }
7049
7050 header->size += size;
7051 }
c5ebcedb
JO
7052
7053 if (sample_type & PERF_SAMPLE_STACK_USER) {
7054 /*
9f014e3a 7055 * Either we need PERF_SAMPLE_STACK_USER bit to be always
c5ebcedb
JO
7056 * processed as the last one or have additional check added
7057 * in case new sample type is added, because we could eat
7058 * up the rest of the sample size.
7059 */
c5ebcedb
JO
7060 u16 stack_size = event->attr.sample_stack_user;
7061 u16 size = sizeof(u64);
7062
c5ebcedb 7063 stack_size = perf_sample_ustack_size(stack_size, header->size,
2565711f 7064 data->regs_user.regs);
c5ebcedb
JO
7065
7066 /*
7067 * If there is something to dump, add space for the dump
7068 * itself and for the field that tells the dynamic size,
7069 * which is how many have been actually dumped.
7070 */
7071 if (stack_size)
7072 size += sizeof(u64) + stack_size;
7073
7074 data->stack_user_size = stack_size;
7075 header->size += size;
7076 }
60e2364e
SE
7077
7078 if (sample_type & PERF_SAMPLE_REGS_INTR) {
7079 /* regs dump ABI info */
7080 int size = sizeof(u64);
7081
7082 perf_sample_regs_intr(&data->regs_intr, regs);
7083
7084 if (data->regs_intr.regs) {
7085 u64 mask = event->attr.sample_regs_intr;
7086
7087 size += hweight64(mask) * sizeof(u64);
7088 }
7089
7090 header->size += size;
7091 }
fc7ce9c7
KL
7092
7093 if (sample_type & PERF_SAMPLE_PHYS_ADDR)
7094 data->phys_addr = perf_virt_to_phys(data->addr);
a4faf00d 7095
6546b19f
NK
7096#ifdef CONFIG_CGROUP_PERF
7097 if (sample_type & PERF_SAMPLE_CGROUP) {
7098 struct cgroup *cgrp;
7099
7100 /* protected by RCU */
7101 cgrp = task_css_check(current, perf_event_cgrp_id, 1)->cgroup;
7102 data->cgroup = cgroup_id(cgrp);
7103 }
7104#endif
7105
a4faf00d
AS
7106 if (sample_type & PERF_SAMPLE_AUX) {
7107 u64 size;
7108
7109 header->size += sizeof(u64); /* size */
7110
7111 /*
7112 * Given the 16bit nature of header::size, an AUX sample can
7113 * easily overflow it, what with all the preceding sample bits.
7114 * Make sure this doesn't happen by using up to U16_MAX bytes
7115 * per sample in total (rounded down to 8 byte boundary).
7116 */
7117 size = min_t(size_t, U16_MAX - header->size,
7118 event->attr.aux_sample_size);
7119 size = rounddown(size, 8);
7120 size = perf_prepare_sample_aux(event, data, size);
7121
7122 WARN_ON_ONCE(size + header->size > U16_MAX);
7123 header->size += size;
7124 }
7125 /*
7126 * If you're adding more sample types here, you likely need to do
7127 * something about the overflowing header::size, like repurpose the
7128 * lowest 3 bits of size, which should be always zero at the moment.
7129 * This raises a more important question, do we really need 512k sized
7130 * samples and why, so good argumentation is in order for whatever you
7131 * do here next.
7132 */
7133 WARN_ON_ONCE(header->size & 7);
5622f295 7134}
7f453c24 7135
56201969 7136static __always_inline int
9ecda41a
WN
7137__perf_event_output(struct perf_event *event,
7138 struct perf_sample_data *data,
7139 struct pt_regs *regs,
7140 int (*output_begin)(struct perf_output_handle *,
7141 struct perf_event *,
7142 unsigned int))
5622f295
MM
7143{
7144 struct perf_output_handle handle;
7145 struct perf_event_header header;
56201969 7146 int err;
689802b2 7147
927c7a9e
FW
7148 /* protect the callchain buffers */
7149 rcu_read_lock();
7150
cdd6c482 7151 perf_prepare_sample(&header, data, event, regs);
5c148194 7152
56201969
ACM
7153 err = output_begin(&handle, event, header.size);
7154 if (err)
927c7a9e 7155 goto exit;
0322cd6e 7156
cdd6c482 7157 perf_output_sample(&handle, &header, data, event);
f413cdb8 7158
8a057d84 7159 perf_output_end(&handle);
927c7a9e
FW
7160
7161exit:
7162 rcu_read_unlock();
56201969 7163 return err;
0322cd6e
PZ
7164}
7165
9ecda41a
WN
7166void
7167perf_event_output_forward(struct perf_event *event,
7168 struct perf_sample_data *data,
7169 struct pt_regs *regs)
7170{
7171 __perf_event_output(event, data, regs, perf_output_begin_forward);
7172}
7173
7174void
7175perf_event_output_backward(struct perf_event *event,
7176 struct perf_sample_data *data,
7177 struct pt_regs *regs)
7178{
7179 __perf_event_output(event, data, regs, perf_output_begin_backward);
7180}
7181
56201969 7182int
9ecda41a
WN
7183perf_event_output(struct perf_event *event,
7184 struct perf_sample_data *data,
7185 struct pt_regs *regs)
7186{
56201969 7187 return __perf_event_output(event, data, regs, perf_output_begin);
9ecda41a
WN
7188}
7189
38b200d6 7190/*
cdd6c482 7191 * read event_id
38b200d6
PZ
7192 */
7193
7194struct perf_read_event {
7195 struct perf_event_header header;
7196
7197 u32 pid;
7198 u32 tid;
38b200d6
PZ
7199};
7200
7201static void
cdd6c482 7202perf_event_read_event(struct perf_event *event,
38b200d6
PZ
7203 struct task_struct *task)
7204{
7205 struct perf_output_handle handle;
c980d109 7206 struct perf_sample_data sample;
dfc65094 7207 struct perf_read_event read_event = {
38b200d6 7208 .header = {
cdd6c482 7209 .type = PERF_RECORD_READ,
38b200d6 7210 .misc = 0,
c320c7b7 7211 .size = sizeof(read_event) + event->read_size,
38b200d6 7212 },
cdd6c482
IM
7213 .pid = perf_event_pid(event, task),
7214 .tid = perf_event_tid(event, task),
38b200d6 7215 };
3dab77fb 7216 int ret;
38b200d6 7217
c980d109 7218 perf_event_header__init_id(&read_event.header, &sample, event);
a7ac67ea 7219 ret = perf_output_begin(&handle, event, read_event.header.size);
38b200d6
PZ
7220 if (ret)
7221 return;
7222
dfc65094 7223 perf_output_put(&handle, read_event);
cdd6c482 7224 perf_output_read(&handle, event);
c980d109 7225 perf_event__output_id_sample(event, &handle, &sample);
3dab77fb 7226
38b200d6
PZ
7227 perf_output_end(&handle);
7228}
7229
aab5b71e 7230typedef void (perf_iterate_f)(struct perf_event *event, void *data);
52d857a8
JO
7231
7232static void
aab5b71e
PZ
7233perf_iterate_ctx(struct perf_event_context *ctx,
7234 perf_iterate_f output,
b73e4fef 7235 void *data, bool all)
52d857a8
JO
7236{
7237 struct perf_event *event;
7238
7239 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
b73e4fef
AS
7240 if (!all) {
7241 if (event->state < PERF_EVENT_STATE_INACTIVE)
7242 continue;
7243 if (!event_filter_match(event))
7244 continue;
7245 }
7246
67516844 7247 output(event, data);
52d857a8
JO
7248 }
7249}
7250
aab5b71e 7251static void perf_iterate_sb_cpu(perf_iterate_f output, void *data)
f2fb6bef
KL
7252{
7253 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events);
7254 struct perf_event *event;
7255
7256 list_for_each_entry_rcu(event, &pel->list, sb_list) {
0b8f1e2e
PZ
7257 /*
7258 * Skip events that are not fully formed yet; ensure that
7259 * if we observe event->ctx, both event and ctx will be
7260 * complete enough. See perf_install_in_context().
7261 */
7262 if (!smp_load_acquire(&event->ctx))
7263 continue;
7264
f2fb6bef
KL
7265 if (event->state < PERF_EVENT_STATE_INACTIVE)
7266 continue;
7267 if (!event_filter_match(event))
7268 continue;
7269 output(event, data);
7270 }
7271}
7272
aab5b71e
PZ
7273/*
7274 * Iterate all events that need to receive side-band events.
7275 *
7276 * For new callers; ensure that account_pmu_sb_event() includes
7277 * your event, otherwise it might not get delivered.
7278 */
52d857a8 7279static void
aab5b71e 7280perf_iterate_sb(perf_iterate_f output, void *data,
52d857a8
JO
7281 struct perf_event_context *task_ctx)
7282{
52d857a8 7283 struct perf_event_context *ctx;
52d857a8
JO
7284 int ctxn;
7285
aab5b71e
PZ
7286 rcu_read_lock();
7287 preempt_disable();
7288
4e93ad60 7289 /*
aab5b71e
PZ
7290 * If we have task_ctx != NULL we only notify the task context itself.
7291 * The task_ctx is set only for EXIT events before releasing task
4e93ad60
JO
7292 * context.
7293 */
7294 if (task_ctx) {
aab5b71e
PZ
7295 perf_iterate_ctx(task_ctx, output, data, false);
7296 goto done;
4e93ad60
JO
7297 }
7298
aab5b71e 7299 perf_iterate_sb_cpu(output, data);
f2fb6bef
KL
7300
7301 for_each_task_context_nr(ctxn) {
52d857a8
JO
7302 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
7303 if (ctx)
aab5b71e 7304 perf_iterate_ctx(ctx, output, data, false);
52d857a8 7305 }
aab5b71e 7306done:
f2fb6bef 7307 preempt_enable();
52d857a8 7308 rcu_read_unlock();
95ff4ca2
AS
7309}
7310
375637bc
AS
7311/*
7312 * Clear all file-based filters at exec, they'll have to be
7313 * re-instated when/if these objects are mmapped again.
7314 */
7315static void perf_event_addr_filters_exec(struct perf_event *event, void *data)
7316{
7317 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
7318 struct perf_addr_filter *filter;
7319 unsigned int restart = 0, count = 0;
7320 unsigned long flags;
7321
7322 if (!has_addr_filter(event))
7323 return;
7324
7325 raw_spin_lock_irqsave(&ifh->lock, flags);
7326 list_for_each_entry(filter, &ifh->list, entry) {
9511bce9 7327 if (filter->path.dentry) {
c60f83b8
AS
7328 event->addr_filter_ranges[count].start = 0;
7329 event->addr_filter_ranges[count].size = 0;
375637bc
AS
7330 restart++;
7331 }
7332
7333 count++;
7334 }
7335
7336 if (restart)
7337 event->addr_filters_gen++;
7338 raw_spin_unlock_irqrestore(&ifh->lock, flags);
7339
7340 if (restart)
767ae086 7341 perf_event_stop(event, 1);
375637bc
AS
7342}
7343
7344void perf_event_exec(void)
7345{
7346 struct perf_event_context *ctx;
7347 int ctxn;
7348
7349 rcu_read_lock();
7350 for_each_task_context_nr(ctxn) {
7351 ctx = current->perf_event_ctxp[ctxn];
7352 if (!ctx)
7353 continue;
7354
7355 perf_event_enable_on_exec(ctxn);
7356
aab5b71e 7357 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL,
375637bc
AS
7358 true);
7359 }
7360 rcu_read_unlock();
7361}
7362
95ff4ca2 7363struct remote_output {
56de4e8f 7364 struct perf_buffer *rb;
95ff4ca2
AS
7365 int err;
7366};
7367
7368static void __perf_event_output_stop(struct perf_event *event, void *data)
7369{
7370 struct perf_event *parent = event->parent;
7371 struct remote_output *ro = data;
56de4e8f 7372 struct perf_buffer *rb = ro->rb;
375637bc
AS
7373 struct stop_event_data sd = {
7374 .event = event,
7375 };
95ff4ca2
AS
7376
7377 if (!has_aux(event))
7378 return;
7379
7380 if (!parent)
7381 parent = event;
7382
7383 /*
7384 * In case of inheritance, it will be the parent that links to the
767ae086
AS
7385 * ring-buffer, but it will be the child that's actually using it.
7386 *
7387 * We are using event::rb to determine if the event should be stopped,
7388 * however this may race with ring_buffer_attach() (through set_output),
7389 * which will make us skip the event that actually needs to be stopped.
7390 * So ring_buffer_attach() has to stop an aux event before re-assigning
7391 * its rb pointer.
95ff4ca2
AS
7392 */
7393 if (rcu_dereference(parent->rb) == rb)
375637bc 7394 ro->err = __perf_event_stop(&sd);
95ff4ca2
AS
7395}
7396
7397static int __perf_pmu_output_stop(void *info)
7398{
7399 struct perf_event *event = info;
f3a519e4 7400 struct pmu *pmu = event->ctx->pmu;
8b6a3fe8 7401 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
95ff4ca2
AS
7402 struct remote_output ro = {
7403 .rb = event->rb,
7404 };
7405
7406 rcu_read_lock();
aab5b71e 7407 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false);
95ff4ca2 7408 if (cpuctx->task_ctx)
aab5b71e 7409 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop,
b73e4fef 7410 &ro, false);
95ff4ca2
AS
7411 rcu_read_unlock();
7412
7413 return ro.err;
7414}
7415
7416static void perf_pmu_output_stop(struct perf_event *event)
7417{
7418 struct perf_event *iter;
7419 int err, cpu;
7420
7421restart:
7422 rcu_read_lock();
7423 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) {
7424 /*
7425 * For per-CPU events, we need to make sure that neither they
7426 * nor their children are running; for cpu==-1 events it's
7427 * sufficient to stop the event itself if it's active, since
7428 * it can't have children.
7429 */
7430 cpu = iter->cpu;
7431 if (cpu == -1)
7432 cpu = READ_ONCE(iter->oncpu);
7433
7434 if (cpu == -1)
7435 continue;
7436
7437 err = cpu_function_call(cpu, __perf_pmu_output_stop, event);
7438 if (err == -EAGAIN) {
7439 rcu_read_unlock();
7440 goto restart;
7441 }
7442 }
7443 rcu_read_unlock();
52d857a8
JO
7444}
7445
60313ebe 7446/*
9f498cc5
PZ
7447 * task tracking -- fork/exit
7448 *
13d7a241 7449 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
60313ebe
PZ
7450 */
7451
9f498cc5 7452struct perf_task_event {
3a80b4a3 7453 struct task_struct *task;
cdd6c482 7454 struct perf_event_context *task_ctx;
60313ebe
PZ
7455
7456 struct {
7457 struct perf_event_header header;
7458
7459 u32 pid;
7460 u32 ppid;
9f498cc5
PZ
7461 u32 tid;
7462 u32 ptid;
393b2ad8 7463 u64 time;
cdd6c482 7464 } event_id;
60313ebe
PZ
7465};
7466
67516844
JO
7467static int perf_event_task_match(struct perf_event *event)
7468{
13d7a241
SE
7469 return event->attr.comm || event->attr.mmap ||
7470 event->attr.mmap2 || event->attr.mmap_data ||
7471 event->attr.task;
67516844
JO
7472}
7473
cdd6c482 7474static void perf_event_task_output(struct perf_event *event,
52d857a8 7475 void *data)
60313ebe 7476{
52d857a8 7477 struct perf_task_event *task_event = data;
60313ebe 7478 struct perf_output_handle handle;
c980d109 7479 struct perf_sample_data sample;
9f498cc5 7480 struct task_struct *task = task_event->task;
c980d109 7481 int ret, size = task_event->event_id.header.size;
8bb39f9a 7482
67516844
JO
7483 if (!perf_event_task_match(event))
7484 return;
7485
c980d109 7486 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
60313ebe 7487
c980d109 7488 ret = perf_output_begin(&handle, event,
a7ac67ea 7489 task_event->event_id.header.size);
ef60777c 7490 if (ret)
c980d109 7491 goto out;
60313ebe 7492
cdd6c482
IM
7493 task_event->event_id.pid = perf_event_pid(event, task);
7494 task_event->event_id.ppid = perf_event_pid(event, current);
60313ebe 7495
cdd6c482
IM
7496 task_event->event_id.tid = perf_event_tid(event, task);
7497 task_event->event_id.ptid = perf_event_tid(event, current);
9f498cc5 7498
34f43927
PZ
7499 task_event->event_id.time = perf_event_clock(event);
7500
cdd6c482 7501 perf_output_put(&handle, task_event->event_id);
393b2ad8 7502
c980d109
ACM
7503 perf_event__output_id_sample(event, &handle, &sample);
7504
60313ebe 7505 perf_output_end(&handle);
c980d109
ACM
7506out:
7507 task_event->event_id.header.size = size;
60313ebe
PZ
7508}
7509
cdd6c482
IM
7510static void perf_event_task(struct task_struct *task,
7511 struct perf_event_context *task_ctx,
3a80b4a3 7512 int new)
60313ebe 7513{
9f498cc5 7514 struct perf_task_event task_event;
60313ebe 7515
cdd6c482
IM
7516 if (!atomic_read(&nr_comm_events) &&
7517 !atomic_read(&nr_mmap_events) &&
7518 !atomic_read(&nr_task_events))
60313ebe
PZ
7519 return;
7520
9f498cc5 7521 task_event = (struct perf_task_event){
3a80b4a3
PZ
7522 .task = task,
7523 .task_ctx = task_ctx,
cdd6c482 7524 .event_id = {
60313ebe 7525 .header = {
cdd6c482 7526 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
573402db 7527 .misc = 0,
cdd6c482 7528 .size = sizeof(task_event.event_id),
60313ebe 7529 },
573402db
PZ
7530 /* .pid */
7531 /* .ppid */
9f498cc5
PZ
7532 /* .tid */
7533 /* .ptid */
34f43927 7534 /* .time */
60313ebe
PZ
7535 },
7536 };
7537
aab5b71e 7538 perf_iterate_sb(perf_event_task_output,
52d857a8
JO
7539 &task_event,
7540 task_ctx);
9f498cc5
PZ
7541}
7542
cdd6c482 7543void perf_event_fork(struct task_struct *task)
9f498cc5 7544{
cdd6c482 7545 perf_event_task(task, NULL, 1);
e4222673 7546 perf_event_namespaces(task);
60313ebe
PZ
7547}
7548
8d1b2d93
PZ
7549/*
7550 * comm tracking
7551 */
7552
7553struct perf_comm_event {
22a4f650
IM
7554 struct task_struct *task;
7555 char *comm;
8d1b2d93
PZ
7556 int comm_size;
7557
7558 struct {
7559 struct perf_event_header header;
7560
7561 u32 pid;
7562 u32 tid;
cdd6c482 7563 } event_id;
8d1b2d93
PZ
7564};
7565
67516844
JO
7566static int perf_event_comm_match(struct perf_event *event)
7567{
7568 return event->attr.comm;
7569}
7570
cdd6c482 7571static void perf_event_comm_output(struct perf_event *event,
52d857a8 7572 void *data)
8d1b2d93 7573{
52d857a8 7574 struct perf_comm_event *comm_event = data;
8d1b2d93 7575 struct perf_output_handle handle;
c980d109 7576 struct perf_sample_data sample;
cdd6c482 7577 int size = comm_event->event_id.header.size;
c980d109
ACM
7578 int ret;
7579
67516844
JO
7580 if (!perf_event_comm_match(event))
7581 return;
7582
c980d109
ACM
7583 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
7584 ret = perf_output_begin(&handle, event,
a7ac67ea 7585 comm_event->event_id.header.size);
8d1b2d93
PZ
7586
7587 if (ret)
c980d109 7588 goto out;
8d1b2d93 7589
cdd6c482
IM
7590 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
7591 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
709e50cf 7592
cdd6c482 7593 perf_output_put(&handle, comm_event->event_id);
76369139 7594 __output_copy(&handle, comm_event->comm,
8d1b2d93 7595 comm_event->comm_size);
c980d109
ACM
7596
7597 perf_event__output_id_sample(event, &handle, &sample);
7598
8d1b2d93 7599 perf_output_end(&handle);
c980d109
ACM
7600out:
7601 comm_event->event_id.header.size = size;
8d1b2d93
PZ
7602}
7603
cdd6c482 7604static void perf_event_comm_event(struct perf_comm_event *comm_event)
8d1b2d93 7605{
413ee3b4 7606 char comm[TASK_COMM_LEN];
8d1b2d93 7607 unsigned int size;
8d1b2d93 7608
413ee3b4 7609 memset(comm, 0, sizeof(comm));
96b02d78 7610 strlcpy(comm, comm_event->task->comm, sizeof(comm));
888fcee0 7611 size = ALIGN(strlen(comm)+1, sizeof(u64));
8d1b2d93
PZ
7612
7613 comm_event->comm = comm;
7614 comm_event->comm_size = size;
7615
cdd6c482 7616 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
8dc85d54 7617
aab5b71e 7618 perf_iterate_sb(perf_event_comm_output,
52d857a8
JO
7619 comm_event,
7620 NULL);
8d1b2d93
PZ
7621}
7622
82b89778 7623void perf_event_comm(struct task_struct *task, bool exec)
8d1b2d93 7624{
9ee318a7
PZ
7625 struct perf_comm_event comm_event;
7626
cdd6c482 7627 if (!atomic_read(&nr_comm_events))
9ee318a7 7628 return;
a63eaf34 7629
9ee318a7 7630 comm_event = (struct perf_comm_event){
8d1b2d93 7631 .task = task,
573402db
PZ
7632 /* .comm */
7633 /* .comm_size */
cdd6c482 7634 .event_id = {
573402db 7635 .header = {
cdd6c482 7636 .type = PERF_RECORD_COMM,
82b89778 7637 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
573402db
PZ
7638 /* .size */
7639 },
7640 /* .pid */
7641 /* .tid */
8d1b2d93
PZ
7642 },
7643 };
7644
cdd6c482 7645 perf_event_comm_event(&comm_event);
8d1b2d93
PZ
7646}
7647
e4222673
HB
7648/*
7649 * namespaces tracking
7650 */
7651
7652struct perf_namespaces_event {
7653 struct task_struct *task;
7654
7655 struct {
7656 struct perf_event_header header;
7657
7658 u32 pid;
7659 u32 tid;
7660 u64 nr_namespaces;
7661 struct perf_ns_link_info link_info[NR_NAMESPACES];
7662 } event_id;
7663};
7664
7665static int perf_event_namespaces_match(struct perf_event *event)
7666{
7667 return event->attr.namespaces;
7668}
7669
7670static void perf_event_namespaces_output(struct perf_event *event,
7671 void *data)
7672{
7673 struct perf_namespaces_event *namespaces_event = data;
7674 struct perf_output_handle handle;
7675 struct perf_sample_data sample;
34900ec5 7676 u16 header_size = namespaces_event->event_id.header.size;
e4222673
HB
7677 int ret;
7678
7679 if (!perf_event_namespaces_match(event))
7680 return;
7681
7682 perf_event_header__init_id(&namespaces_event->event_id.header,
7683 &sample, event);
7684 ret = perf_output_begin(&handle, event,
7685 namespaces_event->event_id.header.size);
7686 if (ret)
34900ec5 7687 goto out;
e4222673
HB
7688
7689 namespaces_event->event_id.pid = perf_event_pid(event,
7690 namespaces_event->task);
7691 namespaces_event->event_id.tid = perf_event_tid(event,
7692 namespaces_event->task);
7693
7694 perf_output_put(&handle, namespaces_event->event_id);
7695
7696 perf_event__output_id_sample(event, &handle, &sample);
7697
7698 perf_output_end(&handle);
34900ec5
JO
7699out:
7700 namespaces_event->event_id.header.size = header_size;
e4222673
HB
7701}
7702
7703static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info,
7704 struct task_struct *task,
7705 const struct proc_ns_operations *ns_ops)
7706{
7707 struct path ns_path;
7708 struct inode *ns_inode;
ce623f89 7709 int error;
e4222673
HB
7710
7711 error = ns_get_path(&ns_path, task, ns_ops);
7712 if (!error) {
7713 ns_inode = ns_path.dentry->d_inode;
7714 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev);
7715 ns_link_info->ino = ns_inode->i_ino;
0e18dd12 7716 path_put(&ns_path);
e4222673
HB
7717 }
7718}
7719
7720void perf_event_namespaces(struct task_struct *task)
7721{
7722 struct perf_namespaces_event namespaces_event;
7723 struct perf_ns_link_info *ns_link_info;
7724
7725 if (!atomic_read(&nr_namespaces_events))
7726 return;
7727
7728 namespaces_event = (struct perf_namespaces_event){
7729 .task = task,
7730 .event_id = {
7731 .header = {
7732 .type = PERF_RECORD_NAMESPACES,
7733 .misc = 0,
7734 .size = sizeof(namespaces_event.event_id),
7735 },
7736 /* .pid */
7737 /* .tid */
7738 .nr_namespaces = NR_NAMESPACES,
7739 /* .link_info[NR_NAMESPACES] */
7740 },
7741 };
7742
7743 ns_link_info = namespaces_event.event_id.link_info;
7744
7745 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX],
7746 task, &mntns_operations);
7747
7748#ifdef CONFIG_USER_NS
7749 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX],
7750 task, &userns_operations);
7751#endif
7752#ifdef CONFIG_NET_NS
7753 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX],
7754 task, &netns_operations);
7755#endif
7756#ifdef CONFIG_UTS_NS
7757 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX],
7758 task, &utsns_operations);
7759#endif
7760#ifdef CONFIG_IPC_NS
7761 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX],
7762 task, &ipcns_operations);
7763#endif
7764#ifdef CONFIG_PID_NS
7765 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX],
7766 task, &pidns_operations);
7767#endif
7768#ifdef CONFIG_CGROUPS
7769 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX],
7770 task, &cgroupns_operations);
7771#endif
7772
7773 perf_iterate_sb(perf_event_namespaces_output,
7774 &namespaces_event,
7775 NULL);
7776}
7777
96aaab68
NK
7778/*
7779 * cgroup tracking
7780 */
7781#ifdef CONFIG_CGROUP_PERF
7782
7783struct perf_cgroup_event {
7784 char *path;
7785 int path_size;
7786 struct {
7787 struct perf_event_header header;
7788 u64 id;
7789 char path[];
7790 } event_id;
7791};
7792
7793static int perf_event_cgroup_match(struct perf_event *event)
7794{
7795 return event->attr.cgroup;
7796}
7797
7798static void perf_event_cgroup_output(struct perf_event *event, void *data)
7799{
7800 struct perf_cgroup_event *cgroup_event = data;
7801 struct perf_output_handle handle;
7802 struct perf_sample_data sample;
7803 u16 header_size = cgroup_event->event_id.header.size;
7804 int ret;
7805
7806 if (!perf_event_cgroup_match(event))
7807 return;
7808
7809 perf_event_header__init_id(&cgroup_event->event_id.header,
7810 &sample, event);
7811 ret = perf_output_begin(&handle, event,
7812 cgroup_event->event_id.header.size);
7813 if (ret)
7814 goto out;
7815
7816 perf_output_put(&handle, cgroup_event->event_id);
7817 __output_copy(&handle, cgroup_event->path, cgroup_event->path_size);
7818
7819 perf_event__output_id_sample(event, &handle, &sample);
7820
7821 perf_output_end(&handle);
7822out:
7823 cgroup_event->event_id.header.size = header_size;
7824}
7825
7826static void perf_event_cgroup(struct cgroup *cgrp)
7827{
7828 struct perf_cgroup_event cgroup_event;
7829 char path_enomem[16] = "//enomem";
7830 char *pathname;
7831 size_t size;
7832
7833 if (!atomic_read(&nr_cgroup_events))
7834 return;
7835
7836 cgroup_event = (struct perf_cgroup_event){
7837 .event_id = {
7838 .header = {
7839 .type = PERF_RECORD_CGROUP,
7840 .misc = 0,
7841 .size = sizeof(cgroup_event.event_id),
7842 },
7843 .id = cgroup_id(cgrp),
7844 },
7845 };
7846
7847 pathname = kmalloc(PATH_MAX, GFP_KERNEL);
7848 if (pathname == NULL) {
7849 cgroup_event.path = path_enomem;
7850 } else {
7851 /* just to be sure to have enough space for alignment */
7852 cgroup_path(cgrp, pathname, PATH_MAX - sizeof(u64));
7853 cgroup_event.path = pathname;
7854 }
7855
7856 /*
7857 * Since our buffer works in 8 byte units we need to align our string
7858 * size to a multiple of 8. However, we must guarantee the tail end is
7859 * zero'd out to avoid leaking random bits to userspace.
7860 */
7861 size = strlen(cgroup_event.path) + 1;
7862 while (!IS_ALIGNED(size, sizeof(u64)))
7863 cgroup_event.path[size++] = '\0';
7864
7865 cgroup_event.event_id.header.size += size;
7866 cgroup_event.path_size = size;
7867
7868 perf_iterate_sb(perf_event_cgroup_output,
7869 &cgroup_event,
7870 NULL);
7871
7872 kfree(pathname);
7873}
7874
7875#endif
7876
0a4a9391
PZ
7877/*
7878 * mmap tracking
7879 */
7880
7881struct perf_mmap_event {
089dd79d
PZ
7882 struct vm_area_struct *vma;
7883
7884 const char *file_name;
7885 int file_size;
13d7a241
SE
7886 int maj, min;
7887 u64 ino;
7888 u64 ino_generation;
f972eb63 7889 u32 prot, flags;
0a4a9391
PZ
7890
7891 struct {
7892 struct perf_event_header header;
7893
7894 u32 pid;
7895 u32 tid;
7896 u64 start;
7897 u64 len;
7898 u64 pgoff;
cdd6c482 7899 } event_id;
0a4a9391
PZ
7900};
7901
67516844
JO
7902static int perf_event_mmap_match(struct perf_event *event,
7903 void *data)
7904{
7905 struct perf_mmap_event *mmap_event = data;
7906 struct vm_area_struct *vma = mmap_event->vma;
7907 int executable = vma->vm_flags & VM_EXEC;
7908
7909 return (!executable && event->attr.mmap_data) ||
13d7a241 7910 (executable && (event->attr.mmap || event->attr.mmap2));
67516844
JO
7911}
7912
cdd6c482 7913static void perf_event_mmap_output(struct perf_event *event,
52d857a8 7914 void *data)
0a4a9391 7915{
52d857a8 7916 struct perf_mmap_event *mmap_event = data;
0a4a9391 7917 struct perf_output_handle handle;
c980d109 7918 struct perf_sample_data sample;
cdd6c482 7919 int size = mmap_event->event_id.header.size;
d9c1bb2f 7920 u32 type = mmap_event->event_id.header.type;
c980d109 7921 int ret;
0a4a9391 7922
67516844
JO
7923 if (!perf_event_mmap_match(event, data))
7924 return;
7925
13d7a241
SE
7926 if (event->attr.mmap2) {
7927 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
7928 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
7929 mmap_event->event_id.header.size += sizeof(mmap_event->min);
7930 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
d008d525 7931 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
f972eb63
PZ
7932 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
7933 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
13d7a241
SE
7934 }
7935
c980d109
ACM
7936 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
7937 ret = perf_output_begin(&handle, event,
a7ac67ea 7938 mmap_event->event_id.header.size);
0a4a9391 7939 if (ret)
c980d109 7940 goto out;
0a4a9391 7941
cdd6c482
IM
7942 mmap_event->event_id.pid = perf_event_pid(event, current);
7943 mmap_event->event_id.tid = perf_event_tid(event, current);
709e50cf 7944
cdd6c482 7945 perf_output_put(&handle, mmap_event->event_id);
13d7a241
SE
7946
7947 if (event->attr.mmap2) {
7948 perf_output_put(&handle, mmap_event->maj);
7949 perf_output_put(&handle, mmap_event->min);
7950 perf_output_put(&handle, mmap_event->ino);
7951 perf_output_put(&handle, mmap_event->ino_generation);
f972eb63
PZ
7952 perf_output_put(&handle, mmap_event->prot);
7953 perf_output_put(&handle, mmap_event->flags);
13d7a241
SE
7954 }
7955
76369139 7956 __output_copy(&handle, mmap_event->file_name,
0a4a9391 7957 mmap_event->file_size);
c980d109
ACM
7958
7959 perf_event__output_id_sample(event, &handle, &sample);
7960
78d613eb 7961 perf_output_end(&handle);
c980d109
ACM
7962out:
7963 mmap_event->event_id.header.size = size;
d9c1bb2f 7964 mmap_event->event_id.header.type = type;
0a4a9391
PZ
7965}
7966
cdd6c482 7967static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
0a4a9391 7968{
089dd79d
PZ
7969 struct vm_area_struct *vma = mmap_event->vma;
7970 struct file *file = vma->vm_file;
13d7a241
SE
7971 int maj = 0, min = 0;
7972 u64 ino = 0, gen = 0;
f972eb63 7973 u32 prot = 0, flags = 0;
0a4a9391
PZ
7974 unsigned int size;
7975 char tmp[16];
7976 char *buf = NULL;
2c42cfbf 7977 char *name;
413ee3b4 7978
0b3589be
PZ
7979 if (vma->vm_flags & VM_READ)
7980 prot |= PROT_READ;
7981 if (vma->vm_flags & VM_WRITE)
7982 prot |= PROT_WRITE;
7983 if (vma->vm_flags & VM_EXEC)
7984 prot |= PROT_EXEC;
7985
7986 if (vma->vm_flags & VM_MAYSHARE)
7987 flags = MAP_SHARED;
7988 else
7989 flags = MAP_PRIVATE;
7990
7991 if (vma->vm_flags & VM_DENYWRITE)
7992 flags |= MAP_DENYWRITE;
7993 if (vma->vm_flags & VM_MAYEXEC)
7994 flags |= MAP_EXECUTABLE;
7995 if (vma->vm_flags & VM_LOCKED)
7996 flags |= MAP_LOCKED;
03911132 7997 if (is_vm_hugetlb_page(vma))
0b3589be
PZ
7998 flags |= MAP_HUGETLB;
7999
0a4a9391 8000 if (file) {
13d7a241
SE
8001 struct inode *inode;
8002 dev_t dev;
3ea2f2b9 8003
2c42cfbf 8004 buf = kmalloc(PATH_MAX, GFP_KERNEL);
0a4a9391 8005 if (!buf) {
c7e548b4
ON
8006 name = "//enomem";
8007 goto cpy_name;
0a4a9391 8008 }
413ee3b4 8009 /*
3ea2f2b9 8010 * d_path() works from the end of the rb backwards, so we
413ee3b4
AB
8011 * need to add enough zero bytes after the string to handle
8012 * the 64bit alignment we do later.
8013 */
9bf39ab2 8014 name = file_path(file, buf, PATH_MAX - sizeof(u64));
0a4a9391 8015 if (IS_ERR(name)) {
c7e548b4
ON
8016 name = "//toolong";
8017 goto cpy_name;
0a4a9391 8018 }
13d7a241
SE
8019 inode = file_inode(vma->vm_file);
8020 dev = inode->i_sb->s_dev;
8021 ino = inode->i_ino;
8022 gen = inode->i_generation;
8023 maj = MAJOR(dev);
8024 min = MINOR(dev);
f972eb63 8025
c7e548b4 8026 goto got_name;
0a4a9391 8027 } else {
fbe26abe
JO
8028 if (vma->vm_ops && vma->vm_ops->name) {
8029 name = (char *) vma->vm_ops->name(vma);
8030 if (name)
8031 goto cpy_name;
8032 }
8033
2c42cfbf 8034 name = (char *)arch_vma_name(vma);
c7e548b4
ON
8035 if (name)
8036 goto cpy_name;
089dd79d 8037
32c5fb7e 8038 if (vma->vm_start <= vma->vm_mm->start_brk &&
3af9e859 8039 vma->vm_end >= vma->vm_mm->brk) {
c7e548b4
ON
8040 name = "[heap]";
8041 goto cpy_name;
32c5fb7e
ON
8042 }
8043 if (vma->vm_start <= vma->vm_mm->start_stack &&
3af9e859 8044 vma->vm_end >= vma->vm_mm->start_stack) {
c7e548b4
ON
8045 name = "[stack]";
8046 goto cpy_name;
089dd79d
PZ
8047 }
8048
c7e548b4
ON
8049 name = "//anon";
8050 goto cpy_name;
0a4a9391
PZ
8051 }
8052
c7e548b4
ON
8053cpy_name:
8054 strlcpy(tmp, name, sizeof(tmp));
8055 name = tmp;
0a4a9391 8056got_name:
2c42cfbf
PZ
8057 /*
8058 * Since our buffer works in 8 byte units we need to align our string
8059 * size to a multiple of 8. However, we must guarantee the tail end is
8060 * zero'd out to avoid leaking random bits to userspace.
8061 */
8062 size = strlen(name)+1;
8063 while (!IS_ALIGNED(size, sizeof(u64)))
8064 name[size++] = '\0';
0a4a9391
PZ
8065
8066 mmap_event->file_name = name;
8067 mmap_event->file_size = size;
13d7a241
SE
8068 mmap_event->maj = maj;
8069 mmap_event->min = min;
8070 mmap_event->ino = ino;
8071 mmap_event->ino_generation = gen;
f972eb63
PZ
8072 mmap_event->prot = prot;
8073 mmap_event->flags = flags;
0a4a9391 8074
2fe85427
SE
8075 if (!(vma->vm_flags & VM_EXEC))
8076 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
8077
cdd6c482 8078 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
0a4a9391 8079
aab5b71e 8080 perf_iterate_sb(perf_event_mmap_output,
52d857a8
JO
8081 mmap_event,
8082 NULL);
665c2142 8083
0a4a9391
PZ
8084 kfree(buf);
8085}
8086
375637bc
AS
8087/*
8088 * Check whether inode and address range match filter criteria.
8089 */
8090static bool perf_addr_filter_match(struct perf_addr_filter *filter,
8091 struct file *file, unsigned long offset,
8092 unsigned long size)
8093{
7f635ff1
MP
8094 /* d_inode(NULL) won't be equal to any mapped user-space file */
8095 if (!filter->path.dentry)
8096 return false;
8097
9511bce9 8098 if (d_inode(filter->path.dentry) != file_inode(file))
375637bc
AS
8099 return false;
8100
8101 if (filter->offset > offset + size)
8102 return false;
8103
8104 if (filter->offset + filter->size < offset)
8105 return false;
8106
8107 return true;
8108}
8109
c60f83b8
AS
8110static bool perf_addr_filter_vma_adjust(struct perf_addr_filter *filter,
8111 struct vm_area_struct *vma,
8112 struct perf_addr_filter_range *fr)
8113{
8114 unsigned long vma_size = vma->vm_end - vma->vm_start;
8115 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
8116 struct file *file = vma->vm_file;
8117
8118 if (!perf_addr_filter_match(filter, file, off, vma_size))
8119 return false;
8120
8121 if (filter->offset < off) {
8122 fr->start = vma->vm_start;
8123 fr->size = min(vma_size, filter->size - (off - filter->offset));
8124 } else {
8125 fr->start = vma->vm_start + filter->offset - off;
8126 fr->size = min(vma->vm_end - fr->start, filter->size);
8127 }
8128
8129 return true;
8130}
8131
375637bc
AS
8132static void __perf_addr_filters_adjust(struct perf_event *event, void *data)
8133{
8134 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
8135 struct vm_area_struct *vma = data;
375637bc
AS
8136 struct perf_addr_filter *filter;
8137 unsigned int restart = 0, count = 0;
c60f83b8 8138 unsigned long flags;
375637bc
AS
8139
8140 if (!has_addr_filter(event))
8141 return;
8142
c60f83b8 8143 if (!vma->vm_file)
375637bc
AS
8144 return;
8145
8146 raw_spin_lock_irqsave(&ifh->lock, flags);
8147 list_for_each_entry(filter, &ifh->list, entry) {
c60f83b8
AS
8148 if (perf_addr_filter_vma_adjust(filter, vma,
8149 &event->addr_filter_ranges[count]))
375637bc 8150 restart++;
375637bc
AS
8151
8152 count++;
8153 }
8154
8155 if (restart)
8156 event->addr_filters_gen++;
8157 raw_spin_unlock_irqrestore(&ifh->lock, flags);
8158
8159 if (restart)
767ae086 8160 perf_event_stop(event, 1);
375637bc
AS
8161}
8162
8163/*
8164 * Adjust all task's events' filters to the new vma
8165 */
8166static void perf_addr_filters_adjust(struct vm_area_struct *vma)
8167{
8168 struct perf_event_context *ctx;
8169 int ctxn;
8170
12b40a23
MP
8171 /*
8172 * Data tracing isn't supported yet and as such there is no need
8173 * to keep track of anything that isn't related to executable code:
8174 */
8175 if (!(vma->vm_flags & VM_EXEC))
8176 return;
8177
375637bc
AS
8178 rcu_read_lock();
8179 for_each_task_context_nr(ctxn) {
8180 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
8181 if (!ctx)
8182 continue;
8183
aab5b71e 8184 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true);
375637bc
AS
8185 }
8186 rcu_read_unlock();
8187}
8188
3af9e859 8189void perf_event_mmap(struct vm_area_struct *vma)
0a4a9391 8190{
9ee318a7
PZ
8191 struct perf_mmap_event mmap_event;
8192
cdd6c482 8193 if (!atomic_read(&nr_mmap_events))
9ee318a7
PZ
8194 return;
8195
8196 mmap_event = (struct perf_mmap_event){
089dd79d 8197 .vma = vma,
573402db
PZ
8198 /* .file_name */
8199 /* .file_size */
cdd6c482 8200 .event_id = {
573402db 8201 .header = {
cdd6c482 8202 .type = PERF_RECORD_MMAP,
39447b38 8203 .misc = PERF_RECORD_MISC_USER,
573402db
PZ
8204 /* .size */
8205 },
8206 /* .pid */
8207 /* .tid */
089dd79d
PZ
8208 .start = vma->vm_start,
8209 .len = vma->vm_end - vma->vm_start,
3a0304e9 8210 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
0a4a9391 8211 },
13d7a241
SE
8212 /* .maj (attr_mmap2 only) */
8213 /* .min (attr_mmap2 only) */
8214 /* .ino (attr_mmap2 only) */
8215 /* .ino_generation (attr_mmap2 only) */
f972eb63
PZ
8216 /* .prot (attr_mmap2 only) */
8217 /* .flags (attr_mmap2 only) */
0a4a9391
PZ
8218 };
8219
375637bc 8220 perf_addr_filters_adjust(vma);
cdd6c482 8221 perf_event_mmap_event(&mmap_event);
0a4a9391
PZ
8222}
8223
68db7e98
AS
8224void perf_event_aux_event(struct perf_event *event, unsigned long head,
8225 unsigned long size, u64 flags)
8226{
8227 struct perf_output_handle handle;
8228 struct perf_sample_data sample;
8229 struct perf_aux_event {
8230 struct perf_event_header header;
8231 u64 offset;
8232 u64 size;
8233 u64 flags;
8234 } rec = {
8235 .header = {
8236 .type = PERF_RECORD_AUX,
8237 .misc = 0,
8238 .size = sizeof(rec),
8239 },
8240 .offset = head,
8241 .size = size,
8242 .flags = flags,
8243 };
8244 int ret;
8245
8246 perf_event_header__init_id(&rec.header, &sample, event);
8247 ret = perf_output_begin(&handle, event, rec.header.size);
8248
8249 if (ret)
8250 return;
8251
8252 perf_output_put(&handle, rec);
8253 perf_event__output_id_sample(event, &handle, &sample);
8254
8255 perf_output_end(&handle);
8256}
8257
f38b0dbb
KL
8258/*
8259 * Lost/dropped samples logging
8260 */
8261void perf_log_lost_samples(struct perf_event *event, u64 lost)
8262{
8263 struct perf_output_handle handle;
8264 struct perf_sample_data sample;
8265 int ret;
8266
8267 struct {
8268 struct perf_event_header header;
8269 u64 lost;
8270 } lost_samples_event = {
8271 .header = {
8272 .type = PERF_RECORD_LOST_SAMPLES,
8273 .misc = 0,
8274 .size = sizeof(lost_samples_event),
8275 },
8276 .lost = lost,
8277 };
8278
8279 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
8280
8281 ret = perf_output_begin(&handle, event,
8282 lost_samples_event.header.size);
8283 if (ret)
8284 return;
8285
8286 perf_output_put(&handle, lost_samples_event);
8287 perf_event__output_id_sample(event, &handle, &sample);
8288 perf_output_end(&handle);
8289}
8290
45ac1403
AH
8291/*
8292 * context_switch tracking
8293 */
8294
8295struct perf_switch_event {
8296 struct task_struct *task;
8297 struct task_struct *next_prev;
8298
8299 struct {
8300 struct perf_event_header header;
8301 u32 next_prev_pid;
8302 u32 next_prev_tid;
8303 } event_id;
8304};
8305
8306static int perf_event_switch_match(struct perf_event *event)
8307{
8308 return event->attr.context_switch;
8309}
8310
8311static void perf_event_switch_output(struct perf_event *event, void *data)
8312{
8313 struct perf_switch_event *se = data;
8314 struct perf_output_handle handle;
8315 struct perf_sample_data sample;
8316 int ret;
8317
8318 if (!perf_event_switch_match(event))
8319 return;
8320
8321 /* Only CPU-wide events are allowed to see next/prev pid/tid */
8322 if (event->ctx->task) {
8323 se->event_id.header.type = PERF_RECORD_SWITCH;
8324 se->event_id.header.size = sizeof(se->event_id.header);
8325 } else {
8326 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
8327 se->event_id.header.size = sizeof(se->event_id);
8328 se->event_id.next_prev_pid =
8329 perf_event_pid(event, se->next_prev);
8330 se->event_id.next_prev_tid =
8331 perf_event_tid(event, se->next_prev);
8332 }
8333
8334 perf_event_header__init_id(&se->event_id.header, &sample, event);
8335
8336 ret = perf_output_begin(&handle, event, se->event_id.header.size);
8337 if (ret)
8338 return;
8339
8340 if (event->ctx->task)
8341 perf_output_put(&handle, se->event_id.header);
8342 else
8343 perf_output_put(&handle, se->event_id);
8344
8345 perf_event__output_id_sample(event, &handle, &sample);
8346
8347 perf_output_end(&handle);
8348}
8349
8350static void perf_event_switch(struct task_struct *task,
8351 struct task_struct *next_prev, bool sched_in)
8352{
8353 struct perf_switch_event switch_event;
8354
8355 /* N.B. caller checks nr_switch_events != 0 */
8356
8357 switch_event = (struct perf_switch_event){
8358 .task = task,
8359 .next_prev = next_prev,
8360 .event_id = {
8361 .header = {
8362 /* .type */
8363 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
8364 /* .size */
8365 },
8366 /* .next_prev_pid */
8367 /* .next_prev_tid */
8368 },
8369 };
8370
101592b4
AB
8371 if (!sched_in && task->state == TASK_RUNNING)
8372 switch_event.event_id.header.misc |=
8373 PERF_RECORD_MISC_SWITCH_OUT_PREEMPT;
8374
aab5b71e 8375 perf_iterate_sb(perf_event_switch_output,
45ac1403
AH
8376 &switch_event,
8377 NULL);
8378}
8379
a78ac325
PZ
8380/*
8381 * IRQ throttle logging
8382 */
8383
cdd6c482 8384static void perf_log_throttle(struct perf_event *event, int enable)
a78ac325
PZ
8385{
8386 struct perf_output_handle handle;
c980d109 8387 struct perf_sample_data sample;
a78ac325
PZ
8388 int ret;
8389
8390 struct {
8391 struct perf_event_header header;
8392 u64 time;
cca3f454 8393 u64 id;
7f453c24 8394 u64 stream_id;
a78ac325
PZ
8395 } throttle_event = {
8396 .header = {
cdd6c482 8397 .type = PERF_RECORD_THROTTLE,
a78ac325
PZ
8398 .misc = 0,
8399 .size = sizeof(throttle_event),
8400 },
34f43927 8401 .time = perf_event_clock(event),
cdd6c482
IM
8402 .id = primary_event_id(event),
8403 .stream_id = event->id,
a78ac325
PZ
8404 };
8405
966ee4d6 8406 if (enable)
cdd6c482 8407 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
966ee4d6 8408
c980d109
ACM
8409 perf_event_header__init_id(&throttle_event.header, &sample, event);
8410
8411 ret = perf_output_begin(&handle, event,
a7ac67ea 8412 throttle_event.header.size);
a78ac325
PZ
8413 if (ret)
8414 return;
8415
8416 perf_output_put(&handle, throttle_event);
c980d109 8417 perf_event__output_id_sample(event, &handle, &sample);
a78ac325
PZ
8418 perf_output_end(&handle);
8419}
8420
76193a94
SL
8421/*
8422 * ksymbol register/unregister tracking
8423 */
8424
8425struct perf_ksymbol_event {
8426 const char *name;
8427 int name_len;
8428 struct {
8429 struct perf_event_header header;
8430 u64 addr;
8431 u32 len;
8432 u16 ksym_type;
8433 u16 flags;
8434 } event_id;
8435};
8436
8437static int perf_event_ksymbol_match(struct perf_event *event)
8438{
8439 return event->attr.ksymbol;
8440}
8441
8442static void perf_event_ksymbol_output(struct perf_event *event, void *data)
8443{
8444 struct perf_ksymbol_event *ksymbol_event = data;
8445 struct perf_output_handle handle;
8446 struct perf_sample_data sample;
8447 int ret;
8448
8449 if (!perf_event_ksymbol_match(event))
8450 return;
8451
8452 perf_event_header__init_id(&ksymbol_event->event_id.header,
8453 &sample, event);
8454 ret = perf_output_begin(&handle, event,
8455 ksymbol_event->event_id.header.size);
8456 if (ret)
8457 return;
8458
8459 perf_output_put(&handle, ksymbol_event->event_id);
8460 __output_copy(&handle, ksymbol_event->name, ksymbol_event->name_len);
8461 perf_event__output_id_sample(event, &handle, &sample);
8462
8463 perf_output_end(&handle);
8464}
8465
8466void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len, bool unregister,
8467 const char *sym)
8468{
8469 struct perf_ksymbol_event ksymbol_event;
8470 char name[KSYM_NAME_LEN];
8471 u16 flags = 0;
8472 int name_len;
8473
8474 if (!atomic_read(&nr_ksymbol_events))
8475 return;
8476
8477 if (ksym_type >= PERF_RECORD_KSYMBOL_TYPE_MAX ||
8478 ksym_type == PERF_RECORD_KSYMBOL_TYPE_UNKNOWN)
8479 goto err;
8480
8481 strlcpy(name, sym, KSYM_NAME_LEN);
8482 name_len = strlen(name) + 1;
8483 while (!IS_ALIGNED(name_len, sizeof(u64)))
8484 name[name_len++] = '\0';
8485 BUILD_BUG_ON(KSYM_NAME_LEN % sizeof(u64));
8486
8487 if (unregister)
8488 flags |= PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER;
8489
8490 ksymbol_event = (struct perf_ksymbol_event){
8491 .name = name,
8492 .name_len = name_len,
8493 .event_id = {
8494 .header = {
8495 .type = PERF_RECORD_KSYMBOL,
8496 .size = sizeof(ksymbol_event.event_id) +
8497 name_len,
8498 },
8499 .addr = addr,
8500 .len = len,
8501 .ksym_type = ksym_type,
8502 .flags = flags,
8503 },
8504 };
8505
8506 perf_iterate_sb(perf_event_ksymbol_output, &ksymbol_event, NULL);
8507 return;
8508err:
8509 WARN_ONCE(1, "%s: Invalid KSYMBOL type 0x%x\n", __func__, ksym_type);
8510}
8511
6ee52e2a
SL
8512/*
8513 * bpf program load/unload tracking
8514 */
8515
8516struct perf_bpf_event {
8517 struct bpf_prog *prog;
8518 struct {
8519 struct perf_event_header header;
8520 u16 type;
8521 u16 flags;
8522 u32 id;
8523 u8 tag[BPF_TAG_SIZE];
8524 } event_id;
8525};
8526
8527static int perf_event_bpf_match(struct perf_event *event)
8528{
8529 return event->attr.bpf_event;
8530}
8531
8532static void perf_event_bpf_output(struct perf_event *event, void *data)
8533{
8534 struct perf_bpf_event *bpf_event = data;
8535 struct perf_output_handle handle;
8536 struct perf_sample_data sample;
8537 int ret;
8538
8539 if (!perf_event_bpf_match(event))
8540 return;
8541
8542 perf_event_header__init_id(&bpf_event->event_id.header,
8543 &sample, event);
8544 ret = perf_output_begin(&handle, event,
8545 bpf_event->event_id.header.size);
8546 if (ret)
8547 return;
8548
8549 perf_output_put(&handle, bpf_event->event_id);
8550 perf_event__output_id_sample(event, &handle, &sample);
8551
8552 perf_output_end(&handle);
8553}
8554
8555static void perf_event_bpf_emit_ksymbols(struct bpf_prog *prog,
8556 enum perf_bpf_event_type type)
8557{
8558 bool unregister = type == PERF_BPF_EVENT_PROG_UNLOAD;
6ee52e2a
SL
8559 int i;
8560
8561 if (prog->aux->func_cnt == 0) {
6ee52e2a
SL
8562 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF,
8563 (u64)(unsigned long)prog->bpf_func,
bfea9a85
JO
8564 prog->jited_len, unregister,
8565 prog->aux->ksym.name);
6ee52e2a
SL
8566 } else {
8567 for (i = 0; i < prog->aux->func_cnt; i++) {
8568 struct bpf_prog *subprog = prog->aux->func[i];
8569
6ee52e2a
SL
8570 perf_event_ksymbol(
8571 PERF_RECORD_KSYMBOL_TYPE_BPF,
8572 (u64)(unsigned long)subprog->bpf_func,
bfea9a85
JO
8573 subprog->jited_len, unregister,
8574 prog->aux->ksym.name);
6ee52e2a
SL
8575 }
8576 }
8577}
8578
8579void perf_event_bpf_event(struct bpf_prog *prog,
8580 enum perf_bpf_event_type type,
8581 u16 flags)
8582{
8583 struct perf_bpf_event bpf_event;
8584
8585 if (type <= PERF_BPF_EVENT_UNKNOWN ||
8586 type >= PERF_BPF_EVENT_MAX)
8587 return;
8588
8589 switch (type) {
8590 case PERF_BPF_EVENT_PROG_LOAD:
8591 case PERF_BPF_EVENT_PROG_UNLOAD:
8592 if (atomic_read(&nr_ksymbol_events))
8593 perf_event_bpf_emit_ksymbols(prog, type);
8594 break;
8595 default:
8596 break;
8597 }
8598
8599 if (!atomic_read(&nr_bpf_events))
8600 return;
8601
8602 bpf_event = (struct perf_bpf_event){
8603 .prog = prog,
8604 .event_id = {
8605 .header = {
8606 .type = PERF_RECORD_BPF_EVENT,
8607 .size = sizeof(bpf_event.event_id),
8608 },
8609 .type = type,
8610 .flags = flags,
8611 .id = prog->aux->id,
8612 },
8613 };
8614
8615 BUILD_BUG_ON(BPF_TAG_SIZE % sizeof(u64));
8616
8617 memcpy(bpf_event.event_id.tag, prog->tag, BPF_TAG_SIZE);
8618 perf_iterate_sb(perf_event_bpf_output, &bpf_event, NULL);
8619}
8620
8d4e6c4c
AS
8621void perf_event_itrace_started(struct perf_event *event)
8622{
8623 event->attach_state |= PERF_ATTACH_ITRACE;
8624}
8625
ec0d7729
AS
8626static void perf_log_itrace_start(struct perf_event *event)
8627{
8628 struct perf_output_handle handle;
8629 struct perf_sample_data sample;
8630 struct perf_aux_event {
8631 struct perf_event_header header;
8632 u32 pid;
8633 u32 tid;
8634 } rec;
8635 int ret;
8636
8637 if (event->parent)
8638 event = event->parent;
8639
8640 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
8d4e6c4c 8641 event->attach_state & PERF_ATTACH_ITRACE)
ec0d7729
AS
8642 return;
8643
ec0d7729
AS
8644 rec.header.type = PERF_RECORD_ITRACE_START;
8645 rec.header.misc = 0;
8646 rec.header.size = sizeof(rec);
8647 rec.pid = perf_event_pid(event, current);
8648 rec.tid = perf_event_tid(event, current);
8649
8650 perf_event_header__init_id(&rec.header, &sample, event);
8651 ret = perf_output_begin(&handle, event, rec.header.size);
8652
8653 if (ret)
8654 return;
8655
8656 perf_output_put(&handle, rec);
8657 perf_event__output_id_sample(event, &handle, &sample);
8658
8659 perf_output_end(&handle);
8660}
8661
475113d9
JO
8662static int
8663__perf_event_account_interrupt(struct perf_event *event, int throttle)
f6c7d5fe 8664{
cdd6c482 8665 struct hw_perf_event *hwc = &event->hw;
79f14641 8666 int ret = 0;
475113d9 8667 u64 seq;
96398826 8668
e050e3f0
SE
8669 seq = __this_cpu_read(perf_throttled_seq);
8670 if (seq != hwc->interrupts_seq) {
8671 hwc->interrupts_seq = seq;
8672 hwc->interrupts = 1;
8673 } else {
8674 hwc->interrupts++;
8675 if (unlikely(throttle
8676 && hwc->interrupts >= max_samples_per_tick)) {
8677 __this_cpu_inc(perf_throttled_count);
555e0c1e 8678 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS);
163ec435
PZ
8679 hwc->interrupts = MAX_INTERRUPTS;
8680 perf_log_throttle(event, 0);
a78ac325
PZ
8681 ret = 1;
8682 }
e050e3f0 8683 }
60db5e09 8684
cdd6c482 8685 if (event->attr.freq) {
def0a9b2 8686 u64 now = perf_clock();
abd50713 8687 s64 delta = now - hwc->freq_time_stamp;
bd2b5b12 8688
abd50713 8689 hwc->freq_time_stamp = now;
bd2b5b12 8690
abd50713 8691 if (delta > 0 && delta < 2*TICK_NSEC)
f39d47ff 8692 perf_adjust_period(event, delta, hwc->last_period, true);
bd2b5b12
PZ
8693 }
8694
475113d9
JO
8695 return ret;
8696}
8697
8698int perf_event_account_interrupt(struct perf_event *event)
8699{
8700 return __perf_event_account_interrupt(event, 1);
8701}
8702
8703/*
8704 * Generic event overflow handling, sampling.
8705 */
8706
8707static int __perf_event_overflow(struct perf_event *event,
8708 int throttle, struct perf_sample_data *data,
8709 struct pt_regs *regs)
8710{
8711 int events = atomic_read(&event->event_limit);
8712 int ret = 0;
8713
8714 /*
8715 * Non-sampling counters might still use the PMI to fold short
8716 * hardware counters, ignore those.
8717 */
8718 if (unlikely(!is_sampling_event(event)))
8719 return 0;
8720
8721 ret = __perf_event_account_interrupt(event, throttle);
cc1582c2 8722
2023b359
PZ
8723 /*
8724 * XXX event_limit might not quite work as expected on inherited
cdd6c482 8725 * events
2023b359
PZ
8726 */
8727
cdd6c482
IM
8728 event->pending_kill = POLL_IN;
8729 if (events && atomic_dec_and_test(&event->event_limit)) {
79f14641 8730 ret = 1;
cdd6c482 8731 event->pending_kill = POLL_HUP;
5aab90ce
JO
8732
8733 perf_event_disable_inatomic(event);
79f14641
PZ
8734 }
8735
aa6a5f3c 8736 READ_ONCE(event->overflow_handler)(event, data, regs);
453f19ee 8737
fed66e2c 8738 if (*perf_event_fasync(event) && event->pending_kill) {
a8b0ca17
PZ
8739 event->pending_wakeup = 1;
8740 irq_work_queue(&event->pending);
f506b3dc
PZ
8741 }
8742
79f14641 8743 return ret;
f6c7d5fe
PZ
8744}
8745
a8b0ca17 8746int perf_event_overflow(struct perf_event *event,
5622f295
MM
8747 struct perf_sample_data *data,
8748 struct pt_regs *regs)
850bc73f 8749{
a8b0ca17 8750 return __perf_event_overflow(event, 1, data, regs);
850bc73f
PZ
8751}
8752
15dbf27c 8753/*
cdd6c482 8754 * Generic software event infrastructure
15dbf27c
PZ
8755 */
8756
b28ab83c
PZ
8757struct swevent_htable {
8758 struct swevent_hlist *swevent_hlist;
8759 struct mutex hlist_mutex;
8760 int hlist_refcount;
8761
8762 /* Recursion avoidance in each contexts */
8763 int recursion[PERF_NR_CONTEXTS];
8764};
8765
8766static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
8767
7b4b6658 8768/*
cdd6c482
IM
8769 * We directly increment event->count and keep a second value in
8770 * event->hw.period_left to count intervals. This period event
7b4b6658
PZ
8771 * is kept in the range [-sample_period, 0] so that we can use the
8772 * sign as trigger.
8773 */
8774
ab573844 8775u64 perf_swevent_set_period(struct perf_event *event)
15dbf27c 8776{
cdd6c482 8777 struct hw_perf_event *hwc = &event->hw;
7b4b6658
PZ
8778 u64 period = hwc->last_period;
8779 u64 nr, offset;
8780 s64 old, val;
8781
8782 hwc->last_period = hwc->sample_period;
15dbf27c
PZ
8783
8784again:
e7850595 8785 old = val = local64_read(&hwc->period_left);
7b4b6658
PZ
8786 if (val < 0)
8787 return 0;
15dbf27c 8788
7b4b6658
PZ
8789 nr = div64_u64(period + val, period);
8790 offset = nr * period;
8791 val -= offset;
e7850595 8792 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
7b4b6658 8793 goto again;
15dbf27c 8794
7b4b6658 8795 return nr;
15dbf27c
PZ
8796}
8797
0cff784a 8798static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
a8b0ca17 8799 struct perf_sample_data *data,
5622f295 8800 struct pt_regs *regs)
15dbf27c 8801{
cdd6c482 8802 struct hw_perf_event *hwc = &event->hw;
850bc73f 8803 int throttle = 0;
15dbf27c 8804
0cff784a
PZ
8805 if (!overflow)
8806 overflow = perf_swevent_set_period(event);
15dbf27c 8807
7b4b6658
PZ
8808 if (hwc->interrupts == MAX_INTERRUPTS)
8809 return;
15dbf27c 8810
7b4b6658 8811 for (; overflow; overflow--) {
a8b0ca17 8812 if (__perf_event_overflow(event, throttle,
5622f295 8813 data, regs)) {
7b4b6658
PZ
8814 /*
8815 * We inhibit the overflow from happening when
8816 * hwc->interrupts == MAX_INTERRUPTS.
8817 */
8818 break;
8819 }
cf450a73 8820 throttle = 1;
7b4b6658 8821 }
15dbf27c
PZ
8822}
8823
a4eaf7f1 8824static void perf_swevent_event(struct perf_event *event, u64 nr,
a8b0ca17 8825 struct perf_sample_data *data,
5622f295 8826 struct pt_regs *regs)
7b4b6658 8827{
cdd6c482 8828 struct hw_perf_event *hwc = &event->hw;
d6d020e9 8829
e7850595 8830 local64_add(nr, &event->count);
d6d020e9 8831
0cff784a
PZ
8832 if (!regs)
8833 return;
8834
6c7e550f 8835 if (!is_sampling_event(event))
7b4b6658 8836 return;
d6d020e9 8837
5d81e5cf
AV
8838 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
8839 data->period = nr;
8840 return perf_swevent_overflow(event, 1, data, regs);
8841 } else
8842 data->period = event->hw.last_period;
8843
0cff784a 8844 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
a8b0ca17 8845 return perf_swevent_overflow(event, 1, data, regs);
0cff784a 8846
e7850595 8847 if (local64_add_negative(nr, &hwc->period_left))
7b4b6658 8848 return;
df1a132b 8849
a8b0ca17 8850 perf_swevent_overflow(event, 0, data, regs);
d6d020e9
PZ
8851}
8852
f5ffe02e
FW
8853static int perf_exclude_event(struct perf_event *event,
8854 struct pt_regs *regs)
8855{
a4eaf7f1 8856 if (event->hw.state & PERF_HES_STOPPED)
91b2f482 8857 return 1;
a4eaf7f1 8858
f5ffe02e
FW
8859 if (regs) {
8860 if (event->attr.exclude_user && user_mode(regs))
8861 return 1;
8862
8863 if (event->attr.exclude_kernel && !user_mode(regs))
8864 return 1;
8865 }
8866
8867 return 0;
8868}
8869
cdd6c482 8870static int perf_swevent_match(struct perf_event *event,
1c432d89 8871 enum perf_type_id type,
6fb2915d
LZ
8872 u32 event_id,
8873 struct perf_sample_data *data,
8874 struct pt_regs *regs)
15dbf27c 8875{
cdd6c482 8876 if (event->attr.type != type)
a21ca2ca 8877 return 0;
f5ffe02e 8878
cdd6c482 8879 if (event->attr.config != event_id)
15dbf27c
PZ
8880 return 0;
8881
f5ffe02e
FW
8882 if (perf_exclude_event(event, regs))
8883 return 0;
15dbf27c
PZ
8884
8885 return 1;
8886}
8887
76e1d904
FW
8888static inline u64 swevent_hash(u64 type, u32 event_id)
8889{
8890 u64 val = event_id | (type << 32);
8891
8892 return hash_64(val, SWEVENT_HLIST_BITS);
8893}
8894
49f135ed
FW
8895static inline struct hlist_head *
8896__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
76e1d904 8897{
49f135ed
FW
8898 u64 hash = swevent_hash(type, event_id);
8899
8900 return &hlist->heads[hash];
8901}
76e1d904 8902
49f135ed
FW
8903/* For the read side: events when they trigger */
8904static inline struct hlist_head *
b28ab83c 8905find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
49f135ed
FW
8906{
8907 struct swevent_hlist *hlist;
76e1d904 8908
b28ab83c 8909 hlist = rcu_dereference(swhash->swevent_hlist);
76e1d904
FW
8910 if (!hlist)
8911 return NULL;
8912
49f135ed
FW
8913 return __find_swevent_head(hlist, type, event_id);
8914}
8915
8916/* For the event head insertion and removal in the hlist */
8917static inline struct hlist_head *
b28ab83c 8918find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
49f135ed
FW
8919{
8920 struct swevent_hlist *hlist;
8921 u32 event_id = event->attr.config;
8922 u64 type = event->attr.type;
8923
8924 /*
8925 * Event scheduling is always serialized against hlist allocation
8926 * and release. Which makes the protected version suitable here.
8927 * The context lock guarantees that.
8928 */
b28ab83c 8929 hlist = rcu_dereference_protected(swhash->swevent_hlist,
49f135ed
FW
8930 lockdep_is_held(&event->ctx->lock));
8931 if (!hlist)
8932 return NULL;
8933
8934 return __find_swevent_head(hlist, type, event_id);
76e1d904
FW
8935}
8936
8937static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
a8b0ca17 8938 u64 nr,
76e1d904
FW
8939 struct perf_sample_data *data,
8940 struct pt_regs *regs)
15dbf27c 8941{
4a32fea9 8942 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
cdd6c482 8943 struct perf_event *event;
76e1d904 8944 struct hlist_head *head;
15dbf27c 8945
76e1d904 8946 rcu_read_lock();
b28ab83c 8947 head = find_swevent_head_rcu(swhash, type, event_id);
76e1d904
FW
8948 if (!head)
8949 goto end;
8950
b67bfe0d 8951 hlist_for_each_entry_rcu(event, head, hlist_entry) {
6fb2915d 8952 if (perf_swevent_match(event, type, event_id, data, regs))
a8b0ca17 8953 perf_swevent_event(event, nr, data, regs);
15dbf27c 8954 }
76e1d904
FW
8955end:
8956 rcu_read_unlock();
15dbf27c
PZ
8957}
8958
86038c5e
PZI
8959DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
8960
4ed7c92d 8961int perf_swevent_get_recursion_context(void)
96f6d444 8962{
4a32fea9 8963 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
96f6d444 8964
b28ab83c 8965 return get_recursion_context(swhash->recursion);
96f6d444 8966}
645e8cc0 8967EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
96f6d444 8968
98b5c2c6 8969void perf_swevent_put_recursion_context(int rctx)
15dbf27c 8970{
4a32fea9 8971 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
927c7a9e 8972
b28ab83c 8973 put_recursion_context(swhash->recursion, rctx);
ce71b9df 8974}
15dbf27c 8975
86038c5e 8976void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
b8e83514 8977{
a4234bfc 8978 struct perf_sample_data data;
4ed7c92d 8979
86038c5e 8980 if (WARN_ON_ONCE(!regs))
4ed7c92d 8981 return;
a4234bfc 8982
fd0d000b 8983 perf_sample_data_init(&data, addr, 0);
a8b0ca17 8984 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
86038c5e
PZI
8985}
8986
8987void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
8988{
8989 int rctx;
8990
8991 preempt_disable_notrace();
8992 rctx = perf_swevent_get_recursion_context();
8993 if (unlikely(rctx < 0))
8994 goto fail;
8995
8996 ___perf_sw_event(event_id, nr, regs, addr);
4ed7c92d
PZ
8997
8998 perf_swevent_put_recursion_context(rctx);
86038c5e 8999fail:
1c024eca 9000 preempt_enable_notrace();
b8e83514
PZ
9001}
9002
cdd6c482 9003static void perf_swevent_read(struct perf_event *event)
15dbf27c 9004{
15dbf27c
PZ
9005}
9006
a4eaf7f1 9007static int perf_swevent_add(struct perf_event *event, int flags)
15dbf27c 9008{
4a32fea9 9009 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
cdd6c482 9010 struct hw_perf_event *hwc = &event->hw;
76e1d904
FW
9011 struct hlist_head *head;
9012
6c7e550f 9013 if (is_sampling_event(event)) {
7b4b6658 9014 hwc->last_period = hwc->sample_period;
cdd6c482 9015 perf_swevent_set_period(event);
7b4b6658 9016 }
76e1d904 9017
a4eaf7f1
PZ
9018 hwc->state = !(flags & PERF_EF_START);
9019
b28ab83c 9020 head = find_swevent_head(swhash, event);
12ca6ad2 9021 if (WARN_ON_ONCE(!head))
76e1d904
FW
9022 return -EINVAL;
9023
9024 hlist_add_head_rcu(&event->hlist_entry, head);
6a694a60 9025 perf_event_update_userpage(event);
76e1d904 9026
15dbf27c
PZ
9027 return 0;
9028}
9029
a4eaf7f1 9030static void perf_swevent_del(struct perf_event *event, int flags)
15dbf27c 9031{
76e1d904 9032 hlist_del_rcu(&event->hlist_entry);
15dbf27c
PZ
9033}
9034
a4eaf7f1 9035static void perf_swevent_start(struct perf_event *event, int flags)
5c92d124 9036{
a4eaf7f1 9037 event->hw.state = 0;
d6d020e9 9038}
aa9c4c0f 9039
a4eaf7f1 9040static void perf_swevent_stop(struct perf_event *event, int flags)
d6d020e9 9041{
a4eaf7f1 9042 event->hw.state = PERF_HES_STOPPED;
bae43c99
IM
9043}
9044
49f135ed
FW
9045/* Deref the hlist from the update side */
9046static inline struct swevent_hlist *
b28ab83c 9047swevent_hlist_deref(struct swevent_htable *swhash)
49f135ed 9048{
b28ab83c
PZ
9049 return rcu_dereference_protected(swhash->swevent_hlist,
9050 lockdep_is_held(&swhash->hlist_mutex));
49f135ed
FW
9051}
9052
b28ab83c 9053static void swevent_hlist_release(struct swevent_htable *swhash)
76e1d904 9054{
b28ab83c 9055 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
76e1d904 9056
49f135ed 9057 if (!hlist)
76e1d904
FW
9058 return;
9059
70691d4a 9060 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
fa4bbc4c 9061 kfree_rcu(hlist, rcu_head);
76e1d904
FW
9062}
9063
3b364d7b 9064static void swevent_hlist_put_cpu(int cpu)
76e1d904 9065{
b28ab83c 9066 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
76e1d904 9067
b28ab83c 9068 mutex_lock(&swhash->hlist_mutex);
76e1d904 9069
b28ab83c
PZ
9070 if (!--swhash->hlist_refcount)
9071 swevent_hlist_release(swhash);
76e1d904 9072
b28ab83c 9073 mutex_unlock(&swhash->hlist_mutex);
76e1d904
FW
9074}
9075
3b364d7b 9076static void swevent_hlist_put(void)
76e1d904
FW
9077{
9078 int cpu;
9079
76e1d904 9080 for_each_possible_cpu(cpu)
3b364d7b 9081 swevent_hlist_put_cpu(cpu);
76e1d904
FW
9082}
9083
3b364d7b 9084static int swevent_hlist_get_cpu(int cpu)
76e1d904 9085{
b28ab83c 9086 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
76e1d904
FW
9087 int err = 0;
9088
b28ab83c 9089 mutex_lock(&swhash->hlist_mutex);
a63fbed7
TG
9090 if (!swevent_hlist_deref(swhash) &&
9091 cpumask_test_cpu(cpu, perf_online_mask)) {
76e1d904
FW
9092 struct swevent_hlist *hlist;
9093
9094 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
9095 if (!hlist) {
9096 err = -ENOMEM;
9097 goto exit;
9098 }
b28ab83c 9099 rcu_assign_pointer(swhash->swevent_hlist, hlist);
76e1d904 9100 }
b28ab83c 9101 swhash->hlist_refcount++;
9ed6060d 9102exit:
b28ab83c 9103 mutex_unlock(&swhash->hlist_mutex);
76e1d904
FW
9104
9105 return err;
9106}
9107
3b364d7b 9108static int swevent_hlist_get(void)
76e1d904 9109{
3b364d7b 9110 int err, cpu, failed_cpu;
76e1d904 9111
a63fbed7 9112 mutex_lock(&pmus_lock);
76e1d904 9113 for_each_possible_cpu(cpu) {
3b364d7b 9114 err = swevent_hlist_get_cpu(cpu);
76e1d904
FW
9115 if (err) {
9116 failed_cpu = cpu;
9117 goto fail;
9118 }
9119 }
a63fbed7 9120 mutex_unlock(&pmus_lock);
76e1d904 9121 return 0;
9ed6060d 9122fail:
76e1d904
FW
9123 for_each_possible_cpu(cpu) {
9124 if (cpu == failed_cpu)
9125 break;
3b364d7b 9126 swevent_hlist_put_cpu(cpu);
76e1d904 9127 }
a63fbed7 9128 mutex_unlock(&pmus_lock);
76e1d904
FW
9129 return err;
9130}
9131
c5905afb 9132struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
95476b64 9133
b0a873eb
PZ
9134static void sw_perf_event_destroy(struct perf_event *event)
9135{
9136 u64 event_id = event->attr.config;
95476b64 9137
b0a873eb
PZ
9138 WARN_ON(event->parent);
9139
c5905afb 9140 static_key_slow_dec(&perf_swevent_enabled[event_id]);
3b364d7b 9141 swevent_hlist_put();
b0a873eb
PZ
9142}
9143
9144static int perf_swevent_init(struct perf_event *event)
9145{
8176cced 9146 u64 event_id = event->attr.config;
b0a873eb
PZ
9147
9148 if (event->attr.type != PERF_TYPE_SOFTWARE)
9149 return -ENOENT;
9150
2481c5fa
SE
9151 /*
9152 * no branch sampling for software events
9153 */
9154 if (has_branch_stack(event))
9155 return -EOPNOTSUPP;
9156
b0a873eb
PZ
9157 switch (event_id) {
9158 case PERF_COUNT_SW_CPU_CLOCK:
9159 case PERF_COUNT_SW_TASK_CLOCK:
9160 return -ENOENT;
9161
9162 default:
9163 break;
9164 }
9165
ce677831 9166 if (event_id >= PERF_COUNT_SW_MAX)
b0a873eb
PZ
9167 return -ENOENT;
9168
9169 if (!event->parent) {
9170 int err;
9171
3b364d7b 9172 err = swevent_hlist_get();
b0a873eb
PZ
9173 if (err)
9174 return err;
9175
c5905afb 9176 static_key_slow_inc(&perf_swevent_enabled[event_id]);
b0a873eb
PZ
9177 event->destroy = sw_perf_event_destroy;
9178 }
9179
9180 return 0;
9181}
9182
9183static struct pmu perf_swevent = {
89a1e187 9184 .task_ctx_nr = perf_sw_context,
95476b64 9185
34f43927
PZ
9186 .capabilities = PERF_PMU_CAP_NO_NMI,
9187
b0a873eb 9188 .event_init = perf_swevent_init,
a4eaf7f1
PZ
9189 .add = perf_swevent_add,
9190 .del = perf_swevent_del,
9191 .start = perf_swevent_start,
9192 .stop = perf_swevent_stop,
1c024eca 9193 .read = perf_swevent_read,
1c024eca
PZ
9194};
9195
b0a873eb
PZ
9196#ifdef CONFIG_EVENT_TRACING
9197
1c024eca
PZ
9198static int perf_tp_filter_match(struct perf_event *event,
9199 struct perf_sample_data *data)
9200{
7e3f977e 9201 void *record = data->raw->frag.data;
1c024eca 9202
b71b437e
PZ
9203 /* only top level events have filters set */
9204 if (event->parent)
9205 event = event->parent;
9206
1c024eca
PZ
9207 if (likely(!event->filter) || filter_match_preds(event->filter, record))
9208 return 1;
9209 return 0;
9210}
9211
9212static int perf_tp_event_match(struct perf_event *event,
9213 struct perf_sample_data *data,
9214 struct pt_regs *regs)
9215{
a0f7d0f7
FW
9216 if (event->hw.state & PERF_HES_STOPPED)
9217 return 0;
580d607c 9218 /*
9fd2e48b 9219 * If exclude_kernel, only trace user-space tracepoints (uprobes)
580d607c 9220 */
9fd2e48b 9221 if (event->attr.exclude_kernel && !user_mode(regs))
1c024eca
PZ
9222 return 0;
9223
9224 if (!perf_tp_filter_match(event, data))
9225 return 0;
9226
9227 return 1;
9228}
9229
85b67bcb
AS
9230void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx,
9231 struct trace_event_call *call, u64 count,
9232 struct pt_regs *regs, struct hlist_head *head,
9233 struct task_struct *task)
9234{
e87c6bc3 9235 if (bpf_prog_array_valid(call)) {
85b67bcb 9236 *(struct pt_regs **)raw_data = regs;
e87c6bc3 9237 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) {
85b67bcb
AS
9238 perf_swevent_put_recursion_context(rctx);
9239 return;
9240 }
9241 }
9242 perf_tp_event(call->event.type, count, raw_data, size, regs, head,
8fd0fbbe 9243 rctx, task);
85b67bcb
AS
9244}
9245EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit);
9246
1e1dcd93 9247void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
e6dab5ff 9248 struct pt_regs *regs, struct hlist_head *head, int rctx,
8fd0fbbe 9249 struct task_struct *task)
95476b64
FW
9250{
9251 struct perf_sample_data data;
8fd0fbbe 9252 struct perf_event *event;
1c024eca 9253
95476b64 9254 struct perf_raw_record raw = {
7e3f977e
DB
9255 .frag = {
9256 .size = entry_size,
9257 .data = record,
9258 },
95476b64
FW
9259 };
9260
1e1dcd93 9261 perf_sample_data_init(&data, 0, 0);
95476b64
FW
9262 data.raw = &raw;
9263
1e1dcd93
AS
9264 perf_trace_buf_update(record, event_type);
9265
8fd0fbbe 9266 hlist_for_each_entry_rcu(event, head, hlist_entry) {
1c024eca 9267 if (perf_tp_event_match(event, &data, regs))
a8b0ca17 9268 perf_swevent_event(event, count, &data, regs);
4f41c013 9269 }
ecc55f84 9270
e6dab5ff
AV
9271 /*
9272 * If we got specified a target task, also iterate its context and
9273 * deliver this event there too.
9274 */
9275 if (task && task != current) {
9276 struct perf_event_context *ctx;
9277 struct trace_entry *entry = record;
9278
9279 rcu_read_lock();
9280 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
9281 if (!ctx)
9282 goto unlock;
9283
9284 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
cd6fb677
JO
9285 if (event->cpu != smp_processor_id())
9286 continue;
e6dab5ff
AV
9287 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9288 continue;
9289 if (event->attr.config != entry->type)
9290 continue;
9291 if (perf_tp_event_match(event, &data, regs))
9292 perf_swevent_event(event, count, &data, regs);
9293 }
9294unlock:
9295 rcu_read_unlock();
9296 }
9297
ecc55f84 9298 perf_swevent_put_recursion_context(rctx);
95476b64
FW
9299}
9300EXPORT_SYMBOL_GPL(perf_tp_event);
9301
cdd6c482 9302static void tp_perf_event_destroy(struct perf_event *event)
e077df4f 9303{
1c024eca 9304 perf_trace_destroy(event);
e077df4f
PZ
9305}
9306
b0a873eb 9307static int perf_tp_event_init(struct perf_event *event)
e077df4f 9308{
76e1d904
FW
9309 int err;
9310
b0a873eb
PZ
9311 if (event->attr.type != PERF_TYPE_TRACEPOINT)
9312 return -ENOENT;
9313
2481c5fa
SE
9314 /*
9315 * no branch sampling for tracepoint events
9316 */
9317 if (has_branch_stack(event))
9318 return -EOPNOTSUPP;
9319
1c024eca
PZ
9320 err = perf_trace_init(event);
9321 if (err)
b0a873eb 9322 return err;
e077df4f 9323
cdd6c482 9324 event->destroy = tp_perf_event_destroy;
e077df4f 9325
b0a873eb
PZ
9326 return 0;
9327}
9328
9329static struct pmu perf_tracepoint = {
89a1e187
PZ
9330 .task_ctx_nr = perf_sw_context,
9331
b0a873eb 9332 .event_init = perf_tp_event_init,
a4eaf7f1
PZ
9333 .add = perf_trace_add,
9334 .del = perf_trace_del,
9335 .start = perf_swevent_start,
9336 .stop = perf_swevent_stop,
b0a873eb 9337 .read = perf_swevent_read,
b0a873eb
PZ
9338};
9339
33ea4b24 9340#if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS)
e12f03d7
SL
9341/*
9342 * Flags in config, used by dynamic PMU kprobe and uprobe
9343 * The flags should match following PMU_FORMAT_ATTR().
9344 *
9345 * PERF_PROBE_CONFIG_IS_RETPROBE if set, create kretprobe/uretprobe
9346 * if not set, create kprobe/uprobe
a6ca88b2
SL
9347 *
9348 * The following values specify a reference counter (or semaphore in the
9349 * terminology of tools like dtrace, systemtap, etc.) Userspace Statically
9350 * Defined Tracepoints (USDT). Currently, we use 40 bit for the offset.
9351 *
9352 * PERF_UPROBE_REF_CTR_OFFSET_BITS # of bits in config as th offset
9353 * PERF_UPROBE_REF_CTR_OFFSET_SHIFT # of bits to shift left
e12f03d7
SL
9354 */
9355enum perf_probe_config {
9356 PERF_PROBE_CONFIG_IS_RETPROBE = 1U << 0, /* [k,u]retprobe */
a6ca88b2
SL
9357 PERF_UPROBE_REF_CTR_OFFSET_BITS = 32,
9358 PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 64 - PERF_UPROBE_REF_CTR_OFFSET_BITS,
e12f03d7
SL
9359};
9360
9361PMU_FORMAT_ATTR(retprobe, "config:0");
a6ca88b2 9362#endif
e12f03d7 9363
a6ca88b2
SL
9364#ifdef CONFIG_KPROBE_EVENTS
9365static struct attribute *kprobe_attrs[] = {
e12f03d7
SL
9366 &format_attr_retprobe.attr,
9367 NULL,
9368};
9369
a6ca88b2 9370static struct attribute_group kprobe_format_group = {
e12f03d7 9371 .name = "format",
a6ca88b2 9372 .attrs = kprobe_attrs,
e12f03d7
SL
9373};
9374
a6ca88b2
SL
9375static const struct attribute_group *kprobe_attr_groups[] = {
9376 &kprobe_format_group,
e12f03d7
SL
9377 NULL,
9378};
9379
9380static int perf_kprobe_event_init(struct perf_event *event);
9381static struct pmu perf_kprobe = {
9382 .task_ctx_nr = perf_sw_context,
9383 .event_init = perf_kprobe_event_init,
9384 .add = perf_trace_add,
9385 .del = perf_trace_del,
9386 .start = perf_swevent_start,
9387 .stop = perf_swevent_stop,
9388 .read = perf_swevent_read,
a6ca88b2 9389 .attr_groups = kprobe_attr_groups,
e12f03d7
SL
9390};
9391
9392static int perf_kprobe_event_init(struct perf_event *event)
9393{
9394 int err;
9395 bool is_retprobe;
9396
9397 if (event->attr.type != perf_kprobe.type)
9398 return -ENOENT;
32e6e967
SL
9399
9400 if (!capable(CAP_SYS_ADMIN))
9401 return -EACCES;
9402
e12f03d7
SL
9403 /*
9404 * no branch sampling for probe events
9405 */
9406 if (has_branch_stack(event))
9407 return -EOPNOTSUPP;
9408
9409 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
9410 err = perf_kprobe_init(event, is_retprobe);
9411 if (err)
9412 return err;
9413
9414 event->destroy = perf_kprobe_destroy;
9415
9416 return 0;
9417}
9418#endif /* CONFIG_KPROBE_EVENTS */
9419
33ea4b24 9420#ifdef CONFIG_UPROBE_EVENTS
a6ca88b2
SL
9421PMU_FORMAT_ATTR(ref_ctr_offset, "config:32-63");
9422
9423static struct attribute *uprobe_attrs[] = {
9424 &format_attr_retprobe.attr,
9425 &format_attr_ref_ctr_offset.attr,
9426 NULL,
9427};
9428
9429static struct attribute_group uprobe_format_group = {
9430 .name = "format",
9431 .attrs = uprobe_attrs,
9432};
9433
9434static const struct attribute_group *uprobe_attr_groups[] = {
9435 &uprobe_format_group,
9436 NULL,
9437};
9438
33ea4b24
SL
9439static int perf_uprobe_event_init(struct perf_event *event);
9440static struct pmu perf_uprobe = {
9441 .task_ctx_nr = perf_sw_context,
9442 .event_init = perf_uprobe_event_init,
9443 .add = perf_trace_add,
9444 .del = perf_trace_del,
9445 .start = perf_swevent_start,
9446 .stop = perf_swevent_stop,
9447 .read = perf_swevent_read,
a6ca88b2 9448 .attr_groups = uprobe_attr_groups,
33ea4b24
SL
9449};
9450
9451static int perf_uprobe_event_init(struct perf_event *event)
9452{
9453 int err;
a6ca88b2 9454 unsigned long ref_ctr_offset;
33ea4b24
SL
9455 bool is_retprobe;
9456
9457 if (event->attr.type != perf_uprobe.type)
9458 return -ENOENT;
32e6e967
SL
9459
9460 if (!capable(CAP_SYS_ADMIN))
9461 return -EACCES;
9462
33ea4b24
SL
9463 /*
9464 * no branch sampling for probe events
9465 */
9466 if (has_branch_stack(event))
9467 return -EOPNOTSUPP;
9468
9469 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE;
a6ca88b2
SL
9470 ref_ctr_offset = event->attr.config >> PERF_UPROBE_REF_CTR_OFFSET_SHIFT;
9471 err = perf_uprobe_init(event, ref_ctr_offset, is_retprobe);
33ea4b24
SL
9472 if (err)
9473 return err;
9474
9475 event->destroy = perf_uprobe_destroy;
9476
9477 return 0;
9478}
9479#endif /* CONFIG_UPROBE_EVENTS */
9480
b0a873eb
PZ
9481static inline void perf_tp_register(void)
9482{
2e80a82a 9483 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
e12f03d7
SL
9484#ifdef CONFIG_KPROBE_EVENTS
9485 perf_pmu_register(&perf_kprobe, "kprobe", -1);
9486#endif
33ea4b24
SL
9487#ifdef CONFIG_UPROBE_EVENTS
9488 perf_pmu_register(&perf_uprobe, "uprobe", -1);
9489#endif
e077df4f 9490}
6fb2915d 9491
6fb2915d
LZ
9492static void perf_event_free_filter(struct perf_event *event)
9493{
9494 ftrace_profile_free_filter(event);
9495}
9496
aa6a5f3c
AS
9497#ifdef CONFIG_BPF_SYSCALL
9498static void bpf_overflow_handler(struct perf_event *event,
9499 struct perf_sample_data *data,
9500 struct pt_regs *regs)
9501{
9502 struct bpf_perf_event_data_kern ctx = {
9503 .data = data,
7d9285e8 9504 .event = event,
aa6a5f3c
AS
9505 };
9506 int ret = 0;
9507
c895f6f7 9508 ctx.regs = perf_arch_bpf_user_pt_regs(regs);
aa6a5f3c
AS
9509 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1))
9510 goto out;
9511 rcu_read_lock();
88575199 9512 ret = BPF_PROG_RUN(event->prog, &ctx);
aa6a5f3c
AS
9513 rcu_read_unlock();
9514out:
9515 __this_cpu_dec(bpf_prog_active);
aa6a5f3c
AS
9516 if (!ret)
9517 return;
9518
9519 event->orig_overflow_handler(event, data, regs);
9520}
9521
9522static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
9523{
9524 struct bpf_prog *prog;
9525
9526 if (event->overflow_handler_context)
9527 /* hw breakpoint or kernel counter */
9528 return -EINVAL;
9529
9530 if (event->prog)
9531 return -EEXIST;
9532
9533 prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
9534 if (IS_ERR(prog))
9535 return PTR_ERR(prog);
9536
9537 event->prog = prog;
9538 event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
9539 WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
9540 return 0;
9541}
9542
9543static void perf_event_free_bpf_handler(struct perf_event *event)
9544{
9545 struct bpf_prog *prog = event->prog;
9546
9547 if (!prog)
9548 return;
9549
9550 WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
9551 event->prog = NULL;
9552 bpf_prog_put(prog);
9553}
9554#else
9555static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
9556{
9557 return -EOPNOTSUPP;
9558}
9559static void perf_event_free_bpf_handler(struct perf_event *event)
9560{
9561}
9562#endif
9563
e12f03d7
SL
9564/*
9565 * returns true if the event is a tracepoint, or a kprobe/upprobe created
9566 * with perf_event_open()
9567 */
9568static inline bool perf_event_is_tracing(struct perf_event *event)
9569{
9570 if (event->pmu == &perf_tracepoint)
9571 return true;
9572#ifdef CONFIG_KPROBE_EVENTS
9573 if (event->pmu == &perf_kprobe)
9574 return true;
33ea4b24
SL
9575#endif
9576#ifdef CONFIG_UPROBE_EVENTS
9577 if (event->pmu == &perf_uprobe)
9578 return true;
e12f03d7
SL
9579#endif
9580 return false;
9581}
9582
2541517c
AS
9583static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
9584{
cf5f5cea 9585 bool is_kprobe, is_tracepoint, is_syscall_tp;
2541517c 9586 struct bpf_prog *prog;
e87c6bc3 9587 int ret;
2541517c 9588
e12f03d7 9589 if (!perf_event_is_tracing(event))
f91840a3 9590 return perf_event_set_bpf_handler(event, prog_fd);
2541517c 9591
98b5c2c6
AS
9592 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE;
9593 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT;
cf5f5cea
YS
9594 is_syscall_tp = is_syscall_trace_event(event->tp_event);
9595 if (!is_kprobe && !is_tracepoint && !is_syscall_tp)
98b5c2c6 9596 /* bpf programs can only be attached to u/kprobe or tracepoint */
2541517c
AS
9597 return -EINVAL;
9598
9599 prog = bpf_prog_get(prog_fd);
9600 if (IS_ERR(prog))
9601 return PTR_ERR(prog);
9602
98b5c2c6 9603 if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) ||
cf5f5cea
YS
9604 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) ||
9605 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT)) {
2541517c
AS
9606 /* valid fd, but invalid bpf program type */
9607 bpf_prog_put(prog);
9608 return -EINVAL;
9609 }
9610
9802d865
JB
9611 /* Kprobe override only works for kprobes, not uprobes. */
9612 if (prog->kprobe_override &&
9613 !(event->tp_event->flags & TRACE_EVENT_FL_KPROBE)) {
9614 bpf_prog_put(prog);
9615 return -EINVAL;
9616 }
9617
cf5f5cea 9618 if (is_tracepoint || is_syscall_tp) {
32bbe007
AS
9619 int off = trace_event_get_offsets(event->tp_event);
9620
9621 if (prog->aux->max_ctx_offset > off) {
9622 bpf_prog_put(prog);
9623 return -EACCES;
9624 }
9625 }
2541517c 9626
e87c6bc3
YS
9627 ret = perf_event_attach_bpf_prog(event, prog);
9628 if (ret)
9629 bpf_prog_put(prog);
9630 return ret;
2541517c
AS
9631}
9632
9633static void perf_event_free_bpf_prog(struct perf_event *event)
9634{
e12f03d7 9635 if (!perf_event_is_tracing(event)) {
0b4c6841 9636 perf_event_free_bpf_handler(event);
2541517c 9637 return;
2541517c 9638 }
e87c6bc3 9639 perf_event_detach_bpf_prog(event);
2541517c
AS
9640}
9641
e077df4f 9642#else
6fb2915d 9643
b0a873eb 9644static inline void perf_tp_register(void)
e077df4f 9645{
e077df4f 9646}
6fb2915d 9647
6fb2915d
LZ
9648static void perf_event_free_filter(struct perf_event *event)
9649{
9650}
9651
2541517c
AS
9652static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
9653{
9654 return -ENOENT;
9655}
9656
9657static void perf_event_free_bpf_prog(struct perf_event *event)
9658{
9659}
07b139c8 9660#endif /* CONFIG_EVENT_TRACING */
e077df4f 9661
24f1e32c 9662#ifdef CONFIG_HAVE_HW_BREAKPOINT
f5ffe02e 9663void perf_bp_event(struct perf_event *bp, void *data)
24f1e32c 9664{
f5ffe02e
FW
9665 struct perf_sample_data sample;
9666 struct pt_regs *regs = data;
9667
fd0d000b 9668 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
f5ffe02e 9669
a4eaf7f1 9670 if (!bp->hw.state && !perf_exclude_event(bp, regs))
a8b0ca17 9671 perf_swevent_event(bp, 1, &sample, regs);
24f1e32c
FW
9672}
9673#endif
9674
375637bc
AS
9675/*
9676 * Allocate a new address filter
9677 */
9678static struct perf_addr_filter *
9679perf_addr_filter_new(struct perf_event *event, struct list_head *filters)
9680{
9681 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu);
9682 struct perf_addr_filter *filter;
9683
9684 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node);
9685 if (!filter)
9686 return NULL;
9687
9688 INIT_LIST_HEAD(&filter->entry);
9689 list_add_tail(&filter->entry, filters);
9690
9691 return filter;
9692}
9693
9694static void free_filters_list(struct list_head *filters)
9695{
9696 struct perf_addr_filter *filter, *iter;
9697
9698 list_for_each_entry_safe(filter, iter, filters, entry) {
9511bce9 9699 path_put(&filter->path);
375637bc
AS
9700 list_del(&filter->entry);
9701 kfree(filter);
9702 }
9703}
9704
9705/*
9706 * Free existing address filters and optionally install new ones
9707 */
9708static void perf_addr_filters_splice(struct perf_event *event,
9709 struct list_head *head)
9710{
9711 unsigned long flags;
9712 LIST_HEAD(list);
9713
9714 if (!has_addr_filter(event))
9715 return;
9716
9717 /* don't bother with children, they don't have their own filters */
9718 if (event->parent)
9719 return;
9720
9721 raw_spin_lock_irqsave(&event->addr_filters.lock, flags);
9722
9723 list_splice_init(&event->addr_filters.list, &list);
9724 if (head)
9725 list_splice(head, &event->addr_filters.list);
9726
9727 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags);
9728
9729 free_filters_list(&list);
9730}
9731
9732/*
9733 * Scan through mm's vmas and see if one of them matches the
9734 * @filter; if so, adjust filter's address range.
9735 * Called with mm::mmap_sem down for reading.
9736 */
c60f83b8
AS
9737static void perf_addr_filter_apply(struct perf_addr_filter *filter,
9738 struct mm_struct *mm,
9739 struct perf_addr_filter_range *fr)
375637bc
AS
9740{
9741 struct vm_area_struct *vma;
9742
9743 for (vma = mm->mmap; vma; vma = vma->vm_next) {
c60f83b8 9744 if (!vma->vm_file)
375637bc
AS
9745 continue;
9746
c60f83b8
AS
9747 if (perf_addr_filter_vma_adjust(filter, vma, fr))
9748 return;
375637bc 9749 }
375637bc
AS
9750}
9751
9752/*
9753 * Update event's address range filters based on the
9754 * task's existing mappings, if any.
9755 */
9756static void perf_event_addr_filters_apply(struct perf_event *event)
9757{
9758 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
9759 struct task_struct *task = READ_ONCE(event->ctx->task);
9760 struct perf_addr_filter *filter;
9761 struct mm_struct *mm = NULL;
9762 unsigned int count = 0;
9763 unsigned long flags;
9764
9765 /*
9766 * We may observe TASK_TOMBSTONE, which means that the event tear-down
9767 * will stop on the parent's child_mutex that our caller is also holding
9768 */
9769 if (task == TASK_TOMBSTONE)
9770 return;
9771
52a44f83
AS
9772 if (ifh->nr_file_filters) {
9773 mm = get_task_mm(event->ctx->task);
9774 if (!mm)
9775 goto restart;
375637bc 9776
52a44f83
AS
9777 down_read(&mm->mmap_sem);
9778 }
375637bc
AS
9779
9780 raw_spin_lock_irqsave(&ifh->lock, flags);
9781 list_for_each_entry(filter, &ifh->list, entry) {
52a44f83
AS
9782 if (filter->path.dentry) {
9783 /*
9784 * Adjust base offset if the filter is associated to a
9785 * binary that needs to be mapped:
9786 */
9787 event->addr_filter_ranges[count].start = 0;
9788 event->addr_filter_ranges[count].size = 0;
375637bc 9789
c60f83b8 9790 perf_addr_filter_apply(filter, mm, &event->addr_filter_ranges[count]);
52a44f83
AS
9791 } else {
9792 event->addr_filter_ranges[count].start = filter->offset;
9793 event->addr_filter_ranges[count].size = filter->size;
9794 }
375637bc
AS
9795
9796 count++;
9797 }
9798
9799 event->addr_filters_gen++;
9800 raw_spin_unlock_irqrestore(&ifh->lock, flags);
9801
52a44f83
AS
9802 if (ifh->nr_file_filters) {
9803 up_read(&mm->mmap_sem);
375637bc 9804
52a44f83
AS
9805 mmput(mm);
9806 }
375637bc
AS
9807
9808restart:
767ae086 9809 perf_event_stop(event, 1);
375637bc
AS
9810}
9811
9812/*
9813 * Address range filtering: limiting the data to certain
9814 * instruction address ranges. Filters are ioctl()ed to us from
9815 * userspace as ascii strings.
9816 *
9817 * Filter string format:
9818 *
9819 * ACTION RANGE_SPEC
9820 * where ACTION is one of the
9821 * * "filter": limit the trace to this region
9822 * * "start": start tracing from this address
9823 * * "stop": stop tracing at this address/region;
9824 * RANGE_SPEC is
9825 * * for kernel addresses: <start address>[/<size>]
9826 * * for object files: <start address>[/<size>]@</path/to/object/file>
9827 *
6ed70cf3
AS
9828 * if <size> is not specified or is zero, the range is treated as a single
9829 * address; not valid for ACTION=="filter".
375637bc
AS
9830 */
9831enum {
e96271f3 9832 IF_ACT_NONE = -1,
375637bc
AS
9833 IF_ACT_FILTER,
9834 IF_ACT_START,
9835 IF_ACT_STOP,
9836 IF_SRC_FILE,
9837 IF_SRC_KERNEL,
9838 IF_SRC_FILEADDR,
9839 IF_SRC_KERNELADDR,
9840};
9841
9842enum {
9843 IF_STATE_ACTION = 0,
9844 IF_STATE_SOURCE,
9845 IF_STATE_END,
9846};
9847
9848static const match_table_t if_tokens = {
9849 { IF_ACT_FILTER, "filter" },
9850 { IF_ACT_START, "start" },
9851 { IF_ACT_STOP, "stop" },
9852 { IF_SRC_FILE, "%u/%u@%s" },
9853 { IF_SRC_KERNEL, "%u/%u" },
9854 { IF_SRC_FILEADDR, "%u@%s" },
9855 { IF_SRC_KERNELADDR, "%u" },
e96271f3 9856 { IF_ACT_NONE, NULL },
375637bc
AS
9857};
9858
9859/*
9860 * Address filter string parser
9861 */
9862static int
9863perf_event_parse_addr_filter(struct perf_event *event, char *fstr,
9864 struct list_head *filters)
9865{
9866 struct perf_addr_filter *filter = NULL;
9867 char *start, *orig, *filename = NULL;
375637bc
AS
9868 substring_t args[MAX_OPT_ARGS];
9869 int state = IF_STATE_ACTION, token;
9870 unsigned int kernel = 0;
9871 int ret = -EINVAL;
9872
9873 orig = fstr = kstrdup(fstr, GFP_KERNEL);
9874 if (!fstr)
9875 return -ENOMEM;
9876
9877 while ((start = strsep(&fstr, " ,\n")) != NULL) {
6ed70cf3
AS
9878 static const enum perf_addr_filter_action_t actions[] = {
9879 [IF_ACT_FILTER] = PERF_ADDR_FILTER_ACTION_FILTER,
9880 [IF_ACT_START] = PERF_ADDR_FILTER_ACTION_START,
9881 [IF_ACT_STOP] = PERF_ADDR_FILTER_ACTION_STOP,
9882 };
375637bc
AS
9883 ret = -EINVAL;
9884
9885 if (!*start)
9886 continue;
9887
9888 /* filter definition begins */
9889 if (state == IF_STATE_ACTION) {
9890 filter = perf_addr_filter_new(event, filters);
9891 if (!filter)
9892 goto fail;
9893 }
9894
9895 token = match_token(start, if_tokens, args);
9896 switch (token) {
9897 case IF_ACT_FILTER:
9898 case IF_ACT_START:
375637bc
AS
9899 case IF_ACT_STOP:
9900 if (state != IF_STATE_ACTION)
9901 goto fail;
9902
6ed70cf3 9903 filter->action = actions[token];
375637bc
AS
9904 state = IF_STATE_SOURCE;
9905 break;
9906
9907 case IF_SRC_KERNELADDR:
9908 case IF_SRC_KERNEL:
9909 kernel = 1;
10c3405f 9910 /* fall through */
375637bc
AS
9911
9912 case IF_SRC_FILEADDR:
9913 case IF_SRC_FILE:
9914 if (state != IF_STATE_SOURCE)
9915 goto fail;
9916
375637bc
AS
9917 *args[0].to = 0;
9918 ret = kstrtoul(args[0].from, 0, &filter->offset);
9919 if (ret)
9920 goto fail;
9921
6ed70cf3 9922 if (token == IF_SRC_KERNEL || token == IF_SRC_FILE) {
375637bc
AS
9923 *args[1].to = 0;
9924 ret = kstrtoul(args[1].from, 0, &filter->size);
9925 if (ret)
9926 goto fail;
9927 }
9928
4059ffd0 9929 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) {
6ed70cf3 9930 int fpos = token == IF_SRC_FILE ? 2 : 1;
4059ffd0
MP
9931
9932 filename = match_strdup(&args[fpos]);
375637bc
AS
9933 if (!filename) {
9934 ret = -ENOMEM;
9935 goto fail;
9936 }
9937 }
9938
9939 state = IF_STATE_END;
9940 break;
9941
9942 default:
9943 goto fail;
9944 }
9945
9946 /*
9947 * Filter definition is fully parsed, validate and install it.
9948 * Make sure that it doesn't contradict itself or the event's
9949 * attribute.
9950 */
9951 if (state == IF_STATE_END) {
9ccbfbb1 9952 ret = -EINVAL;
375637bc
AS
9953 if (kernel && event->attr.exclude_kernel)
9954 goto fail;
9955
6ed70cf3
AS
9956 /*
9957 * ACTION "filter" must have a non-zero length region
9958 * specified.
9959 */
9960 if (filter->action == PERF_ADDR_FILTER_ACTION_FILTER &&
9961 !filter->size)
9962 goto fail;
9963
375637bc
AS
9964 if (!kernel) {
9965 if (!filename)
9966 goto fail;
9967
6ce77bfd
AS
9968 /*
9969 * For now, we only support file-based filters
9970 * in per-task events; doing so for CPU-wide
9971 * events requires additional context switching
9972 * trickery, since same object code will be
9973 * mapped at different virtual addresses in
9974 * different processes.
9975 */
9976 ret = -EOPNOTSUPP;
9977 if (!event->ctx->task)
9978 goto fail_free_name;
9979
375637bc 9980 /* look up the path and grab its inode */
9511bce9
SL
9981 ret = kern_path(filename, LOOKUP_FOLLOW,
9982 &filter->path);
375637bc
AS
9983 if (ret)
9984 goto fail_free_name;
9985
375637bc
AS
9986 kfree(filename);
9987 filename = NULL;
9988
9989 ret = -EINVAL;
9511bce9
SL
9990 if (!filter->path.dentry ||
9991 !S_ISREG(d_inode(filter->path.dentry)
9992 ->i_mode))
375637bc 9993 goto fail;
6ce77bfd
AS
9994
9995 event->addr_filters.nr_file_filters++;
375637bc
AS
9996 }
9997
9998 /* ready to consume more filters */
9999 state = IF_STATE_ACTION;
10000 filter = NULL;
10001 }
10002 }
10003
10004 if (state != IF_STATE_ACTION)
10005 goto fail;
10006
10007 kfree(orig);
10008
10009 return 0;
10010
10011fail_free_name:
10012 kfree(filename);
10013fail:
10014 free_filters_list(filters);
10015 kfree(orig);
10016
10017 return ret;
10018}
10019
10020static int
10021perf_event_set_addr_filter(struct perf_event *event, char *filter_str)
10022{
10023 LIST_HEAD(filters);
10024 int ret;
10025
10026 /*
10027 * Since this is called in perf_ioctl() path, we're already holding
10028 * ctx::mutex.
10029 */
10030 lockdep_assert_held(&event->ctx->mutex);
10031
10032 if (WARN_ON_ONCE(event->parent))
10033 return -EINVAL;
10034
375637bc
AS
10035 ret = perf_event_parse_addr_filter(event, filter_str, &filters);
10036 if (ret)
6ce77bfd 10037 goto fail_clear_files;
375637bc
AS
10038
10039 ret = event->pmu->addr_filters_validate(&filters);
6ce77bfd
AS
10040 if (ret)
10041 goto fail_free_filters;
375637bc
AS
10042
10043 /* remove existing filters, if any */
10044 perf_addr_filters_splice(event, &filters);
10045
10046 /* install new filters */
10047 perf_event_for_each_child(event, perf_event_addr_filters_apply);
10048
6ce77bfd
AS
10049 return ret;
10050
10051fail_free_filters:
10052 free_filters_list(&filters);
10053
10054fail_clear_files:
10055 event->addr_filters.nr_file_filters = 0;
10056
375637bc
AS
10057 return ret;
10058}
10059
c796bbbe
AS
10060static int perf_event_set_filter(struct perf_event *event, void __user *arg)
10061{
c796bbbe 10062 int ret = -EINVAL;
e12f03d7 10063 char *filter_str;
c796bbbe
AS
10064
10065 filter_str = strndup_user(arg, PAGE_SIZE);
10066 if (IS_ERR(filter_str))
10067 return PTR_ERR(filter_str);
10068
e12f03d7
SL
10069#ifdef CONFIG_EVENT_TRACING
10070 if (perf_event_is_tracing(event)) {
10071 struct perf_event_context *ctx = event->ctx;
10072
10073 /*
10074 * Beware, here be dragons!!
10075 *
10076 * the tracepoint muck will deadlock against ctx->mutex, but
10077 * the tracepoint stuff does not actually need it. So
10078 * temporarily drop ctx->mutex. As per perf_event_ctx_lock() we
10079 * already have a reference on ctx.
10080 *
10081 * This can result in event getting moved to a different ctx,
10082 * but that does not affect the tracepoint state.
10083 */
10084 mutex_unlock(&ctx->mutex);
10085 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
10086 mutex_lock(&ctx->mutex);
10087 } else
10088#endif
10089 if (has_addr_filter(event))
375637bc 10090 ret = perf_event_set_addr_filter(event, filter_str);
c796bbbe
AS
10091
10092 kfree(filter_str);
10093 return ret;
10094}
10095
b0a873eb
PZ
10096/*
10097 * hrtimer based swevent callback
10098 */
f29ac756 10099
b0a873eb 10100static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
f29ac756 10101{
b0a873eb
PZ
10102 enum hrtimer_restart ret = HRTIMER_RESTART;
10103 struct perf_sample_data data;
10104 struct pt_regs *regs;
10105 struct perf_event *event;
10106 u64 period;
f29ac756 10107
b0a873eb 10108 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
ba3dd36c
PZ
10109
10110 if (event->state != PERF_EVENT_STATE_ACTIVE)
10111 return HRTIMER_NORESTART;
10112
b0a873eb 10113 event->pmu->read(event);
f344011c 10114
fd0d000b 10115 perf_sample_data_init(&data, 0, event->hw.last_period);
b0a873eb
PZ
10116 regs = get_irq_regs();
10117
10118 if (regs && !perf_exclude_event(event, regs)) {
77aeeebd 10119 if (!(event->attr.exclude_idle && is_idle_task(current)))
33b07b8b 10120 if (__perf_event_overflow(event, 1, &data, regs))
b0a873eb
PZ
10121 ret = HRTIMER_NORESTART;
10122 }
24f1e32c 10123
b0a873eb
PZ
10124 period = max_t(u64, 10000, event->hw.sample_period);
10125 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
24f1e32c 10126
b0a873eb 10127 return ret;
f29ac756
PZ
10128}
10129
b0a873eb 10130static void perf_swevent_start_hrtimer(struct perf_event *event)
5c92d124 10131{
b0a873eb 10132 struct hw_perf_event *hwc = &event->hw;
5d508e82
FBH
10133 s64 period;
10134
10135 if (!is_sampling_event(event))
10136 return;
f5ffe02e 10137
5d508e82
FBH
10138 period = local64_read(&hwc->period_left);
10139 if (period) {
10140 if (period < 0)
10141 period = 10000;
fa407f35 10142
5d508e82
FBH
10143 local64_set(&hwc->period_left, 0);
10144 } else {
10145 period = max_t(u64, 10000, hwc->sample_period);
10146 }
3497d206 10147 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
30f9028b 10148 HRTIMER_MODE_REL_PINNED_HARD);
24f1e32c 10149}
b0a873eb
PZ
10150
10151static void perf_swevent_cancel_hrtimer(struct perf_event *event)
24f1e32c 10152{
b0a873eb
PZ
10153 struct hw_perf_event *hwc = &event->hw;
10154
6c7e550f 10155 if (is_sampling_event(event)) {
b0a873eb 10156 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
fa407f35 10157 local64_set(&hwc->period_left, ktime_to_ns(remaining));
b0a873eb
PZ
10158
10159 hrtimer_cancel(&hwc->hrtimer);
10160 }
24f1e32c
FW
10161}
10162
ba3dd36c
PZ
10163static void perf_swevent_init_hrtimer(struct perf_event *event)
10164{
10165 struct hw_perf_event *hwc = &event->hw;
10166
10167 if (!is_sampling_event(event))
10168 return;
10169
30f9028b 10170 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
ba3dd36c
PZ
10171 hwc->hrtimer.function = perf_swevent_hrtimer;
10172
10173 /*
10174 * Since hrtimers have a fixed rate, we can do a static freq->period
10175 * mapping and avoid the whole period adjust feedback stuff.
10176 */
10177 if (event->attr.freq) {
10178 long freq = event->attr.sample_freq;
10179
10180 event->attr.sample_period = NSEC_PER_SEC / freq;
10181 hwc->sample_period = event->attr.sample_period;
10182 local64_set(&hwc->period_left, hwc->sample_period);
778141e3 10183 hwc->last_period = hwc->sample_period;
ba3dd36c
PZ
10184 event->attr.freq = 0;
10185 }
10186}
10187
b0a873eb
PZ
10188/*
10189 * Software event: cpu wall time clock
10190 */
10191
10192static void cpu_clock_event_update(struct perf_event *event)
24f1e32c 10193{
b0a873eb
PZ
10194 s64 prev;
10195 u64 now;
10196
a4eaf7f1 10197 now = local_clock();
b0a873eb
PZ
10198 prev = local64_xchg(&event->hw.prev_count, now);
10199 local64_add(now - prev, &event->count);
24f1e32c 10200}
24f1e32c 10201
a4eaf7f1 10202static void cpu_clock_event_start(struct perf_event *event, int flags)
b0a873eb 10203{
a4eaf7f1 10204 local64_set(&event->hw.prev_count, local_clock());
b0a873eb 10205 perf_swevent_start_hrtimer(event);
b0a873eb
PZ
10206}
10207
a4eaf7f1 10208static void cpu_clock_event_stop(struct perf_event *event, int flags)
f29ac756 10209{
b0a873eb
PZ
10210 perf_swevent_cancel_hrtimer(event);
10211 cpu_clock_event_update(event);
10212}
f29ac756 10213
a4eaf7f1
PZ
10214static int cpu_clock_event_add(struct perf_event *event, int flags)
10215{
10216 if (flags & PERF_EF_START)
10217 cpu_clock_event_start(event, flags);
6a694a60 10218 perf_event_update_userpage(event);
a4eaf7f1
PZ
10219
10220 return 0;
10221}
10222
10223static void cpu_clock_event_del(struct perf_event *event, int flags)
10224{
10225 cpu_clock_event_stop(event, flags);
10226}
10227
b0a873eb
PZ
10228static void cpu_clock_event_read(struct perf_event *event)
10229{
10230 cpu_clock_event_update(event);
10231}
f344011c 10232
b0a873eb
PZ
10233static int cpu_clock_event_init(struct perf_event *event)
10234{
10235 if (event->attr.type != PERF_TYPE_SOFTWARE)
10236 return -ENOENT;
10237
10238 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
10239 return -ENOENT;
10240
2481c5fa
SE
10241 /*
10242 * no branch sampling for software events
10243 */
10244 if (has_branch_stack(event))
10245 return -EOPNOTSUPP;
10246
ba3dd36c
PZ
10247 perf_swevent_init_hrtimer(event);
10248
b0a873eb 10249 return 0;
f29ac756
PZ
10250}
10251
b0a873eb 10252static struct pmu perf_cpu_clock = {
89a1e187
PZ
10253 .task_ctx_nr = perf_sw_context,
10254
34f43927
PZ
10255 .capabilities = PERF_PMU_CAP_NO_NMI,
10256
b0a873eb 10257 .event_init = cpu_clock_event_init,
a4eaf7f1
PZ
10258 .add = cpu_clock_event_add,
10259 .del = cpu_clock_event_del,
10260 .start = cpu_clock_event_start,
10261 .stop = cpu_clock_event_stop,
b0a873eb
PZ
10262 .read = cpu_clock_event_read,
10263};
10264
10265/*
10266 * Software event: task time clock
10267 */
10268
10269static void task_clock_event_update(struct perf_event *event, u64 now)
5c92d124 10270{
b0a873eb
PZ
10271 u64 prev;
10272 s64 delta;
5c92d124 10273
b0a873eb
PZ
10274 prev = local64_xchg(&event->hw.prev_count, now);
10275 delta = now - prev;
10276 local64_add(delta, &event->count);
10277}
5c92d124 10278
a4eaf7f1 10279static void task_clock_event_start(struct perf_event *event, int flags)
b0a873eb 10280{
a4eaf7f1 10281 local64_set(&event->hw.prev_count, event->ctx->time);
b0a873eb 10282 perf_swevent_start_hrtimer(event);
b0a873eb
PZ
10283}
10284
a4eaf7f1 10285static void task_clock_event_stop(struct perf_event *event, int flags)
b0a873eb
PZ
10286{
10287 perf_swevent_cancel_hrtimer(event);
10288 task_clock_event_update(event, event->ctx->time);
a4eaf7f1
PZ
10289}
10290
10291static int task_clock_event_add(struct perf_event *event, int flags)
10292{
10293 if (flags & PERF_EF_START)
10294 task_clock_event_start(event, flags);
6a694a60 10295 perf_event_update_userpage(event);
b0a873eb 10296
a4eaf7f1
PZ
10297 return 0;
10298}
10299
10300static void task_clock_event_del(struct perf_event *event, int flags)
10301{
10302 task_clock_event_stop(event, PERF_EF_UPDATE);
b0a873eb
PZ
10303}
10304
10305static void task_clock_event_read(struct perf_event *event)
10306{
768a06e2
PZ
10307 u64 now = perf_clock();
10308 u64 delta = now - event->ctx->timestamp;
10309 u64 time = event->ctx->time + delta;
b0a873eb
PZ
10310
10311 task_clock_event_update(event, time);
10312}
10313
10314static int task_clock_event_init(struct perf_event *event)
6fb2915d 10315{
b0a873eb
PZ
10316 if (event->attr.type != PERF_TYPE_SOFTWARE)
10317 return -ENOENT;
10318
10319 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
10320 return -ENOENT;
10321
2481c5fa
SE
10322 /*
10323 * no branch sampling for software events
10324 */
10325 if (has_branch_stack(event))
10326 return -EOPNOTSUPP;
10327
ba3dd36c
PZ
10328 perf_swevent_init_hrtimer(event);
10329
b0a873eb 10330 return 0;
6fb2915d
LZ
10331}
10332
b0a873eb 10333static struct pmu perf_task_clock = {
89a1e187
PZ
10334 .task_ctx_nr = perf_sw_context,
10335
34f43927
PZ
10336 .capabilities = PERF_PMU_CAP_NO_NMI,
10337
b0a873eb 10338 .event_init = task_clock_event_init,
a4eaf7f1
PZ
10339 .add = task_clock_event_add,
10340 .del = task_clock_event_del,
10341 .start = task_clock_event_start,
10342 .stop = task_clock_event_stop,
b0a873eb
PZ
10343 .read = task_clock_event_read,
10344};
6fb2915d 10345
ad5133b7 10346static void perf_pmu_nop_void(struct pmu *pmu)
e077df4f 10347{
e077df4f 10348}
6fb2915d 10349
fbbe0701
SB
10350static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
10351{
10352}
10353
ad5133b7 10354static int perf_pmu_nop_int(struct pmu *pmu)
6fb2915d 10355{
ad5133b7 10356 return 0;
6fb2915d
LZ
10357}
10358
81ec3f3c
JO
10359static int perf_event_nop_int(struct perf_event *event, u64 value)
10360{
10361 return 0;
10362}
10363
18ab2cd3 10364static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
fbbe0701
SB
10365
10366static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
6fb2915d 10367{
fbbe0701
SB
10368 __this_cpu_write(nop_txn_flags, flags);
10369
10370 if (flags & ~PERF_PMU_TXN_ADD)
10371 return;
10372
ad5133b7 10373 perf_pmu_disable(pmu);
6fb2915d
LZ
10374}
10375
ad5133b7
PZ
10376static int perf_pmu_commit_txn(struct pmu *pmu)
10377{
fbbe0701
SB
10378 unsigned int flags = __this_cpu_read(nop_txn_flags);
10379
10380 __this_cpu_write(nop_txn_flags, 0);
10381
10382 if (flags & ~PERF_PMU_TXN_ADD)
10383 return 0;
10384
ad5133b7
PZ
10385 perf_pmu_enable(pmu);
10386 return 0;
10387}
e077df4f 10388
ad5133b7 10389static void perf_pmu_cancel_txn(struct pmu *pmu)
24f1e32c 10390{
fbbe0701
SB
10391 unsigned int flags = __this_cpu_read(nop_txn_flags);
10392
10393 __this_cpu_write(nop_txn_flags, 0);
10394
10395 if (flags & ~PERF_PMU_TXN_ADD)
10396 return;
10397
ad5133b7 10398 perf_pmu_enable(pmu);
24f1e32c
FW
10399}
10400
35edc2a5
PZ
10401static int perf_event_idx_default(struct perf_event *event)
10402{
c719f560 10403 return 0;
35edc2a5
PZ
10404}
10405
8dc85d54
PZ
10406/*
10407 * Ensures all contexts with the same task_ctx_nr have the same
10408 * pmu_cpu_context too.
10409 */
9e317041 10410static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
24f1e32c 10411{
8dc85d54 10412 struct pmu *pmu;
b326e956 10413
8dc85d54
PZ
10414 if (ctxn < 0)
10415 return NULL;
24f1e32c 10416
8dc85d54
PZ
10417 list_for_each_entry(pmu, &pmus, entry) {
10418 if (pmu->task_ctx_nr == ctxn)
10419 return pmu->pmu_cpu_context;
10420 }
24f1e32c 10421
8dc85d54 10422 return NULL;
24f1e32c
FW
10423}
10424
51676957
PZ
10425static void free_pmu_context(struct pmu *pmu)
10426{
df0062b2
WD
10427 /*
10428 * Static contexts such as perf_sw_context have a global lifetime
10429 * and may be shared between different PMUs. Avoid freeing them
10430 * when a single PMU is going away.
10431 */
10432 if (pmu->task_ctx_nr > perf_invalid_context)
10433 return;
10434
51676957 10435 free_percpu(pmu->pmu_cpu_context);
24f1e32c 10436}
6e855cd4
AS
10437
10438/*
10439 * Let userspace know that this PMU supports address range filtering:
10440 */
10441static ssize_t nr_addr_filters_show(struct device *dev,
10442 struct device_attribute *attr,
10443 char *page)
10444{
10445 struct pmu *pmu = dev_get_drvdata(dev);
10446
10447 return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters);
10448}
10449DEVICE_ATTR_RO(nr_addr_filters);
10450
2e80a82a 10451static struct idr pmu_idr;
d6d020e9 10452
abe43400
PZ
10453static ssize_t
10454type_show(struct device *dev, struct device_attribute *attr, char *page)
10455{
10456 struct pmu *pmu = dev_get_drvdata(dev);
10457
10458 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
10459}
90826ca7 10460static DEVICE_ATTR_RO(type);
abe43400 10461
62b85639
SE
10462static ssize_t
10463perf_event_mux_interval_ms_show(struct device *dev,
10464 struct device_attribute *attr,
10465 char *page)
10466{
10467 struct pmu *pmu = dev_get_drvdata(dev);
10468
10469 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
10470}
10471
272325c4
PZ
10472static DEFINE_MUTEX(mux_interval_mutex);
10473
62b85639
SE
10474static ssize_t
10475perf_event_mux_interval_ms_store(struct device *dev,
10476 struct device_attribute *attr,
10477 const char *buf, size_t count)
10478{
10479 struct pmu *pmu = dev_get_drvdata(dev);
10480 int timer, cpu, ret;
10481
10482 ret = kstrtoint(buf, 0, &timer);
10483 if (ret)
10484 return ret;
10485
10486 if (timer < 1)
10487 return -EINVAL;
10488
10489 /* same value, noting to do */
10490 if (timer == pmu->hrtimer_interval_ms)
10491 return count;
10492
272325c4 10493 mutex_lock(&mux_interval_mutex);
62b85639
SE
10494 pmu->hrtimer_interval_ms = timer;
10495
10496 /* update all cpuctx for this PMU */
a63fbed7 10497 cpus_read_lock();
272325c4 10498 for_each_online_cpu(cpu) {
62b85639
SE
10499 struct perf_cpu_context *cpuctx;
10500 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
10501 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
10502
272325c4
PZ
10503 cpu_function_call(cpu,
10504 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
62b85639 10505 }
a63fbed7 10506 cpus_read_unlock();
272325c4 10507 mutex_unlock(&mux_interval_mutex);
62b85639
SE
10508
10509 return count;
10510}
90826ca7 10511static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
62b85639 10512
90826ca7
GKH
10513static struct attribute *pmu_dev_attrs[] = {
10514 &dev_attr_type.attr,
10515 &dev_attr_perf_event_mux_interval_ms.attr,
10516 NULL,
abe43400 10517};
90826ca7 10518ATTRIBUTE_GROUPS(pmu_dev);
abe43400
PZ
10519
10520static int pmu_bus_running;
10521static struct bus_type pmu_bus = {
10522 .name = "event_source",
90826ca7 10523 .dev_groups = pmu_dev_groups,
abe43400
PZ
10524};
10525
10526static void pmu_dev_release(struct device *dev)
10527{
10528 kfree(dev);
10529}
10530
10531static int pmu_dev_alloc(struct pmu *pmu)
10532{
10533 int ret = -ENOMEM;
10534
10535 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
10536 if (!pmu->dev)
10537 goto out;
10538
0c9d42ed 10539 pmu->dev->groups = pmu->attr_groups;
abe43400
PZ
10540 device_initialize(pmu->dev);
10541 ret = dev_set_name(pmu->dev, "%s", pmu->name);
10542 if (ret)
10543 goto free_dev;
10544
10545 dev_set_drvdata(pmu->dev, pmu);
10546 pmu->dev->bus = &pmu_bus;
10547 pmu->dev->release = pmu_dev_release;
10548 ret = device_add(pmu->dev);
10549 if (ret)
10550 goto free_dev;
10551
6e855cd4
AS
10552 /* For PMUs with address filters, throw in an extra attribute: */
10553 if (pmu->nr_addr_filters)
10554 ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters);
10555
10556 if (ret)
10557 goto del_dev;
10558
f3a3a825
JO
10559 if (pmu->attr_update)
10560 ret = sysfs_update_groups(&pmu->dev->kobj, pmu->attr_update);
10561
10562 if (ret)
10563 goto del_dev;
10564
abe43400
PZ
10565out:
10566 return ret;
10567
6e855cd4
AS
10568del_dev:
10569 device_del(pmu->dev);
10570
abe43400
PZ
10571free_dev:
10572 put_device(pmu->dev);
10573 goto out;
10574}
10575
547e9fd7 10576static struct lock_class_key cpuctx_mutex;
facc4307 10577static struct lock_class_key cpuctx_lock;
547e9fd7 10578
03d8e80b 10579int perf_pmu_register(struct pmu *pmu, const char *name, int type)
24f1e32c 10580{
66d258c5 10581 int cpu, ret, max = PERF_TYPE_MAX;
24f1e32c 10582
b0a873eb 10583 mutex_lock(&pmus_lock);
33696fc0
PZ
10584 ret = -ENOMEM;
10585 pmu->pmu_disable_count = alloc_percpu(int);
10586 if (!pmu->pmu_disable_count)
10587 goto unlock;
f29ac756 10588
2e80a82a
PZ
10589 pmu->type = -1;
10590 if (!name)
10591 goto skip_type;
10592 pmu->name = name;
10593
66d258c5
PZ
10594 if (type != PERF_TYPE_SOFTWARE) {
10595 if (type >= 0)
10596 max = type;
10597
10598 ret = idr_alloc(&pmu_idr, pmu, max, 0, GFP_KERNEL);
10599 if (ret < 0)
2e80a82a 10600 goto free_pdc;
66d258c5
PZ
10601
10602 WARN_ON(type >= 0 && ret != type);
10603
10604 type = ret;
2e80a82a
PZ
10605 }
10606 pmu->type = type;
10607
abe43400
PZ
10608 if (pmu_bus_running) {
10609 ret = pmu_dev_alloc(pmu);
10610 if (ret)
10611 goto free_idr;
10612 }
10613
2e80a82a 10614skip_type:
26657848
PZ
10615 if (pmu->task_ctx_nr == perf_hw_context) {
10616 static int hw_context_taken = 0;
10617
5101ef20
MR
10618 /*
10619 * Other than systems with heterogeneous CPUs, it never makes
10620 * sense for two PMUs to share perf_hw_context. PMUs which are
10621 * uncore must use perf_invalid_context.
10622 */
10623 if (WARN_ON_ONCE(hw_context_taken &&
10624 !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS)))
26657848
PZ
10625 pmu->task_ctx_nr = perf_invalid_context;
10626
10627 hw_context_taken = 1;
10628 }
10629
8dc85d54
PZ
10630 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
10631 if (pmu->pmu_cpu_context)
10632 goto got_cpu_context;
f29ac756 10633
c4814202 10634 ret = -ENOMEM;
108b02cf
PZ
10635 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
10636 if (!pmu->pmu_cpu_context)
abe43400 10637 goto free_dev;
f344011c 10638
108b02cf
PZ
10639 for_each_possible_cpu(cpu) {
10640 struct perf_cpu_context *cpuctx;
10641
10642 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
eb184479 10643 __perf_event_init_context(&cpuctx->ctx);
547e9fd7 10644 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
facc4307 10645 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
108b02cf 10646 cpuctx->ctx.pmu = pmu;
a63fbed7 10647 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask);
9e630205 10648
272325c4 10649 __perf_mux_hrtimer_init(cpuctx, cpu);
836196be
IR
10650
10651 cpuctx->heap_size = ARRAY_SIZE(cpuctx->heap_default);
10652 cpuctx->heap = cpuctx->heap_default;
108b02cf 10653 }
76e1d904 10654
8dc85d54 10655got_cpu_context:
ad5133b7
PZ
10656 if (!pmu->start_txn) {
10657 if (pmu->pmu_enable) {
10658 /*
10659 * If we have pmu_enable/pmu_disable calls, install
10660 * transaction stubs that use that to try and batch
10661 * hardware accesses.
10662 */
10663 pmu->start_txn = perf_pmu_start_txn;
10664 pmu->commit_txn = perf_pmu_commit_txn;
10665 pmu->cancel_txn = perf_pmu_cancel_txn;
10666 } else {
fbbe0701 10667 pmu->start_txn = perf_pmu_nop_txn;
ad5133b7
PZ
10668 pmu->commit_txn = perf_pmu_nop_int;
10669 pmu->cancel_txn = perf_pmu_nop_void;
f344011c 10670 }
5c92d124 10671 }
15dbf27c 10672
ad5133b7
PZ
10673 if (!pmu->pmu_enable) {
10674 pmu->pmu_enable = perf_pmu_nop_void;
10675 pmu->pmu_disable = perf_pmu_nop_void;
10676 }
10677
81ec3f3c
JO
10678 if (!pmu->check_period)
10679 pmu->check_period = perf_event_nop_int;
10680
35edc2a5
PZ
10681 if (!pmu->event_idx)
10682 pmu->event_idx = perf_event_idx_default;
10683
d44f821b
LK
10684 /*
10685 * Ensure the TYPE_SOFTWARE PMUs are at the head of the list,
10686 * since these cannot be in the IDR. This way the linear search
10687 * is fast, provided a valid software event is provided.
10688 */
10689 if (type == PERF_TYPE_SOFTWARE || !name)
10690 list_add_rcu(&pmu->entry, &pmus);
10691 else
10692 list_add_tail_rcu(&pmu->entry, &pmus);
10693
bed5b25a 10694 atomic_set(&pmu->exclusive_cnt, 0);
33696fc0
PZ
10695 ret = 0;
10696unlock:
b0a873eb
PZ
10697 mutex_unlock(&pmus_lock);
10698
33696fc0 10699 return ret;
108b02cf 10700
abe43400
PZ
10701free_dev:
10702 device_del(pmu->dev);
10703 put_device(pmu->dev);
10704
2e80a82a 10705free_idr:
66d258c5 10706 if (pmu->type != PERF_TYPE_SOFTWARE)
2e80a82a
PZ
10707 idr_remove(&pmu_idr, pmu->type);
10708
108b02cf
PZ
10709free_pdc:
10710 free_percpu(pmu->pmu_disable_count);
10711 goto unlock;
f29ac756 10712}
c464c76e 10713EXPORT_SYMBOL_GPL(perf_pmu_register);
f29ac756 10714
b0a873eb 10715void perf_pmu_unregister(struct pmu *pmu)
5c92d124 10716{
b0a873eb
PZ
10717 mutex_lock(&pmus_lock);
10718 list_del_rcu(&pmu->entry);
5c92d124 10719
0475f9ea 10720 /*
cde8e884
PZ
10721 * We dereference the pmu list under both SRCU and regular RCU, so
10722 * synchronize against both of those.
0475f9ea 10723 */
b0a873eb 10724 synchronize_srcu(&pmus_srcu);
cde8e884 10725 synchronize_rcu();
d6d020e9 10726
33696fc0 10727 free_percpu(pmu->pmu_disable_count);
66d258c5 10728 if (pmu->type != PERF_TYPE_SOFTWARE)
2e80a82a 10729 idr_remove(&pmu_idr, pmu->type);
a9f97721 10730 if (pmu_bus_running) {
0933840a
JO
10731 if (pmu->nr_addr_filters)
10732 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters);
10733 device_del(pmu->dev);
10734 put_device(pmu->dev);
10735 }
51676957 10736 free_pmu_context(pmu);
a9f97721 10737 mutex_unlock(&pmus_lock);
b0a873eb 10738}
c464c76e 10739EXPORT_SYMBOL_GPL(perf_pmu_unregister);
d6d020e9 10740
e321d02d
KL
10741static inline bool has_extended_regs(struct perf_event *event)
10742{
10743 return (event->attr.sample_regs_user & PERF_REG_EXTENDED_MASK) ||
10744 (event->attr.sample_regs_intr & PERF_REG_EXTENDED_MASK);
10745}
10746
cc34b98b
MR
10747static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
10748{
ccd41c86 10749 struct perf_event_context *ctx = NULL;
cc34b98b
MR
10750 int ret;
10751
10752 if (!try_module_get(pmu->module))
10753 return -ENODEV;
ccd41c86 10754
0c7296ca
PZ
10755 /*
10756 * A number of pmu->event_init() methods iterate the sibling_list to,
10757 * for example, validate if the group fits on the PMU. Therefore,
10758 * if this is a sibling event, acquire the ctx->mutex to protect
10759 * the sibling_list.
10760 */
10761 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) {
8b10c5e2
PZ
10762 /*
10763 * This ctx->mutex can nest when we're called through
10764 * inheritance. See the perf_event_ctx_lock_nested() comment.
10765 */
10766 ctx = perf_event_ctx_lock_nested(event->group_leader,
10767 SINGLE_DEPTH_NESTING);
ccd41c86
PZ
10768 BUG_ON(!ctx);
10769 }
10770
cc34b98b
MR
10771 event->pmu = pmu;
10772 ret = pmu->event_init(event);
ccd41c86
PZ
10773
10774 if (ctx)
10775 perf_event_ctx_unlock(event->group_leader, ctx);
10776
cc6795ae 10777 if (!ret) {
e321d02d
KL
10778 if (!(pmu->capabilities & PERF_PMU_CAP_EXTENDED_REGS) &&
10779 has_extended_regs(event))
10780 ret = -EOPNOTSUPP;
10781
cc6795ae 10782 if (pmu->capabilities & PERF_PMU_CAP_NO_EXCLUDE &&
e321d02d 10783 event_has_any_exclude_flag(event))
cc6795ae 10784 ret = -EINVAL;
e321d02d
KL
10785
10786 if (ret && event->destroy)
10787 event->destroy(event);
cc6795ae
AM
10788 }
10789
cc34b98b
MR
10790 if (ret)
10791 module_put(pmu->module);
10792
10793 return ret;
10794}
10795
18ab2cd3 10796static struct pmu *perf_init_event(struct perf_event *event)
b0a873eb 10797{
66d258c5 10798 int idx, type, ret;
85c617ab 10799 struct pmu *pmu;
b0a873eb
PZ
10800
10801 idx = srcu_read_lock(&pmus_srcu);
2e80a82a 10802
40999312
KL
10803 /* Try parent's PMU first: */
10804 if (event->parent && event->parent->pmu) {
10805 pmu = event->parent->pmu;
10806 ret = perf_try_init_event(pmu, event);
10807 if (!ret)
10808 goto unlock;
10809 }
10810
66d258c5
PZ
10811 /*
10812 * PERF_TYPE_HARDWARE and PERF_TYPE_HW_CACHE
10813 * are often aliases for PERF_TYPE_RAW.
10814 */
10815 type = event->attr.type;
10816 if (type == PERF_TYPE_HARDWARE || type == PERF_TYPE_HW_CACHE)
10817 type = PERF_TYPE_RAW;
10818
10819again:
2e80a82a 10820 rcu_read_lock();
66d258c5 10821 pmu = idr_find(&pmu_idr, type);
2e80a82a 10822 rcu_read_unlock();
940c5b29 10823 if (pmu) {
cc34b98b 10824 ret = perf_try_init_event(pmu, event);
66d258c5
PZ
10825 if (ret == -ENOENT && event->attr.type != type) {
10826 type = event->attr.type;
10827 goto again;
10828 }
10829
940c5b29
LM
10830 if (ret)
10831 pmu = ERR_PTR(ret);
66d258c5 10832
2e80a82a 10833 goto unlock;
940c5b29 10834 }
2e80a82a 10835
9f0bff11 10836 list_for_each_entry_rcu(pmu, &pmus, entry, lockdep_is_held(&pmus_srcu)) {
cc34b98b 10837 ret = perf_try_init_event(pmu, event);
b0a873eb 10838 if (!ret)
e5f4d339 10839 goto unlock;
76e1d904 10840
b0a873eb
PZ
10841 if (ret != -ENOENT) {
10842 pmu = ERR_PTR(ret);
e5f4d339 10843 goto unlock;
f344011c 10844 }
5c92d124 10845 }
e5f4d339
PZ
10846 pmu = ERR_PTR(-ENOENT);
10847unlock:
b0a873eb 10848 srcu_read_unlock(&pmus_srcu, idx);
15dbf27c 10849
4aeb0b42 10850 return pmu;
5c92d124
IM
10851}
10852
f2fb6bef
KL
10853static void attach_sb_event(struct perf_event *event)
10854{
10855 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu);
10856
10857 raw_spin_lock(&pel->lock);
10858 list_add_rcu(&event->sb_list, &pel->list);
10859 raw_spin_unlock(&pel->lock);
10860}
10861
aab5b71e
PZ
10862/*
10863 * We keep a list of all !task (and therefore per-cpu) events
10864 * that need to receive side-band records.
10865 *
10866 * This avoids having to scan all the various PMU per-cpu contexts
10867 * looking for them.
10868 */
f2fb6bef
KL
10869static void account_pmu_sb_event(struct perf_event *event)
10870{
a4f144eb 10871 if (is_sb_event(event))
f2fb6bef
KL
10872 attach_sb_event(event);
10873}
10874
4beb31f3
FW
10875static void account_event_cpu(struct perf_event *event, int cpu)
10876{
10877 if (event->parent)
10878 return;
10879
4beb31f3
FW
10880 if (is_cgroup_event(event))
10881 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
10882}
10883
555e0c1e
FW
10884/* Freq events need the tick to stay alive (see perf_event_task_tick). */
10885static void account_freq_event_nohz(void)
10886{
10887#ifdef CONFIG_NO_HZ_FULL
10888 /* Lock so we don't race with concurrent unaccount */
10889 spin_lock(&nr_freq_lock);
10890 if (atomic_inc_return(&nr_freq_events) == 1)
10891 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS);
10892 spin_unlock(&nr_freq_lock);
10893#endif
10894}
10895
10896static void account_freq_event(void)
10897{
10898 if (tick_nohz_full_enabled())
10899 account_freq_event_nohz();
10900 else
10901 atomic_inc(&nr_freq_events);
10902}
10903
10904
766d6c07
FW
10905static void account_event(struct perf_event *event)
10906{
25432ae9
PZ
10907 bool inc = false;
10908
4beb31f3
FW
10909 if (event->parent)
10910 return;
10911
766d6c07 10912 if (event->attach_state & PERF_ATTACH_TASK)
25432ae9 10913 inc = true;
766d6c07
FW
10914 if (event->attr.mmap || event->attr.mmap_data)
10915 atomic_inc(&nr_mmap_events);
10916 if (event->attr.comm)
10917 atomic_inc(&nr_comm_events);
e4222673
HB
10918 if (event->attr.namespaces)
10919 atomic_inc(&nr_namespaces_events);
96aaab68
NK
10920 if (event->attr.cgroup)
10921 atomic_inc(&nr_cgroup_events);
766d6c07
FW
10922 if (event->attr.task)
10923 atomic_inc(&nr_task_events);
555e0c1e
FW
10924 if (event->attr.freq)
10925 account_freq_event();
45ac1403
AH
10926 if (event->attr.context_switch) {
10927 atomic_inc(&nr_switch_events);
25432ae9 10928 inc = true;
45ac1403 10929 }
4beb31f3 10930 if (has_branch_stack(event))
25432ae9 10931 inc = true;
4beb31f3 10932 if (is_cgroup_event(event))
25432ae9 10933 inc = true;
76193a94
SL
10934 if (event->attr.ksymbol)
10935 atomic_inc(&nr_ksymbol_events);
6ee52e2a
SL
10936 if (event->attr.bpf_event)
10937 atomic_inc(&nr_bpf_events);
25432ae9 10938
9107c89e 10939 if (inc) {
5bce9db1
AS
10940 /*
10941 * We need the mutex here because static_branch_enable()
10942 * must complete *before* the perf_sched_count increment
10943 * becomes visible.
10944 */
9107c89e
PZ
10945 if (atomic_inc_not_zero(&perf_sched_count))
10946 goto enabled;
10947
10948 mutex_lock(&perf_sched_mutex);
10949 if (!atomic_read(&perf_sched_count)) {
10950 static_branch_enable(&perf_sched_events);
10951 /*
10952 * Guarantee that all CPUs observe they key change and
10953 * call the perf scheduling hooks before proceeding to
10954 * install events that need them.
10955 */
0809d954 10956 synchronize_rcu();
9107c89e
PZ
10957 }
10958 /*
10959 * Now that we have waited for the sync_sched(), allow further
10960 * increments to by-pass the mutex.
10961 */
10962 atomic_inc(&perf_sched_count);
10963 mutex_unlock(&perf_sched_mutex);
10964 }
10965enabled:
4beb31f3
FW
10966
10967 account_event_cpu(event, event->cpu);
f2fb6bef
KL
10968
10969 account_pmu_sb_event(event);
766d6c07
FW
10970}
10971
0793a61d 10972/*
788faab7 10973 * Allocate and initialize an event structure
0793a61d 10974 */
cdd6c482 10975static struct perf_event *
c3f00c70 10976perf_event_alloc(struct perf_event_attr *attr, int cpu,
d580ff86
PZ
10977 struct task_struct *task,
10978 struct perf_event *group_leader,
10979 struct perf_event *parent_event,
4dc0da86 10980 perf_overflow_handler_t overflow_handler,
79dff51e 10981 void *context, int cgroup_fd)
0793a61d 10982{
51b0fe39 10983 struct pmu *pmu;
cdd6c482
IM
10984 struct perf_event *event;
10985 struct hw_perf_event *hwc;
90983b16 10986 long err = -EINVAL;
0793a61d 10987
66832eb4
ON
10988 if ((unsigned)cpu >= nr_cpu_ids) {
10989 if (!task || cpu != -1)
10990 return ERR_PTR(-EINVAL);
10991 }
10992
c3f00c70 10993 event = kzalloc(sizeof(*event), GFP_KERNEL);
cdd6c482 10994 if (!event)
d5d2bc0d 10995 return ERR_PTR(-ENOMEM);
0793a61d 10996
04289bb9 10997 /*
cdd6c482 10998 * Single events are their own group leaders, with an
04289bb9
IM
10999 * empty sibling list:
11000 */
11001 if (!group_leader)
cdd6c482 11002 group_leader = event;
04289bb9 11003
cdd6c482
IM
11004 mutex_init(&event->child_mutex);
11005 INIT_LIST_HEAD(&event->child_list);
fccc714b 11006
cdd6c482
IM
11007 INIT_LIST_HEAD(&event->event_entry);
11008 INIT_LIST_HEAD(&event->sibling_list);
6668128a 11009 INIT_LIST_HEAD(&event->active_list);
8e1a2031 11010 init_event_group(event);
10c6db11 11011 INIT_LIST_HEAD(&event->rb_entry);
71ad88ef 11012 INIT_LIST_HEAD(&event->active_entry);
375637bc 11013 INIT_LIST_HEAD(&event->addr_filters.list);
f3ae75de
SE
11014 INIT_HLIST_NODE(&event->hlist_entry);
11015
10c6db11 11016
cdd6c482 11017 init_waitqueue_head(&event->waitq);
1d54ad94 11018 event->pending_disable = -1;
e360adbe 11019 init_irq_work(&event->pending, perf_pending_event);
0793a61d 11020
cdd6c482 11021 mutex_init(&event->mmap_mutex);
375637bc 11022 raw_spin_lock_init(&event->addr_filters.lock);
7b732a75 11023
a6fa941d 11024 atomic_long_set(&event->refcount, 1);
cdd6c482
IM
11025 event->cpu = cpu;
11026 event->attr = *attr;
11027 event->group_leader = group_leader;
11028 event->pmu = NULL;
cdd6c482 11029 event->oncpu = -1;
a96bbc16 11030
cdd6c482 11031 event->parent = parent_event;
b84fbc9f 11032
17cf22c3 11033 event->ns = get_pid_ns(task_active_pid_ns(current));
cdd6c482 11034 event->id = atomic64_inc_return(&perf_event_id);
a96bbc16 11035
cdd6c482 11036 event->state = PERF_EVENT_STATE_INACTIVE;
329d876d 11037
d580ff86
PZ
11038 if (task) {
11039 event->attach_state = PERF_ATTACH_TASK;
d580ff86 11040 /*
50f16a8b
PZ
11041 * XXX pmu::event_init needs to know what task to account to
11042 * and we cannot use the ctx information because we need the
11043 * pmu before we get a ctx.
d580ff86 11044 */
7b3c92b8 11045 event->hw.target = get_task_struct(task);
d580ff86
PZ
11046 }
11047
34f43927
PZ
11048 event->clock = &local_clock;
11049 if (parent_event)
11050 event->clock = parent_event->clock;
11051
4dc0da86 11052 if (!overflow_handler && parent_event) {
b326e956 11053 overflow_handler = parent_event->overflow_handler;
4dc0da86 11054 context = parent_event->overflow_handler_context;
f1e4ba5b 11055#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
aa6a5f3c 11056 if (overflow_handler == bpf_overflow_handler) {
85192dbf 11057 struct bpf_prog *prog = parent_event->prog;
aa6a5f3c 11058
85192dbf 11059 bpf_prog_inc(prog);
aa6a5f3c
AS
11060 event->prog = prog;
11061 event->orig_overflow_handler =
11062 parent_event->orig_overflow_handler;
11063 }
11064#endif
4dc0da86 11065 }
66832eb4 11066
1879445d
WN
11067 if (overflow_handler) {
11068 event->overflow_handler = overflow_handler;
11069 event->overflow_handler_context = context;
9ecda41a
WN
11070 } else if (is_write_backward(event)){
11071 event->overflow_handler = perf_event_output_backward;
11072 event->overflow_handler_context = NULL;
1879445d 11073 } else {
9ecda41a 11074 event->overflow_handler = perf_event_output_forward;
1879445d
WN
11075 event->overflow_handler_context = NULL;
11076 }
97eaf530 11077
0231bb53 11078 perf_event__state_init(event);
a86ed508 11079
4aeb0b42 11080 pmu = NULL;
b8e83514 11081
cdd6c482 11082 hwc = &event->hw;
bd2b5b12 11083 hwc->sample_period = attr->sample_period;
0d48696f 11084 if (attr->freq && attr->sample_freq)
bd2b5b12 11085 hwc->sample_period = 1;
eced1dfc 11086 hwc->last_period = hwc->sample_period;
bd2b5b12 11087
e7850595 11088 local64_set(&hwc->period_left, hwc->sample_period);
60db5e09 11089
2023b359 11090 /*
ba5213ae
PZ
11091 * We currently do not support PERF_SAMPLE_READ on inherited events.
11092 * See perf_output_read().
2023b359 11093 */
ba5213ae 11094 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ))
90983b16 11095 goto err_ns;
a46a2300
YZ
11096
11097 if (!has_branch_stack(event))
11098 event->attr.branch_sample_type = 0;
2023b359 11099
b0a873eb 11100 pmu = perf_init_event(event);
85c617ab 11101 if (IS_ERR(pmu)) {
4aeb0b42 11102 err = PTR_ERR(pmu);
90983b16 11103 goto err_ns;
621a01ea 11104 }
d5d2bc0d 11105
09f4e8f0
PZ
11106 /*
11107 * Disallow uncore-cgroup events, they don't make sense as the cgroup will
11108 * be different on other CPUs in the uncore mask.
11109 */
11110 if (pmu->task_ctx_nr == perf_invalid_context && cgroup_fd != -1) {
11111 err = -EINVAL;
11112 goto err_pmu;
11113 }
11114
ab43762e
AS
11115 if (event->attr.aux_output &&
11116 !(pmu->capabilities & PERF_PMU_CAP_AUX_OUTPUT)) {
11117 err = -EOPNOTSUPP;
11118 goto err_pmu;
11119 }
11120
98add2af
PZ
11121 if (cgroup_fd != -1) {
11122 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
11123 if (err)
11124 goto err_pmu;
11125 }
11126
bed5b25a
AS
11127 err = exclusive_event_init(event);
11128 if (err)
11129 goto err_pmu;
11130
375637bc 11131 if (has_addr_filter(event)) {
c60f83b8
AS
11132 event->addr_filter_ranges = kcalloc(pmu->nr_addr_filters,
11133 sizeof(struct perf_addr_filter_range),
11134 GFP_KERNEL);
11135 if (!event->addr_filter_ranges) {
36cc2b92 11136 err = -ENOMEM;
375637bc 11137 goto err_per_task;
36cc2b92 11138 }
375637bc 11139
18736eef
AS
11140 /*
11141 * Clone the parent's vma offsets: they are valid until exec()
11142 * even if the mm is not shared with the parent.
11143 */
11144 if (event->parent) {
11145 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event);
11146
11147 raw_spin_lock_irq(&ifh->lock);
c60f83b8
AS
11148 memcpy(event->addr_filter_ranges,
11149 event->parent->addr_filter_ranges,
11150 pmu->nr_addr_filters * sizeof(struct perf_addr_filter_range));
18736eef
AS
11151 raw_spin_unlock_irq(&ifh->lock);
11152 }
11153
375637bc
AS
11154 /* force hw sync on the address filters */
11155 event->addr_filters_gen = 1;
11156 }
11157
cdd6c482 11158 if (!event->parent) {
927c7a9e 11159 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
97c79a38 11160 err = get_callchain_buffers(attr->sample_max_stack);
90983b16 11161 if (err)
375637bc 11162 goto err_addr_filters;
d010b332 11163 }
f344011c 11164 }
9ee318a7 11165
da97e184
JFG
11166 err = security_perf_event_alloc(event);
11167 if (err)
11168 goto err_callchain_buffer;
11169
927a5570
AS
11170 /* symmetric to unaccount_event() in _free_event() */
11171 account_event(event);
11172
cdd6c482 11173 return event;
90983b16 11174
da97e184
JFG
11175err_callchain_buffer:
11176 if (!event->parent) {
11177 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
11178 put_callchain_buffers();
11179 }
375637bc 11180err_addr_filters:
c60f83b8 11181 kfree(event->addr_filter_ranges);
375637bc 11182
bed5b25a
AS
11183err_per_task:
11184 exclusive_event_destroy(event);
11185
90983b16 11186err_pmu:
98add2af
PZ
11187 if (is_cgroup_event(event))
11188 perf_detach_cgroup(event);
90983b16
FW
11189 if (event->destroy)
11190 event->destroy(event);
c464c76e 11191 module_put(pmu->module);
90983b16
FW
11192err_ns:
11193 if (event->ns)
11194 put_pid_ns(event->ns);
621b6d2e
PB
11195 if (event->hw.target)
11196 put_task_struct(event->hw.target);
90983b16
FW
11197 kfree(event);
11198
11199 return ERR_PTR(err);
0793a61d
TG
11200}
11201
cdd6c482
IM
11202static int perf_copy_attr(struct perf_event_attr __user *uattr,
11203 struct perf_event_attr *attr)
974802ea 11204{
974802ea 11205 u32 size;
cdf8073d 11206 int ret;
974802ea 11207
c2ba8f41 11208 /* Zero the full structure, so that a short copy will be nice. */
974802ea
PZ
11209 memset(attr, 0, sizeof(*attr));
11210
11211 ret = get_user(size, &uattr->size);
11212 if (ret)
11213 return ret;
11214
c2ba8f41
AS
11215 /* ABI compatibility quirk: */
11216 if (!size)
974802ea 11217 size = PERF_ATTR_SIZE_VER0;
c2ba8f41 11218 if (size < PERF_ATTR_SIZE_VER0 || size > PAGE_SIZE)
974802ea
PZ
11219 goto err_size;
11220
c2ba8f41
AS
11221 ret = copy_struct_from_user(attr, sizeof(*attr), uattr, size);
11222 if (ret) {
11223 if (ret == -E2BIG)
11224 goto err_size;
11225 return ret;
974802ea
PZ
11226 }
11227
f12f42ac
MX
11228 attr->size = size;
11229
a4faf00d 11230 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3)
974802ea
PZ
11231 return -EINVAL;
11232
11233 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
11234 return -EINVAL;
11235
11236 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
11237 return -EINVAL;
11238
bce38cd5
SE
11239 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
11240 u64 mask = attr->branch_sample_type;
11241
11242 /* only using defined bits */
11243 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
11244 return -EINVAL;
11245
11246 /* at least one branch bit must be set */
11247 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
11248 return -EINVAL;
11249
bce38cd5
SE
11250 /* propagate priv level, when not set for branch */
11251 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
11252
11253 /* exclude_kernel checked on syscall entry */
11254 if (!attr->exclude_kernel)
11255 mask |= PERF_SAMPLE_BRANCH_KERNEL;
11256
11257 if (!attr->exclude_user)
11258 mask |= PERF_SAMPLE_BRANCH_USER;
11259
11260 if (!attr->exclude_hv)
11261 mask |= PERF_SAMPLE_BRANCH_HV;
11262 /*
11263 * adjust user setting (for HW filter setup)
11264 */
11265 attr->branch_sample_type = mask;
11266 }
e712209a 11267 /* privileged levels capture (kernel, hv): check permissions */
da97e184
JFG
11268 if (mask & PERF_SAMPLE_BRANCH_PERM_PLM) {
11269 ret = perf_allow_kernel(attr);
11270 if (ret)
11271 return ret;
11272 }
bce38cd5 11273 }
4018994f 11274
c5ebcedb 11275 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
4018994f 11276 ret = perf_reg_validate(attr->sample_regs_user);
c5ebcedb
JO
11277 if (ret)
11278 return ret;
11279 }
11280
11281 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
11282 if (!arch_perf_have_user_stack_dump())
11283 return -ENOSYS;
11284
11285 /*
11286 * We have __u32 type for the size, but so far
11287 * we can only use __u16 as maximum due to the
11288 * __u16 sample size limit.
11289 */
11290 if (attr->sample_stack_user >= USHRT_MAX)
78b562fb 11291 return -EINVAL;
c5ebcedb 11292 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
78b562fb 11293 return -EINVAL;
c5ebcedb 11294 }
4018994f 11295
5f970521
JO
11296 if (!attr->sample_max_stack)
11297 attr->sample_max_stack = sysctl_perf_event_max_stack;
11298
60e2364e
SE
11299 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
11300 ret = perf_reg_validate(attr->sample_regs_intr);
6546b19f
NK
11301
11302#ifndef CONFIG_CGROUP_PERF
11303 if (attr->sample_type & PERF_SAMPLE_CGROUP)
11304 return -EINVAL;
11305#endif
11306
974802ea
PZ
11307out:
11308 return ret;
11309
11310err_size:
11311 put_user(sizeof(*attr), &uattr->size);
11312 ret = -E2BIG;
11313 goto out;
11314}
11315
ac9721f3
PZ
11316static int
11317perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
a4be7c27 11318{
56de4e8f 11319 struct perf_buffer *rb = NULL;
a4be7c27
PZ
11320 int ret = -EINVAL;
11321
ac9721f3 11322 if (!output_event)
a4be7c27
PZ
11323 goto set;
11324
ac9721f3
PZ
11325 /* don't allow circular references */
11326 if (event == output_event)
a4be7c27
PZ
11327 goto out;
11328
0f139300
PZ
11329 /*
11330 * Don't allow cross-cpu buffers
11331 */
11332 if (output_event->cpu != event->cpu)
11333 goto out;
11334
11335 /*
76369139 11336 * If its not a per-cpu rb, it must be the same task.
0f139300
PZ
11337 */
11338 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
11339 goto out;
11340
34f43927
PZ
11341 /*
11342 * Mixing clocks in the same buffer is trouble you don't need.
11343 */
11344 if (output_event->clock != event->clock)
11345 goto out;
11346
9ecda41a
WN
11347 /*
11348 * Either writing ring buffer from beginning or from end.
11349 * Mixing is not allowed.
11350 */
11351 if (is_write_backward(output_event) != is_write_backward(event))
11352 goto out;
11353
45bfb2e5
PZ
11354 /*
11355 * If both events generate aux data, they must be on the same PMU
11356 */
11357 if (has_aux(event) && has_aux(output_event) &&
11358 event->pmu != output_event->pmu)
11359 goto out;
11360
a4be7c27 11361set:
cdd6c482 11362 mutex_lock(&event->mmap_mutex);
ac9721f3
PZ
11363 /* Can't redirect output if we've got an active mmap() */
11364 if (atomic_read(&event->mmap_count))
11365 goto unlock;
a4be7c27 11366
ac9721f3 11367 if (output_event) {
76369139
FW
11368 /* get the rb we want to redirect to */
11369 rb = ring_buffer_get(output_event);
11370 if (!rb)
ac9721f3 11371 goto unlock;
a4be7c27
PZ
11372 }
11373
b69cf536 11374 ring_buffer_attach(event, rb);
9bb5d40c 11375
a4be7c27 11376 ret = 0;
ac9721f3
PZ
11377unlock:
11378 mutex_unlock(&event->mmap_mutex);
11379
a4be7c27 11380out:
a4be7c27
PZ
11381 return ret;
11382}
11383
f63a8daa
PZ
11384static void mutex_lock_double(struct mutex *a, struct mutex *b)
11385{
11386 if (b < a)
11387 swap(a, b);
11388
11389 mutex_lock(a);
11390 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
11391}
11392
34f43927
PZ
11393static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
11394{
11395 bool nmi_safe = false;
11396
11397 switch (clk_id) {
11398 case CLOCK_MONOTONIC:
11399 event->clock = &ktime_get_mono_fast_ns;
11400 nmi_safe = true;
11401 break;
11402
11403 case CLOCK_MONOTONIC_RAW:
11404 event->clock = &ktime_get_raw_fast_ns;
11405 nmi_safe = true;
11406 break;
11407
11408 case CLOCK_REALTIME:
11409 event->clock = &ktime_get_real_ns;
11410 break;
11411
11412 case CLOCK_BOOTTIME:
9285ec4c 11413 event->clock = &ktime_get_boottime_ns;
34f43927
PZ
11414 break;
11415
11416 case CLOCK_TAI:
9285ec4c 11417 event->clock = &ktime_get_clocktai_ns;
34f43927
PZ
11418 break;
11419
11420 default:
11421 return -EINVAL;
11422 }
11423
11424 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
11425 return -EINVAL;
11426
11427 return 0;
11428}
11429
321027c1
PZ
11430/*
11431 * Variation on perf_event_ctx_lock_nested(), except we take two context
11432 * mutexes.
11433 */
11434static struct perf_event_context *
11435__perf_event_ctx_lock_double(struct perf_event *group_leader,
11436 struct perf_event_context *ctx)
11437{
11438 struct perf_event_context *gctx;
11439
11440again:
11441 rcu_read_lock();
11442 gctx = READ_ONCE(group_leader->ctx);
8c94abbb 11443 if (!refcount_inc_not_zero(&gctx->refcount)) {
321027c1
PZ
11444 rcu_read_unlock();
11445 goto again;
11446 }
11447 rcu_read_unlock();
11448
11449 mutex_lock_double(&gctx->mutex, &ctx->mutex);
11450
11451 if (group_leader->ctx != gctx) {
11452 mutex_unlock(&ctx->mutex);
11453 mutex_unlock(&gctx->mutex);
11454 put_ctx(gctx);
11455 goto again;
11456 }
11457
11458 return gctx;
11459}
11460
0793a61d 11461/**
cdd6c482 11462 * sys_perf_event_open - open a performance event, associate it to a task/cpu
9f66a381 11463 *
cdd6c482 11464 * @attr_uptr: event_id type attributes for monitoring/sampling
0793a61d 11465 * @pid: target pid
9f66a381 11466 * @cpu: target cpu
cdd6c482 11467 * @group_fd: group leader event fd
0793a61d 11468 */
cdd6c482
IM
11469SYSCALL_DEFINE5(perf_event_open,
11470 struct perf_event_attr __user *, attr_uptr,
2743a5b0 11471 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
0793a61d 11472{
b04243ef
PZ
11473 struct perf_event *group_leader = NULL, *output_event = NULL;
11474 struct perf_event *event, *sibling;
cdd6c482 11475 struct perf_event_attr attr;
f63a8daa 11476 struct perf_event_context *ctx, *uninitialized_var(gctx);
cdd6c482 11477 struct file *event_file = NULL;
2903ff01 11478 struct fd group = {NULL, 0};
38a81da2 11479 struct task_struct *task = NULL;
89a1e187 11480 struct pmu *pmu;
ea635c64 11481 int event_fd;
b04243ef 11482 int move_group = 0;
dc86cabe 11483 int err;
a21b0b35 11484 int f_flags = O_RDWR;
79dff51e 11485 int cgroup_fd = -1;
0793a61d 11486
2743a5b0 11487 /* for future expandability... */
e5d1367f 11488 if (flags & ~PERF_FLAG_ALL)
2743a5b0
PM
11489 return -EINVAL;
11490
da97e184
JFG
11491 /* Do we allow access to perf_event_open(2) ? */
11492 err = security_perf_event_open(&attr, PERF_SECURITY_OPEN);
11493 if (err)
11494 return err;
11495
dc86cabe
IM
11496 err = perf_copy_attr(attr_uptr, &attr);
11497 if (err)
11498 return err;
eab656ae 11499
0764771d 11500 if (!attr.exclude_kernel) {
da97e184
JFG
11501 err = perf_allow_kernel(&attr);
11502 if (err)
11503 return err;
0764771d
PZ
11504 }
11505
e4222673
HB
11506 if (attr.namespaces) {
11507 if (!capable(CAP_SYS_ADMIN))
11508 return -EACCES;
11509 }
11510
df58ab24 11511 if (attr.freq) {
cdd6c482 11512 if (attr.sample_freq > sysctl_perf_event_sample_rate)
df58ab24 11513 return -EINVAL;
0819b2e3
PZ
11514 } else {
11515 if (attr.sample_period & (1ULL << 63))
11516 return -EINVAL;
df58ab24
PZ
11517 }
11518
fc7ce9c7 11519 /* Only privileged users can get physical addresses */
da97e184
JFG
11520 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR)) {
11521 err = perf_allow_kernel(&attr);
11522 if (err)
11523 return err;
11524 }
fc7ce9c7 11525
b0c8fdc7
DH
11526 err = security_locked_down(LOCKDOWN_PERF);
11527 if (err && (attr.sample_type & PERF_SAMPLE_REGS_INTR))
11528 /* REGS_INTR can leak data, lockdown must prevent this */
11529 return err;
11530
11531 err = 0;
11532
e5d1367f
SE
11533 /*
11534 * In cgroup mode, the pid argument is used to pass the fd
11535 * opened to the cgroup directory in cgroupfs. The cpu argument
11536 * designates the cpu on which to monitor threads from that
11537 * cgroup.
11538 */
11539 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
11540 return -EINVAL;
11541
a21b0b35
YD
11542 if (flags & PERF_FLAG_FD_CLOEXEC)
11543 f_flags |= O_CLOEXEC;
11544
11545 event_fd = get_unused_fd_flags(f_flags);
ea635c64
AV
11546 if (event_fd < 0)
11547 return event_fd;
11548
ac9721f3 11549 if (group_fd != -1) {
2903ff01
AV
11550 err = perf_fget_light(group_fd, &group);
11551 if (err)
d14b12d7 11552 goto err_fd;
2903ff01 11553 group_leader = group.file->private_data;
ac9721f3
PZ
11554 if (flags & PERF_FLAG_FD_OUTPUT)
11555 output_event = group_leader;
11556 if (flags & PERF_FLAG_FD_NO_GROUP)
11557 group_leader = NULL;
11558 }
11559
e5d1367f 11560 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
c6be5a5c
PZ
11561 task = find_lively_task_by_vpid(pid);
11562 if (IS_ERR(task)) {
11563 err = PTR_ERR(task);
11564 goto err_group_fd;
11565 }
11566 }
11567
1f4ee503
PZ
11568 if (task && group_leader &&
11569 group_leader->attr.inherit != attr.inherit) {
11570 err = -EINVAL;
11571 goto err_task;
11572 }
11573
79c9ce57 11574 if (task) {
69143038 11575 err = mutex_lock_interruptible(&task->signal->exec_update_mutex);
79c9ce57 11576 if (err)
e5aeee51 11577 goto err_task;
79c9ce57
PZ
11578
11579 /*
11580 * Reuse ptrace permission checks for now.
11581 *
69143038 11582 * We must hold exec_update_mutex across this and any potential
79c9ce57
PZ
11583 * perf_install_in_context() call for this new event to
11584 * serialize against exec() altering our credentials (and the
11585 * perf_event_exit_task() that could imply).
11586 */
11587 err = -EACCES;
11588 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS))
11589 goto err_cred;
11590 }
11591
79dff51e
MF
11592 if (flags & PERF_FLAG_PID_CGROUP)
11593 cgroup_fd = pid;
11594
4dc0da86 11595 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
79dff51e 11596 NULL, NULL, cgroup_fd);
d14b12d7
SE
11597 if (IS_ERR(event)) {
11598 err = PTR_ERR(event);
79c9ce57 11599 goto err_cred;
d14b12d7
SE
11600 }
11601
53b25335
VW
11602 if (is_sampling_event(event)) {
11603 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
a1396555 11604 err = -EOPNOTSUPP;
53b25335
VW
11605 goto err_alloc;
11606 }
11607 }
11608
89a1e187
PZ
11609 /*
11610 * Special case software events and allow them to be part of
11611 * any hardware group.
11612 */
11613 pmu = event->pmu;
b04243ef 11614
34f43927
PZ
11615 if (attr.use_clockid) {
11616 err = perf_event_set_clock(event, attr.clockid);
11617 if (err)
11618 goto err_alloc;
11619 }
11620
4ff6a8de
DCC
11621 if (pmu->task_ctx_nr == perf_sw_context)
11622 event->event_caps |= PERF_EV_CAP_SOFTWARE;
11623
a1150c20
SL
11624 if (group_leader) {
11625 if (is_software_event(event) &&
11626 !in_software_context(group_leader)) {
b04243ef 11627 /*
a1150c20
SL
11628 * If the event is a sw event, but the group_leader
11629 * is on hw context.
b04243ef 11630 *
a1150c20
SL
11631 * Allow the addition of software events to hw
11632 * groups, this is safe because software events
11633 * never fail to schedule.
b04243ef 11634 */
a1150c20
SL
11635 pmu = group_leader->ctx->pmu;
11636 } else if (!is_software_event(event) &&
11637 is_software_event(group_leader) &&
4ff6a8de 11638 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
b04243ef
PZ
11639 /*
11640 * In case the group is a pure software group, and we
11641 * try to add a hardware event, move the whole group to
11642 * the hardware context.
11643 */
11644 move_group = 1;
11645 }
11646 }
89a1e187
PZ
11647
11648 /*
11649 * Get the target context (task or percpu):
11650 */
4af57ef2 11651 ctx = find_get_context(pmu, task, event);
89a1e187
PZ
11652 if (IS_ERR(ctx)) {
11653 err = PTR_ERR(ctx);
c6be5a5c 11654 goto err_alloc;
89a1e187
PZ
11655 }
11656
ccff286d 11657 /*
cdd6c482 11658 * Look up the group leader (we will attach this event to it):
04289bb9 11659 */
ac9721f3 11660 if (group_leader) {
dc86cabe 11661 err = -EINVAL;
04289bb9 11662
04289bb9 11663 /*
ccff286d
IM
11664 * Do not allow a recursive hierarchy (this new sibling
11665 * becoming part of another group-sibling):
11666 */
11667 if (group_leader->group_leader != group_leader)
c3f00c70 11668 goto err_context;
34f43927
PZ
11669
11670 /* All events in a group should have the same clock */
11671 if (group_leader->clock != event->clock)
11672 goto err_context;
11673
ccff286d 11674 /*
64aee2a9
MR
11675 * Make sure we're both events for the same CPU;
11676 * grouping events for different CPUs is broken; since
11677 * you can never concurrently schedule them anyhow.
04289bb9 11678 */
64aee2a9
MR
11679 if (group_leader->cpu != event->cpu)
11680 goto err_context;
c3c87e77 11681
64aee2a9
MR
11682 /*
11683 * Make sure we're both on the same task, or both
11684 * per-CPU events.
11685 */
11686 if (group_leader->ctx->task != ctx->task)
11687 goto err_context;
11688
11689 /*
11690 * Do not allow to attach to a group in a different task
11691 * or CPU context. If we're moving SW events, we'll fix
11692 * this up later, so allow that.
11693 */
11694 if (!move_group && group_leader->ctx != ctx)
11695 goto err_context;
b04243ef 11696
3b6f9e5c
PM
11697 /*
11698 * Only a group leader can be exclusive or pinned
11699 */
0d48696f 11700 if (attr.exclusive || attr.pinned)
c3f00c70 11701 goto err_context;
ac9721f3
PZ
11702 }
11703
11704 if (output_event) {
11705 err = perf_event_set_output(event, output_event);
11706 if (err)
c3f00c70 11707 goto err_context;
ac9721f3 11708 }
0793a61d 11709
a21b0b35
YD
11710 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
11711 f_flags);
ea635c64
AV
11712 if (IS_ERR(event_file)) {
11713 err = PTR_ERR(event_file);
201c2f85 11714 event_file = NULL;
c3f00c70 11715 goto err_context;
ea635c64 11716 }
9b51f66d 11717
b04243ef 11718 if (move_group) {
321027c1
PZ
11719 gctx = __perf_event_ctx_lock_double(group_leader, ctx);
11720
84c4e620
PZ
11721 if (gctx->task == TASK_TOMBSTONE) {
11722 err = -ESRCH;
11723 goto err_locked;
11724 }
321027c1
PZ
11725
11726 /*
11727 * Check if we raced against another sys_perf_event_open() call
11728 * moving the software group underneath us.
11729 */
11730 if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) {
11731 /*
11732 * If someone moved the group out from under us, check
11733 * if this new event wound up on the same ctx, if so
11734 * its the regular !move_group case, otherwise fail.
11735 */
11736 if (gctx != ctx) {
11737 err = -EINVAL;
11738 goto err_locked;
11739 } else {
11740 perf_event_ctx_unlock(group_leader, gctx);
11741 move_group = 0;
11742 }
11743 }
8a58ddae
AS
11744
11745 /*
11746 * Failure to create exclusive events returns -EBUSY.
11747 */
11748 err = -EBUSY;
11749 if (!exclusive_event_installable(group_leader, ctx))
11750 goto err_locked;
11751
11752 for_each_sibling_event(sibling, group_leader) {
11753 if (!exclusive_event_installable(sibling, ctx))
11754 goto err_locked;
11755 }
f55fc2a5
PZ
11756 } else {
11757 mutex_lock(&ctx->mutex);
11758 }
11759
84c4e620
PZ
11760 if (ctx->task == TASK_TOMBSTONE) {
11761 err = -ESRCH;
11762 goto err_locked;
11763 }
11764
a723968c
PZ
11765 if (!perf_event_validate_size(event)) {
11766 err = -E2BIG;
11767 goto err_locked;
11768 }
11769
a63fbed7
TG
11770 if (!task) {
11771 /*
11772 * Check if the @cpu we're creating an event for is online.
11773 *
11774 * We use the perf_cpu_context::ctx::mutex to serialize against
11775 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
11776 */
11777 struct perf_cpu_context *cpuctx =
11778 container_of(ctx, struct perf_cpu_context, ctx);
11779
11780 if (!cpuctx->online) {
11781 err = -ENODEV;
11782 goto err_locked;
11783 }
11784 }
11785
da9ec3d3
MR
11786 if (perf_need_aux_event(event) && !perf_get_aux_event(event, group_leader)) {
11787 err = -EINVAL;
ab43762e 11788 goto err_locked;
da9ec3d3 11789 }
a63fbed7 11790
f55fc2a5
PZ
11791 /*
11792 * Must be under the same ctx::mutex as perf_install_in_context(),
11793 * because we need to serialize with concurrent event creation.
11794 */
11795 if (!exclusive_event_installable(event, ctx)) {
f55fc2a5
PZ
11796 err = -EBUSY;
11797 goto err_locked;
11798 }
f63a8daa 11799
f55fc2a5
PZ
11800 WARN_ON_ONCE(ctx->parent_ctx);
11801
79c9ce57
PZ
11802 /*
11803 * This is the point on no return; we cannot fail hereafter. This is
11804 * where we start modifying current state.
11805 */
11806
f55fc2a5 11807 if (move_group) {
f63a8daa
PZ
11808 /*
11809 * See perf_event_ctx_lock() for comments on the details
11810 * of swizzling perf_event::ctx.
11811 */
45a0e07a 11812 perf_remove_from_context(group_leader, 0);
279b5165 11813 put_ctx(gctx);
0231bb53 11814
edb39592 11815 for_each_sibling_event(sibling, group_leader) {
45a0e07a 11816 perf_remove_from_context(sibling, 0);
b04243ef
PZ
11817 put_ctx(gctx);
11818 }
b04243ef 11819
f63a8daa
PZ
11820 /*
11821 * Wait for everybody to stop referencing the events through
11822 * the old lists, before installing it on new lists.
11823 */
0cda4c02 11824 synchronize_rcu();
f63a8daa 11825
8f95b435
PZI
11826 /*
11827 * Install the group siblings before the group leader.
11828 *
11829 * Because a group leader will try and install the entire group
11830 * (through the sibling list, which is still in-tact), we can
11831 * end up with siblings installed in the wrong context.
11832 *
11833 * By installing siblings first we NO-OP because they're not
11834 * reachable through the group lists.
11835 */
edb39592 11836 for_each_sibling_event(sibling, group_leader) {
8f95b435 11837 perf_event__state_init(sibling);
9fc81d87 11838 perf_install_in_context(ctx, sibling, sibling->cpu);
b04243ef
PZ
11839 get_ctx(ctx);
11840 }
8f95b435
PZI
11841
11842 /*
11843 * Removing from the context ends up with disabled
11844 * event. What we want here is event in the initial
11845 * startup state, ready to be add into new context.
11846 */
11847 perf_event__state_init(group_leader);
11848 perf_install_in_context(ctx, group_leader, group_leader->cpu);
11849 get_ctx(ctx);
bed5b25a
AS
11850 }
11851
f73e22ab
PZ
11852 /*
11853 * Precalculate sample_data sizes; do while holding ctx::mutex such
11854 * that we're serialized against further additions and before
11855 * perf_install_in_context() which is the point the event is active and
11856 * can use these values.
11857 */
11858 perf_event__header_size(event);
11859 perf_event__id_header_size(event);
11860
78cd2c74
PZ
11861 event->owner = current;
11862
e2d37cd2 11863 perf_install_in_context(ctx, event, event->cpu);
fe4b04fa 11864 perf_unpin_context(ctx);
f63a8daa 11865
f55fc2a5 11866 if (move_group)
321027c1 11867 perf_event_ctx_unlock(group_leader, gctx);
d859e29f 11868 mutex_unlock(&ctx->mutex);
9b51f66d 11869
79c9ce57 11870 if (task) {
69143038 11871 mutex_unlock(&task->signal->exec_update_mutex);
79c9ce57
PZ
11872 put_task_struct(task);
11873 }
11874
cdd6c482
IM
11875 mutex_lock(&current->perf_event_mutex);
11876 list_add_tail(&event->owner_entry, &current->perf_event_list);
11877 mutex_unlock(&current->perf_event_mutex);
082ff5a2 11878
8a49542c
PZ
11879 /*
11880 * Drop the reference on the group_event after placing the
11881 * new event on the sibling_list. This ensures destruction
11882 * of the group leader will find the pointer to itself in
11883 * perf_group_detach().
11884 */
2903ff01 11885 fdput(group);
ea635c64
AV
11886 fd_install(event_fd, event_file);
11887 return event_fd;
0793a61d 11888
f55fc2a5
PZ
11889err_locked:
11890 if (move_group)
321027c1 11891 perf_event_ctx_unlock(group_leader, gctx);
f55fc2a5
PZ
11892 mutex_unlock(&ctx->mutex);
11893/* err_file: */
11894 fput(event_file);
c3f00c70 11895err_context:
fe4b04fa 11896 perf_unpin_context(ctx);
ea635c64 11897 put_ctx(ctx);
c6be5a5c 11898err_alloc:
13005627
PZ
11899 /*
11900 * If event_file is set, the fput() above will have called ->release()
11901 * and that will take care of freeing the event.
11902 */
11903 if (!event_file)
11904 free_event(event);
79c9ce57
PZ
11905err_cred:
11906 if (task)
69143038 11907 mutex_unlock(&task->signal->exec_update_mutex);
1f4ee503 11908err_task:
e7d0bc04
PZ
11909 if (task)
11910 put_task_struct(task);
89a1e187 11911err_group_fd:
2903ff01 11912 fdput(group);
ea635c64
AV
11913err_fd:
11914 put_unused_fd(event_fd);
dc86cabe 11915 return err;
0793a61d
TG
11916}
11917
fb0459d7
AV
11918/**
11919 * perf_event_create_kernel_counter
11920 *
11921 * @attr: attributes of the counter to create
11922 * @cpu: cpu in which the counter is bound
38a81da2 11923 * @task: task to profile (NULL for percpu)
fb0459d7
AV
11924 */
11925struct perf_event *
11926perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
38a81da2 11927 struct task_struct *task,
4dc0da86
AK
11928 perf_overflow_handler_t overflow_handler,
11929 void *context)
fb0459d7 11930{
fb0459d7 11931 struct perf_event_context *ctx;
c3f00c70 11932 struct perf_event *event;
fb0459d7 11933 int err;
d859e29f 11934
dce5affb
AS
11935 /*
11936 * Grouping is not supported for kernel events, neither is 'AUX',
11937 * make sure the caller's intentions are adjusted.
11938 */
11939 if (attr->aux_output)
11940 return ERR_PTR(-EINVAL);
11941
4dc0da86 11942 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
79dff51e 11943 overflow_handler, context, -1);
c3f00c70
PZ
11944 if (IS_ERR(event)) {
11945 err = PTR_ERR(event);
11946 goto err;
11947 }
d859e29f 11948
f8697762 11949 /* Mark owner so we could distinguish it from user events. */
63b6da39 11950 event->owner = TASK_TOMBSTONE;
f8697762 11951
f25d8ba9
AS
11952 /*
11953 * Get the target context (task or percpu):
11954 */
4af57ef2 11955 ctx = find_get_context(event->pmu, task, event);
c6567f64
FW
11956 if (IS_ERR(ctx)) {
11957 err = PTR_ERR(ctx);
c3f00c70 11958 goto err_free;
d859e29f 11959 }
fb0459d7 11960
fb0459d7
AV
11961 WARN_ON_ONCE(ctx->parent_ctx);
11962 mutex_lock(&ctx->mutex);
84c4e620
PZ
11963 if (ctx->task == TASK_TOMBSTONE) {
11964 err = -ESRCH;
11965 goto err_unlock;
11966 }
11967
a63fbed7
TG
11968 if (!task) {
11969 /*
11970 * Check if the @cpu we're creating an event for is online.
11971 *
11972 * We use the perf_cpu_context::ctx::mutex to serialize against
11973 * the hotplug notifiers. See perf_event_{init,exit}_cpu().
11974 */
11975 struct perf_cpu_context *cpuctx =
11976 container_of(ctx, struct perf_cpu_context, ctx);
11977 if (!cpuctx->online) {
11978 err = -ENODEV;
11979 goto err_unlock;
11980 }
11981 }
11982
bed5b25a 11983 if (!exclusive_event_installable(event, ctx)) {
bed5b25a 11984 err = -EBUSY;
84c4e620 11985 goto err_unlock;
bed5b25a
AS
11986 }
11987
4ce54af8 11988 perf_install_in_context(ctx, event, event->cpu);
fe4b04fa 11989 perf_unpin_context(ctx);
fb0459d7
AV
11990 mutex_unlock(&ctx->mutex);
11991
fb0459d7
AV
11992 return event;
11993
84c4e620
PZ
11994err_unlock:
11995 mutex_unlock(&ctx->mutex);
11996 perf_unpin_context(ctx);
11997 put_ctx(ctx);
c3f00c70
PZ
11998err_free:
11999 free_event(event);
12000err:
c6567f64 12001 return ERR_PTR(err);
9b51f66d 12002}
fb0459d7 12003EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
9b51f66d 12004
0cda4c02
YZ
12005void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
12006{
12007 struct perf_event_context *src_ctx;
12008 struct perf_event_context *dst_ctx;
12009 struct perf_event *event, *tmp;
12010 LIST_HEAD(events);
12011
12012 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
12013 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
12014
f63a8daa
PZ
12015 /*
12016 * See perf_event_ctx_lock() for comments on the details
12017 * of swizzling perf_event::ctx.
12018 */
12019 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
0cda4c02
YZ
12020 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
12021 event_entry) {
45a0e07a 12022 perf_remove_from_context(event, 0);
9a545de0 12023 unaccount_event_cpu(event, src_cpu);
0cda4c02 12024 put_ctx(src_ctx);
9886167d 12025 list_add(&event->migrate_entry, &events);
0cda4c02 12026 }
0cda4c02 12027
8f95b435
PZI
12028 /*
12029 * Wait for the events to quiesce before re-instating them.
12030 */
0cda4c02
YZ
12031 synchronize_rcu();
12032
8f95b435
PZI
12033 /*
12034 * Re-instate events in 2 passes.
12035 *
12036 * Skip over group leaders and only install siblings on this first
12037 * pass, siblings will not get enabled without a leader, however a
12038 * leader will enable its siblings, even if those are still on the old
12039 * context.
12040 */
12041 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12042 if (event->group_leader == event)
12043 continue;
12044
12045 list_del(&event->migrate_entry);
12046 if (event->state >= PERF_EVENT_STATE_OFF)
12047 event->state = PERF_EVENT_STATE_INACTIVE;
12048 account_event_cpu(event, dst_cpu);
12049 perf_install_in_context(dst_ctx, event, dst_cpu);
12050 get_ctx(dst_ctx);
12051 }
12052
12053 /*
12054 * Once all the siblings are setup properly, install the group leaders
12055 * to make it go.
12056 */
9886167d
PZ
12057 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
12058 list_del(&event->migrate_entry);
0cda4c02
YZ
12059 if (event->state >= PERF_EVENT_STATE_OFF)
12060 event->state = PERF_EVENT_STATE_INACTIVE;
9a545de0 12061 account_event_cpu(event, dst_cpu);
0cda4c02
YZ
12062 perf_install_in_context(dst_ctx, event, dst_cpu);
12063 get_ctx(dst_ctx);
12064 }
12065 mutex_unlock(&dst_ctx->mutex);
f63a8daa 12066 mutex_unlock(&src_ctx->mutex);
0cda4c02
YZ
12067}
12068EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
12069
cdd6c482 12070static void sync_child_event(struct perf_event *child_event,
38b200d6 12071 struct task_struct *child)
d859e29f 12072{
cdd6c482 12073 struct perf_event *parent_event = child_event->parent;
8bc20959 12074 u64 child_val;
d859e29f 12075
cdd6c482
IM
12076 if (child_event->attr.inherit_stat)
12077 perf_event_read_event(child_event, child);
38b200d6 12078
b5e58793 12079 child_val = perf_event_count(child_event);
d859e29f
PM
12080
12081 /*
12082 * Add back the child's count to the parent's count:
12083 */
a6e6dea6 12084 atomic64_add(child_val, &parent_event->child_count);
cdd6c482
IM
12085 atomic64_add(child_event->total_time_enabled,
12086 &parent_event->child_total_time_enabled);
12087 atomic64_add(child_event->total_time_running,
12088 &parent_event->child_total_time_running);
d859e29f
PM
12089}
12090
9b51f66d 12091static void
8ba289b8
PZ
12092perf_event_exit_event(struct perf_event *child_event,
12093 struct perf_event_context *child_ctx,
12094 struct task_struct *child)
9b51f66d 12095{
8ba289b8
PZ
12096 struct perf_event *parent_event = child_event->parent;
12097
1903d50c
PZ
12098 /*
12099 * Do not destroy the 'original' grouping; because of the context
12100 * switch optimization the original events could've ended up in a
12101 * random child task.
12102 *
12103 * If we were to destroy the original group, all group related
12104 * operations would cease to function properly after this random
12105 * child dies.
12106 *
12107 * Do destroy all inherited groups, we don't care about those
12108 * and being thorough is better.
12109 */
32132a3d
PZ
12110 raw_spin_lock_irq(&child_ctx->lock);
12111 WARN_ON_ONCE(child_ctx->is_active);
12112
8ba289b8 12113 if (parent_event)
32132a3d
PZ
12114 perf_group_detach(child_event);
12115 list_del_event(child_event, child_ctx);
0d3d73aa 12116 perf_event_set_state(child_event, PERF_EVENT_STATE_EXIT); /* is_event_hup() */
32132a3d 12117 raw_spin_unlock_irq(&child_ctx->lock);
0cc0c027 12118
9b51f66d 12119 /*
8ba289b8 12120 * Parent events are governed by their filedesc, retain them.
9b51f66d 12121 */
8ba289b8 12122 if (!parent_event) {
179033b3 12123 perf_event_wakeup(child_event);
8ba289b8 12124 return;
4bcf349a 12125 }
8ba289b8
PZ
12126 /*
12127 * Child events can be cleaned up.
12128 */
12129
12130 sync_child_event(child_event, child);
12131
12132 /*
12133 * Remove this event from the parent's list
12134 */
12135 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
12136 mutex_lock(&parent_event->child_mutex);
12137 list_del_init(&child_event->child_list);
12138 mutex_unlock(&parent_event->child_mutex);
12139
12140 /*
12141 * Kick perf_poll() for is_event_hup().
12142 */
12143 perf_event_wakeup(parent_event);
12144 free_event(child_event);
12145 put_event(parent_event);
9b51f66d
IM
12146}
12147
8dc85d54 12148static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
9b51f66d 12149{
211de6eb 12150 struct perf_event_context *child_ctx, *clone_ctx = NULL;
63b6da39 12151 struct perf_event *child_event, *next;
63b6da39
PZ
12152
12153 WARN_ON_ONCE(child != current);
9b51f66d 12154
6a3351b6 12155 child_ctx = perf_pin_task_context(child, ctxn);
63b6da39 12156 if (!child_ctx)
9b51f66d
IM
12157 return;
12158
ad3a37de 12159 /*
6a3351b6
PZ
12160 * In order to reduce the amount of tricky in ctx tear-down, we hold
12161 * ctx::mutex over the entire thing. This serializes against almost
12162 * everything that wants to access the ctx.
12163 *
12164 * The exception is sys_perf_event_open() /
12165 * perf_event_create_kernel_count() which does find_get_context()
12166 * without ctx::mutex (it cannot because of the move_group double mutex
12167 * lock thing). See the comments in perf_install_in_context().
ad3a37de 12168 */
6a3351b6 12169 mutex_lock(&child_ctx->mutex);
c93f7669
PM
12170
12171 /*
6a3351b6
PZ
12172 * In a single ctx::lock section, de-schedule the events and detach the
12173 * context from the task such that we cannot ever get it scheduled back
12174 * in.
c93f7669 12175 */
6a3351b6 12176 raw_spin_lock_irq(&child_ctx->lock);
487f05e1 12177 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL);
4a1c0f26 12178
71a851b4 12179 /*
63b6da39
PZ
12180 * Now that the context is inactive, destroy the task <-> ctx relation
12181 * and mark the context dead.
71a851b4 12182 */
63b6da39
PZ
12183 RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL);
12184 put_ctx(child_ctx); /* cannot be last */
12185 WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE);
12186 put_task_struct(current); /* cannot be last */
4a1c0f26 12187
211de6eb 12188 clone_ctx = unclone_ctx(child_ctx);
6a3351b6 12189 raw_spin_unlock_irq(&child_ctx->lock);
9f498cc5 12190
211de6eb
PZ
12191 if (clone_ctx)
12192 put_ctx(clone_ctx);
4a1c0f26 12193
9f498cc5 12194 /*
cdd6c482
IM
12195 * Report the task dead after unscheduling the events so that we
12196 * won't get any samples after PERF_RECORD_EXIT. We can however still
12197 * get a few PERF_RECORD_READ events.
9f498cc5 12198 */
cdd6c482 12199 perf_event_task(child, child_ctx, 0);
a63eaf34 12200
ebf905fc 12201 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
8ba289b8 12202 perf_event_exit_event(child_event, child_ctx, child);
8bc20959 12203
a63eaf34
PM
12204 mutex_unlock(&child_ctx->mutex);
12205
12206 put_ctx(child_ctx);
9b51f66d
IM
12207}
12208
8dc85d54
PZ
12209/*
12210 * When a child task exits, feed back event values to parent events.
79c9ce57 12211 *
69143038 12212 * Can be called with exec_update_mutex held when called from
79c9ce57 12213 * install_exec_creds().
8dc85d54
PZ
12214 */
12215void perf_event_exit_task(struct task_struct *child)
12216{
8882135b 12217 struct perf_event *event, *tmp;
8dc85d54
PZ
12218 int ctxn;
12219
8882135b
PZ
12220 mutex_lock(&child->perf_event_mutex);
12221 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
12222 owner_entry) {
12223 list_del_init(&event->owner_entry);
12224
12225 /*
12226 * Ensure the list deletion is visible before we clear
12227 * the owner, closes a race against perf_release() where
12228 * we need to serialize on the owner->perf_event_mutex.
12229 */
f47c02c0 12230 smp_store_release(&event->owner, NULL);
8882135b
PZ
12231 }
12232 mutex_unlock(&child->perf_event_mutex);
12233
8dc85d54
PZ
12234 for_each_task_context_nr(ctxn)
12235 perf_event_exit_task_context(child, ctxn);
4e93ad60
JO
12236
12237 /*
12238 * The perf_event_exit_task_context calls perf_event_task
12239 * with child's task_ctx, which generates EXIT events for
12240 * child contexts and sets child->perf_event_ctxp[] to NULL.
12241 * At this point we need to send EXIT events to cpu contexts.
12242 */
12243 perf_event_task(child, NULL, 0);
8dc85d54
PZ
12244}
12245
889ff015
FW
12246static void perf_free_event(struct perf_event *event,
12247 struct perf_event_context *ctx)
12248{
12249 struct perf_event *parent = event->parent;
12250
12251 if (WARN_ON_ONCE(!parent))
12252 return;
12253
12254 mutex_lock(&parent->child_mutex);
12255 list_del_init(&event->child_list);
12256 mutex_unlock(&parent->child_mutex);
12257
a6fa941d 12258 put_event(parent);
889ff015 12259
652884fe 12260 raw_spin_lock_irq(&ctx->lock);
8a49542c 12261 perf_group_detach(event);
889ff015 12262 list_del_event(event, ctx);
652884fe 12263 raw_spin_unlock_irq(&ctx->lock);
889ff015
FW
12264 free_event(event);
12265}
12266
bbbee908 12267/*
1cf8dfe8
PZ
12268 * Free a context as created by inheritance by perf_event_init_task() below,
12269 * used by fork() in case of fail.
652884fe 12270 *
1cf8dfe8
PZ
12271 * Even though the task has never lived, the context and events have been
12272 * exposed through the child_list, so we must take care tearing it all down.
bbbee908 12273 */
cdd6c482 12274void perf_event_free_task(struct task_struct *task)
bbbee908 12275{
8dc85d54 12276 struct perf_event_context *ctx;
cdd6c482 12277 struct perf_event *event, *tmp;
8dc85d54 12278 int ctxn;
bbbee908 12279
8dc85d54
PZ
12280 for_each_task_context_nr(ctxn) {
12281 ctx = task->perf_event_ctxp[ctxn];
12282 if (!ctx)
12283 continue;
bbbee908 12284
8dc85d54 12285 mutex_lock(&ctx->mutex);
e552a838
PZ
12286 raw_spin_lock_irq(&ctx->lock);
12287 /*
12288 * Destroy the task <-> ctx relation and mark the context dead.
12289 *
12290 * This is important because even though the task hasn't been
12291 * exposed yet the context has been (through child_list).
12292 */
12293 RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL);
12294 WRITE_ONCE(ctx->task, TASK_TOMBSTONE);
12295 put_task_struct(task); /* cannot be last */
12296 raw_spin_unlock_irq(&ctx->lock);
bbbee908 12297
15121c78 12298 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry)
8dc85d54 12299 perf_free_event(event, ctx);
bbbee908 12300
8dc85d54 12301 mutex_unlock(&ctx->mutex);
1cf8dfe8
PZ
12302
12303 /*
12304 * perf_event_release_kernel() could've stolen some of our
12305 * child events and still have them on its free_list. In that
12306 * case we must wait for these events to have been freed (in
12307 * particular all their references to this task must've been
12308 * dropped).
12309 *
12310 * Without this copy_process() will unconditionally free this
12311 * task (irrespective of its reference count) and
12312 * _free_event()'s put_task_struct(event->hw.target) will be a
12313 * use-after-free.
12314 *
12315 * Wait for all events to drop their context reference.
12316 */
12317 wait_var_event(&ctx->refcount, refcount_read(&ctx->refcount) == 1);
12318 put_ctx(ctx); /* must be last */
8dc85d54 12319 }
889ff015
FW
12320}
12321
4e231c79
PZ
12322void perf_event_delayed_put(struct task_struct *task)
12323{
12324 int ctxn;
12325
12326 for_each_task_context_nr(ctxn)
12327 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
12328}
12329
e03e7ee3 12330struct file *perf_event_get(unsigned int fd)
ffe8690c 12331{
02e5ad97 12332 struct file *file = fget(fd);
e03e7ee3
AS
12333 if (!file)
12334 return ERR_PTR(-EBADF);
ffe8690c 12335
e03e7ee3
AS
12336 if (file->f_op != &perf_fops) {
12337 fput(file);
12338 return ERR_PTR(-EBADF);
12339 }
ffe8690c 12340
e03e7ee3 12341 return file;
ffe8690c
KX
12342}
12343
f8d959a5
YS
12344const struct perf_event *perf_get_event(struct file *file)
12345{
12346 if (file->f_op != &perf_fops)
12347 return ERR_PTR(-EINVAL);
12348
12349 return file->private_data;
12350}
12351
ffe8690c
KX
12352const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
12353{
12354 if (!event)
12355 return ERR_PTR(-EINVAL);
12356
12357 return &event->attr;
12358}
12359
97dee4f3 12360/*
788faab7 12361 * Inherit an event from parent task to child task.
d8a8cfc7
PZ
12362 *
12363 * Returns:
12364 * - valid pointer on success
12365 * - NULL for orphaned events
12366 * - IS_ERR() on error
97dee4f3
PZ
12367 */
12368static struct perf_event *
12369inherit_event(struct perf_event *parent_event,
12370 struct task_struct *parent,
12371 struct perf_event_context *parent_ctx,
12372 struct task_struct *child,
12373 struct perf_event *group_leader,
12374 struct perf_event_context *child_ctx)
12375{
8ca2bd41 12376 enum perf_event_state parent_state = parent_event->state;
97dee4f3 12377 struct perf_event *child_event;
cee010ec 12378 unsigned long flags;
97dee4f3
PZ
12379
12380 /*
12381 * Instead of creating recursive hierarchies of events,
12382 * we link inherited events back to the original parent,
12383 * which has a filp for sure, which we use as the reference
12384 * count:
12385 */
12386 if (parent_event->parent)
12387 parent_event = parent_event->parent;
12388
12389 child_event = perf_event_alloc(&parent_event->attr,
12390 parent_event->cpu,
d580ff86 12391 child,
97dee4f3 12392 group_leader, parent_event,
79dff51e 12393 NULL, NULL, -1);
97dee4f3
PZ
12394 if (IS_ERR(child_event))
12395 return child_event;
a6fa941d 12396
313ccb96
JO
12397
12398 if ((child_event->attach_state & PERF_ATTACH_TASK_DATA) &&
12399 !child_ctx->task_ctx_data) {
12400 struct pmu *pmu = child_event->pmu;
12401
12402 child_ctx->task_ctx_data = kzalloc(pmu->task_ctx_size,
12403 GFP_KERNEL);
12404 if (!child_ctx->task_ctx_data) {
12405 free_event(child_event);
697d8778 12406 return ERR_PTR(-ENOMEM);
313ccb96
JO
12407 }
12408 }
12409
c6e5b732
PZ
12410 /*
12411 * is_orphaned_event() and list_add_tail(&parent_event->child_list)
12412 * must be under the same lock in order to serialize against
12413 * perf_event_release_kernel(), such that either we must observe
12414 * is_orphaned_event() or they will observe us on the child_list.
12415 */
12416 mutex_lock(&parent_event->child_mutex);
fadfe7be
JO
12417 if (is_orphaned_event(parent_event) ||
12418 !atomic_long_inc_not_zero(&parent_event->refcount)) {
c6e5b732 12419 mutex_unlock(&parent_event->child_mutex);
313ccb96 12420 /* task_ctx_data is freed with child_ctx */
a6fa941d
AV
12421 free_event(child_event);
12422 return NULL;
12423 }
12424
97dee4f3
PZ
12425 get_ctx(child_ctx);
12426
12427 /*
12428 * Make the child state follow the state of the parent event,
12429 * not its attr.disabled bit. We hold the parent's mutex,
12430 * so we won't race with perf_event_{en, dis}able_family.
12431 */
1929def9 12432 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
97dee4f3
PZ
12433 child_event->state = PERF_EVENT_STATE_INACTIVE;
12434 else
12435 child_event->state = PERF_EVENT_STATE_OFF;
12436
12437 if (parent_event->attr.freq) {
12438 u64 sample_period = parent_event->hw.sample_period;
12439 struct hw_perf_event *hwc = &child_event->hw;
12440
12441 hwc->sample_period = sample_period;
12442 hwc->last_period = sample_period;
12443
12444 local64_set(&hwc->period_left, sample_period);
12445 }
12446
12447 child_event->ctx = child_ctx;
12448 child_event->overflow_handler = parent_event->overflow_handler;
4dc0da86
AK
12449 child_event->overflow_handler_context
12450 = parent_event->overflow_handler_context;
97dee4f3 12451
614b6780
TG
12452 /*
12453 * Precalculate sample_data sizes
12454 */
12455 perf_event__header_size(child_event);
6844c09d 12456 perf_event__id_header_size(child_event);
614b6780 12457
97dee4f3
PZ
12458 /*
12459 * Link it up in the child's context:
12460 */
cee010ec 12461 raw_spin_lock_irqsave(&child_ctx->lock, flags);
97dee4f3 12462 add_event_to_ctx(child_event, child_ctx);
cee010ec 12463 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
97dee4f3 12464
97dee4f3
PZ
12465 /*
12466 * Link this into the parent event's child list
12467 */
97dee4f3
PZ
12468 list_add_tail(&child_event->child_list, &parent_event->child_list);
12469 mutex_unlock(&parent_event->child_mutex);
12470
12471 return child_event;
12472}
12473
d8a8cfc7
PZ
12474/*
12475 * Inherits an event group.
12476 *
12477 * This will quietly suppress orphaned events; !inherit_event() is not an error.
12478 * This matches with perf_event_release_kernel() removing all child events.
12479 *
12480 * Returns:
12481 * - 0 on success
12482 * - <0 on error
12483 */
97dee4f3
PZ
12484static int inherit_group(struct perf_event *parent_event,
12485 struct task_struct *parent,
12486 struct perf_event_context *parent_ctx,
12487 struct task_struct *child,
12488 struct perf_event_context *child_ctx)
12489{
12490 struct perf_event *leader;
12491 struct perf_event *sub;
12492 struct perf_event *child_ctr;
12493
12494 leader = inherit_event(parent_event, parent, parent_ctx,
12495 child, NULL, child_ctx);
12496 if (IS_ERR(leader))
12497 return PTR_ERR(leader);
d8a8cfc7
PZ
12498 /*
12499 * @leader can be NULL here because of is_orphaned_event(). In this
12500 * case inherit_event() will create individual events, similar to what
12501 * perf_group_detach() would do anyway.
12502 */
edb39592 12503 for_each_sibling_event(sub, parent_event) {
97dee4f3
PZ
12504 child_ctr = inherit_event(sub, parent, parent_ctx,
12505 child, leader, child_ctx);
12506 if (IS_ERR(child_ctr))
12507 return PTR_ERR(child_ctr);
f733c6b5 12508
00496fe5 12509 if (sub->aux_event == parent_event && child_ctr &&
f733c6b5
AS
12510 !perf_get_aux_event(child_ctr, leader))
12511 return -EINVAL;
97dee4f3
PZ
12512 }
12513 return 0;
889ff015
FW
12514}
12515
d8a8cfc7
PZ
12516/*
12517 * Creates the child task context and tries to inherit the event-group.
12518 *
12519 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave
12520 * inherited_all set when we 'fail' to inherit an orphaned event; this is
12521 * consistent with perf_event_release_kernel() removing all child events.
12522 *
12523 * Returns:
12524 * - 0 on success
12525 * - <0 on error
12526 */
889ff015
FW
12527static int
12528inherit_task_group(struct perf_event *event, struct task_struct *parent,
12529 struct perf_event_context *parent_ctx,
8dc85d54 12530 struct task_struct *child, int ctxn,
889ff015
FW
12531 int *inherited_all)
12532{
12533 int ret;
8dc85d54 12534 struct perf_event_context *child_ctx;
889ff015
FW
12535
12536 if (!event->attr.inherit) {
12537 *inherited_all = 0;
12538 return 0;
bbbee908
PZ
12539 }
12540
fe4b04fa 12541 child_ctx = child->perf_event_ctxp[ctxn];
889ff015
FW
12542 if (!child_ctx) {
12543 /*
12544 * This is executed from the parent task context, so
12545 * inherit events that have been marked for cloning.
12546 * First allocate and initialize a context for the
12547 * child.
12548 */
734df5ab 12549 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
889ff015
FW
12550 if (!child_ctx)
12551 return -ENOMEM;
bbbee908 12552
8dc85d54 12553 child->perf_event_ctxp[ctxn] = child_ctx;
889ff015
FW
12554 }
12555
12556 ret = inherit_group(event, parent, parent_ctx,
12557 child, child_ctx);
12558
12559 if (ret)
12560 *inherited_all = 0;
12561
12562 return ret;
bbbee908
PZ
12563}
12564
9b51f66d 12565/*
cdd6c482 12566 * Initialize the perf_event context in task_struct
9b51f66d 12567 */
985c8dcb 12568static int perf_event_init_context(struct task_struct *child, int ctxn)
9b51f66d 12569{
889ff015 12570 struct perf_event_context *child_ctx, *parent_ctx;
cdd6c482
IM
12571 struct perf_event_context *cloned_ctx;
12572 struct perf_event *event;
9b51f66d 12573 struct task_struct *parent = current;
564c2b21 12574 int inherited_all = 1;
dddd3379 12575 unsigned long flags;
6ab423e0 12576 int ret = 0;
9b51f66d 12577
8dc85d54 12578 if (likely(!parent->perf_event_ctxp[ctxn]))
6ab423e0
PZ
12579 return 0;
12580
ad3a37de 12581 /*
25346b93
PM
12582 * If the parent's context is a clone, pin it so it won't get
12583 * swapped under us.
ad3a37de 12584 */
8dc85d54 12585 parent_ctx = perf_pin_task_context(parent, ctxn);
ffb4ef21
PZ
12586 if (!parent_ctx)
12587 return 0;
25346b93 12588
ad3a37de
PM
12589 /*
12590 * No need to check if parent_ctx != NULL here; since we saw
12591 * it non-NULL earlier, the only reason for it to become NULL
12592 * is if we exit, and since we're currently in the middle of
12593 * a fork we can't be exiting at the same time.
12594 */
ad3a37de 12595
9b51f66d
IM
12596 /*
12597 * Lock the parent list. No need to lock the child - not PID
12598 * hashed yet and not running, so nobody can access it.
12599 */
d859e29f 12600 mutex_lock(&parent_ctx->mutex);
9b51f66d
IM
12601
12602 /*
12603 * We dont have to disable NMIs - we are only looking at
12604 * the list, not manipulating it:
12605 */
6e6804d2 12606 perf_event_groups_for_each(event, &parent_ctx->pinned_groups) {
8dc85d54
PZ
12607 ret = inherit_task_group(event, parent, parent_ctx,
12608 child, ctxn, &inherited_all);
889ff015 12609 if (ret)
e7cc4865 12610 goto out_unlock;
889ff015 12611 }
b93f7978 12612
dddd3379
TG
12613 /*
12614 * We can't hold ctx->lock when iterating the ->flexible_group list due
12615 * to allocations, but we need to prevent rotation because
12616 * rotate_ctx() will change the list from interrupt context.
12617 */
12618 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
12619 parent_ctx->rotate_disable = 1;
12620 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
12621
6e6804d2 12622 perf_event_groups_for_each(event, &parent_ctx->flexible_groups) {
8dc85d54
PZ
12623 ret = inherit_task_group(event, parent, parent_ctx,
12624 child, ctxn, &inherited_all);
889ff015 12625 if (ret)
e7cc4865 12626 goto out_unlock;
564c2b21
PM
12627 }
12628
dddd3379
TG
12629 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
12630 parent_ctx->rotate_disable = 0;
dddd3379 12631
8dc85d54 12632 child_ctx = child->perf_event_ctxp[ctxn];
889ff015 12633
05cbaa28 12634 if (child_ctx && inherited_all) {
564c2b21
PM
12635 /*
12636 * Mark the child context as a clone of the parent
12637 * context, or of whatever the parent is a clone of.
c5ed5145
PZ
12638 *
12639 * Note that if the parent is a clone, the holding of
12640 * parent_ctx->lock avoids it from being uncloned.
564c2b21 12641 */
c5ed5145 12642 cloned_ctx = parent_ctx->parent_ctx;
ad3a37de
PM
12643 if (cloned_ctx) {
12644 child_ctx->parent_ctx = cloned_ctx;
25346b93 12645 child_ctx->parent_gen = parent_ctx->parent_gen;
564c2b21
PM
12646 } else {
12647 child_ctx->parent_ctx = parent_ctx;
12648 child_ctx->parent_gen = parent_ctx->generation;
12649 }
12650 get_ctx(child_ctx->parent_ctx);
9b51f66d
IM
12651 }
12652
c5ed5145 12653 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
e7cc4865 12654out_unlock:
d859e29f 12655 mutex_unlock(&parent_ctx->mutex);
6ab423e0 12656
25346b93 12657 perf_unpin_context(parent_ctx);
fe4b04fa 12658 put_ctx(parent_ctx);
ad3a37de 12659
6ab423e0 12660 return ret;
9b51f66d
IM
12661}
12662
8dc85d54
PZ
12663/*
12664 * Initialize the perf_event context in task_struct
12665 */
12666int perf_event_init_task(struct task_struct *child)
12667{
12668 int ctxn, ret;
12669
8550d7cb
ON
12670 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
12671 mutex_init(&child->perf_event_mutex);
12672 INIT_LIST_HEAD(&child->perf_event_list);
12673
8dc85d54
PZ
12674 for_each_task_context_nr(ctxn) {
12675 ret = perf_event_init_context(child, ctxn);
6c72e350
PZ
12676 if (ret) {
12677 perf_event_free_task(child);
8dc85d54 12678 return ret;
6c72e350 12679 }
8dc85d54
PZ
12680 }
12681
12682 return 0;
12683}
12684
220b140b
PM
12685static void __init perf_event_init_all_cpus(void)
12686{
b28ab83c 12687 struct swevent_htable *swhash;
220b140b 12688 int cpu;
220b140b 12689
a63fbed7
TG
12690 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL);
12691
220b140b 12692 for_each_possible_cpu(cpu) {
b28ab83c
PZ
12693 swhash = &per_cpu(swevent_htable, cpu);
12694 mutex_init(&swhash->hlist_mutex);
2fde4f94 12695 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
f2fb6bef
KL
12696
12697 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu));
12698 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu));
e48c1788 12699
058fe1c0
DCC
12700#ifdef CONFIG_CGROUP_PERF
12701 INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu));
12702#endif
e48c1788 12703 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu));
220b140b
PM
12704 }
12705}
12706
d18bf422 12707static void perf_swevent_init_cpu(unsigned int cpu)
0793a61d 12708{
108b02cf 12709 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
0793a61d 12710
b28ab83c 12711 mutex_lock(&swhash->hlist_mutex);
059fcd8c 12712 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) {
76e1d904
FW
12713 struct swevent_hlist *hlist;
12714
b28ab83c
PZ
12715 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
12716 WARN_ON(!hlist);
12717 rcu_assign_pointer(swhash->swevent_hlist, hlist);
76e1d904 12718 }
b28ab83c 12719 mutex_unlock(&swhash->hlist_mutex);
0793a61d
TG
12720}
12721
2965faa5 12722#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
108b02cf 12723static void __perf_event_exit_context(void *__info)
0793a61d 12724{
108b02cf 12725 struct perf_event_context *ctx = __info;
fae3fde6
PZ
12726 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
12727 struct perf_event *event;
0793a61d 12728
fae3fde6 12729 raw_spin_lock(&ctx->lock);
0ee098c9 12730 ctx_sched_out(ctx, cpuctx, EVENT_TIME);
fae3fde6 12731 list_for_each_entry(event, &ctx->event_list, event_entry)
45a0e07a 12732 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP);
fae3fde6 12733 raw_spin_unlock(&ctx->lock);
0793a61d 12734}
108b02cf
PZ
12735
12736static void perf_event_exit_cpu_context(int cpu)
12737{
a63fbed7 12738 struct perf_cpu_context *cpuctx;
108b02cf
PZ
12739 struct perf_event_context *ctx;
12740 struct pmu *pmu;
108b02cf 12741
a63fbed7
TG
12742 mutex_lock(&pmus_lock);
12743 list_for_each_entry(pmu, &pmus, entry) {
12744 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
12745 ctx = &cpuctx->ctx;
108b02cf
PZ
12746
12747 mutex_lock(&ctx->mutex);
12748 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
a63fbed7 12749 cpuctx->online = 0;
108b02cf
PZ
12750 mutex_unlock(&ctx->mutex);
12751 }
a63fbed7
TG
12752 cpumask_clear_cpu(cpu, perf_online_mask);
12753 mutex_unlock(&pmus_lock);
108b02cf 12754}
00e16c3d
TG
12755#else
12756
12757static void perf_event_exit_cpu_context(int cpu) { }
12758
12759#endif
108b02cf 12760
a63fbed7
TG
12761int perf_event_init_cpu(unsigned int cpu)
12762{
12763 struct perf_cpu_context *cpuctx;
12764 struct perf_event_context *ctx;
12765 struct pmu *pmu;
12766
12767 perf_swevent_init_cpu(cpu);
12768
12769 mutex_lock(&pmus_lock);
12770 cpumask_set_cpu(cpu, perf_online_mask);
12771 list_for_each_entry(pmu, &pmus, entry) {
12772 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
12773 ctx = &cpuctx->ctx;
12774
12775 mutex_lock(&ctx->mutex);
12776 cpuctx->online = 1;
12777 mutex_unlock(&ctx->mutex);
12778 }
12779 mutex_unlock(&pmus_lock);
12780
12781 return 0;
12782}
12783
00e16c3d 12784int perf_event_exit_cpu(unsigned int cpu)
0793a61d 12785{
e3703f8c 12786 perf_event_exit_cpu_context(cpu);
00e16c3d 12787 return 0;
0793a61d 12788}
0793a61d 12789
c277443c
PZ
12790static int
12791perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
12792{
12793 int cpu;
12794
12795 for_each_online_cpu(cpu)
12796 perf_event_exit_cpu(cpu);
12797
12798 return NOTIFY_OK;
12799}
12800
12801/*
12802 * Run the perf reboot notifier at the very last possible moment so that
12803 * the generic watchdog code runs as long as possible.
12804 */
12805static struct notifier_block perf_reboot_notifier = {
12806 .notifier_call = perf_reboot,
12807 .priority = INT_MIN,
12808};
12809
cdd6c482 12810void __init perf_event_init(void)
0793a61d 12811{
3c502e7a
JW
12812 int ret;
12813
2e80a82a
PZ
12814 idr_init(&pmu_idr);
12815
220b140b 12816 perf_event_init_all_cpus();
b0a873eb 12817 init_srcu_struct(&pmus_srcu);
2e80a82a
PZ
12818 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
12819 perf_pmu_register(&perf_cpu_clock, NULL, -1);
12820 perf_pmu_register(&perf_task_clock, NULL, -1);
b0a873eb 12821 perf_tp_register();
00e16c3d 12822 perf_event_init_cpu(smp_processor_id());
c277443c 12823 register_reboot_notifier(&perf_reboot_notifier);
3c502e7a
JW
12824
12825 ret = init_hw_breakpoint();
12826 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
b2029520 12827
b01c3a00
JO
12828 /*
12829 * Build time assertion that we keep the data_head at the intended
12830 * location. IOW, validation we got the __reserved[] size right.
12831 */
12832 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
12833 != 1024);
0793a61d 12834}
abe43400 12835
fd979c01
CS
12836ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
12837 char *page)
12838{
12839 struct perf_pmu_events_attr *pmu_attr =
12840 container_of(attr, struct perf_pmu_events_attr, attr);
12841
12842 if (pmu_attr->event_str)
12843 return sprintf(page, "%s\n", pmu_attr->event_str);
12844
12845 return 0;
12846}
675965b0 12847EXPORT_SYMBOL_GPL(perf_event_sysfs_show);
fd979c01 12848
abe43400
PZ
12849static int __init perf_event_sysfs_init(void)
12850{
12851 struct pmu *pmu;
12852 int ret;
12853
12854 mutex_lock(&pmus_lock);
12855
12856 ret = bus_register(&pmu_bus);
12857 if (ret)
12858 goto unlock;
12859
12860 list_for_each_entry(pmu, &pmus, entry) {
12861 if (!pmu->name || pmu->type < 0)
12862 continue;
12863
12864 ret = pmu_dev_alloc(pmu);
12865 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
12866 }
12867 pmu_bus_running = 1;
12868 ret = 0;
12869
12870unlock:
12871 mutex_unlock(&pmus_lock);
12872
12873 return ret;
12874}
12875device_initcall(perf_event_sysfs_init);
e5d1367f
SE
12876
12877#ifdef CONFIG_CGROUP_PERF
eb95419b
TH
12878static struct cgroup_subsys_state *
12879perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
e5d1367f
SE
12880{
12881 struct perf_cgroup *jc;
e5d1367f 12882
1b15d055 12883 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
e5d1367f
SE
12884 if (!jc)
12885 return ERR_PTR(-ENOMEM);
12886
e5d1367f
SE
12887 jc->info = alloc_percpu(struct perf_cgroup_info);
12888 if (!jc->info) {
12889 kfree(jc);
12890 return ERR_PTR(-ENOMEM);
12891 }
12892
e5d1367f
SE
12893 return &jc->css;
12894}
12895
eb95419b 12896static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
e5d1367f 12897{
eb95419b
TH
12898 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
12899
e5d1367f
SE
12900 free_percpu(jc->info);
12901 kfree(jc);
12902}
12903
96aaab68
NK
12904static int perf_cgroup_css_online(struct cgroup_subsys_state *css)
12905{
12906 perf_event_cgroup(css->cgroup);
12907 return 0;
12908}
12909
e5d1367f
SE
12910static int __perf_cgroup_move(void *info)
12911{
12912 struct task_struct *task = info;
ddaaf4e2 12913 rcu_read_lock();
e5d1367f 12914 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
ddaaf4e2 12915 rcu_read_unlock();
e5d1367f
SE
12916 return 0;
12917}
12918
1f7dd3e5 12919static void perf_cgroup_attach(struct cgroup_taskset *tset)
e5d1367f 12920{
bb9d97b6 12921 struct task_struct *task;
1f7dd3e5 12922 struct cgroup_subsys_state *css;
bb9d97b6 12923
1f7dd3e5 12924 cgroup_taskset_for_each(task, css, tset)
bb9d97b6 12925 task_function_call(task, __perf_cgroup_move, task);
e5d1367f
SE
12926}
12927
073219e9 12928struct cgroup_subsys perf_event_cgrp_subsys = {
92fb9748
TH
12929 .css_alloc = perf_cgroup_css_alloc,
12930 .css_free = perf_cgroup_css_free,
96aaab68 12931 .css_online = perf_cgroup_css_online,
bb9d97b6 12932 .attach = perf_cgroup_attach,
968ebff1
TH
12933 /*
12934 * Implicitly enable on dfl hierarchy so that perf events can
12935 * always be filtered by cgroup2 path as long as perf_event
12936 * controller is not mounted on a legacy hierarchy.
12937 */
12938 .implicit_on_dfl = true,
8cfd8147 12939 .threaded = true,
e5d1367f
SE
12940};
12941#endif /* CONFIG_CGROUP_PERF */