Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1 | /* |
Ingo Molnar | 57c0c15 | 2009-09-21 12:20:38 +0200 | [diff] [blame] | 2 | * Performance events core code: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de> |
Ingo Molnar | e7e7ee2 | 2011-05-04 08:42:29 +0200 | [diff] [blame] | 5 | * Copyright (C) 2008-2011 Red Hat, Inc., Ingo Molnar |
Peter Zijlstra | 90eec10 | 2015-11-16 11:08:45 +0100 | [diff] [blame] | 6 | * Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra |
Al Viro | d36b691 | 2011-12-29 17:09:01 -0500 | [diff] [blame] | 7 | * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com> |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8 | * |
Ingo Molnar | 57c0c15 | 2009-09-21 12:20:38 +0200 | [diff] [blame] | 9 | * For licensing details see kernel-base/COPYING |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <linux/fs.h> |
| 13 | #include <linux/mm.h> |
| 14 | #include <linux/cpu.h> |
| 15 | #include <linux/smp.h> |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 16 | #include <linux/idr.h> |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 17 | #include <linux/file.h> |
| 18 | #include <linux/poll.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 19 | #include <linux/slab.h> |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 20 | #include <linux/hash.h> |
Frederic Weisbecker | 12351ef | 2013-04-20 15:48:22 +0200 | [diff] [blame] | 21 | #include <linux/tick.h> |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 22 | #include <linux/sysfs.h> |
| 23 | #include <linux/dcache.h> |
| 24 | #include <linux/percpu.h> |
| 25 | #include <linux/ptrace.h> |
Peter Zijlstra | c277443 | 2010-12-08 15:29:02 +0100 | [diff] [blame] | 26 | #include <linux/reboot.h> |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 27 | #include <linux/vmstat.h> |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 28 | #include <linux/device.h> |
Paul Gortmaker | 6e5fdee | 2011-05-26 16:00:52 -0400 | [diff] [blame] | 29 | #include <linux/export.h> |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 30 | #include <linux/vmalloc.h> |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 31 | #include <linux/hardirq.h> |
| 32 | #include <linux/rculist.h> |
| 33 | #include <linux/uaccess.h> |
| 34 | #include <linux/syscalls.h> |
| 35 | #include <linux/anon_inodes.h> |
| 36 | #include <linux/kernel_stat.h> |
Matt Fleming | 39bed6c | 2015-01-23 18:45:40 +0000 | [diff] [blame] | 37 | #include <linux/cgroup.h> |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 38 | #include <linux/perf_event.h> |
Steven Rostedt (Red Hat) | af658dc | 2015-04-29 14:36:05 -0400 | [diff] [blame] | 39 | #include <linux/trace_events.h> |
Jason Wessel | 3c502e7 | 2010-11-04 17:33:01 -0500 | [diff] [blame] | 40 | #include <linux/hw_breakpoint.h> |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 41 | #include <linux/mm_types.h> |
Yan, Zheng | c464c76 | 2014-03-18 16:56:41 +0800 | [diff] [blame] | 42 | #include <linux/module.h> |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 43 | #include <linux/mman.h> |
Pawel Moll | b3f2078 | 2014-06-13 16:03:32 +0100 | [diff] [blame] | 44 | #include <linux/compat.h> |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 45 | #include <linux/bpf.h> |
| 46 | #include <linux/filter.h> |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 47 | #include <linux/namei.h> |
| 48 | #include <linux/parser.h> |
Ingo Molnar | e601757 | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 49 | #include <linux/sched/clock.h> |
Ingo Molnar | 6e84f31 | 2017-02-08 18:51:29 +0100 | [diff] [blame] | 50 | #include <linux/sched/mm.h> |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 51 | #include <linux/proc_ns.h> |
| 52 | #include <linux/mount.h> |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 53 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 54 | #include "internal.h" |
| 55 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 56 | #include <asm/irq_regs.h> |
| 57 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 58 | typedef int (*remote_function_f)(void *); |
| 59 | |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 60 | struct remote_function_call { |
Ingo Molnar | e7e7ee2 | 2011-05-04 08:42:29 +0200 | [diff] [blame] | 61 | struct task_struct *p; |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 62 | remote_function_f func; |
Ingo Molnar | e7e7ee2 | 2011-05-04 08:42:29 +0200 | [diff] [blame] | 63 | void *info; |
| 64 | int ret; |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | static void remote_function(void *data) |
| 68 | { |
| 69 | struct remote_function_call *tfc = data; |
| 70 | struct task_struct *p = tfc->p; |
| 71 | |
| 72 | if (p) { |
Peter Zijlstra | 0da4cf3 | 2016-02-24 18:45:51 +0100 | [diff] [blame] | 73 | /* -EAGAIN */ |
| 74 | if (task_cpu(p) != smp_processor_id()) |
| 75 | return; |
| 76 | |
| 77 | /* |
| 78 | * Now that we're on right CPU with IRQs disabled, we can test |
| 79 | * if we hit the right task without races. |
| 80 | */ |
| 81 | |
| 82 | tfc->ret = -ESRCH; /* No such (running) process */ |
| 83 | if (p != current) |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 84 | return; |
| 85 | } |
| 86 | |
| 87 | tfc->ret = tfc->func(tfc->info); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * task_function_call - call a function on the cpu on which a task runs |
| 92 | * @p: the task to evaluate |
| 93 | * @func: the function to be called |
| 94 | * @info: the function call argument |
| 95 | * |
| 96 | * Calls the function @func when the task is currently running. This might |
| 97 | * be on the current CPU, which just calls the function directly |
| 98 | * |
| 99 | * returns: @func return value, or |
| 100 | * -ESRCH - when the process isn't running |
| 101 | * -EAGAIN - when the process moved away |
| 102 | */ |
| 103 | static int |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 104 | task_function_call(struct task_struct *p, remote_function_f func, void *info) |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 105 | { |
| 106 | struct remote_function_call data = { |
Ingo Molnar | e7e7ee2 | 2011-05-04 08:42:29 +0200 | [diff] [blame] | 107 | .p = p, |
| 108 | .func = func, |
| 109 | .info = info, |
Peter Zijlstra | 0da4cf3 | 2016-02-24 18:45:51 +0100 | [diff] [blame] | 110 | .ret = -EAGAIN, |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 111 | }; |
Peter Zijlstra | 0da4cf3 | 2016-02-24 18:45:51 +0100 | [diff] [blame] | 112 | int ret; |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 113 | |
Peter Zijlstra | 0da4cf3 | 2016-02-24 18:45:51 +0100 | [diff] [blame] | 114 | do { |
| 115 | ret = smp_call_function_single(task_cpu(p), remote_function, &data, 1); |
| 116 | if (!ret) |
| 117 | ret = data.ret; |
| 118 | } while (ret == -EAGAIN); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 119 | |
Peter Zijlstra | 0da4cf3 | 2016-02-24 18:45:51 +0100 | [diff] [blame] | 120 | return ret; |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | /** |
| 124 | * cpu_function_call - call a function on the cpu |
| 125 | * @func: the function to be called |
| 126 | * @info: the function call argument |
| 127 | * |
| 128 | * Calls the function @func on the remote cpu. |
| 129 | * |
| 130 | * returns: @func return value or -ENXIO when the cpu is offline |
| 131 | */ |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 132 | static int cpu_function_call(int cpu, remote_function_f func, void *info) |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 133 | { |
| 134 | struct remote_function_call data = { |
Ingo Molnar | e7e7ee2 | 2011-05-04 08:42:29 +0200 | [diff] [blame] | 135 | .p = NULL, |
| 136 | .func = func, |
| 137 | .info = info, |
| 138 | .ret = -ENXIO, /* No such CPU */ |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 139 | }; |
| 140 | |
| 141 | smp_call_function_single(cpu, remote_function, &data, 1); |
| 142 | |
| 143 | return data.ret; |
| 144 | } |
| 145 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 146 | static inline struct perf_cpu_context * |
| 147 | __get_cpu_context(struct perf_event_context *ctx) |
| 148 | { |
| 149 | return this_cpu_ptr(ctx->pmu->pmu_cpu_context); |
| 150 | } |
| 151 | |
| 152 | static void perf_ctx_lock(struct perf_cpu_context *cpuctx, |
| 153 | struct perf_event_context *ctx) |
| 154 | { |
| 155 | raw_spin_lock(&cpuctx->ctx.lock); |
| 156 | if (ctx) |
| 157 | raw_spin_lock(&ctx->lock); |
| 158 | } |
| 159 | |
| 160 | static void perf_ctx_unlock(struct perf_cpu_context *cpuctx, |
| 161 | struct perf_event_context *ctx) |
| 162 | { |
| 163 | if (ctx) |
| 164 | raw_spin_unlock(&ctx->lock); |
| 165 | raw_spin_unlock(&cpuctx->ctx.lock); |
| 166 | } |
| 167 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 168 | #define TASK_TOMBSTONE ((void *)-1L) |
| 169 | |
| 170 | static bool is_kernel_event(struct perf_event *event) |
| 171 | { |
Peter Zijlstra | f47c02c | 2016-01-26 12:30:14 +0100 | [diff] [blame] | 172 | return READ_ONCE(event->owner) == TASK_TOMBSTONE; |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 173 | } |
| 174 | |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 175 | /* |
| 176 | * On task ctx scheduling... |
| 177 | * |
| 178 | * When !ctx->nr_events a task context will not be scheduled. This means |
| 179 | * we can disable the scheduler hooks (for performance) without leaving |
| 180 | * pending task ctx state. |
| 181 | * |
| 182 | * This however results in two special cases: |
| 183 | * |
| 184 | * - removing the last event from a task ctx; this is relatively straight |
| 185 | * forward and is done in __perf_remove_from_context. |
| 186 | * |
| 187 | * - adding the first event to a task ctx; this is tricky because we cannot |
| 188 | * rely on ctx->is_active and therefore cannot use event_function_call(). |
| 189 | * See perf_install_in_context(). |
| 190 | * |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 191 | * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set. |
| 192 | */ |
| 193 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 194 | typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *, |
| 195 | struct perf_event_context *, void *); |
| 196 | |
| 197 | struct event_function_struct { |
| 198 | struct perf_event *event; |
| 199 | event_f func; |
| 200 | void *data; |
| 201 | }; |
| 202 | |
| 203 | static int event_function(void *info) |
| 204 | { |
| 205 | struct event_function_struct *efs = info; |
| 206 | struct perf_event *event = efs->event; |
| 207 | struct perf_event_context *ctx = event->ctx; |
| 208 | struct perf_cpu_context *cpuctx = __get_cpu_context(ctx); |
| 209 | struct perf_event_context *task_ctx = cpuctx->task_ctx; |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 210 | int ret = 0; |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 211 | |
| 212 | WARN_ON_ONCE(!irqs_disabled()); |
| 213 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 214 | perf_ctx_lock(cpuctx, task_ctx); |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 215 | /* |
| 216 | * Since we do the IPI call without holding ctx->lock things can have |
| 217 | * changed, double check we hit the task we set out to hit. |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 218 | */ |
| 219 | if (ctx->task) { |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 220 | if (ctx->task != current) { |
Peter Zijlstra | 0da4cf3 | 2016-02-24 18:45:51 +0100 | [diff] [blame] | 221 | ret = -ESRCH; |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 222 | goto unlock; |
| 223 | } |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 224 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 225 | /* |
| 226 | * We only use event_function_call() on established contexts, |
| 227 | * and event_function() is only ever called when active (or |
| 228 | * rather, we'll have bailed in task_function_call() or the |
| 229 | * above ctx->task != current test), therefore we must have |
| 230 | * ctx->is_active here. |
| 231 | */ |
| 232 | WARN_ON_ONCE(!ctx->is_active); |
| 233 | /* |
| 234 | * And since we have ctx->is_active, cpuctx->task_ctx must |
| 235 | * match. |
| 236 | */ |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 237 | WARN_ON_ONCE(task_ctx != ctx); |
| 238 | } else { |
| 239 | WARN_ON_ONCE(&cpuctx->ctx != ctx); |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 240 | } |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 241 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 242 | efs->func(event, cpuctx, ctx, efs->data); |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 243 | unlock: |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 244 | perf_ctx_unlock(cpuctx, task_ctx); |
| 245 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 246 | return ret; |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 247 | } |
| 248 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 249 | static void event_function_call(struct perf_event *event, event_f func, void *data) |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 250 | { |
| 251 | struct perf_event_context *ctx = event->ctx; |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 252 | struct task_struct *task = READ_ONCE(ctx->task); /* verified in event_function */ |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 253 | struct event_function_struct efs = { |
| 254 | .event = event, |
| 255 | .func = func, |
| 256 | .data = data, |
| 257 | }; |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 258 | |
Peter Zijlstra | c97f473 | 2016-01-14 10:51:03 +0100 | [diff] [blame] | 259 | if (!event->parent) { |
| 260 | /* |
| 261 | * If this is a !child event, we must hold ctx::mutex to |
| 262 | * stabilize the the event->ctx relation. See |
| 263 | * perf_event_ctx_lock(). |
| 264 | */ |
| 265 | lockdep_assert_held(&ctx->mutex); |
| 266 | } |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 267 | |
| 268 | if (!task) { |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 269 | cpu_function_call(event->cpu, event_function, &efs); |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 270 | return; |
| 271 | } |
| 272 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 273 | if (task == TASK_TOMBSTONE) |
| 274 | return; |
| 275 | |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 276 | again: |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 277 | if (!task_function_call(task, event_function, &efs)) |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 278 | return; |
| 279 | |
| 280 | raw_spin_lock_irq(&ctx->lock); |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 281 | /* |
| 282 | * Reload the task pointer, it might have been changed by |
| 283 | * a concurrent perf_event_context_sched_out(). |
| 284 | */ |
| 285 | task = ctx->task; |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 286 | if (task == TASK_TOMBSTONE) { |
| 287 | raw_spin_unlock_irq(&ctx->lock); |
| 288 | return; |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 289 | } |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 290 | if (ctx->is_active) { |
| 291 | raw_spin_unlock_irq(&ctx->lock); |
| 292 | goto again; |
| 293 | } |
| 294 | func(event, NULL, ctx, data); |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 295 | raw_spin_unlock_irq(&ctx->lock); |
| 296 | } |
| 297 | |
Peter Zijlstra | cca2094 | 2016-08-16 13:33:26 +0200 | [diff] [blame] | 298 | /* |
| 299 | * Similar to event_function_call() + event_function(), but hard assumes IRQs |
| 300 | * are already disabled and we're on the right CPU. |
| 301 | */ |
| 302 | static void event_function_local(struct perf_event *event, event_f func, void *data) |
| 303 | { |
| 304 | struct perf_event_context *ctx = event->ctx; |
| 305 | struct perf_cpu_context *cpuctx = __get_cpu_context(ctx); |
| 306 | struct task_struct *task = READ_ONCE(ctx->task); |
| 307 | struct perf_event_context *task_ctx = NULL; |
| 308 | |
| 309 | WARN_ON_ONCE(!irqs_disabled()); |
| 310 | |
| 311 | if (task) { |
| 312 | if (task == TASK_TOMBSTONE) |
| 313 | return; |
| 314 | |
| 315 | task_ctx = ctx; |
| 316 | } |
| 317 | |
| 318 | perf_ctx_lock(cpuctx, task_ctx); |
| 319 | |
| 320 | task = ctx->task; |
| 321 | if (task == TASK_TOMBSTONE) |
| 322 | goto unlock; |
| 323 | |
| 324 | if (task) { |
| 325 | /* |
| 326 | * We must be either inactive or active and the right task, |
| 327 | * otherwise we're screwed, since we cannot IPI to somewhere |
| 328 | * else. |
| 329 | */ |
| 330 | if (ctx->is_active) { |
| 331 | if (WARN_ON_ONCE(task != current)) |
| 332 | goto unlock; |
| 333 | |
| 334 | if (WARN_ON_ONCE(cpuctx->task_ctx != ctx)) |
| 335 | goto unlock; |
| 336 | } |
| 337 | } else { |
| 338 | WARN_ON_ONCE(&cpuctx->ctx != ctx); |
| 339 | } |
| 340 | |
| 341 | func(event, cpuctx, ctx, data); |
| 342 | unlock: |
| 343 | perf_ctx_unlock(cpuctx, task_ctx); |
| 344 | } |
| 345 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 346 | #define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\ |
| 347 | PERF_FLAG_FD_OUTPUT |\ |
Yann Droneaud | a21b0b3 | 2014-01-05 21:36:33 +0100 | [diff] [blame] | 348 | PERF_FLAG_PID_CGROUP |\ |
| 349 | PERF_FLAG_FD_CLOEXEC) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 350 | |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 351 | /* |
| 352 | * branch priv levels that need permission checks |
| 353 | */ |
| 354 | #define PERF_SAMPLE_BRANCH_PERM_PLM \ |
| 355 | (PERF_SAMPLE_BRANCH_KERNEL |\ |
| 356 | PERF_SAMPLE_BRANCH_HV) |
| 357 | |
Stephane Eranian | 0b3fcf1 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 358 | enum event_type_t { |
| 359 | EVENT_FLEXIBLE = 0x1, |
| 360 | EVENT_PINNED = 0x2, |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 361 | EVENT_TIME = 0x4, |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 362 | /* see ctx_resched() for details */ |
| 363 | EVENT_CPU = 0x8, |
Stephane Eranian | 0b3fcf1 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 364 | EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED, |
| 365 | }; |
| 366 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 367 | /* |
| 368 | * perf_sched_events : >0 events exist |
| 369 | * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu |
| 370 | */ |
Peter Zijlstra | 9107c89 | 2016-02-24 18:45:45 +0100 | [diff] [blame] | 371 | |
| 372 | static void perf_sched_delayed(struct work_struct *work); |
| 373 | DEFINE_STATIC_KEY_FALSE(perf_sched_events); |
| 374 | static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed); |
| 375 | static DEFINE_MUTEX(perf_sched_mutex); |
| 376 | static atomic_t perf_sched_count; |
| 377 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 378 | static DEFINE_PER_CPU(atomic_t, perf_cgroup_events); |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 379 | static DEFINE_PER_CPU(int, perf_sched_cb_usages); |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 380 | static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 381 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 382 | static atomic_t nr_mmap_events __read_mostly; |
| 383 | static atomic_t nr_comm_events __read_mostly; |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 384 | static atomic_t nr_namespaces_events __read_mostly; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 385 | static atomic_t nr_task_events __read_mostly; |
Frederic Weisbecker | 948b26b | 2013-08-02 18:29:55 +0200 | [diff] [blame] | 386 | static atomic_t nr_freq_events __read_mostly; |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 387 | static atomic_t nr_switch_events __read_mostly; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 388 | |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 389 | static LIST_HEAD(pmus); |
| 390 | static DEFINE_MUTEX(pmus_lock); |
| 391 | static struct srcu_struct pmus_srcu; |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 392 | static cpumask_var_t perf_online_mask; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 393 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 394 | /* |
| 395 | * perf event paranoia level: |
| 396 | * -1 - not paranoid at all |
| 397 | * 0 - disallow raw tracepoint access for unpriv |
| 398 | * 1 - disallow cpu events for unpriv |
| 399 | * 2 - disallow kernel profiling for unpriv |
| 400 | */ |
Andy Lutomirski | 0161028 | 2016-05-09 15:48:51 -0700 | [diff] [blame] | 401 | int sysctl_perf_event_paranoid __read_mostly = 2; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 402 | |
Frederic Weisbecker | 2044338 | 2011-03-31 03:33:29 +0200 | [diff] [blame] | 403 | /* Minimum for 512 kiB + 1 user control page */ |
| 404 | int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 405 | |
| 406 | /* |
| 407 | * max perf event sample rate |
| 408 | */ |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 409 | #define DEFAULT_MAX_SAMPLE_RATE 100000 |
| 410 | #define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE) |
| 411 | #define DEFAULT_CPU_TIME_MAX_PERCENT 25 |
| 412 | |
| 413 | int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE; |
| 414 | |
| 415 | static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ); |
| 416 | static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS; |
| 417 | |
Peter Zijlstra | d9494cb | 2013-10-17 15:36:19 +0200 | [diff] [blame] | 418 | static int perf_sample_allowed_ns __read_mostly = |
| 419 | DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100; |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 420 | |
Geliang Tang | 18ab2cd | 2015-09-27 23:25:50 +0800 | [diff] [blame] | 421 | static void update_perf_cpu_limits(void) |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 422 | { |
| 423 | u64 tmp = perf_sample_period_ns; |
| 424 | |
| 425 | tmp *= sysctl_perf_cpu_time_max_percent; |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 426 | tmp = div_u64(tmp, 100); |
| 427 | if (!tmp) |
| 428 | tmp = 1; |
| 429 | |
| 430 | WRITE_ONCE(perf_sample_allowed_ns, tmp); |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 431 | } |
Peter Zijlstra | 163ec43 | 2011-02-16 11:22:34 +0100 | [diff] [blame] | 432 | |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 433 | static int perf_rotate_context(struct perf_cpu_context *cpuctx); |
| 434 | |
Peter Zijlstra | 163ec43 | 2011-02-16 11:22:34 +0100 | [diff] [blame] | 435 | int perf_proc_update_handler(struct ctl_table *table, int write, |
| 436 | void __user *buffer, size_t *lenp, |
| 437 | loff_t *ppos) |
| 438 | { |
Knut Petersen | 723478c | 2013-09-25 14:29:37 +0200 | [diff] [blame] | 439 | int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); |
Peter Zijlstra | 163ec43 | 2011-02-16 11:22:34 +0100 | [diff] [blame] | 440 | |
| 441 | if (ret || !write) |
| 442 | return ret; |
| 443 | |
Kan Liang | ab7fdef | 2016-05-03 00:26:06 -0700 | [diff] [blame] | 444 | /* |
| 445 | * If throttling is disabled don't allow the write: |
| 446 | */ |
| 447 | if (sysctl_perf_cpu_time_max_percent == 100 || |
| 448 | sysctl_perf_cpu_time_max_percent == 0) |
| 449 | return -EINVAL; |
| 450 | |
Peter Zijlstra | 163ec43 | 2011-02-16 11:22:34 +0100 | [diff] [blame] | 451 | max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ); |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 452 | perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate; |
| 453 | update_perf_cpu_limits(); |
Peter Zijlstra | 163ec43 | 2011-02-16 11:22:34 +0100 | [diff] [blame] | 454 | |
| 455 | return 0; |
| 456 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 457 | |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 458 | int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT; |
| 459 | |
| 460 | int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write, |
| 461 | void __user *buffer, size_t *lenp, |
| 462 | loff_t *ppos) |
| 463 | { |
Tan Xiaojun | 1572e45 | 2017-02-23 14:04:39 +0800 | [diff] [blame] | 464 | int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 465 | |
| 466 | if (ret || !write) |
| 467 | return ret; |
| 468 | |
Peter Zijlstra | b303e7c | 2016-04-04 09:57:40 +0200 | [diff] [blame] | 469 | if (sysctl_perf_cpu_time_max_percent == 100 || |
| 470 | sysctl_perf_cpu_time_max_percent == 0) { |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 471 | printk(KERN_WARNING |
| 472 | "perf: Dynamic interrupt throttling disabled, can hang your system!\n"); |
| 473 | WRITE_ONCE(perf_sample_allowed_ns, 0); |
| 474 | } else { |
| 475 | update_perf_cpu_limits(); |
| 476 | } |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 477 | |
| 478 | return 0; |
| 479 | } |
| 480 | |
| 481 | /* |
| 482 | * perf samples are done in some very critical code paths (NMIs). |
| 483 | * If they take too much CPU time, the system can lock up and not |
| 484 | * get any real work done. This will drop the sample rate when |
| 485 | * we detect that events are taking too long. |
| 486 | */ |
| 487 | #define NR_ACCUMULATED_SAMPLES 128 |
Peter Zijlstra | d9494cb | 2013-10-17 15:36:19 +0200 | [diff] [blame] | 488 | static DEFINE_PER_CPU(u64, running_sample_length); |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 489 | |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 490 | static u64 __report_avg; |
| 491 | static u64 __report_allowed; |
| 492 | |
Peter Zijlstra | 6a02ad66 | 2014-02-03 18:11:08 +0100 | [diff] [blame] | 493 | static void perf_duration_warn(struct irq_work *w) |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 494 | { |
David Ahern | 0d87d7e | 2016-08-01 13:49:29 -0700 | [diff] [blame] | 495 | printk_ratelimited(KERN_INFO |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 496 | "perf: interrupt took too long (%lld > %lld), lowering " |
| 497 | "kernel.perf_event_max_sample_rate to %d\n", |
| 498 | __report_avg, __report_allowed, |
| 499 | sysctl_perf_event_sample_rate); |
Peter Zijlstra | 6a02ad66 | 2014-02-03 18:11:08 +0100 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn); |
| 503 | |
| 504 | void perf_sample_event_took(u64 sample_len_ns) |
| 505 | { |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 506 | u64 max_len = READ_ONCE(perf_sample_allowed_ns); |
| 507 | u64 running_len; |
| 508 | u64 avg_len; |
| 509 | u32 max; |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 510 | |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 511 | if (max_len == 0) |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 512 | return; |
| 513 | |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 514 | /* Decay the counter by 1 average sample. */ |
| 515 | running_len = __this_cpu_read(running_sample_length); |
| 516 | running_len -= running_len/NR_ACCUMULATED_SAMPLES; |
| 517 | running_len += sample_len_ns; |
| 518 | __this_cpu_write(running_sample_length, running_len); |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 519 | |
| 520 | /* |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 521 | * Note: this will be biased artifically low until we have |
| 522 | * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 523 | * from having to maintain a count. |
| 524 | */ |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 525 | avg_len = running_len/NR_ACCUMULATED_SAMPLES; |
| 526 | if (avg_len <= max_len) |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 527 | return; |
| 528 | |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 529 | __report_avg = avg_len; |
| 530 | __report_allowed = max_len; |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 531 | |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 532 | /* |
| 533 | * Compute a throttle threshold 25% below the current duration. |
| 534 | */ |
| 535 | avg_len += avg_len / 4; |
| 536 | max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent; |
| 537 | if (avg_len < max) |
| 538 | max /= (u32)avg_len; |
| 539 | else |
| 540 | max = 1; |
| 541 | |
| 542 | WRITE_ONCE(perf_sample_allowed_ns, avg_len); |
| 543 | WRITE_ONCE(max_samples_per_tick, max); |
| 544 | |
| 545 | sysctl_perf_event_sample_rate = max * HZ; |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 546 | perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate; |
| 547 | |
Peter Zijlstra | cd578ab | 2014-02-11 16:01:16 +0100 | [diff] [blame] | 548 | if (!irq_work_queue(&perf_duration_work)) { |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 549 | early_printk("perf: interrupt took too long (%lld > %lld), lowering " |
Peter Zijlstra | cd578ab | 2014-02-11 16:01:16 +0100 | [diff] [blame] | 550 | "kernel.perf_event_max_sample_rate to %d\n", |
Peter Zijlstra | 91a612e | 2016-03-17 15:17:35 +0100 | [diff] [blame] | 551 | __report_avg, __report_allowed, |
Peter Zijlstra | cd578ab | 2014-02-11 16:01:16 +0100 | [diff] [blame] | 552 | sysctl_perf_event_sample_rate); |
| 553 | } |
Dave Hansen | 14c63f1 | 2013-06-21 08:51:36 -0700 | [diff] [blame] | 554 | } |
| 555 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 556 | static atomic64_t perf_event_id; |
| 557 | |
Stephane Eranian | 0b3fcf1 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 558 | static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx, |
| 559 | enum event_type_t event_type); |
| 560 | |
| 561 | static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx, |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 562 | enum event_type_t event_type, |
| 563 | struct task_struct *task); |
| 564 | |
| 565 | static void update_context_time(struct perf_event_context *ctx); |
| 566 | static u64 perf_event_time(struct perf_event *event); |
Stephane Eranian | 0b3fcf1 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 567 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 568 | void __weak perf_event_print_debug(void) { } |
| 569 | |
Matt Fleming | 84c7991 | 2010-10-03 21:41:13 +0100 | [diff] [blame] | 570 | extern __weak const char *perf_pmu_name(void) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 571 | { |
Matt Fleming | 84c7991 | 2010-10-03 21:41:13 +0100 | [diff] [blame] | 572 | return "pmu"; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 573 | } |
| 574 | |
Stephane Eranian | 0b3fcf1 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 575 | static inline u64 perf_clock(void) |
| 576 | { |
| 577 | return local_clock(); |
| 578 | } |
| 579 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 580 | static inline u64 perf_event_clock(struct perf_event *event) |
| 581 | { |
| 582 | return event->clock(); |
| 583 | } |
| 584 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 585 | #ifdef CONFIG_CGROUP_PERF |
| 586 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 587 | static inline bool |
| 588 | perf_cgroup_match(struct perf_event *event) |
| 589 | { |
| 590 | struct perf_event_context *ctx = event->ctx; |
| 591 | struct perf_cpu_context *cpuctx = __get_cpu_context(ctx); |
| 592 | |
Tejun Heo | ef824fa | 2013-04-08 19:00:38 -0700 | [diff] [blame] | 593 | /* @event doesn't care about cgroup */ |
| 594 | if (!event->cgrp) |
| 595 | return true; |
| 596 | |
| 597 | /* wants specific cgroup scope but @cpuctx isn't associated with any */ |
| 598 | if (!cpuctx->cgrp) |
| 599 | return false; |
| 600 | |
| 601 | /* |
| 602 | * Cgroup scoping is recursive. An event enabled for a cgroup is |
| 603 | * also enabled for all its descendant cgroups. If @cpuctx's |
| 604 | * cgroup is a descendant of @event's (the test covers identity |
| 605 | * case), it's a match. |
| 606 | */ |
| 607 | return cgroup_is_descendant(cpuctx->cgrp->css.cgroup, |
| 608 | event->cgrp->css.cgroup); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 609 | } |
| 610 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 611 | static inline void perf_detach_cgroup(struct perf_event *event) |
| 612 | { |
Zefan Li | 4e2ba65 | 2014-09-19 16:53:14 +0800 | [diff] [blame] | 613 | css_put(&event->cgrp->css); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 614 | event->cgrp = NULL; |
| 615 | } |
| 616 | |
| 617 | static inline int is_cgroup_event(struct perf_event *event) |
| 618 | { |
| 619 | return event->cgrp != NULL; |
| 620 | } |
| 621 | |
| 622 | static inline u64 perf_cgroup_event_time(struct perf_event *event) |
| 623 | { |
| 624 | struct perf_cgroup_info *t; |
| 625 | |
| 626 | t = per_cpu_ptr(event->cgrp->info, event->cpu); |
| 627 | return t->time; |
| 628 | } |
| 629 | |
| 630 | static inline void __update_cgrp_time(struct perf_cgroup *cgrp) |
| 631 | { |
| 632 | struct perf_cgroup_info *info; |
| 633 | u64 now; |
| 634 | |
| 635 | now = perf_clock(); |
| 636 | |
| 637 | info = this_cpu_ptr(cgrp->info); |
| 638 | |
| 639 | info->time += now - info->timestamp; |
| 640 | info->timestamp = now; |
| 641 | } |
| 642 | |
| 643 | static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx) |
| 644 | { |
| 645 | struct perf_cgroup *cgrp_out = cpuctx->cgrp; |
| 646 | if (cgrp_out) |
| 647 | __update_cgrp_time(cgrp_out); |
| 648 | } |
| 649 | |
| 650 | static inline void update_cgrp_time_from_event(struct perf_event *event) |
| 651 | { |
Stephane Eranian | 3f7cce3 | 2011-02-18 14:40:01 +0200 | [diff] [blame] | 652 | struct perf_cgroup *cgrp; |
| 653 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 654 | /* |
Stephane Eranian | 3f7cce3 | 2011-02-18 14:40:01 +0200 | [diff] [blame] | 655 | * ensure we access cgroup data only when needed and |
| 656 | * when we know the cgroup is pinned (css_get) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 657 | */ |
Stephane Eranian | 3f7cce3 | 2011-02-18 14:40:01 +0200 | [diff] [blame] | 658 | if (!is_cgroup_event(event)) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 659 | return; |
| 660 | |
Stephane Eranian | 614e4c4 | 2015-11-12 11:00:04 +0100 | [diff] [blame] | 661 | cgrp = perf_cgroup_from_task(current, event->ctx); |
Stephane Eranian | 3f7cce3 | 2011-02-18 14:40:01 +0200 | [diff] [blame] | 662 | /* |
| 663 | * Do not update time when cgroup is not active |
| 664 | */ |
| 665 | if (cgrp == event->cgrp) |
| 666 | __update_cgrp_time(event->cgrp); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | static inline void |
Stephane Eranian | 3f7cce3 | 2011-02-18 14:40:01 +0200 | [diff] [blame] | 670 | perf_cgroup_set_timestamp(struct task_struct *task, |
| 671 | struct perf_event_context *ctx) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 672 | { |
| 673 | struct perf_cgroup *cgrp; |
| 674 | struct perf_cgroup_info *info; |
| 675 | |
Stephane Eranian | 3f7cce3 | 2011-02-18 14:40:01 +0200 | [diff] [blame] | 676 | /* |
| 677 | * ctx->lock held by caller |
| 678 | * ensure we do not access cgroup data |
| 679 | * unless we have the cgroup pinned (css_get) |
| 680 | */ |
| 681 | if (!task || !ctx->nr_cgroups) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 682 | return; |
| 683 | |
Stephane Eranian | 614e4c4 | 2015-11-12 11:00:04 +0100 | [diff] [blame] | 684 | cgrp = perf_cgroup_from_task(task, ctx); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 685 | info = this_cpu_ptr(cgrp->info); |
Stephane Eranian | 3f7cce3 | 2011-02-18 14:40:01 +0200 | [diff] [blame] | 686 | info->timestamp = ctx->timestamp; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 687 | } |
| 688 | |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 689 | static DEFINE_PER_CPU(struct list_head, cgrp_cpuctx_list); |
| 690 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 691 | #define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */ |
| 692 | #define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */ |
| 693 | |
| 694 | /* |
| 695 | * reschedule events based on the cgroup constraint of task. |
| 696 | * |
| 697 | * mode SWOUT : schedule out everything |
| 698 | * mode SWIN : schedule in based on cgroup for next |
| 699 | */ |
Geliang Tang | 18ab2cd | 2015-09-27 23:25:50 +0800 | [diff] [blame] | 700 | static void perf_cgroup_switch(struct task_struct *task, int mode) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 701 | { |
| 702 | struct perf_cpu_context *cpuctx; |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 703 | struct list_head *list; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 704 | unsigned long flags; |
| 705 | |
| 706 | /* |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 707 | * Disable interrupts and preemption to avoid this CPU's |
| 708 | * cgrp_cpuctx_entry to change under us. |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 709 | */ |
| 710 | local_irq_save(flags); |
| 711 | |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 712 | list = this_cpu_ptr(&cgrp_cpuctx_list); |
| 713 | list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) { |
| 714 | WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 715 | |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 716 | perf_ctx_lock(cpuctx, cpuctx->task_ctx); |
| 717 | perf_pmu_disable(cpuctx->ctx.pmu); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 718 | |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 719 | if (mode & PERF_CGROUP_SWOUT) { |
| 720 | cpu_ctx_sched_out(cpuctx, EVENT_ALL); |
| 721 | /* |
| 722 | * must not be done before ctxswout due |
| 723 | * to event_filter_match() in event_sched_out() |
| 724 | */ |
| 725 | cpuctx->cgrp = NULL; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 726 | } |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 727 | |
| 728 | if (mode & PERF_CGROUP_SWIN) { |
| 729 | WARN_ON_ONCE(cpuctx->cgrp); |
| 730 | /* |
| 731 | * set cgrp before ctxsw in to allow |
| 732 | * event_filter_match() to not have to pass |
| 733 | * task around |
| 734 | * we pass the cpuctx->ctx to perf_cgroup_from_task() |
| 735 | * because cgorup events are only per-cpu |
| 736 | */ |
| 737 | cpuctx->cgrp = perf_cgroup_from_task(task, |
| 738 | &cpuctx->ctx); |
| 739 | cpu_ctx_sched_in(cpuctx, EVENT_ALL, task); |
| 740 | } |
| 741 | perf_pmu_enable(cpuctx->ctx.pmu); |
| 742 | perf_ctx_unlock(cpuctx, cpuctx->task_ctx); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 743 | } |
| 744 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 745 | local_irq_restore(flags); |
| 746 | } |
| 747 | |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 748 | static inline void perf_cgroup_sched_out(struct task_struct *task, |
| 749 | struct task_struct *next) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 750 | { |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 751 | struct perf_cgroup *cgrp1; |
| 752 | struct perf_cgroup *cgrp2 = NULL; |
| 753 | |
Stephane Eranian | ddaaf4e | 2015-11-12 11:00:03 +0100 | [diff] [blame] | 754 | rcu_read_lock(); |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 755 | /* |
| 756 | * we come here when we know perf_cgroup_events > 0 |
Stephane Eranian | 614e4c4 | 2015-11-12 11:00:04 +0100 | [diff] [blame] | 757 | * we do not need to pass the ctx here because we know |
| 758 | * we are holding the rcu lock |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 759 | */ |
Stephane Eranian | 614e4c4 | 2015-11-12 11:00:04 +0100 | [diff] [blame] | 760 | cgrp1 = perf_cgroup_from_task(task, NULL); |
Peter Zijlstra | 70a0165 | 2016-01-08 09:29:16 +0100 | [diff] [blame] | 761 | cgrp2 = perf_cgroup_from_task(next, NULL); |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 762 | |
| 763 | /* |
| 764 | * only schedule out current cgroup events if we know |
| 765 | * that we are switching to a different cgroup. Otherwise, |
| 766 | * do no touch the cgroup events. |
| 767 | */ |
| 768 | if (cgrp1 != cgrp2) |
| 769 | perf_cgroup_switch(task, PERF_CGROUP_SWOUT); |
Stephane Eranian | ddaaf4e | 2015-11-12 11:00:03 +0100 | [diff] [blame] | 770 | |
| 771 | rcu_read_unlock(); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 772 | } |
| 773 | |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 774 | static inline void perf_cgroup_sched_in(struct task_struct *prev, |
| 775 | struct task_struct *task) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 776 | { |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 777 | struct perf_cgroup *cgrp1; |
| 778 | struct perf_cgroup *cgrp2 = NULL; |
| 779 | |
Stephane Eranian | ddaaf4e | 2015-11-12 11:00:03 +0100 | [diff] [blame] | 780 | rcu_read_lock(); |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 781 | /* |
| 782 | * we come here when we know perf_cgroup_events > 0 |
Stephane Eranian | 614e4c4 | 2015-11-12 11:00:04 +0100 | [diff] [blame] | 783 | * we do not need to pass the ctx here because we know |
| 784 | * we are holding the rcu lock |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 785 | */ |
Stephane Eranian | 614e4c4 | 2015-11-12 11:00:04 +0100 | [diff] [blame] | 786 | cgrp1 = perf_cgroup_from_task(task, NULL); |
Stephane Eranian | 614e4c4 | 2015-11-12 11:00:04 +0100 | [diff] [blame] | 787 | cgrp2 = perf_cgroup_from_task(prev, NULL); |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 788 | |
| 789 | /* |
| 790 | * only need to schedule in cgroup events if we are changing |
| 791 | * cgroup during ctxsw. Cgroup events were not scheduled |
| 792 | * out of ctxsw out if that was not the case. |
| 793 | */ |
| 794 | if (cgrp1 != cgrp2) |
| 795 | perf_cgroup_switch(task, PERF_CGROUP_SWIN); |
Stephane Eranian | ddaaf4e | 2015-11-12 11:00:03 +0100 | [diff] [blame] | 796 | |
| 797 | rcu_read_unlock(); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | static inline int perf_cgroup_connect(int fd, struct perf_event *event, |
| 801 | struct perf_event_attr *attr, |
| 802 | struct perf_event *group_leader) |
| 803 | { |
| 804 | struct perf_cgroup *cgrp; |
| 805 | struct cgroup_subsys_state *css; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 806 | struct fd f = fdget(fd); |
| 807 | int ret = 0; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 808 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 809 | if (!f.file) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 810 | return -EBADF; |
| 811 | |
Al Viro | b583043 | 2014-10-31 01:22:04 -0400 | [diff] [blame] | 812 | css = css_tryget_online_from_dir(f.file->f_path.dentry, |
Tejun Heo | ec903c0 | 2014-05-13 12:11:01 -0400 | [diff] [blame] | 813 | &perf_event_cgrp_subsys); |
Li Zefan | 3db272c | 2011-03-03 14:25:37 +0800 | [diff] [blame] | 814 | if (IS_ERR(css)) { |
| 815 | ret = PTR_ERR(css); |
| 816 | goto out; |
| 817 | } |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 818 | |
| 819 | cgrp = container_of(css, struct perf_cgroup, css); |
| 820 | event->cgrp = cgrp; |
| 821 | |
| 822 | /* |
| 823 | * all events in a group must monitor |
| 824 | * the same cgroup because a task belongs |
| 825 | * to only one perf cgroup at a time |
| 826 | */ |
| 827 | if (group_leader && group_leader->cgrp != cgrp) { |
| 828 | perf_detach_cgroup(event); |
| 829 | ret = -EINVAL; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 830 | } |
Li Zefan | 3db272c | 2011-03-03 14:25:37 +0800 | [diff] [blame] | 831 | out: |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 832 | fdput(f); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 833 | return ret; |
| 834 | } |
| 835 | |
| 836 | static inline void |
| 837 | perf_cgroup_set_shadow_time(struct perf_event *event, u64 now) |
| 838 | { |
| 839 | struct perf_cgroup_info *t; |
| 840 | t = per_cpu_ptr(event->cgrp->info, event->cpu); |
| 841 | event->shadow_ctx_time = now - t->timestamp; |
| 842 | } |
| 843 | |
| 844 | static inline void |
| 845 | perf_cgroup_defer_enabled(struct perf_event *event) |
| 846 | { |
| 847 | /* |
| 848 | * when the current task's perf cgroup does not match |
| 849 | * the event's, we need to remember to call the |
| 850 | * perf_mark_enable() function the first time a task with |
| 851 | * a matching perf cgroup is scheduled in. |
| 852 | */ |
| 853 | if (is_cgroup_event(event) && !perf_cgroup_match(event)) |
| 854 | event->cgrp_defer_enabled = 1; |
| 855 | } |
| 856 | |
| 857 | static inline void |
| 858 | perf_cgroup_mark_enabled(struct perf_event *event, |
| 859 | struct perf_event_context *ctx) |
| 860 | { |
| 861 | struct perf_event *sub; |
| 862 | u64 tstamp = perf_event_time(event); |
| 863 | |
| 864 | if (!event->cgrp_defer_enabled) |
| 865 | return; |
| 866 | |
| 867 | event->cgrp_defer_enabled = 0; |
| 868 | |
| 869 | event->tstamp_enabled = tstamp - event->total_time_enabled; |
| 870 | list_for_each_entry(sub, &event->sibling_list, group_entry) { |
| 871 | if (sub->state >= PERF_EVENT_STATE_INACTIVE) { |
| 872 | sub->tstamp_enabled = tstamp - sub->total_time_enabled; |
| 873 | sub->cgrp_defer_enabled = 0; |
| 874 | } |
| 875 | } |
| 876 | } |
David Carrillo-Cisneros | db4a835 | 2016-08-02 00:48:12 -0700 | [diff] [blame] | 877 | |
| 878 | /* |
| 879 | * Update cpuctx->cgrp so that it is set when first cgroup event is added and |
| 880 | * cleared when last cgroup event is removed. |
| 881 | */ |
| 882 | static inline void |
| 883 | list_update_cgroup_event(struct perf_event *event, |
| 884 | struct perf_event_context *ctx, bool add) |
| 885 | { |
| 886 | struct perf_cpu_context *cpuctx; |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 887 | struct list_head *cpuctx_entry; |
David Carrillo-Cisneros | db4a835 | 2016-08-02 00:48:12 -0700 | [diff] [blame] | 888 | |
| 889 | if (!is_cgroup_event(event)) |
| 890 | return; |
| 891 | |
| 892 | if (add && ctx->nr_cgroups++) |
| 893 | return; |
| 894 | else if (!add && --ctx->nr_cgroups) |
| 895 | return; |
| 896 | /* |
| 897 | * Because cgroup events are always per-cpu events, |
| 898 | * this will always be called from the right CPU. |
| 899 | */ |
| 900 | cpuctx = __get_cpu_context(ctx); |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 901 | cpuctx_entry = &cpuctx->cgrp_cpuctx_entry; |
| 902 | /* cpuctx->cgrp is NULL unless a cgroup event is active in this CPU .*/ |
| 903 | if (add) { |
| 904 | list_add(cpuctx_entry, this_cpu_ptr(&cgrp_cpuctx_list)); |
| 905 | if (perf_cgroup_from_task(current, ctx) == event->cgrp) |
| 906 | cpuctx->cgrp = event->cgrp; |
| 907 | } else { |
| 908 | list_del(cpuctx_entry); |
David Carrillo-Cisneros | 8fc31ce | 2016-12-04 00:46:17 -0800 | [diff] [blame] | 909 | cpuctx->cgrp = NULL; |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 910 | } |
David Carrillo-Cisneros | db4a835 | 2016-08-02 00:48:12 -0700 | [diff] [blame] | 911 | } |
| 912 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 913 | #else /* !CONFIG_CGROUP_PERF */ |
| 914 | |
| 915 | static inline bool |
| 916 | perf_cgroup_match(struct perf_event *event) |
| 917 | { |
| 918 | return true; |
| 919 | } |
| 920 | |
| 921 | static inline void perf_detach_cgroup(struct perf_event *event) |
| 922 | {} |
| 923 | |
| 924 | static inline int is_cgroup_event(struct perf_event *event) |
| 925 | { |
| 926 | return 0; |
| 927 | } |
| 928 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 929 | static inline void update_cgrp_time_from_event(struct perf_event *event) |
| 930 | { |
| 931 | } |
| 932 | |
| 933 | static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx) |
| 934 | { |
| 935 | } |
| 936 | |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 937 | static inline void perf_cgroup_sched_out(struct task_struct *task, |
| 938 | struct task_struct *next) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 939 | { |
| 940 | } |
| 941 | |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 942 | static inline void perf_cgroup_sched_in(struct task_struct *prev, |
| 943 | struct task_struct *task) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 944 | { |
| 945 | } |
| 946 | |
| 947 | static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event, |
| 948 | struct perf_event_attr *attr, |
| 949 | struct perf_event *group_leader) |
| 950 | { |
| 951 | return -EINVAL; |
| 952 | } |
| 953 | |
| 954 | static inline void |
Stephane Eranian | 3f7cce3 | 2011-02-18 14:40:01 +0200 | [diff] [blame] | 955 | perf_cgroup_set_timestamp(struct task_struct *task, |
| 956 | struct perf_event_context *ctx) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 957 | { |
| 958 | } |
| 959 | |
| 960 | void |
| 961 | perf_cgroup_switch(struct task_struct *task, struct task_struct *next) |
| 962 | { |
| 963 | } |
| 964 | |
| 965 | static inline void |
| 966 | perf_cgroup_set_shadow_time(struct perf_event *event, u64 now) |
| 967 | { |
| 968 | } |
| 969 | |
| 970 | static inline u64 perf_cgroup_event_time(struct perf_event *event) |
| 971 | { |
| 972 | return 0; |
| 973 | } |
| 974 | |
| 975 | static inline void |
| 976 | perf_cgroup_defer_enabled(struct perf_event *event) |
| 977 | { |
| 978 | } |
| 979 | |
| 980 | static inline void |
| 981 | perf_cgroup_mark_enabled(struct perf_event *event, |
| 982 | struct perf_event_context *ctx) |
| 983 | { |
| 984 | } |
David Carrillo-Cisneros | db4a835 | 2016-08-02 00:48:12 -0700 | [diff] [blame] | 985 | |
| 986 | static inline void |
| 987 | list_update_cgroup_event(struct perf_event *event, |
| 988 | struct perf_event_context *ctx, bool add) |
| 989 | { |
| 990 | } |
| 991 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 992 | #endif |
| 993 | |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 994 | /* |
| 995 | * set default to be dependent on timer tick just |
| 996 | * like original code |
| 997 | */ |
| 998 | #define PERF_CPU_HRTIMER (1000 / HZ) |
| 999 | /* |
Masahiro Yamada | 8a1115f | 2017-03-09 16:16:31 -0800 | [diff] [blame] | 1000 | * function must be called with interrupts disabled |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1001 | */ |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 1002 | static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr) |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1003 | { |
| 1004 | struct perf_cpu_context *cpuctx; |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1005 | int rotations = 0; |
| 1006 | |
| 1007 | WARN_ON(!irqs_disabled()); |
| 1008 | |
| 1009 | cpuctx = container_of(hr, struct perf_cpu_context, hrtimer); |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1010 | rotations = perf_rotate_context(cpuctx); |
| 1011 | |
Peter Zijlstra | 4cfafd3 | 2015-05-14 12:23:11 +0200 | [diff] [blame] | 1012 | raw_spin_lock(&cpuctx->hrtimer_lock); |
| 1013 | if (rotations) |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1014 | hrtimer_forward_now(hr, cpuctx->hrtimer_interval); |
Peter Zijlstra | 4cfafd3 | 2015-05-14 12:23:11 +0200 | [diff] [blame] | 1015 | else |
| 1016 | cpuctx->hrtimer_active = 0; |
| 1017 | raw_spin_unlock(&cpuctx->hrtimer_lock); |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1018 | |
Peter Zijlstra | 4cfafd3 | 2015-05-14 12:23:11 +0200 | [diff] [blame] | 1019 | return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART; |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1020 | } |
| 1021 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 1022 | static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu) |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1023 | { |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 1024 | struct hrtimer *timer = &cpuctx->hrtimer; |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1025 | struct pmu *pmu = cpuctx->ctx.pmu; |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 1026 | u64 interval; |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1027 | |
| 1028 | /* no multiplexing needed for SW PMU */ |
| 1029 | if (pmu->task_ctx_nr == perf_sw_context) |
| 1030 | return; |
| 1031 | |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 1032 | /* |
| 1033 | * check default is sane, if not set then force to |
| 1034 | * default interval (1/tick) |
| 1035 | */ |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 1036 | interval = pmu->hrtimer_interval_ms; |
| 1037 | if (interval < 1) |
| 1038 | interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER; |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 1039 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 1040 | cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval); |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1041 | |
Peter Zijlstra | 4cfafd3 | 2015-05-14 12:23:11 +0200 | [diff] [blame] | 1042 | raw_spin_lock_init(&cpuctx->hrtimer_lock); |
| 1043 | hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED); |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 1044 | timer->function = perf_mux_hrtimer_handler; |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1045 | } |
| 1046 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 1047 | static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx) |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1048 | { |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 1049 | struct hrtimer *timer = &cpuctx->hrtimer; |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1050 | struct pmu *pmu = cpuctx->ctx.pmu; |
Peter Zijlstra | 4cfafd3 | 2015-05-14 12:23:11 +0200 | [diff] [blame] | 1051 | unsigned long flags; |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1052 | |
| 1053 | /* not for SW PMU */ |
| 1054 | if (pmu->task_ctx_nr == perf_sw_context) |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 1055 | return 0; |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1056 | |
Peter Zijlstra | 4cfafd3 | 2015-05-14 12:23:11 +0200 | [diff] [blame] | 1057 | raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags); |
| 1058 | if (!cpuctx->hrtimer_active) { |
| 1059 | cpuctx->hrtimer_active = 1; |
| 1060 | hrtimer_forward_now(timer, cpuctx->hrtimer_interval); |
| 1061 | hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED); |
| 1062 | } |
| 1063 | raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags); |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1064 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 1065 | return 0; |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 1066 | } |
| 1067 | |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 1068 | void perf_pmu_disable(struct pmu *pmu) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1069 | { |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 1070 | int *count = this_cpu_ptr(pmu->pmu_disable_count); |
| 1071 | if (!(*count)++) |
| 1072 | pmu->pmu_disable(pmu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1073 | } |
| 1074 | |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 1075 | void perf_pmu_enable(struct pmu *pmu) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1076 | { |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 1077 | int *count = this_cpu_ptr(pmu->pmu_disable_count); |
| 1078 | if (!--(*count)) |
| 1079 | pmu->pmu_enable(pmu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1080 | } |
| 1081 | |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 1082 | static DEFINE_PER_CPU(struct list_head, active_ctx_list); |
Peter Zijlstra | e9d2b06 | 2010-09-17 11:28:50 +0200 | [diff] [blame] | 1083 | |
| 1084 | /* |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 1085 | * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and |
| 1086 | * perf_event_task_tick() are fully serialized because they're strictly cpu |
| 1087 | * affine and perf_event_ctx{activate,deactivate} are called with IRQs |
| 1088 | * disabled, while perf_event_task_tick is called from IRQ context. |
Peter Zijlstra | e9d2b06 | 2010-09-17 11:28:50 +0200 | [diff] [blame] | 1089 | */ |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 1090 | static void perf_event_ctx_activate(struct perf_event_context *ctx) |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 1091 | { |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 1092 | struct list_head *head = this_cpu_ptr(&active_ctx_list); |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 1093 | |
Peter Zijlstra | e9d2b06 | 2010-09-17 11:28:50 +0200 | [diff] [blame] | 1094 | WARN_ON(!irqs_disabled()); |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 1095 | |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 1096 | WARN_ON(!list_empty(&ctx->active_ctx_list)); |
| 1097 | |
| 1098 | list_add(&ctx->active_ctx_list, head); |
| 1099 | } |
| 1100 | |
| 1101 | static void perf_event_ctx_deactivate(struct perf_event_context *ctx) |
| 1102 | { |
| 1103 | WARN_ON(!irqs_disabled()); |
| 1104 | |
| 1105 | WARN_ON(list_empty(&ctx->active_ctx_list)); |
| 1106 | |
| 1107 | list_del_init(&ctx->active_ctx_list); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1108 | } |
| 1109 | |
| 1110 | static void get_ctx(struct perf_event_context *ctx) |
| 1111 | { |
| 1112 | WARN_ON(!atomic_inc_not_zero(&ctx->refcount)); |
| 1113 | } |
| 1114 | |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 1115 | static void free_ctx(struct rcu_head *head) |
| 1116 | { |
| 1117 | struct perf_event_context *ctx; |
| 1118 | |
| 1119 | ctx = container_of(head, struct perf_event_context, rcu_head); |
| 1120 | kfree(ctx->task_ctx_data); |
| 1121 | kfree(ctx); |
| 1122 | } |
| 1123 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1124 | static void put_ctx(struct perf_event_context *ctx) |
| 1125 | { |
| 1126 | if (atomic_dec_and_test(&ctx->refcount)) { |
| 1127 | if (ctx->parent_ctx) |
| 1128 | put_ctx(ctx->parent_ctx); |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 1129 | if (ctx->task && ctx->task != TASK_TOMBSTONE) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1130 | put_task_struct(ctx->task); |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 1131 | call_rcu(&ctx->rcu_head, free_ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1132 | } |
| 1133 | } |
| 1134 | |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 1135 | /* |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 1136 | * Because of perf_event::ctx migration in sys_perf_event_open::move_group and |
| 1137 | * perf_pmu_migrate_context() we need some magic. |
| 1138 | * |
| 1139 | * Those places that change perf_event::ctx will hold both |
| 1140 | * perf_event_ctx::mutex of the 'old' and 'new' ctx value. |
| 1141 | * |
Peter Zijlstra | 8b10c5e | 2015-05-01 16:08:46 +0200 | [diff] [blame] | 1142 | * Lock ordering is by mutex address. There are two other sites where |
| 1143 | * perf_event_context::mutex nests and those are: |
| 1144 | * |
| 1145 | * - perf_event_exit_task_context() [ child , 0 ] |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 1146 | * perf_event_exit_event() |
| 1147 | * put_event() [ parent, 1 ] |
Peter Zijlstra | 8b10c5e | 2015-05-01 16:08:46 +0200 | [diff] [blame] | 1148 | * |
| 1149 | * - perf_event_init_context() [ parent, 0 ] |
| 1150 | * inherit_task_group() |
| 1151 | * inherit_group() |
| 1152 | * inherit_event() |
| 1153 | * perf_event_alloc() |
| 1154 | * perf_init_event() |
| 1155 | * perf_try_init_event() [ child , 1 ] |
| 1156 | * |
| 1157 | * While it appears there is an obvious deadlock here -- the parent and child |
| 1158 | * nesting levels are inverted between the two. This is in fact safe because |
| 1159 | * life-time rules separate them. That is an exiting task cannot fork, and a |
| 1160 | * spawning task cannot (yet) exit. |
| 1161 | * |
| 1162 | * But remember that that these are parent<->child context relations, and |
| 1163 | * migration does not affect children, therefore these two orderings should not |
| 1164 | * interact. |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 1165 | * |
| 1166 | * The change in perf_event::ctx does not affect children (as claimed above) |
| 1167 | * because the sys_perf_event_open() case will install a new event and break |
| 1168 | * the ctx parent<->child relation, and perf_pmu_migrate_context() is only |
| 1169 | * concerned with cpuctx and that doesn't have children. |
| 1170 | * |
| 1171 | * The places that change perf_event::ctx will issue: |
| 1172 | * |
| 1173 | * perf_remove_from_context(); |
| 1174 | * synchronize_rcu(); |
| 1175 | * perf_install_in_context(); |
| 1176 | * |
| 1177 | * to affect the change. The remove_from_context() + synchronize_rcu() should |
| 1178 | * quiesce the event, after which we can install it in the new location. This |
| 1179 | * means that only external vectors (perf_fops, prctl) can perturb the event |
| 1180 | * while in transit. Therefore all such accessors should also acquire |
| 1181 | * perf_event_context::mutex to serialize against this. |
| 1182 | * |
| 1183 | * However; because event->ctx can change while we're waiting to acquire |
| 1184 | * ctx->mutex we must be careful and use the below perf_event_ctx_lock() |
| 1185 | * function. |
| 1186 | * |
| 1187 | * Lock order: |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 1188 | * cred_guard_mutex |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 1189 | * task_struct::perf_event_mutex |
| 1190 | * perf_event_context::mutex |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 1191 | * perf_event::child_mutex; |
Peter Zijlstra | 07c4a77 | 2016-01-26 12:15:37 +0100 | [diff] [blame] | 1192 | * perf_event_context::lock |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 1193 | * perf_event::mmap_mutex |
| 1194 | * mmap_sem |
| 1195 | */ |
Peter Zijlstra | a83fe28 | 2015-01-29 14:44:34 +0100 | [diff] [blame] | 1196 | static struct perf_event_context * |
| 1197 | perf_event_ctx_lock_nested(struct perf_event *event, int nesting) |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 1198 | { |
| 1199 | struct perf_event_context *ctx; |
| 1200 | |
| 1201 | again: |
| 1202 | rcu_read_lock(); |
| 1203 | ctx = ACCESS_ONCE(event->ctx); |
| 1204 | if (!atomic_inc_not_zero(&ctx->refcount)) { |
| 1205 | rcu_read_unlock(); |
| 1206 | goto again; |
| 1207 | } |
| 1208 | rcu_read_unlock(); |
| 1209 | |
Peter Zijlstra | a83fe28 | 2015-01-29 14:44:34 +0100 | [diff] [blame] | 1210 | mutex_lock_nested(&ctx->mutex, nesting); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 1211 | if (event->ctx != ctx) { |
| 1212 | mutex_unlock(&ctx->mutex); |
| 1213 | put_ctx(ctx); |
| 1214 | goto again; |
| 1215 | } |
| 1216 | |
| 1217 | return ctx; |
| 1218 | } |
| 1219 | |
Peter Zijlstra | a83fe28 | 2015-01-29 14:44:34 +0100 | [diff] [blame] | 1220 | static inline struct perf_event_context * |
| 1221 | perf_event_ctx_lock(struct perf_event *event) |
| 1222 | { |
| 1223 | return perf_event_ctx_lock_nested(event, 0); |
| 1224 | } |
| 1225 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 1226 | static void perf_event_ctx_unlock(struct perf_event *event, |
| 1227 | struct perf_event_context *ctx) |
| 1228 | { |
| 1229 | mutex_unlock(&ctx->mutex); |
| 1230 | put_ctx(ctx); |
| 1231 | } |
| 1232 | |
| 1233 | /* |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 1234 | * This must be done under the ctx->lock, such as to serialize against |
| 1235 | * context_equiv(), therefore we cannot call put_ctx() since that might end up |
| 1236 | * calling scheduler related locks and ctx->lock nests inside those. |
| 1237 | */ |
| 1238 | static __must_check struct perf_event_context * |
| 1239 | unclone_ctx(struct perf_event_context *ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1240 | { |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 1241 | struct perf_event_context *parent_ctx = ctx->parent_ctx; |
| 1242 | |
| 1243 | lockdep_assert_held(&ctx->lock); |
| 1244 | |
| 1245 | if (parent_ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1246 | ctx->parent_ctx = NULL; |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 1247 | ctx->generation++; |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 1248 | |
| 1249 | return parent_ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1250 | } |
| 1251 | |
Oleg Nesterov | 1d95311 | 2017-08-22 17:59:28 +0200 | [diff] [blame] | 1252 | static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p, |
| 1253 | enum pid_type type) |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1254 | { |
Oleg Nesterov | 1d95311 | 2017-08-22 17:59:28 +0200 | [diff] [blame] | 1255 | u32 nr; |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1256 | /* |
| 1257 | * only top level events have the pid namespace they were created in |
| 1258 | */ |
| 1259 | if (event->parent) |
| 1260 | event = event->parent; |
| 1261 | |
Oleg Nesterov | 1d95311 | 2017-08-22 17:59:28 +0200 | [diff] [blame] | 1262 | nr = __task_pid_nr_ns(p, type, event->ns); |
| 1263 | /* avoid -1 if it is idle thread or runs in another ns */ |
| 1264 | if (!nr && !pid_alive(p)) |
| 1265 | nr = -1; |
| 1266 | return nr; |
| 1267 | } |
| 1268 | |
| 1269 | static u32 perf_event_pid(struct perf_event *event, struct task_struct *p) |
| 1270 | { |
| 1271 | return perf_event_pid_type(event, p, __PIDTYPE_TGID); |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1272 | } |
| 1273 | |
| 1274 | static u32 perf_event_tid(struct perf_event *event, struct task_struct *p) |
| 1275 | { |
Oleg Nesterov | 1d95311 | 2017-08-22 17:59:28 +0200 | [diff] [blame] | 1276 | return perf_event_pid_type(event, p, PIDTYPE_PID); |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1277 | } |
| 1278 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1279 | /* |
| 1280 | * If we inherit events we want to return the parent event id |
| 1281 | * to userspace. |
| 1282 | */ |
| 1283 | static u64 primary_event_id(struct perf_event *event) |
| 1284 | { |
| 1285 | u64 id = event->id; |
| 1286 | |
| 1287 | if (event->parent) |
| 1288 | id = event->parent->id; |
| 1289 | |
| 1290 | return id; |
| 1291 | } |
| 1292 | |
| 1293 | /* |
| 1294 | * Get the perf_event_context for a task and lock it. |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 1295 | * |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1296 | * This has to cope with with the fact that until it is locked, |
| 1297 | * the context could get moved to another task. |
| 1298 | */ |
| 1299 | static struct perf_event_context * |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 1300 | perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1301 | { |
| 1302 | struct perf_event_context *ctx; |
| 1303 | |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 1304 | retry: |
Peter Zijlstra | 058ebd0 | 2013-07-12 11:08:33 +0200 | [diff] [blame] | 1305 | /* |
| 1306 | * One of the few rules of preemptible RCU is that one cannot do |
| 1307 | * rcu_read_unlock() while holding a scheduler (or nested) lock when |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1308 | * part of the read side critical section was irqs-enabled -- see |
Peter Zijlstra | 058ebd0 | 2013-07-12 11:08:33 +0200 | [diff] [blame] | 1309 | * rcu_read_unlock_special(). |
| 1310 | * |
| 1311 | * Since ctx->lock nests under rq->lock we must ensure the entire read |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1312 | * side critical section has interrupts disabled. |
Peter Zijlstra | 058ebd0 | 2013-07-12 11:08:33 +0200 | [diff] [blame] | 1313 | */ |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1314 | local_irq_save(*flags); |
Peter Zijlstra | 058ebd0 | 2013-07-12 11:08:33 +0200 | [diff] [blame] | 1315 | rcu_read_lock(); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 1316 | ctx = rcu_dereference(task->perf_event_ctxp[ctxn]); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1317 | if (ctx) { |
| 1318 | /* |
| 1319 | * If this context is a clone of another, it might |
| 1320 | * get swapped for another underneath us by |
| 1321 | * perf_event_task_sched_out, though the |
| 1322 | * rcu_read_lock() protects us from any context |
| 1323 | * getting freed. Lock the context and check if it |
| 1324 | * got swapped before we could get the lock, and retry |
| 1325 | * if so. If we locked the right context, then it |
| 1326 | * can't get swapped on us any more. |
| 1327 | */ |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1328 | raw_spin_lock(&ctx->lock); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 1329 | if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) { |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1330 | raw_spin_unlock(&ctx->lock); |
Peter Zijlstra | 058ebd0 | 2013-07-12 11:08:33 +0200 | [diff] [blame] | 1331 | rcu_read_unlock(); |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1332 | local_irq_restore(*flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1333 | goto retry; |
| 1334 | } |
| 1335 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 1336 | if (ctx->task == TASK_TOMBSTONE || |
| 1337 | !atomic_inc_not_zero(&ctx->refcount)) { |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1338 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1339 | ctx = NULL; |
Peter Zijlstra | 828b6f0 | 2016-01-27 21:59:04 +0100 | [diff] [blame] | 1340 | } else { |
| 1341 | WARN_ON_ONCE(ctx->task != task); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1342 | } |
| 1343 | } |
| 1344 | rcu_read_unlock(); |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1345 | if (!ctx) |
| 1346 | local_irq_restore(*flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1347 | return ctx; |
| 1348 | } |
| 1349 | |
| 1350 | /* |
| 1351 | * Get the context for a task and increment its pin_count so it |
| 1352 | * can't get swapped to another task. This also increments its |
| 1353 | * reference count so that the context can't get freed. |
| 1354 | */ |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 1355 | static struct perf_event_context * |
| 1356 | perf_pin_task_context(struct task_struct *task, int ctxn) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1357 | { |
| 1358 | struct perf_event_context *ctx; |
| 1359 | unsigned long flags; |
| 1360 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 1361 | ctx = perf_lock_task_context(task, ctxn, &flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1362 | if (ctx) { |
| 1363 | ++ctx->pin_count; |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1364 | raw_spin_unlock_irqrestore(&ctx->lock, flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1365 | } |
| 1366 | return ctx; |
| 1367 | } |
| 1368 | |
| 1369 | static void perf_unpin_context(struct perf_event_context *ctx) |
| 1370 | { |
| 1371 | unsigned long flags; |
| 1372 | |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1373 | raw_spin_lock_irqsave(&ctx->lock, flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1374 | --ctx->pin_count; |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1375 | raw_spin_unlock_irqrestore(&ctx->lock, flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1376 | } |
| 1377 | |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1378 | /* |
| 1379 | * Update the record of the current time in a context. |
| 1380 | */ |
| 1381 | static void update_context_time(struct perf_event_context *ctx) |
| 1382 | { |
| 1383 | u64 now = perf_clock(); |
| 1384 | |
| 1385 | ctx->time += now - ctx->timestamp; |
| 1386 | ctx->timestamp = now; |
| 1387 | } |
| 1388 | |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 1389 | static u64 perf_event_time(struct perf_event *event) |
| 1390 | { |
| 1391 | struct perf_event_context *ctx = event->ctx; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1392 | |
| 1393 | if (is_cgroup_event(event)) |
| 1394 | return perf_cgroup_event_time(event); |
| 1395 | |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 1396 | return ctx ? ctx->time : 0; |
| 1397 | } |
| 1398 | |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1399 | /* |
| 1400 | * Update the total_time_enabled and total_time_running fields for a event. |
| 1401 | */ |
| 1402 | static void update_event_times(struct perf_event *event) |
| 1403 | { |
| 1404 | struct perf_event_context *ctx = event->ctx; |
| 1405 | u64 run_end; |
| 1406 | |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 1407 | lockdep_assert_held(&ctx->lock); |
| 1408 | |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1409 | if (event->state < PERF_EVENT_STATE_INACTIVE || |
| 1410 | event->group_leader->state < PERF_EVENT_STATE_INACTIVE) |
| 1411 | return; |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 1412 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1413 | /* |
| 1414 | * in cgroup mode, time_enabled represents |
| 1415 | * the time the event was enabled AND active |
| 1416 | * tasks were in the monitored cgroup. This is |
| 1417 | * independent of the activity of the context as |
| 1418 | * there may be a mix of cgroup and non-cgroup events. |
| 1419 | * |
| 1420 | * That is why we treat cgroup events differently |
| 1421 | * here. |
| 1422 | */ |
| 1423 | if (is_cgroup_event(event)) |
Namhyung Kim | 46cd6a7f | 2012-01-20 10:12:46 +0900 | [diff] [blame] | 1424 | run_end = perf_cgroup_event_time(event); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1425 | else if (ctx->is_active) |
| 1426 | run_end = ctx->time; |
Peter Zijlstra | acd1d7c | 2009-11-23 15:00:36 +0100 | [diff] [blame] | 1427 | else |
| 1428 | run_end = event->tstamp_stopped; |
| 1429 | |
| 1430 | event->total_time_enabled = run_end - event->tstamp_enabled; |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1431 | |
| 1432 | if (event->state == PERF_EVENT_STATE_INACTIVE) |
| 1433 | run_end = event->tstamp_stopped; |
| 1434 | else |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 1435 | run_end = perf_event_time(event); |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1436 | |
| 1437 | event->total_time_running = run_end - event->tstamp_running; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1438 | |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1439 | } |
| 1440 | |
Peter Zijlstra | 96c21a4 | 2010-05-11 16:19:10 +0200 | [diff] [blame] | 1441 | /* |
| 1442 | * Update total_time_enabled and total_time_running for all events in a group. |
| 1443 | */ |
| 1444 | static void update_group_times(struct perf_event *leader) |
| 1445 | { |
| 1446 | struct perf_event *event; |
| 1447 | |
| 1448 | update_event_times(leader); |
| 1449 | list_for_each_entry(event, &leader->sibling_list, group_entry) |
| 1450 | update_event_times(event); |
| 1451 | } |
| 1452 | |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 1453 | static enum event_type_t get_event_type(struct perf_event *event) |
| 1454 | { |
| 1455 | struct perf_event_context *ctx = event->ctx; |
| 1456 | enum event_type_t event_type; |
| 1457 | |
| 1458 | lockdep_assert_held(&ctx->lock); |
| 1459 | |
Alexander Shishkin | 3bda69c | 2017-07-18 14:08:34 +0300 | [diff] [blame] | 1460 | /* |
| 1461 | * It's 'group type', really, because if our group leader is |
| 1462 | * pinned, so are we. |
| 1463 | */ |
| 1464 | if (event->group_leader != event) |
| 1465 | event = event->group_leader; |
| 1466 | |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 1467 | event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE; |
| 1468 | if (!ctx->task) |
| 1469 | event_type |= EVENT_CPU; |
| 1470 | |
| 1471 | return event_type; |
| 1472 | } |
| 1473 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 1474 | static struct list_head * |
| 1475 | ctx_group_list(struct perf_event *event, struct perf_event_context *ctx) |
| 1476 | { |
| 1477 | if (event->attr.pinned) |
| 1478 | return &ctx->pinned_groups; |
| 1479 | else |
| 1480 | return &ctx->flexible_groups; |
| 1481 | } |
| 1482 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1483 | /* |
| 1484 | * Add a event from the lists for its context. |
| 1485 | * Must be called with ctx->mutex and ctx->lock held. |
| 1486 | */ |
| 1487 | static void |
| 1488 | list_add_event(struct perf_event *event, struct perf_event_context *ctx) |
| 1489 | { |
Peter Zijlstra | c994d61 | 2016-01-08 09:20:23 +0100 | [diff] [blame] | 1490 | lockdep_assert_held(&ctx->lock); |
| 1491 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1492 | WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT); |
| 1493 | event->attach_state |= PERF_ATTACH_CONTEXT; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1494 | |
| 1495 | /* |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1496 | * If we're a stand alone event or group leader, we go to the context |
| 1497 | * list, group events are kept attached to the group so that |
| 1498 | * perf_group_detach can, at all times, locate all siblings. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1499 | */ |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1500 | if (event->group_leader == event) { |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 1501 | struct list_head *list; |
| 1502 | |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 1503 | event->group_caps = event->event_caps; |
Frederic Weisbecker | d6f962b | 2010-01-10 01:25:51 +0100 | [diff] [blame] | 1504 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 1505 | list = ctx_group_list(event, ctx); |
| 1506 | list_add_tail(&event->group_entry, list); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1507 | } |
| 1508 | |
David Carrillo-Cisneros | db4a835 | 2016-08-02 00:48:12 -0700 | [diff] [blame] | 1509 | list_update_cgroup_event(event, ctx, true); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1510 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1511 | list_add_rcu(&event->event_entry, &ctx->event_list); |
| 1512 | ctx->nr_events++; |
| 1513 | if (event->attr.inherit_stat) |
| 1514 | ctx->nr_stat++; |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 1515 | |
| 1516 | ctx->generation++; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1517 | } |
| 1518 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1519 | /* |
Jiri Olsa | 0231bb5 | 2013-02-01 11:23:45 +0100 | [diff] [blame] | 1520 | * Initialize event state based on the perf_event_attr::disabled. |
| 1521 | */ |
| 1522 | static inline void perf_event__state_init(struct perf_event *event) |
| 1523 | { |
| 1524 | event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF : |
| 1525 | PERF_EVENT_STATE_INACTIVE; |
| 1526 | } |
| 1527 | |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 1528 | static void __perf_event_read_size(struct perf_event *event, int nr_siblings) |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1529 | { |
| 1530 | int entry = sizeof(u64); /* value */ |
| 1531 | int size = 0; |
| 1532 | int nr = 1; |
| 1533 | |
| 1534 | if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) |
| 1535 | size += sizeof(u64); |
| 1536 | |
| 1537 | if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) |
| 1538 | size += sizeof(u64); |
| 1539 | |
| 1540 | if (event->attr.read_format & PERF_FORMAT_ID) |
| 1541 | entry += sizeof(u64); |
| 1542 | |
| 1543 | if (event->attr.read_format & PERF_FORMAT_GROUP) { |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 1544 | nr += nr_siblings; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1545 | size += sizeof(u64); |
| 1546 | } |
| 1547 | |
| 1548 | size += entry * nr; |
| 1549 | event->read_size = size; |
| 1550 | } |
| 1551 | |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 1552 | static void __perf_event_header_size(struct perf_event *event, u64 sample_type) |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1553 | { |
| 1554 | struct perf_sample_data *data; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1555 | u16 size = 0; |
| 1556 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1557 | if (sample_type & PERF_SAMPLE_IP) |
| 1558 | size += sizeof(data->ip); |
| 1559 | |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1560 | if (sample_type & PERF_SAMPLE_ADDR) |
| 1561 | size += sizeof(data->addr); |
| 1562 | |
| 1563 | if (sample_type & PERF_SAMPLE_PERIOD) |
| 1564 | size += sizeof(data->period); |
| 1565 | |
Andi Kleen | c3feedf | 2013-01-24 16:10:28 +0100 | [diff] [blame] | 1566 | if (sample_type & PERF_SAMPLE_WEIGHT) |
| 1567 | size += sizeof(data->weight); |
| 1568 | |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1569 | if (sample_type & PERF_SAMPLE_READ) |
| 1570 | size += event->read_size; |
| 1571 | |
Stephane Eranian | d6be9ad | 2013-01-24 16:10:31 +0100 | [diff] [blame] | 1572 | if (sample_type & PERF_SAMPLE_DATA_SRC) |
| 1573 | size += sizeof(data->data_src.val); |
| 1574 | |
Andi Kleen | fdfbbd0 | 2013-09-20 07:40:39 -0700 | [diff] [blame] | 1575 | if (sample_type & PERF_SAMPLE_TRANSACTION) |
| 1576 | size += sizeof(data->txn); |
| 1577 | |
Kan Liang | fc7ce9c | 2017-08-28 20:52:49 -0400 | [diff] [blame] | 1578 | if (sample_type & PERF_SAMPLE_PHYS_ADDR) |
| 1579 | size += sizeof(data->phys_addr); |
| 1580 | |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1581 | event->header_size = size; |
| 1582 | } |
| 1583 | |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 1584 | /* |
| 1585 | * Called at perf_event creation and when events are attached/detached from a |
| 1586 | * group. |
| 1587 | */ |
| 1588 | static void perf_event__header_size(struct perf_event *event) |
| 1589 | { |
| 1590 | __perf_event_read_size(event, |
| 1591 | event->group_leader->nr_siblings); |
| 1592 | __perf_event_header_size(event, event->attr.sample_type); |
| 1593 | } |
| 1594 | |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1595 | static void perf_event__id_header_size(struct perf_event *event) |
| 1596 | { |
| 1597 | struct perf_sample_data *data; |
| 1598 | u64 sample_type = event->attr.sample_type; |
| 1599 | u16 size = 0; |
| 1600 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1601 | if (sample_type & PERF_SAMPLE_TID) |
| 1602 | size += sizeof(data->tid_entry); |
| 1603 | |
| 1604 | if (sample_type & PERF_SAMPLE_TIME) |
| 1605 | size += sizeof(data->time); |
| 1606 | |
Adrian Hunter | ff3d527 | 2013-08-27 11:23:07 +0300 | [diff] [blame] | 1607 | if (sample_type & PERF_SAMPLE_IDENTIFIER) |
| 1608 | size += sizeof(data->id); |
| 1609 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1610 | if (sample_type & PERF_SAMPLE_ID) |
| 1611 | size += sizeof(data->id); |
| 1612 | |
| 1613 | if (sample_type & PERF_SAMPLE_STREAM_ID) |
| 1614 | size += sizeof(data->stream_id); |
| 1615 | |
| 1616 | if (sample_type & PERF_SAMPLE_CPU) |
| 1617 | size += sizeof(data->cpu_entry); |
| 1618 | |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1619 | event->id_header_size = size; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1620 | } |
| 1621 | |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 1622 | static bool perf_event_validate_size(struct perf_event *event) |
| 1623 | { |
| 1624 | /* |
| 1625 | * The values computed here will be over-written when we actually |
| 1626 | * attach the event. |
| 1627 | */ |
| 1628 | __perf_event_read_size(event, event->group_leader->nr_siblings + 1); |
| 1629 | __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ); |
| 1630 | perf_event__id_header_size(event); |
| 1631 | |
| 1632 | /* |
| 1633 | * Sum the lot; should not exceed the 64k limit we have on records. |
| 1634 | * Conservative limit to allow for callchains and other variable fields. |
| 1635 | */ |
| 1636 | if (event->read_size + event->header_size + |
| 1637 | event->id_header_size + sizeof(struct perf_event_header) >= 16*1024) |
| 1638 | return false; |
| 1639 | |
| 1640 | return true; |
| 1641 | } |
| 1642 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1643 | static void perf_group_attach(struct perf_event *event) |
| 1644 | { |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1645 | struct perf_event *group_leader = event->group_leader, *pos; |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1646 | |
Peter Zijlstra | a76a82a | 2017-01-26 16:39:55 +0100 | [diff] [blame] | 1647 | lockdep_assert_held(&event->ctx->lock); |
| 1648 | |
Peter Zijlstra | 74c3337 | 2010-10-15 11:40:29 +0200 | [diff] [blame] | 1649 | /* |
| 1650 | * We can have double attach due to group movement in perf_event_open. |
| 1651 | */ |
| 1652 | if (event->attach_state & PERF_ATTACH_GROUP) |
| 1653 | return; |
| 1654 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1655 | event->attach_state |= PERF_ATTACH_GROUP; |
| 1656 | |
| 1657 | if (group_leader == event) |
| 1658 | return; |
| 1659 | |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 1660 | WARN_ON_ONCE(group_leader->ctx != event->ctx); |
| 1661 | |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 1662 | group_leader->group_caps &= event->event_caps; |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1663 | |
| 1664 | list_add_tail(&event->group_entry, &group_leader->sibling_list); |
| 1665 | group_leader->nr_siblings++; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1666 | |
| 1667 | perf_event__header_size(group_leader); |
| 1668 | |
| 1669 | list_for_each_entry(pos, &group_leader->sibling_list, group_entry) |
| 1670 | perf_event__header_size(pos); |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1671 | } |
| 1672 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1673 | /* |
| 1674 | * Remove a event from the lists for its context. |
| 1675 | * Must be called with ctx->mutex and ctx->lock held. |
| 1676 | */ |
| 1677 | static void |
| 1678 | list_del_event(struct perf_event *event, struct perf_event_context *ctx) |
| 1679 | { |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 1680 | WARN_ON_ONCE(event->ctx != ctx); |
| 1681 | lockdep_assert_held(&ctx->lock); |
| 1682 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1683 | /* |
| 1684 | * We can have double detach due to exit/hot-unplug + close. |
| 1685 | */ |
| 1686 | if (!(event->attach_state & PERF_ATTACH_CONTEXT)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1687 | return; |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1688 | |
| 1689 | event->attach_state &= ~PERF_ATTACH_CONTEXT; |
| 1690 | |
David Carrillo-Cisneros | db4a835 | 2016-08-02 00:48:12 -0700 | [diff] [blame] | 1691 | list_update_cgroup_event(event, ctx, false); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1692 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1693 | ctx->nr_events--; |
| 1694 | if (event->attr.inherit_stat) |
| 1695 | ctx->nr_stat--; |
| 1696 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1697 | list_del_rcu(&event->event_entry); |
| 1698 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1699 | if (event->group_leader == event) |
| 1700 | list_del_init(&event->group_entry); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1701 | |
Peter Zijlstra | 96c21a4 | 2010-05-11 16:19:10 +0200 | [diff] [blame] | 1702 | update_group_times(event); |
Stephane Eranian | b2e74a2 | 2009-11-26 09:24:30 -0800 | [diff] [blame] | 1703 | |
| 1704 | /* |
| 1705 | * If event was in error state, then keep it |
| 1706 | * that way, otherwise bogus counts will be |
| 1707 | * returned on read(). The only way to get out |
| 1708 | * of error state is by explicit re-enabling |
| 1709 | * of the event |
| 1710 | */ |
| 1711 | if (event->state > PERF_EVENT_STATE_OFF) |
| 1712 | event->state = PERF_EVENT_STATE_OFF; |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 1713 | |
| 1714 | ctx->generation++; |
Peter Zijlstra | 050735b | 2010-05-11 11:51:53 +0200 | [diff] [blame] | 1715 | } |
| 1716 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1717 | static void perf_group_detach(struct perf_event *event) |
Peter Zijlstra | 050735b | 2010-05-11 11:51:53 +0200 | [diff] [blame] | 1718 | { |
| 1719 | struct perf_event *sibling, *tmp; |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1720 | struct list_head *list = NULL; |
| 1721 | |
Peter Zijlstra | a76a82a | 2017-01-26 16:39:55 +0100 | [diff] [blame] | 1722 | lockdep_assert_held(&event->ctx->lock); |
| 1723 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1724 | /* |
| 1725 | * We can have double detach due to exit/hot-unplug + close. |
| 1726 | */ |
| 1727 | if (!(event->attach_state & PERF_ATTACH_GROUP)) |
| 1728 | return; |
| 1729 | |
| 1730 | event->attach_state &= ~PERF_ATTACH_GROUP; |
| 1731 | |
| 1732 | /* |
| 1733 | * If this is a sibling, remove it from its group. |
| 1734 | */ |
| 1735 | if (event->group_leader != event) { |
| 1736 | list_del_init(&event->group_entry); |
| 1737 | event->group_leader->nr_siblings--; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1738 | goto out; |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1739 | } |
| 1740 | |
| 1741 | if (!list_empty(&event->group_entry)) |
| 1742 | list = &event->group_entry; |
Peter Zijlstra | 2e2af50 | 2009-11-23 11:37:25 +0100 | [diff] [blame] | 1743 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1744 | /* |
| 1745 | * If this was a group event with sibling events then |
| 1746 | * upgrade the siblings to singleton events by adding them |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1747 | * to whatever list we are on. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1748 | */ |
| 1749 | list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) { |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1750 | if (list) |
| 1751 | list_move_tail(&sibling->group_entry, list); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1752 | sibling->group_leader = sibling; |
Frederic Weisbecker | d6f962b | 2010-01-10 01:25:51 +0100 | [diff] [blame] | 1753 | |
| 1754 | /* Inherit group flags from the previous leader */ |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 1755 | sibling->group_caps = event->group_caps; |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 1756 | |
| 1757 | WARN_ON_ONCE(sibling->ctx != event->ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1758 | } |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1759 | |
| 1760 | out: |
| 1761 | perf_event__header_size(event->group_leader); |
| 1762 | |
| 1763 | list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry) |
| 1764 | perf_event__header_size(tmp); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1765 | } |
| 1766 | |
Jiri Olsa | fadfe7b | 2014-08-01 14:33:02 +0200 | [diff] [blame] | 1767 | static bool is_orphaned_event(struct perf_event *event) |
| 1768 | { |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 1769 | return event->state == PERF_EVENT_STATE_DEAD; |
Jiri Olsa | fadfe7b | 2014-08-01 14:33:02 +0200 | [diff] [blame] | 1770 | } |
| 1771 | |
Mark Rutland | 2c81a64 | 2016-06-14 16:10:41 +0100 | [diff] [blame] | 1772 | static inline int __pmu_filter_match(struct perf_event *event) |
Mark Rutland | 66eb579 | 2015-05-13 17:12:23 +0100 | [diff] [blame] | 1773 | { |
| 1774 | struct pmu *pmu = event->pmu; |
| 1775 | return pmu->filter_match ? pmu->filter_match(event) : 1; |
| 1776 | } |
| 1777 | |
Mark Rutland | 2c81a64 | 2016-06-14 16:10:41 +0100 | [diff] [blame] | 1778 | /* |
| 1779 | * Check whether we should attempt to schedule an event group based on |
| 1780 | * PMU-specific filtering. An event group can consist of HW and SW events, |
| 1781 | * potentially with a SW leader, so we must check all the filters, to |
| 1782 | * determine whether a group is schedulable: |
| 1783 | */ |
| 1784 | static inline int pmu_filter_match(struct perf_event *event) |
| 1785 | { |
| 1786 | struct perf_event *child; |
| 1787 | |
| 1788 | if (!__pmu_filter_match(event)) |
| 1789 | return 0; |
| 1790 | |
| 1791 | list_for_each_entry(child, &event->sibling_list, group_entry) { |
| 1792 | if (!__pmu_filter_match(child)) |
| 1793 | return 0; |
| 1794 | } |
| 1795 | |
| 1796 | return 1; |
| 1797 | } |
| 1798 | |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1799 | static inline int |
| 1800 | event_filter_match(struct perf_event *event) |
| 1801 | { |
Peter Zijlstra | 0b8f1e2 | 2016-08-04 14:37:24 +0200 | [diff] [blame] | 1802 | return (event->cpu == -1 || event->cpu == smp_processor_id()) && |
| 1803 | perf_cgroup_match(event) && pmu_filter_match(event); |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1804 | } |
| 1805 | |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 1806 | static void |
| 1807 | event_sched_out(struct perf_event *event, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1808 | struct perf_cpu_context *cpuctx, |
| 1809 | struct perf_event_context *ctx) |
| 1810 | { |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 1811 | u64 tstamp = perf_event_time(event); |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1812 | u64 delta; |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 1813 | |
| 1814 | WARN_ON_ONCE(event->ctx != ctx); |
| 1815 | lockdep_assert_held(&ctx->lock); |
| 1816 | |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1817 | /* |
| 1818 | * An event which could not be activated because of |
| 1819 | * filter mismatch still needs to have its timings |
| 1820 | * maintained, otherwise bogus information is return |
| 1821 | * via read() for time_enabled, time_running: |
| 1822 | */ |
Peter Zijlstra | 0b8f1e2 | 2016-08-04 14:37:24 +0200 | [diff] [blame] | 1823 | if (event->state == PERF_EVENT_STATE_INACTIVE && |
| 1824 | !event_filter_match(event)) { |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1825 | delta = tstamp - event->tstamp_stopped; |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1826 | event->tstamp_running += delta; |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 1827 | event->tstamp_stopped = tstamp; |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1828 | } |
| 1829 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1830 | if (event->state != PERF_EVENT_STATE_ACTIVE) |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 1831 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1832 | |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 1833 | perf_pmu_disable(event->pmu); |
| 1834 | |
Peter Zijlstra | 28a967c | 2016-02-24 18:45:46 +0100 | [diff] [blame] | 1835 | event->tstamp_stopped = tstamp; |
| 1836 | event->pmu->del(event, 0); |
| 1837 | event->oncpu = -1; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1838 | event->state = PERF_EVENT_STATE_INACTIVE; |
| 1839 | if (event->pending_disable) { |
| 1840 | event->pending_disable = 0; |
| 1841 | event->state = PERF_EVENT_STATE_OFF; |
| 1842 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1843 | |
| 1844 | if (!is_software_event(event)) |
| 1845 | cpuctx->active_oncpu--; |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 1846 | if (!--ctx->nr_active) |
| 1847 | perf_event_ctx_deactivate(ctx); |
Peter Zijlstra | 0f5a260 | 2011-11-16 14:38:16 +0100 | [diff] [blame] | 1848 | if (event->attr.freq && event->attr.sample_freq) |
| 1849 | ctx->nr_freq--; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1850 | if (event->attr.exclusive || !cpuctx->active_oncpu) |
| 1851 | cpuctx->exclusive = 0; |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 1852 | |
| 1853 | perf_pmu_enable(event->pmu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1854 | } |
| 1855 | |
| 1856 | static void |
| 1857 | group_sched_out(struct perf_event *group_event, |
| 1858 | struct perf_cpu_context *cpuctx, |
| 1859 | struct perf_event_context *ctx) |
| 1860 | { |
| 1861 | struct perf_event *event; |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1862 | int state = group_event->state; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1863 | |
Mark Rutland | 3f005e7 | 2016-07-26 18:12:21 +0100 | [diff] [blame] | 1864 | perf_pmu_disable(ctx->pmu); |
| 1865 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1866 | event_sched_out(group_event, cpuctx, ctx); |
| 1867 | |
| 1868 | /* |
| 1869 | * Schedule out siblings (if any): |
| 1870 | */ |
| 1871 | list_for_each_entry(event, &group_event->sibling_list, group_entry) |
| 1872 | event_sched_out(event, cpuctx, ctx); |
| 1873 | |
Mark Rutland | 3f005e7 | 2016-07-26 18:12:21 +0100 | [diff] [blame] | 1874 | perf_pmu_enable(ctx->pmu); |
| 1875 | |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1876 | if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1877 | cpuctx->exclusive = 0; |
| 1878 | } |
| 1879 | |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 1880 | #define DETACH_GROUP 0x01UL |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 1881 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1882 | /* |
| 1883 | * Cross CPU call to remove a performance event |
| 1884 | * |
| 1885 | * We disable the event on the hardware level first. After that we |
| 1886 | * remove it from the context list. |
| 1887 | */ |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 1888 | static void |
| 1889 | __perf_remove_from_context(struct perf_event *event, |
| 1890 | struct perf_cpu_context *cpuctx, |
| 1891 | struct perf_event_context *ctx, |
| 1892 | void *info) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1893 | { |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 1894 | unsigned long flags = (unsigned long)info; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1895 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1896 | event_sched_out(event, cpuctx, ctx); |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 1897 | if (flags & DETACH_GROUP) |
Peter Zijlstra | 46ce0fe | 2014-05-02 16:56:01 +0200 | [diff] [blame] | 1898 | perf_group_detach(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1899 | list_del_event(event, ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 1900 | |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 1901 | if (!ctx->nr_events && ctx->is_active) { |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 1902 | ctx->is_active = 0; |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 1903 | if (ctx->task) { |
| 1904 | WARN_ON_ONCE(cpuctx->task_ctx != ctx); |
| 1905 | cpuctx->task_ctx = NULL; |
| 1906 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1907 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1908 | } |
| 1909 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1910 | /* |
| 1911 | * Remove the event from a task's (or a CPU's) list of events. |
| 1912 | * |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1913 | * If event->ctx is a cloned context, callers must make sure that |
| 1914 | * every task struct that event->ctx->task could possibly point to |
| 1915 | * remains valid. This is OK when called from perf_release since |
| 1916 | * that only calls us on the top-level context, which can't be a clone. |
| 1917 | * When called from perf_event_exit_task, it's OK because the |
| 1918 | * context has been detached from its task. |
| 1919 | */ |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 1920 | static void perf_remove_from_context(struct perf_event *event, unsigned long flags) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1921 | { |
Peter Zijlstra | a76a82a | 2017-01-26 16:39:55 +0100 | [diff] [blame] | 1922 | struct perf_event_context *ctx = event->ctx; |
| 1923 | |
| 1924 | lockdep_assert_held(&ctx->mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1925 | |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 1926 | event_function_call(event, __perf_remove_from_context, (void *)flags); |
Peter Zijlstra | a76a82a | 2017-01-26 16:39:55 +0100 | [diff] [blame] | 1927 | |
| 1928 | /* |
| 1929 | * The above event_function_call() can NO-OP when it hits |
| 1930 | * TASK_TOMBSTONE. In that case we must already have been detached |
| 1931 | * from the context (by perf_event_exit_event()) but the grouping |
| 1932 | * might still be in-tact. |
| 1933 | */ |
| 1934 | WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT); |
| 1935 | if ((flags & DETACH_GROUP) && |
| 1936 | (event->attach_state & PERF_ATTACH_GROUP)) { |
| 1937 | /* |
| 1938 | * Since in that case we cannot possibly be scheduled, simply |
| 1939 | * detach now. |
| 1940 | */ |
| 1941 | raw_spin_lock_irq(&ctx->lock); |
| 1942 | perf_group_detach(event); |
| 1943 | raw_spin_unlock_irq(&ctx->lock); |
| 1944 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1945 | } |
| 1946 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1947 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1948 | * Cross CPU call to disable a performance event |
| 1949 | */ |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 1950 | static void __perf_event_disable(struct perf_event *event, |
| 1951 | struct perf_cpu_context *cpuctx, |
| 1952 | struct perf_event_context *ctx, |
| 1953 | void *info) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1954 | { |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 1955 | if (event->state < PERF_EVENT_STATE_INACTIVE) |
| 1956 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1957 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 1958 | update_context_time(ctx); |
| 1959 | update_cgrp_time_from_event(event); |
| 1960 | update_group_times(event); |
| 1961 | if (event == event->group_leader) |
| 1962 | group_sched_out(event, cpuctx, ctx); |
| 1963 | else |
| 1964 | event_sched_out(event, cpuctx, ctx); |
| 1965 | event->state = PERF_EVENT_STATE_OFF; |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 1966 | } |
| 1967 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1968 | /* |
| 1969 | * Disable a event. |
| 1970 | * |
| 1971 | * If event->ctx is a cloned context, callers must make sure that |
| 1972 | * every task struct that event->ctx->task could possibly point to |
| 1973 | * remains valid. This condition is satisifed when called through |
| 1974 | * perf_event_for_each_child or perf_event_for_each because they |
| 1975 | * hold the top-level event's child_mutex, so any descendant that |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 1976 | * goes to exit will block in perf_event_exit_event(). |
| 1977 | * |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1978 | * When called from perf_pending_event it's OK because event->ctx |
| 1979 | * is the current context on this CPU and preemption is disabled, |
| 1980 | * hence we can't get into perf_event_task_sched_out for this context. |
| 1981 | */ |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 1982 | static void _perf_event_disable(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1983 | { |
| 1984 | struct perf_event_context *ctx = event->ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1985 | |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1986 | raw_spin_lock_irq(&ctx->lock); |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 1987 | if (event->state <= PERF_EVENT_STATE_OFF) { |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1988 | raw_spin_unlock_irq(&ctx->lock); |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 1989 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1990 | } |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1991 | raw_spin_unlock_irq(&ctx->lock); |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 1992 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 1993 | event_function_call(event, __perf_event_disable, NULL); |
| 1994 | } |
| 1995 | |
| 1996 | void perf_event_disable_local(struct perf_event *event) |
| 1997 | { |
| 1998 | event_function_local(event, __perf_event_disable, NULL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1999 | } |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 2000 | |
| 2001 | /* |
| 2002 | * Strictly speaking kernel users cannot create groups and therefore this |
| 2003 | * interface does not need the perf_event_ctx_lock() magic. |
| 2004 | */ |
| 2005 | void perf_event_disable(struct perf_event *event) |
| 2006 | { |
| 2007 | struct perf_event_context *ctx; |
| 2008 | |
| 2009 | ctx = perf_event_ctx_lock(event); |
| 2010 | _perf_event_disable(event); |
| 2011 | perf_event_ctx_unlock(event, ctx); |
| 2012 | } |
Robert Richter | dcfce4a | 2011-10-11 17:11:08 +0200 | [diff] [blame] | 2013 | EXPORT_SYMBOL_GPL(perf_event_disable); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2014 | |
Jiri Olsa | 5aab90c | 2016-10-26 11:48:24 +0200 | [diff] [blame] | 2015 | void perf_event_disable_inatomic(struct perf_event *event) |
| 2016 | { |
| 2017 | event->pending_disable = 1; |
| 2018 | irq_work_queue(&event->pending); |
| 2019 | } |
| 2020 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 2021 | static void perf_set_shadow_time(struct perf_event *event, |
| 2022 | struct perf_event_context *ctx, |
| 2023 | u64 tstamp) |
| 2024 | { |
| 2025 | /* |
| 2026 | * use the correct time source for the time snapshot |
| 2027 | * |
| 2028 | * We could get by without this by leveraging the |
| 2029 | * fact that to get to this function, the caller |
| 2030 | * has most likely already called update_context_time() |
| 2031 | * and update_cgrp_time_xx() and thus both timestamp |
| 2032 | * are identical (or very close). Given that tstamp is, |
| 2033 | * already adjusted for cgroup, we could say that: |
| 2034 | * tstamp - ctx->timestamp |
| 2035 | * is equivalent to |
| 2036 | * tstamp - cgrp->timestamp. |
| 2037 | * |
| 2038 | * Then, in perf_output_read(), the calculation would |
| 2039 | * work with no changes because: |
| 2040 | * - event is guaranteed scheduled in |
| 2041 | * - no scheduled out in between |
| 2042 | * - thus the timestamp would be the same |
| 2043 | * |
| 2044 | * But this is a bit hairy. |
| 2045 | * |
| 2046 | * So instead, we have an explicit cgroup call to remain |
| 2047 | * within the time time source all along. We believe it |
| 2048 | * is cleaner and simpler to understand. |
| 2049 | */ |
| 2050 | if (is_cgroup_event(event)) |
| 2051 | perf_cgroup_set_shadow_time(event, tstamp); |
| 2052 | else |
| 2053 | event->shadow_ctx_time = tstamp - ctx->timestamp; |
| 2054 | } |
| 2055 | |
Peter Zijlstra | 4fe757d | 2011-02-15 22:26:07 +0100 | [diff] [blame] | 2056 | #define MAX_INTERRUPTS (~0ULL) |
| 2057 | |
| 2058 | static void perf_log_throttle(struct perf_event *event, int enable); |
Alexander Shishkin | ec0d772 | 2015-01-14 14:18:23 +0200 | [diff] [blame] | 2059 | static void perf_log_itrace_start(struct perf_event *event); |
Peter Zijlstra | 4fe757d | 2011-02-15 22:26:07 +0100 | [diff] [blame] | 2060 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2061 | static int |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2062 | event_sched_in(struct perf_event *event, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2063 | struct perf_cpu_context *cpuctx, |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 2064 | struct perf_event_context *ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2065 | { |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 2066 | u64 tstamp = perf_event_time(event); |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 2067 | int ret = 0; |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 2068 | |
Peter Zijlstra | 6334241 | 2014-05-05 11:49:16 +0200 | [diff] [blame] | 2069 | lockdep_assert_held(&ctx->lock); |
| 2070 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2071 | if (event->state <= PERF_EVENT_STATE_OFF) |
| 2072 | return 0; |
| 2073 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 2074 | WRITE_ONCE(event->oncpu, smp_processor_id()); |
| 2075 | /* |
| 2076 | * Order event::oncpu write to happen before the ACTIVE state |
| 2077 | * is visible. |
| 2078 | */ |
| 2079 | smp_wmb(); |
| 2080 | WRITE_ONCE(event->state, PERF_EVENT_STATE_ACTIVE); |
Peter Zijlstra | 4fe757d | 2011-02-15 22:26:07 +0100 | [diff] [blame] | 2081 | |
| 2082 | /* |
| 2083 | * Unthrottle events, since we scheduled we might have missed several |
| 2084 | * ticks already, also for a heavily scheduling task there is little |
| 2085 | * guarantee it'll get a tick in a timely manner. |
| 2086 | */ |
| 2087 | if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) { |
| 2088 | perf_log_throttle(event, 1); |
| 2089 | event->hw.interrupts = 0; |
| 2090 | } |
| 2091 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2092 | /* |
| 2093 | * The new state must be visible before we turn it on in the hardware: |
| 2094 | */ |
| 2095 | smp_wmb(); |
| 2096 | |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 2097 | perf_pmu_disable(event->pmu); |
| 2098 | |
Shaohua Li | 72f669c | 2015-02-05 15:55:31 -0800 | [diff] [blame] | 2099 | perf_set_shadow_time(event, ctx, tstamp); |
| 2100 | |
Alexander Shishkin | ec0d772 | 2015-01-14 14:18:23 +0200 | [diff] [blame] | 2101 | perf_log_itrace_start(event); |
| 2102 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 2103 | if (event->pmu->add(event, PERF_EF_START)) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2104 | event->state = PERF_EVENT_STATE_INACTIVE; |
| 2105 | event->oncpu = -1; |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 2106 | ret = -EAGAIN; |
| 2107 | goto out; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2108 | } |
| 2109 | |
Peter Zijlstra | 00a2916 | 2015-07-27 10:35:07 +0200 | [diff] [blame] | 2110 | event->tstamp_running += tstamp - event->tstamp_stopped; |
| 2111 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2112 | if (!is_software_event(event)) |
| 2113 | cpuctx->active_oncpu++; |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 2114 | if (!ctx->nr_active++) |
| 2115 | perf_event_ctx_activate(ctx); |
Peter Zijlstra | 0f5a260 | 2011-11-16 14:38:16 +0100 | [diff] [blame] | 2116 | if (event->attr.freq && event->attr.sample_freq) |
| 2117 | ctx->nr_freq++; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2118 | |
| 2119 | if (event->attr.exclusive) |
| 2120 | cpuctx->exclusive = 1; |
| 2121 | |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 2122 | out: |
| 2123 | perf_pmu_enable(event->pmu); |
| 2124 | |
| 2125 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2126 | } |
| 2127 | |
| 2128 | static int |
| 2129 | group_sched_in(struct perf_event *group_event, |
| 2130 | struct perf_cpu_context *cpuctx, |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 2131 | struct perf_event_context *ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2132 | { |
Lin Ming | 6bde9b6 | 2010-04-23 13:56:00 +0800 | [diff] [blame] | 2133 | struct perf_event *event, *partial_group = NULL; |
Peter Zijlstra | 4a23459 | 2014-02-24 12:43:31 +0100 | [diff] [blame] | 2134 | struct pmu *pmu = ctx->pmu; |
Stephane Eranian | d7842da | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2135 | u64 now = ctx->time; |
| 2136 | bool simulate = false; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2137 | |
| 2138 | if (group_event->state == PERF_EVENT_STATE_OFF) |
| 2139 | return 0; |
| 2140 | |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 2141 | pmu->start_txn(pmu, PERF_PMU_TXN_ADD); |
Lin Ming | 6bde9b6 | 2010-04-23 13:56:00 +0800 | [diff] [blame] | 2142 | |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2143 | if (event_sched_in(group_event, cpuctx, ctx)) { |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 2144 | pmu->cancel_txn(pmu); |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 2145 | perf_mux_hrtimer_restart(cpuctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2146 | return -EAGAIN; |
Stephane Eranian | 90151c35 | 2010-05-25 16:23:10 +0200 | [diff] [blame] | 2147 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2148 | |
| 2149 | /* |
| 2150 | * Schedule in siblings as one group (if any): |
| 2151 | */ |
| 2152 | list_for_each_entry(event, &group_event->sibling_list, group_entry) { |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2153 | if (event_sched_in(event, cpuctx, ctx)) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2154 | partial_group = event; |
| 2155 | goto group_error; |
| 2156 | } |
| 2157 | } |
| 2158 | |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2159 | if (!pmu->commit_txn(pmu)) |
Paul Mackerras | 6e85158 | 2010-05-08 20:58:00 +1000 | [diff] [blame] | 2160 | return 0; |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2161 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2162 | group_error: |
| 2163 | /* |
| 2164 | * Groups can be scheduled in as one unit only, so undo any |
| 2165 | * partial group before returning: |
Stephane Eranian | d7842da | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2166 | * The events up to the failed event are scheduled out normally, |
| 2167 | * tstamp_stopped will be updated. |
| 2168 | * |
| 2169 | * The failed events and the remaining siblings need to have |
| 2170 | * their timings updated as if they had gone thru event_sched_in() |
| 2171 | * and event_sched_out(). This is required to get consistent timings |
| 2172 | * across the group. This also takes care of the case where the group |
| 2173 | * could never be scheduled by ensuring tstamp_stopped is set to mark |
| 2174 | * the time the event was actually stopped, such that time delta |
| 2175 | * calculation in update_event_times() is correct. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2176 | */ |
| 2177 | list_for_each_entry(event, &group_event->sibling_list, group_entry) { |
| 2178 | if (event == partial_group) |
Stephane Eranian | d7842da | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2179 | simulate = true; |
| 2180 | |
| 2181 | if (simulate) { |
| 2182 | event->tstamp_running += now - event->tstamp_stopped; |
| 2183 | event->tstamp_stopped = now; |
| 2184 | } else { |
| 2185 | event_sched_out(event, cpuctx, ctx); |
| 2186 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2187 | } |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2188 | event_sched_out(group_event, cpuctx, ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2189 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 2190 | pmu->cancel_txn(pmu); |
Stephane Eranian | 90151c35 | 2010-05-25 16:23:10 +0200 | [diff] [blame] | 2191 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 2192 | perf_mux_hrtimer_restart(cpuctx); |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 2193 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2194 | return -EAGAIN; |
| 2195 | } |
| 2196 | |
| 2197 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2198 | * Work out whether we can put this event group on the CPU now. |
| 2199 | */ |
| 2200 | static int group_can_go_on(struct perf_event *event, |
| 2201 | struct perf_cpu_context *cpuctx, |
| 2202 | int can_add_hw) |
| 2203 | { |
| 2204 | /* |
| 2205 | * Groups consisting entirely of software events can always go on. |
| 2206 | */ |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 2207 | if (event->group_caps & PERF_EV_CAP_SOFTWARE) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2208 | return 1; |
| 2209 | /* |
| 2210 | * If an exclusive group is already on, no other hardware |
| 2211 | * events can go on. |
| 2212 | */ |
| 2213 | if (cpuctx->exclusive) |
| 2214 | return 0; |
| 2215 | /* |
| 2216 | * If this group is exclusive and there are already |
| 2217 | * events on the CPU, it can't go on. |
| 2218 | */ |
| 2219 | if (event->attr.exclusive && cpuctx->active_oncpu) |
| 2220 | return 0; |
| 2221 | /* |
| 2222 | * Otherwise, try to add it if all previous groups were able |
| 2223 | * to go on. |
| 2224 | */ |
| 2225 | return can_add_hw; |
| 2226 | } |
| 2227 | |
Peter Zijlstra | 9b231d9 | 2017-08-03 15:42:09 +0200 | [diff] [blame] | 2228 | /* |
| 2229 | * Complement to update_event_times(). This computes the tstamp_* values to |
| 2230 | * continue 'enabled' state from @now, and effectively discards the time |
| 2231 | * between the prior tstamp_stopped and now (as we were in the OFF state, or |
| 2232 | * just switched (context) time base). |
| 2233 | * |
| 2234 | * This further assumes '@event->state == INACTIVE' (we just came from OFF) and |
| 2235 | * cannot have been scheduled in yet. And going into INACTIVE state means |
| 2236 | * '@event->tstamp_stopped = @now'. |
| 2237 | * |
| 2238 | * Thus given the rules of update_event_times(): |
| 2239 | * |
| 2240 | * total_time_enabled = tstamp_stopped - tstamp_enabled |
| 2241 | * total_time_running = tstamp_stopped - tstamp_running |
| 2242 | * |
| 2243 | * We can insert 'tstamp_stopped == now' and reverse them to compute new |
| 2244 | * tstamp_* values. |
| 2245 | */ |
| 2246 | static void __perf_event_enable_time(struct perf_event *event, u64 now) |
| 2247 | { |
| 2248 | WARN_ON_ONCE(event->state != PERF_EVENT_STATE_INACTIVE); |
| 2249 | |
| 2250 | event->tstamp_stopped = now; |
| 2251 | event->tstamp_enabled = now - event->total_time_enabled; |
| 2252 | event->tstamp_running = now - event->total_time_running; |
| 2253 | } |
| 2254 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2255 | static void add_event_to_ctx(struct perf_event *event, |
| 2256 | struct perf_event_context *ctx) |
| 2257 | { |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 2258 | u64 tstamp = perf_event_time(event); |
| 2259 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2260 | list_add_event(event, ctx); |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 2261 | perf_group_attach(event); |
Peter Zijlstra | 9b231d9 | 2017-08-03 15:42:09 +0200 | [diff] [blame] | 2262 | /* |
| 2263 | * We can be called with event->state == STATE_OFF when we create with |
| 2264 | * .disabled = 1. In that case the IOC_ENABLE will call this function. |
| 2265 | */ |
| 2266 | if (event->state == PERF_EVENT_STATE_INACTIVE) |
| 2267 | __perf_event_enable_time(event, tstamp); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2268 | } |
| 2269 | |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2270 | static void ctx_sched_out(struct perf_event_context *ctx, |
| 2271 | struct perf_cpu_context *cpuctx, |
| 2272 | enum event_type_t event_type); |
Peter Zijlstra | 2c29ef0 | 2011-04-09 21:17:44 +0200 | [diff] [blame] | 2273 | static void |
| 2274 | ctx_sched_in(struct perf_event_context *ctx, |
| 2275 | struct perf_cpu_context *cpuctx, |
| 2276 | enum event_type_t event_type, |
| 2277 | struct task_struct *task); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2278 | |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2279 | static void task_ctx_sched_out(struct perf_cpu_context *cpuctx, |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2280 | struct perf_event_context *ctx, |
| 2281 | enum event_type_t event_type) |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2282 | { |
| 2283 | if (!cpuctx->task_ctx) |
| 2284 | return; |
| 2285 | |
| 2286 | if (WARN_ON_ONCE(ctx != cpuctx->task_ctx)) |
| 2287 | return; |
| 2288 | |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2289 | ctx_sched_out(ctx, cpuctx, event_type); |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2290 | } |
| 2291 | |
Peter Zijlstra | dce5855 | 2011-04-09 21:17:46 +0200 | [diff] [blame] | 2292 | static void perf_event_sched_in(struct perf_cpu_context *cpuctx, |
| 2293 | struct perf_event_context *ctx, |
| 2294 | struct task_struct *task) |
| 2295 | { |
| 2296 | cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task); |
| 2297 | if (ctx) |
| 2298 | ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task); |
| 2299 | cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task); |
| 2300 | if (ctx) |
| 2301 | ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task); |
| 2302 | } |
| 2303 | |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2304 | /* |
| 2305 | * We want to maintain the following priority of scheduling: |
| 2306 | * - CPU pinned (EVENT_CPU | EVENT_PINNED) |
| 2307 | * - task pinned (EVENT_PINNED) |
| 2308 | * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE) |
| 2309 | * - task flexible (EVENT_FLEXIBLE). |
| 2310 | * |
| 2311 | * In order to avoid unscheduling and scheduling back in everything every |
| 2312 | * time an event is added, only do it for the groups of equal priority and |
| 2313 | * below. |
| 2314 | * |
| 2315 | * This can be called after a batch operation on task events, in which case |
| 2316 | * event_type is a bit mask of the types of events involved. For CPU events, |
| 2317 | * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE. |
| 2318 | */ |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 2319 | static void ctx_resched(struct perf_cpu_context *cpuctx, |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2320 | struct perf_event_context *task_ctx, |
| 2321 | enum event_type_t event_type) |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 2322 | { |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2323 | enum event_type_t ctx_event_type = event_type & EVENT_ALL; |
| 2324 | bool cpu_event = !!(event_type & EVENT_CPU); |
| 2325 | |
| 2326 | /* |
| 2327 | * If pinned groups are involved, flexible groups also need to be |
| 2328 | * scheduled out. |
| 2329 | */ |
| 2330 | if (event_type & EVENT_PINNED) |
| 2331 | event_type |= EVENT_FLEXIBLE; |
| 2332 | |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 2333 | perf_pmu_disable(cpuctx->ctx.pmu); |
| 2334 | if (task_ctx) |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2335 | task_ctx_sched_out(cpuctx, task_ctx, event_type); |
| 2336 | |
| 2337 | /* |
| 2338 | * Decide which cpu ctx groups to schedule out based on the types |
| 2339 | * of events that caused rescheduling: |
| 2340 | * - EVENT_CPU: schedule out corresponding groups; |
| 2341 | * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups; |
| 2342 | * - otherwise, do nothing more. |
| 2343 | */ |
| 2344 | if (cpu_event) |
| 2345 | cpu_ctx_sched_out(cpuctx, ctx_event_type); |
| 2346 | else if (ctx_event_type & EVENT_PINNED) |
| 2347 | cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE); |
| 2348 | |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 2349 | perf_event_sched_in(cpuctx, task_ctx, current); |
| 2350 | perf_pmu_enable(cpuctx->ctx.pmu); |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 2351 | } |
| 2352 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2353 | /* |
| 2354 | * Cross CPU call to install and enable a performance event |
| 2355 | * |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2356 | * Very similar to remote_function() + event_function() but cannot assume that |
| 2357 | * things like ctx->is_active and cpuctx->task_ctx are set. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2358 | */ |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2359 | static int __perf_install_in_context(void *info) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2360 | { |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2361 | struct perf_event *event = info; |
| 2362 | struct perf_event_context *ctx = event->ctx; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 2363 | struct perf_cpu_context *cpuctx = __get_cpu_context(ctx); |
Peter Zijlstra | 2c29ef0 | 2011-04-09 21:17:44 +0200 | [diff] [blame] | 2364 | struct perf_event_context *task_ctx = cpuctx->task_ctx; |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2365 | bool reprogram = true; |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2366 | int ret = 0; |
Peter Zijlstra | 2c29ef0 | 2011-04-09 21:17:44 +0200 | [diff] [blame] | 2367 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2368 | raw_spin_lock(&cpuctx->ctx.lock); |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 2369 | if (ctx->task) { |
Peter Zijlstra | b58f6b0 | 2011-06-07 00:23:28 +0200 | [diff] [blame] | 2370 | raw_spin_lock(&ctx->lock); |
| 2371 | task_ctx = ctx; |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2372 | |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2373 | reprogram = (ctx->task == current); |
| 2374 | |
| 2375 | /* |
| 2376 | * If the task is running, it must be running on this CPU, |
| 2377 | * otherwise we cannot reprogram things. |
| 2378 | * |
| 2379 | * If its not running, we don't care, ctx->lock will |
| 2380 | * serialize against it becoming runnable. |
| 2381 | */ |
| 2382 | if (task_curr(ctx->task) && !reprogram) { |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2383 | ret = -ESRCH; |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2384 | goto unlock; |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2385 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2386 | |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2387 | WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx); |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2388 | } else if (task_ctx) { |
| 2389 | raw_spin_lock(&task_ctx->lock); |
Peter Zijlstra | b58f6b0 | 2011-06-07 00:23:28 +0200 | [diff] [blame] | 2390 | } |
| 2391 | |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2392 | if (reprogram) { |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2393 | ctx_sched_out(ctx, cpuctx, EVENT_TIME); |
| 2394 | add_event_to_ctx(event, ctx); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2395 | ctx_resched(cpuctx, task_ctx, get_event_type(event)); |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2396 | } else { |
| 2397 | add_event_to_ctx(event, ctx); |
| 2398 | } |
| 2399 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2400 | unlock: |
Peter Zijlstra | 2c29ef0 | 2011-04-09 21:17:44 +0200 | [diff] [blame] | 2401 | perf_ctx_unlock(cpuctx, task_ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2402 | |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2403 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2404 | } |
| 2405 | |
| 2406 | /* |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2407 | * Attach a performance event to a context. |
| 2408 | * |
| 2409 | * Very similar to event_function_call, see comment there. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2410 | */ |
| 2411 | static void |
| 2412 | perf_install_in_context(struct perf_event_context *ctx, |
| 2413 | struct perf_event *event, |
| 2414 | int cpu) |
| 2415 | { |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2416 | struct task_struct *task = READ_ONCE(ctx->task); |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 2417 | |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2418 | lockdep_assert_held(&ctx->mutex); |
| 2419 | |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 2420 | if (event->cpu != -1) |
| 2421 | event->cpu = cpu; |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 2422 | |
Peter Zijlstra | 0b8f1e2 | 2016-08-04 14:37:24 +0200 | [diff] [blame] | 2423 | /* |
| 2424 | * Ensures that if we can observe event->ctx, both the event and ctx |
| 2425 | * will be 'complete'. See perf_iterate_sb_cpu(). |
| 2426 | */ |
| 2427 | smp_store_release(&event->ctx, ctx); |
| 2428 | |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2429 | if (!task) { |
| 2430 | cpu_function_call(cpu, __perf_install_in_context, event); |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2431 | return; |
| 2432 | } |
Peter Zijlstra | 6f932e5 | 2016-02-24 18:45:43 +0100 | [diff] [blame] | 2433 | |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2434 | /* |
| 2435 | * Should not happen, we validate the ctx is still alive before calling. |
| 2436 | */ |
| 2437 | if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) |
| 2438 | return; |
| 2439 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2440 | /* |
| 2441 | * Installing events is tricky because we cannot rely on ctx->is_active |
| 2442 | * to be set in case this is the nr_events 0 -> 1 transition. |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2443 | * |
| 2444 | * Instead we use task_curr(), which tells us if the task is running. |
| 2445 | * However, since we use task_curr() outside of rq::lock, we can race |
| 2446 | * against the actual state. This means the result can be wrong. |
| 2447 | * |
| 2448 | * If we get a false positive, we retry, this is harmless. |
| 2449 | * |
| 2450 | * If we get a false negative, things are complicated. If we are after |
| 2451 | * perf_event_context_sched_in() ctx::lock will serialize us, and the |
| 2452 | * value must be correct. If we're before, it doesn't matter since |
| 2453 | * perf_event_context_sched_in() will program the counter. |
| 2454 | * |
| 2455 | * However, this hinges on the remote context switch having observed |
| 2456 | * our task->perf_event_ctxp[] store, such that it will in fact take |
| 2457 | * ctx::lock in perf_event_context_sched_in(). |
| 2458 | * |
| 2459 | * We do this by task_function_call(), if the IPI fails to hit the task |
| 2460 | * we know any future context switch of task must see the |
| 2461 | * perf_event_ctpx[] store. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2462 | */ |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2463 | |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2464 | /* |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2465 | * This smp_mb() orders the task->perf_event_ctxp[] store with the |
| 2466 | * task_cpu() load, such that if the IPI then does not find the task |
| 2467 | * running, a future context switch of that task must observe the |
| 2468 | * store. |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2469 | */ |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2470 | smp_mb(); |
| 2471 | again: |
| 2472 | if (!task_function_call(task, __perf_install_in_context, event)) |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2473 | return; |
| 2474 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2475 | raw_spin_lock_irq(&ctx->lock); |
| 2476 | task = ctx->task; |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2477 | if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) { |
| 2478 | /* |
| 2479 | * Cannot happen because we already checked above (which also |
| 2480 | * cannot happen), and we hold ctx->mutex, which serializes us |
| 2481 | * against perf_event_exit_task_context(). |
| 2482 | */ |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 2483 | raw_spin_unlock_irq(&ctx->lock); |
| 2484 | return; |
| 2485 | } |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2486 | /* |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2487 | * If the task is not running, ctx->lock will avoid it becoming so, |
| 2488 | * thus we can safely install the event. |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2489 | */ |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2490 | if (task_curr(task)) { |
| 2491 | raw_spin_unlock_irq(&ctx->lock); |
| 2492 | goto again; |
| 2493 | } |
| 2494 | add_event_to_ctx(event, ctx); |
| 2495 | raw_spin_unlock_irq(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2496 | } |
| 2497 | |
| 2498 | /* |
| 2499 | * Put a event into inactive state and update time fields. |
| 2500 | * Enabling the leader of a group effectively enables all |
| 2501 | * the group members that aren't explicitly disabled, so we |
| 2502 | * have to update their ->tstamp_enabled also. |
| 2503 | * Note: this works for group members as well as group leaders |
| 2504 | * since the non-leader members' sibling_lists will be empty. |
| 2505 | */ |
Peter Zijlstra | 1d9b482 | 2011-11-23 12:34:20 +0100 | [diff] [blame] | 2506 | static void __perf_event_mark_enabled(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2507 | { |
| 2508 | struct perf_event *sub; |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 2509 | u64 tstamp = perf_event_time(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2510 | |
| 2511 | event->state = PERF_EVENT_STATE_INACTIVE; |
Peter Zijlstra | 9b231d9 | 2017-08-03 15:42:09 +0200 | [diff] [blame] | 2512 | __perf_event_enable_time(event, tstamp); |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 2513 | list_for_each_entry(sub, &event->sibling_list, group_entry) { |
Peter Zijlstra | 9b231d9 | 2017-08-03 15:42:09 +0200 | [diff] [blame] | 2514 | /* XXX should not be > INACTIVE if event isn't */ |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 2515 | if (sub->state >= PERF_EVENT_STATE_INACTIVE) |
Peter Zijlstra | 9b231d9 | 2017-08-03 15:42:09 +0200 | [diff] [blame] | 2516 | __perf_event_enable_time(sub, tstamp); |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 2517 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2518 | } |
| 2519 | |
| 2520 | /* |
| 2521 | * Cross CPU call to enable a performance event |
| 2522 | */ |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2523 | static void __perf_event_enable(struct perf_event *event, |
| 2524 | struct perf_cpu_context *cpuctx, |
| 2525 | struct perf_event_context *ctx, |
| 2526 | void *info) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2527 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2528 | struct perf_event *leader = event->group_leader; |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2529 | struct perf_event_context *task_ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2530 | |
Peter Zijlstra | 6e801e01 | 2016-01-26 12:17:08 +0100 | [diff] [blame] | 2531 | if (event->state >= PERF_EVENT_STATE_INACTIVE || |
| 2532 | event->state <= PERF_EVENT_STATE_ERROR) |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2533 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2534 | |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2535 | if (ctx->is_active) |
| 2536 | ctx_sched_out(ctx, cpuctx, EVENT_TIME); |
| 2537 | |
Peter Zijlstra | 1d9b482 | 2011-11-23 12:34:20 +0100 | [diff] [blame] | 2538 | __perf_event_mark_enabled(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2539 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2540 | if (!ctx->is_active) |
| 2541 | return; |
| 2542 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 2543 | if (!event_filter_match(event)) { |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2544 | if (is_cgroup_event(event)) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 2545 | perf_cgroup_defer_enabled(event); |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2546 | ctx_sched_in(ctx, cpuctx, EVENT_TIME, current); |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2547 | return; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 2548 | } |
Peter Zijlstra | f4c4176 | 2009-12-16 17:55:54 +0100 | [diff] [blame] | 2549 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2550 | /* |
| 2551 | * If the event is in a group and isn't the group leader, |
| 2552 | * then don't put it on unless the group is on. |
| 2553 | */ |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2554 | if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) { |
| 2555 | ctx_sched_in(ctx, cpuctx, EVENT_TIME, current); |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2556 | return; |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2557 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2558 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2559 | task_ctx = cpuctx->task_ctx; |
| 2560 | if (ctx->task) |
| 2561 | WARN_ON_ONCE(task_ctx != ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2562 | |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2563 | ctx_resched(cpuctx, task_ctx, get_event_type(event)); |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 2564 | } |
| 2565 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2566 | /* |
| 2567 | * Enable a event. |
| 2568 | * |
| 2569 | * If event->ctx is a cloned context, callers must make sure that |
| 2570 | * every task struct that event->ctx->task could possibly point to |
| 2571 | * remains valid. This condition is satisfied when called through |
| 2572 | * perf_event_for_each_child or perf_event_for_each as described |
| 2573 | * for perf_event_disable. |
| 2574 | */ |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 2575 | static void _perf_event_enable(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2576 | { |
| 2577 | struct perf_event_context *ctx = event->ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2578 | |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 2579 | raw_spin_lock_irq(&ctx->lock); |
Peter Zijlstra | 6e801e01 | 2016-01-26 12:17:08 +0100 | [diff] [blame] | 2580 | if (event->state >= PERF_EVENT_STATE_INACTIVE || |
| 2581 | event->state < PERF_EVENT_STATE_ERROR) { |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 2582 | raw_spin_unlock_irq(&ctx->lock); |
| 2583 | return; |
| 2584 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2585 | |
| 2586 | /* |
| 2587 | * If the event is in error state, clear that first. |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 2588 | * |
| 2589 | * That way, if we see the event in error state below, we know that it |
| 2590 | * has gone back into error state, as distinct from the task having |
| 2591 | * been scheduled away before the cross-call arrived. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2592 | */ |
| 2593 | if (event->state == PERF_EVENT_STATE_ERROR) |
| 2594 | event->state = PERF_EVENT_STATE_OFF; |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 2595 | raw_spin_unlock_irq(&ctx->lock); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2596 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2597 | event_function_call(event, __perf_event_enable, NULL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2598 | } |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 2599 | |
| 2600 | /* |
| 2601 | * See perf_event_disable(); |
| 2602 | */ |
| 2603 | void perf_event_enable(struct perf_event *event) |
| 2604 | { |
| 2605 | struct perf_event_context *ctx; |
| 2606 | |
| 2607 | ctx = perf_event_ctx_lock(event); |
| 2608 | _perf_event_enable(event); |
| 2609 | perf_event_ctx_unlock(event, ctx); |
| 2610 | } |
Robert Richter | dcfce4a | 2011-10-11 17:11:08 +0200 | [diff] [blame] | 2611 | EXPORT_SYMBOL_GPL(perf_event_enable); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2612 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2613 | struct stop_event_data { |
| 2614 | struct perf_event *event; |
| 2615 | unsigned int restart; |
| 2616 | }; |
| 2617 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 2618 | static int __perf_event_stop(void *info) |
| 2619 | { |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2620 | struct stop_event_data *sd = info; |
| 2621 | struct perf_event *event = sd->event; |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 2622 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2623 | /* if it's already INACTIVE, do nothing */ |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 2624 | if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE) |
| 2625 | return 0; |
| 2626 | |
| 2627 | /* matches smp_wmb() in event_sched_in() */ |
| 2628 | smp_rmb(); |
| 2629 | |
| 2630 | /* |
| 2631 | * There is a window with interrupts enabled before we get here, |
| 2632 | * so we need to check again lest we try to stop another CPU's event. |
| 2633 | */ |
| 2634 | if (READ_ONCE(event->oncpu) != smp_processor_id()) |
| 2635 | return -EAGAIN; |
| 2636 | |
| 2637 | event->pmu->stop(event, PERF_EF_UPDATE); |
| 2638 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2639 | /* |
| 2640 | * May race with the actual stop (through perf_pmu_output_stop()), |
| 2641 | * but it is only used for events with AUX ring buffer, and such |
| 2642 | * events will refuse to restart because of rb::aux_mmap_count==0, |
| 2643 | * see comments in perf_aux_output_begin(). |
| 2644 | * |
| 2645 | * Since this is happening on a event-local CPU, no trace is lost |
| 2646 | * while restarting. |
| 2647 | */ |
| 2648 | if (sd->restart) |
Will Deacon | c9bbdd4 | 2016-08-15 11:42:45 +0100 | [diff] [blame] | 2649 | event->pmu->start(event, 0); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2650 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 2651 | return 0; |
| 2652 | } |
| 2653 | |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 2654 | static int perf_event_stop(struct perf_event *event, int restart) |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2655 | { |
| 2656 | struct stop_event_data sd = { |
| 2657 | .event = event, |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 2658 | .restart = restart, |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2659 | }; |
| 2660 | int ret = 0; |
| 2661 | |
| 2662 | do { |
| 2663 | if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE) |
| 2664 | return 0; |
| 2665 | |
| 2666 | /* matches smp_wmb() in event_sched_in() */ |
| 2667 | smp_rmb(); |
| 2668 | |
| 2669 | /* |
| 2670 | * We only want to restart ACTIVE events, so if the event goes |
| 2671 | * inactive here (event->oncpu==-1), there's nothing more to do; |
| 2672 | * fall through with ret==-ENXIO. |
| 2673 | */ |
| 2674 | ret = cpu_function_call(READ_ONCE(event->oncpu), |
| 2675 | __perf_event_stop, &sd); |
| 2676 | } while (ret == -EAGAIN); |
| 2677 | |
| 2678 | return ret; |
| 2679 | } |
| 2680 | |
| 2681 | /* |
| 2682 | * In order to contain the amount of racy and tricky in the address filter |
| 2683 | * configuration management, it is a two part process: |
| 2684 | * |
| 2685 | * (p1) when userspace mappings change as a result of (1) or (2) or (3) below, |
| 2686 | * we update the addresses of corresponding vmas in |
| 2687 | * event::addr_filters_offs array and bump the event::addr_filters_gen; |
| 2688 | * (p2) when an event is scheduled in (pmu::add), it calls |
| 2689 | * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync() |
| 2690 | * if the generation has changed since the previous call. |
| 2691 | * |
| 2692 | * If (p1) happens while the event is active, we restart it to force (p2). |
| 2693 | * |
| 2694 | * (1) perf_addr_filters_apply(): adjusting filters' offsets based on |
| 2695 | * pre-existing mappings, called once when new filters arrive via SET_FILTER |
| 2696 | * ioctl; |
| 2697 | * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly |
| 2698 | * registered mapping, called for every new mmap(), with mm::mmap_sem down |
| 2699 | * for reading; |
| 2700 | * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process |
| 2701 | * of exec. |
| 2702 | */ |
| 2703 | void perf_event_addr_filters_sync(struct perf_event *event) |
| 2704 | { |
| 2705 | struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); |
| 2706 | |
| 2707 | if (!has_addr_filter(event)) |
| 2708 | return; |
| 2709 | |
| 2710 | raw_spin_lock(&ifh->lock); |
| 2711 | if (event->addr_filters_gen != event->hw.addr_filters_gen) { |
| 2712 | event->pmu->addr_filters_sync(event); |
| 2713 | event->hw.addr_filters_gen = event->addr_filters_gen; |
| 2714 | } |
| 2715 | raw_spin_unlock(&ifh->lock); |
| 2716 | } |
| 2717 | EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync); |
| 2718 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 2719 | static int _perf_event_refresh(struct perf_event *event, int refresh) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2720 | { |
| 2721 | /* |
| 2722 | * not supported on inherited events |
| 2723 | */ |
Franck Bui-Huu | 2e939d1 | 2010-11-23 16:21:44 +0100 | [diff] [blame] | 2724 | if (event->attr.inherit || !is_sampling_event(event)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2725 | return -EINVAL; |
| 2726 | |
| 2727 | atomic_add(refresh, &event->event_limit); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 2728 | _perf_event_enable(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2729 | |
| 2730 | return 0; |
| 2731 | } |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 2732 | |
| 2733 | /* |
| 2734 | * See perf_event_disable() |
| 2735 | */ |
| 2736 | int perf_event_refresh(struct perf_event *event, int refresh) |
| 2737 | { |
| 2738 | struct perf_event_context *ctx; |
| 2739 | int ret; |
| 2740 | |
| 2741 | ctx = perf_event_ctx_lock(event); |
| 2742 | ret = _perf_event_refresh(event, refresh); |
| 2743 | perf_event_ctx_unlock(event, ctx); |
| 2744 | |
| 2745 | return ret; |
| 2746 | } |
Avi Kivity | 26ca5c1 | 2011-06-29 18:42:37 +0300 | [diff] [blame] | 2747 | EXPORT_SYMBOL_GPL(perf_event_refresh); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2748 | |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 2749 | static void ctx_sched_out(struct perf_event_context *ctx, |
| 2750 | struct perf_cpu_context *cpuctx, |
| 2751 | enum event_type_t event_type) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2752 | { |
Peter Zijlstra | db24d33 | 2011-04-09 21:17:45 +0200 | [diff] [blame] | 2753 | int is_active = ctx->is_active; |
Peter Zijlstra | c994d61 | 2016-01-08 09:20:23 +0100 | [diff] [blame] | 2754 | struct perf_event *event; |
| 2755 | |
| 2756 | lockdep_assert_held(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2757 | |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 2758 | if (likely(!ctx->nr_events)) { |
| 2759 | /* |
| 2760 | * See __perf_remove_from_context(). |
| 2761 | */ |
| 2762 | WARN_ON_ONCE(ctx->is_active); |
| 2763 | if (ctx->task) |
| 2764 | WARN_ON_ONCE(cpuctx->task_ctx); |
| 2765 | return; |
| 2766 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2767 | |
Peter Zijlstra | db24d33 | 2011-04-09 21:17:45 +0200 | [diff] [blame] | 2768 | ctx->is_active &= ~event_type; |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 2769 | if (!(ctx->is_active & EVENT_ALL)) |
| 2770 | ctx->is_active = 0; |
| 2771 | |
Peter Zijlstra | 63e30d3 | 2016-01-08 11:39:10 +0100 | [diff] [blame] | 2772 | if (ctx->task) { |
| 2773 | WARN_ON_ONCE(cpuctx->task_ctx != ctx); |
| 2774 | if (!ctx->is_active) |
| 2775 | cpuctx->task_ctx = NULL; |
| 2776 | } |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 2777 | |
Peter Zijlstra | 8fdc653 | 2016-03-29 09:26:44 +0200 | [diff] [blame] | 2778 | /* |
| 2779 | * Always update time if it was set; not only when it changes. |
| 2780 | * Otherwise we can 'forget' to update time for any but the last |
| 2781 | * context we sched out. For example: |
| 2782 | * |
| 2783 | * ctx_sched_out(.event_type = EVENT_FLEXIBLE) |
| 2784 | * ctx_sched_out(.event_type = EVENT_PINNED) |
| 2785 | * |
| 2786 | * would only update time for the pinned events. |
| 2787 | */ |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 2788 | if (is_active & EVENT_TIME) { |
| 2789 | /* update (and stop) ctx time */ |
| 2790 | update_context_time(ctx); |
| 2791 | update_cgrp_time_from_cpuctx(cpuctx); |
| 2792 | } |
| 2793 | |
Peter Zijlstra | 8fdc653 | 2016-03-29 09:26:44 +0200 | [diff] [blame] | 2794 | is_active ^= ctx->is_active; /* changed bits */ |
| 2795 | |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 2796 | if (!ctx->nr_active || !(is_active & EVENT_ALL)) |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 2797 | return; |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 2798 | |
Peter Zijlstra | 075e0b0 | 2011-04-09 21:17:40 +0200 | [diff] [blame] | 2799 | perf_pmu_disable(ctx->pmu); |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 2800 | if (is_active & EVENT_PINNED) { |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 2801 | list_for_each_entry(event, &ctx->pinned_groups, group_entry) |
| 2802 | group_sched_out(event, cpuctx, ctx); |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 2803 | } |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 2804 | |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 2805 | if (is_active & EVENT_FLEXIBLE) { |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 2806 | list_for_each_entry(event, &ctx->flexible_groups, group_entry) |
Xiao Guangrong | 8c9ed8e | 2009-09-25 13:51:17 +0800 | [diff] [blame] | 2807 | group_sched_out(event, cpuctx, ctx); |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 2808 | } |
Peter Zijlstra | 1b9a644 | 2010-09-07 18:32:22 +0200 | [diff] [blame] | 2809 | perf_pmu_enable(ctx->pmu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2810 | } |
| 2811 | |
| 2812 | /* |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2813 | * Test whether two contexts are equivalent, i.e. whether they have both been |
| 2814 | * cloned from the same version of the same context. |
| 2815 | * |
| 2816 | * Equivalence is measured using a generation number in the context that is |
| 2817 | * incremented on each modification to it; see unclone_ctx(), list_add_event() |
| 2818 | * and list_del_event(). |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2819 | */ |
| 2820 | static int context_equiv(struct perf_event_context *ctx1, |
| 2821 | struct perf_event_context *ctx2) |
| 2822 | { |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 2823 | lockdep_assert_held(&ctx1->lock); |
| 2824 | lockdep_assert_held(&ctx2->lock); |
| 2825 | |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2826 | /* Pinning disables the swap optimization */ |
| 2827 | if (ctx1->pin_count || ctx2->pin_count) |
| 2828 | return 0; |
| 2829 | |
| 2830 | /* If ctx1 is the parent of ctx2 */ |
| 2831 | if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen) |
| 2832 | return 1; |
| 2833 | |
| 2834 | /* If ctx2 is the parent of ctx1 */ |
| 2835 | if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation) |
| 2836 | return 1; |
| 2837 | |
| 2838 | /* |
| 2839 | * If ctx1 and ctx2 have the same parent; we flatten the parent |
| 2840 | * hierarchy, see perf_event_init_context(). |
| 2841 | */ |
| 2842 | if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx && |
| 2843 | ctx1->parent_gen == ctx2->parent_gen) |
| 2844 | return 1; |
| 2845 | |
| 2846 | /* Unmatched */ |
| 2847 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2848 | } |
| 2849 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2850 | static void __perf_event_sync_stat(struct perf_event *event, |
| 2851 | struct perf_event *next_event) |
| 2852 | { |
| 2853 | u64 value; |
| 2854 | |
| 2855 | if (!event->attr.inherit_stat) |
| 2856 | return; |
| 2857 | |
| 2858 | /* |
| 2859 | * Update the event value, we cannot use perf_event_read() |
| 2860 | * because we're in the middle of a context switch and have IRQs |
| 2861 | * disabled, which upsets smp_call_function_single(), however |
| 2862 | * we know the event must be on the current CPU, therefore we |
| 2863 | * don't need to use it. |
| 2864 | */ |
| 2865 | switch (event->state) { |
| 2866 | case PERF_EVENT_STATE_ACTIVE: |
Peter Zijlstra | 3dbebf1 | 2009-11-20 22:19:52 +0100 | [diff] [blame] | 2867 | event->pmu->read(event); |
| 2868 | /* fall-through */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2869 | |
| 2870 | case PERF_EVENT_STATE_INACTIVE: |
| 2871 | update_event_times(event); |
| 2872 | break; |
| 2873 | |
| 2874 | default: |
| 2875 | break; |
| 2876 | } |
| 2877 | |
| 2878 | /* |
| 2879 | * In order to keep per-task stats reliable we need to flip the event |
| 2880 | * values when we flip the contexts. |
| 2881 | */ |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 2882 | value = local64_read(&next_event->count); |
| 2883 | value = local64_xchg(&event->count, value); |
| 2884 | local64_set(&next_event->count, value); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2885 | |
| 2886 | swap(event->total_time_enabled, next_event->total_time_enabled); |
| 2887 | swap(event->total_time_running, next_event->total_time_running); |
| 2888 | |
| 2889 | /* |
| 2890 | * Since we swizzled the values, update the user visible data too. |
| 2891 | */ |
| 2892 | perf_event_update_userpage(event); |
| 2893 | perf_event_update_userpage(next_event); |
| 2894 | } |
| 2895 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2896 | static void perf_event_sync_stat(struct perf_event_context *ctx, |
| 2897 | struct perf_event_context *next_ctx) |
| 2898 | { |
| 2899 | struct perf_event *event, *next_event; |
| 2900 | |
| 2901 | if (!ctx->nr_stat) |
| 2902 | return; |
| 2903 | |
Peter Zijlstra | 02ffdbc | 2009-11-20 22:19:50 +0100 | [diff] [blame] | 2904 | update_context_time(ctx); |
| 2905 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2906 | event = list_first_entry(&ctx->event_list, |
| 2907 | struct perf_event, event_entry); |
| 2908 | |
| 2909 | next_event = list_first_entry(&next_ctx->event_list, |
| 2910 | struct perf_event, event_entry); |
| 2911 | |
| 2912 | while (&event->event_entry != &ctx->event_list && |
| 2913 | &next_event->event_entry != &next_ctx->event_list) { |
| 2914 | |
| 2915 | __perf_event_sync_stat(event, next_event); |
| 2916 | |
| 2917 | event = list_next_entry(event, event_entry); |
| 2918 | next_event = list_next_entry(next_event, event_entry); |
| 2919 | } |
| 2920 | } |
| 2921 | |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2922 | static void perf_event_context_sched_out(struct task_struct *task, int ctxn, |
| 2923 | struct task_struct *next) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2924 | { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 2925 | struct perf_event_context *ctx = task->perf_event_ctxp[ctxn]; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2926 | struct perf_event_context *next_ctx; |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2927 | struct perf_event_context *parent, *next_parent; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 2928 | struct perf_cpu_context *cpuctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2929 | int do_switch = 1; |
| 2930 | |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 2931 | if (likely(!ctx)) |
| 2932 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2933 | |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 2934 | cpuctx = __get_cpu_context(ctx); |
| 2935 | if (!cpuctx->task_ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2936 | return; |
| 2937 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2938 | rcu_read_lock(); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 2939 | next_ctx = next->perf_event_ctxp[ctxn]; |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2940 | if (!next_ctx) |
| 2941 | goto unlock; |
| 2942 | |
| 2943 | parent = rcu_dereference(ctx->parent_ctx); |
| 2944 | next_parent = rcu_dereference(next_ctx->parent_ctx); |
| 2945 | |
| 2946 | /* If neither context have a parent context; they cannot be clones. */ |
Jiri Olsa | 802c8a6 | 2014-09-12 13:18:28 +0200 | [diff] [blame] | 2947 | if (!parent && !next_parent) |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2948 | goto unlock; |
| 2949 | |
| 2950 | if (next_parent == ctx || next_ctx == parent || next_parent == parent) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2951 | /* |
| 2952 | * Looks like the two contexts are clones, so we might be |
| 2953 | * able to optimize the context switch. We lock both |
| 2954 | * contexts and check that they are clones under the |
| 2955 | * lock (including re-checking that neither has been |
| 2956 | * uncloned in the meantime). It doesn't matter which |
| 2957 | * order we take the locks because no other cpu could |
| 2958 | * be trying to lock both of these tasks. |
| 2959 | */ |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 2960 | raw_spin_lock(&ctx->lock); |
| 2961 | raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2962 | if (context_equiv(ctx, next_ctx)) { |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2963 | WRITE_ONCE(ctx->task, next); |
| 2964 | WRITE_ONCE(next_ctx->task, task); |
Yan, Zheng | 5a158c3 | 2014-11-04 21:56:02 -0500 | [diff] [blame] | 2965 | |
| 2966 | swap(ctx->task_ctx_data, next_ctx->task_ctx_data); |
| 2967 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2968 | /* |
| 2969 | * RCU_INIT_POINTER here is safe because we've not |
| 2970 | * modified the ctx and the above modification of |
| 2971 | * ctx->task and ctx->task_ctx_data are immaterial |
| 2972 | * since those values are always verified under |
| 2973 | * ctx->lock which we're now holding. |
| 2974 | */ |
| 2975 | RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx); |
| 2976 | RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx); |
| 2977 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2978 | do_switch = 0; |
| 2979 | |
| 2980 | perf_event_sync_stat(ctx, next_ctx); |
| 2981 | } |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 2982 | raw_spin_unlock(&next_ctx->lock); |
| 2983 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2984 | } |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2985 | unlock: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2986 | rcu_read_unlock(); |
| 2987 | |
| 2988 | if (do_switch) { |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 2989 | raw_spin_lock(&ctx->lock); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2990 | task_ctx_sched_out(cpuctx, ctx, EVENT_ALL); |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 2991 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2992 | } |
| 2993 | } |
| 2994 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 2995 | static DEFINE_PER_CPU(struct list_head, sched_cb_list); |
| 2996 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 2997 | void perf_sched_cb_dec(struct pmu *pmu) |
| 2998 | { |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 2999 | struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context); |
| 3000 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3001 | this_cpu_dec(perf_sched_cb_usages); |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3002 | |
| 3003 | if (!--cpuctx->sched_cb_usage) |
| 3004 | list_del(&cpuctx->sched_cb_entry); |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3005 | } |
| 3006 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3007 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3008 | void perf_sched_cb_inc(struct pmu *pmu) |
| 3009 | { |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3010 | struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context); |
| 3011 | |
| 3012 | if (!cpuctx->sched_cb_usage++) |
| 3013 | list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list)); |
| 3014 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3015 | this_cpu_inc(perf_sched_cb_usages); |
| 3016 | } |
| 3017 | |
| 3018 | /* |
| 3019 | * This function provides the context switch callback to the lower code |
| 3020 | * layer. It is invoked ONLY when the context switch callback is enabled. |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 3021 | * |
| 3022 | * This callback is relevant even to per-cpu events; for example multi event |
| 3023 | * PEBS requires this to provide PID/TID information. This requires we flush |
| 3024 | * all queued PEBS records before we context switch to a new task. |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3025 | */ |
| 3026 | static void perf_pmu_sched_task(struct task_struct *prev, |
| 3027 | struct task_struct *next, |
| 3028 | bool sched_in) |
| 3029 | { |
| 3030 | struct perf_cpu_context *cpuctx; |
| 3031 | struct pmu *pmu; |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3032 | |
| 3033 | if (prev == next) |
| 3034 | return; |
| 3035 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3036 | list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) { |
David Carrillo-Cisneros | 1fd7e41 | 2017-01-18 11:24:54 -0800 | [diff] [blame] | 3037 | pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */ |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3038 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3039 | if (WARN_ON_ONCE(!pmu->sched_task)) |
| 3040 | continue; |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3041 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3042 | perf_ctx_lock(cpuctx, cpuctx->task_ctx); |
| 3043 | perf_pmu_disable(pmu); |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3044 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3045 | pmu->sched_task(cpuctx->task_ctx, sched_in); |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3046 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3047 | perf_pmu_enable(pmu); |
| 3048 | perf_ctx_unlock(cpuctx, cpuctx->task_ctx); |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3049 | } |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3050 | } |
| 3051 | |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 3052 | static void perf_event_switch(struct task_struct *task, |
| 3053 | struct task_struct *next_prev, bool sched_in); |
| 3054 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3055 | #define for_each_task_context_nr(ctxn) \ |
| 3056 | for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++) |
| 3057 | |
| 3058 | /* |
| 3059 | * Called from scheduler to remove the events of the current task, |
| 3060 | * with interrupts disabled. |
| 3061 | * |
| 3062 | * We stop each event and update the event value in event->count. |
| 3063 | * |
| 3064 | * This does not protect us against NMI, but disable() |
| 3065 | * sets the disabled bit in the control field of event _before_ |
| 3066 | * accessing the event control register. If a NMI hits, then it will |
| 3067 | * not restart the event. |
| 3068 | */ |
Jiri Olsa | ab0cce5 | 2012-05-23 13:13:02 +0200 | [diff] [blame] | 3069 | void __perf_event_task_sched_out(struct task_struct *task, |
| 3070 | struct task_struct *next) |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3071 | { |
| 3072 | int ctxn; |
| 3073 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3074 | if (__this_cpu_read(perf_sched_cb_usages)) |
| 3075 | perf_pmu_sched_task(task, next, false); |
| 3076 | |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 3077 | if (atomic_read(&nr_switch_events)) |
| 3078 | perf_event_switch(task, next, false); |
| 3079 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3080 | for_each_task_context_nr(ctxn) |
| 3081 | perf_event_context_sched_out(task, ctxn, next); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3082 | |
| 3083 | /* |
| 3084 | * if cgroup events exist on this CPU, then we need |
| 3085 | * to check if we have to switch out PMU state. |
| 3086 | * cgroup event are system-wide mode only |
| 3087 | */ |
Christoph Lameter | 4a32fea | 2014-08-17 12:30:27 -0500 | [diff] [blame] | 3088 | if (atomic_read(this_cpu_ptr(&perf_cgroup_events))) |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 3089 | perf_cgroup_sched_out(task, next); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3090 | } |
| 3091 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3092 | /* |
| 3093 | * Called with IRQs disabled |
| 3094 | */ |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3095 | static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx, |
| 3096 | enum event_type_t event_type) |
| 3097 | { |
| 3098 | ctx_sched_out(&cpuctx->ctx, cpuctx, event_type); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3099 | } |
| 3100 | |
| 3101 | static void |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3102 | ctx_pinned_sched_in(struct perf_event_context *ctx, |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3103 | struct perf_cpu_context *cpuctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3104 | { |
| 3105 | struct perf_event *event; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3106 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 3107 | list_for_each_entry(event, &ctx->pinned_groups, group_entry) { |
| 3108 | if (event->state <= PERF_EVENT_STATE_OFF) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3109 | continue; |
Stephane Eranian | 5632ab1 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 3110 | if (!event_filter_match(event)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3111 | continue; |
| 3112 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3113 | /* may need to reset tstamp_enabled */ |
| 3114 | if (is_cgroup_event(event)) |
| 3115 | perf_cgroup_mark_enabled(event, ctx); |
| 3116 | |
Xiao Guangrong | 8c9ed8e | 2009-09-25 13:51:17 +0800 | [diff] [blame] | 3117 | if (group_can_go_on(event, cpuctx, 1)) |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3118 | group_sched_in(event, cpuctx, ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3119 | |
| 3120 | /* |
| 3121 | * If this pinned group hasn't been scheduled, |
| 3122 | * put it in error state. |
| 3123 | */ |
| 3124 | if (event->state == PERF_EVENT_STATE_INACTIVE) { |
| 3125 | update_group_times(event); |
| 3126 | event->state = PERF_EVENT_STATE_ERROR; |
| 3127 | } |
| 3128 | } |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3129 | } |
| 3130 | |
| 3131 | static void |
| 3132 | ctx_flexible_sched_in(struct perf_event_context *ctx, |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3133 | struct perf_cpu_context *cpuctx) |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3134 | { |
| 3135 | struct perf_event *event; |
| 3136 | int can_add_hw = 1; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3137 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 3138 | list_for_each_entry(event, &ctx->flexible_groups, group_entry) { |
| 3139 | /* Ignore events in OFF or ERROR state */ |
| 3140 | if (event->state <= PERF_EVENT_STATE_OFF) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3141 | continue; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3142 | /* |
| 3143 | * Listen to the 'cpu' scheduling filter constraint |
| 3144 | * of events: |
| 3145 | */ |
Stephane Eranian | 5632ab1 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 3146 | if (!event_filter_match(event)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3147 | continue; |
| 3148 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3149 | /* may need to reset tstamp_enabled */ |
| 3150 | if (is_cgroup_event(event)) |
| 3151 | perf_cgroup_mark_enabled(event, ctx); |
| 3152 | |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 3153 | if (group_can_go_on(event, cpuctx, can_add_hw)) { |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3154 | if (group_sched_in(event, cpuctx, ctx)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3155 | can_add_hw = 0; |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 3156 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3157 | } |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3158 | } |
| 3159 | |
| 3160 | static void |
| 3161 | ctx_sched_in(struct perf_event_context *ctx, |
| 3162 | struct perf_cpu_context *cpuctx, |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3163 | enum event_type_t event_type, |
| 3164 | struct task_struct *task) |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3165 | { |
Peter Zijlstra | db24d33 | 2011-04-09 21:17:45 +0200 | [diff] [blame] | 3166 | int is_active = ctx->is_active; |
Peter Zijlstra | c994d61 | 2016-01-08 09:20:23 +0100 | [diff] [blame] | 3167 | u64 now; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3168 | |
Peter Zijlstra | c994d61 | 2016-01-08 09:20:23 +0100 | [diff] [blame] | 3169 | lockdep_assert_held(&ctx->lock); |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3170 | |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3171 | if (likely(!ctx->nr_events)) |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 3172 | return; |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3173 | |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 3174 | ctx->is_active |= (event_type | EVENT_TIME); |
Peter Zijlstra | 63e30d3 | 2016-01-08 11:39:10 +0100 | [diff] [blame] | 3175 | if (ctx->task) { |
| 3176 | if (!is_active) |
| 3177 | cpuctx->task_ctx = ctx; |
| 3178 | else |
| 3179 | WARN_ON_ONCE(cpuctx->task_ctx != ctx); |
| 3180 | } |
| 3181 | |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 3182 | is_active ^= ctx->is_active; /* changed bits */ |
| 3183 | |
| 3184 | if (is_active & EVENT_TIME) { |
| 3185 | /* start ctx time */ |
| 3186 | now = perf_clock(); |
| 3187 | ctx->timestamp = now; |
| 3188 | perf_cgroup_set_timestamp(task, ctx); |
| 3189 | } |
| 3190 | |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3191 | /* |
| 3192 | * First go through the list and put on any pinned groups |
| 3193 | * in order to give them the best chance of going on. |
| 3194 | */ |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 3195 | if (is_active & EVENT_PINNED) |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3196 | ctx_pinned_sched_in(ctx, cpuctx); |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3197 | |
| 3198 | /* Then walk through the lower prio flexible groups */ |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 3199 | if (is_active & EVENT_FLEXIBLE) |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3200 | ctx_flexible_sched_in(ctx, cpuctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3201 | } |
| 3202 | |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3203 | static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx, |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3204 | enum event_type_t event_type, |
| 3205 | struct task_struct *task) |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3206 | { |
| 3207 | struct perf_event_context *ctx = &cpuctx->ctx; |
| 3208 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3209 | ctx_sched_in(ctx, cpuctx, event_type, task); |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3210 | } |
| 3211 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3212 | static void perf_event_context_sched_in(struct perf_event_context *ctx, |
| 3213 | struct task_struct *task) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3214 | { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3215 | struct perf_cpu_context *cpuctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3216 | |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 3217 | cpuctx = __get_cpu_context(ctx); |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3218 | if (cpuctx->task_ctx == ctx) |
| 3219 | return; |
| 3220 | |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 3221 | perf_ctx_lock(cpuctx, ctx); |
leilei.lin | fdccc3f | 2017-08-09 08:29:21 +0800 | [diff] [blame] | 3222 | /* |
| 3223 | * We must check ctx->nr_events while holding ctx->lock, such |
| 3224 | * that we serialize against perf_install_in_context(). |
| 3225 | */ |
| 3226 | if (!ctx->nr_events) |
| 3227 | goto unlock; |
| 3228 | |
Peter Zijlstra | 1b9a644 | 2010-09-07 18:32:22 +0200 | [diff] [blame] | 3229 | perf_pmu_disable(ctx->pmu); |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3230 | /* |
| 3231 | * We want to keep the following priority order: |
| 3232 | * cpu pinned (that don't need to move), task pinned, |
| 3233 | * cpu flexible, task flexible. |
Alexander Shishkin | fe45baf | 2017-01-19 18:43:29 +0200 | [diff] [blame] | 3234 | * |
| 3235 | * However, if task's ctx is not carrying any pinned |
| 3236 | * events, no need to flip the cpuctx's events around. |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3237 | */ |
Alexander Shishkin | fe45baf | 2017-01-19 18:43:29 +0200 | [diff] [blame] | 3238 | if (!list_empty(&ctx->pinned_groups)) |
| 3239 | cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE); |
Peter Zijlstra | 63e30d3 | 2016-01-08 11:39:10 +0100 | [diff] [blame] | 3240 | perf_event_sched_in(cpuctx, ctx, task); |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 3241 | perf_pmu_enable(ctx->pmu); |
leilei.lin | fdccc3f | 2017-08-09 08:29:21 +0800 | [diff] [blame] | 3242 | |
| 3243 | unlock: |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 3244 | perf_ctx_unlock(cpuctx, ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3245 | } |
| 3246 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3247 | /* |
| 3248 | * Called from scheduler to add the events of the current task |
| 3249 | * with interrupts disabled. |
| 3250 | * |
| 3251 | * We restore the event value and then enable it. |
| 3252 | * |
| 3253 | * This does not protect us against NMI, but enable() |
| 3254 | * sets the enabled bit in the control field of event _before_ |
| 3255 | * accessing the event control register. If a NMI hits, then it will |
| 3256 | * keep the event running. |
| 3257 | */ |
Jiri Olsa | ab0cce5 | 2012-05-23 13:13:02 +0200 | [diff] [blame] | 3258 | void __perf_event_task_sched_in(struct task_struct *prev, |
| 3259 | struct task_struct *task) |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3260 | { |
| 3261 | struct perf_event_context *ctx; |
| 3262 | int ctxn; |
| 3263 | |
Peter Zijlstra | 7e41d17 | 2016-01-08 09:21:40 +0100 | [diff] [blame] | 3264 | /* |
| 3265 | * If cgroup events exist on this CPU, then we need to check if we have |
| 3266 | * to switch in PMU state; cgroup event are system-wide mode only. |
| 3267 | * |
| 3268 | * Since cgroup events are CPU events, we must schedule these in before |
| 3269 | * we schedule in the task events. |
| 3270 | */ |
| 3271 | if (atomic_read(this_cpu_ptr(&perf_cgroup_events))) |
| 3272 | perf_cgroup_sched_in(prev, task); |
| 3273 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3274 | for_each_task_context_nr(ctxn) { |
| 3275 | ctx = task->perf_event_ctxp[ctxn]; |
| 3276 | if (likely(!ctx)) |
| 3277 | continue; |
| 3278 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3279 | perf_event_context_sched_in(ctx, task); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3280 | } |
Stephane Eranian | d010b33 | 2012-02-09 23:21:00 +0100 | [diff] [blame] | 3281 | |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 3282 | if (atomic_read(&nr_switch_events)) |
| 3283 | perf_event_switch(task, prev, true); |
| 3284 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3285 | if (__this_cpu_read(perf_sched_cb_usages)) |
| 3286 | perf_pmu_sched_task(prev, task, true); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3287 | } |
| 3288 | |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3289 | static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count) |
| 3290 | { |
| 3291 | u64 frequency = event->attr.sample_freq; |
| 3292 | u64 sec = NSEC_PER_SEC; |
| 3293 | u64 divisor, dividend; |
| 3294 | |
| 3295 | int count_fls, nsec_fls, frequency_fls, sec_fls; |
| 3296 | |
| 3297 | count_fls = fls64(count); |
| 3298 | nsec_fls = fls64(nsec); |
| 3299 | frequency_fls = fls64(frequency); |
| 3300 | sec_fls = 30; |
| 3301 | |
| 3302 | /* |
| 3303 | * We got @count in @nsec, with a target of sample_freq HZ |
| 3304 | * the target period becomes: |
| 3305 | * |
| 3306 | * @count * 10^9 |
| 3307 | * period = ------------------- |
| 3308 | * @nsec * sample_freq |
| 3309 | * |
| 3310 | */ |
| 3311 | |
| 3312 | /* |
| 3313 | * Reduce accuracy by one bit such that @a and @b converge |
| 3314 | * to a similar magnitude. |
| 3315 | */ |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3316 | #define REDUCE_FLS(a, b) \ |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3317 | do { \ |
| 3318 | if (a##_fls > b##_fls) { \ |
| 3319 | a >>= 1; \ |
| 3320 | a##_fls--; \ |
| 3321 | } else { \ |
| 3322 | b >>= 1; \ |
| 3323 | b##_fls--; \ |
| 3324 | } \ |
| 3325 | } while (0) |
| 3326 | |
| 3327 | /* |
| 3328 | * Reduce accuracy until either term fits in a u64, then proceed with |
| 3329 | * the other, so that finally we can do a u64/u64 division. |
| 3330 | */ |
| 3331 | while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) { |
| 3332 | REDUCE_FLS(nsec, frequency); |
| 3333 | REDUCE_FLS(sec, count); |
| 3334 | } |
| 3335 | |
| 3336 | if (count_fls + sec_fls > 64) { |
| 3337 | divisor = nsec * frequency; |
| 3338 | |
| 3339 | while (count_fls + sec_fls > 64) { |
| 3340 | REDUCE_FLS(count, sec); |
| 3341 | divisor >>= 1; |
| 3342 | } |
| 3343 | |
| 3344 | dividend = count * sec; |
| 3345 | } else { |
| 3346 | dividend = count * sec; |
| 3347 | |
| 3348 | while (nsec_fls + frequency_fls > 64) { |
| 3349 | REDUCE_FLS(nsec, frequency); |
| 3350 | dividend >>= 1; |
| 3351 | } |
| 3352 | |
| 3353 | divisor = nsec * frequency; |
| 3354 | } |
| 3355 | |
Peter Zijlstra | f6ab91ad | 2010-06-04 15:18:01 +0200 | [diff] [blame] | 3356 | if (!divisor) |
| 3357 | return dividend; |
| 3358 | |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3359 | return div64_u64(dividend, divisor); |
| 3360 | } |
| 3361 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3362 | static DEFINE_PER_CPU(int, perf_throttled_count); |
| 3363 | static DEFINE_PER_CPU(u64, perf_throttled_seq); |
| 3364 | |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3365 | static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3366 | { |
| 3367 | struct hw_perf_event *hwc = &event->hw; |
Peter Zijlstra | f6ab91ad | 2010-06-04 15:18:01 +0200 | [diff] [blame] | 3368 | s64 period, sample_period; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3369 | s64 delta; |
| 3370 | |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3371 | period = perf_calculate_period(event, nsec, count); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3372 | |
| 3373 | delta = (s64)(period - hwc->sample_period); |
| 3374 | delta = (delta + 7) / 8; /* low pass filter */ |
| 3375 | |
| 3376 | sample_period = hwc->sample_period + delta; |
| 3377 | |
| 3378 | if (!sample_period) |
| 3379 | sample_period = 1; |
| 3380 | |
| 3381 | hwc->sample_period = sample_period; |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3382 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 3383 | if (local64_read(&hwc->period_left) > 8*sample_period) { |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3384 | if (disable) |
| 3385 | event->pmu->stop(event, PERF_EF_UPDATE); |
| 3386 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 3387 | local64_set(&hwc->period_left, 0); |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3388 | |
| 3389 | if (disable) |
| 3390 | event->pmu->start(event, PERF_EF_RELOAD); |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3391 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3392 | } |
| 3393 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3394 | /* |
| 3395 | * combine freq adjustment with unthrottling to avoid two passes over the |
| 3396 | * events. At the same time, make sure, having freq events does not change |
| 3397 | * the rate of unthrottling as that would introduce bias. |
| 3398 | */ |
| 3399 | static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx, |
| 3400 | int needs_unthr) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3401 | { |
| 3402 | struct perf_event *event; |
| 3403 | struct hw_perf_event *hwc; |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3404 | u64 now, period = TICK_NSEC; |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3405 | s64 delta; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3406 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3407 | /* |
| 3408 | * only need to iterate over all events iff: |
| 3409 | * - context have events in frequency mode (needs freq adjust) |
| 3410 | * - there are events to unthrottle on this cpu |
| 3411 | */ |
| 3412 | if (!(ctx->nr_freq || needs_unthr)) |
Peter Zijlstra | 0f5a260 | 2011-11-16 14:38:16 +0100 | [diff] [blame] | 3413 | return; |
| 3414 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3415 | raw_spin_lock(&ctx->lock); |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3416 | perf_pmu_disable(ctx->pmu); |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3417 | |
Paul Mackerras | 03541f8 | 2009-10-14 16:58:03 +1100 | [diff] [blame] | 3418 | list_for_each_entry_rcu(event, &ctx->event_list, event_entry) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3419 | if (event->state != PERF_EVENT_STATE_ACTIVE) |
| 3420 | continue; |
| 3421 | |
Stephane Eranian | 5632ab1 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 3422 | if (!event_filter_match(event)) |
Peter Zijlstra | 5d27c23 | 2009-12-17 13:16:32 +0100 | [diff] [blame] | 3423 | continue; |
| 3424 | |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 3425 | perf_pmu_disable(event->pmu); |
| 3426 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3427 | hwc = &event->hw; |
| 3428 | |
Jiri Olsa | ae23bff | 2013-08-24 16:45:54 +0200 | [diff] [blame] | 3429 | if (hwc->interrupts == MAX_INTERRUPTS) { |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3430 | hwc->interrupts = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3431 | perf_log_throttle(event, 1); |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 3432 | event->pmu->start(event, 0); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3433 | } |
| 3434 | |
| 3435 | if (!event->attr.freq || !event->attr.sample_freq) |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 3436 | goto next; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3437 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3438 | /* |
| 3439 | * stop the event and update event->count |
| 3440 | */ |
| 3441 | event->pmu->stop(event, PERF_EF_UPDATE); |
| 3442 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 3443 | now = local64_read(&event->count); |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3444 | delta = now - hwc->freq_count_stamp; |
| 3445 | hwc->freq_count_stamp = now; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3446 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3447 | /* |
| 3448 | * restart the event |
| 3449 | * reload only if value has changed |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3450 | * we have stopped the event so tell that |
| 3451 | * to perf_adjust_period() to avoid stopping it |
| 3452 | * twice. |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3453 | */ |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3454 | if (delta > 0) |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3455 | perf_adjust_period(event, period, delta, false); |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3456 | |
| 3457 | event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0); |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 3458 | next: |
| 3459 | perf_pmu_enable(event->pmu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3460 | } |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3461 | |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3462 | perf_pmu_enable(ctx->pmu); |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3463 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3464 | } |
| 3465 | |
| 3466 | /* |
| 3467 | * Round-robin a context's events: |
| 3468 | */ |
| 3469 | static void rotate_ctx(struct perf_event_context *ctx) |
| 3470 | { |
Thomas Gleixner | dddd337 | 2010-11-24 10:05:55 +0100 | [diff] [blame] | 3471 | /* |
| 3472 | * Rotate the first entry last of non-pinned groups. Rotation might be |
| 3473 | * disabled by the inheritance code. |
| 3474 | */ |
| 3475 | if (!ctx->rotate_disable) |
| 3476 | list_rotate_left(&ctx->flexible_groups); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3477 | } |
| 3478 | |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 3479 | static int perf_rotate_context(struct perf_cpu_context *cpuctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3480 | { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3481 | struct perf_event_context *ctx = NULL; |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 3482 | int rotate = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3483 | |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 3484 | if (cpuctx->ctx.nr_events) { |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 3485 | if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active) |
| 3486 | rotate = 1; |
| 3487 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3488 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3489 | ctx = cpuctx->task_ctx; |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 3490 | if (ctx && ctx->nr_events) { |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 3491 | if (ctx->nr_events != ctx->nr_active) |
| 3492 | rotate = 1; |
| 3493 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3494 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3495 | if (!rotate) |
Peter Zijlstra | 0f5a260 | 2011-11-16 14:38:16 +0100 | [diff] [blame] | 3496 | goto done; |
| 3497 | |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 3498 | perf_ctx_lock(cpuctx, cpuctx->task_ctx); |
Peter Zijlstra | 1b9a644 | 2010-09-07 18:32:22 +0200 | [diff] [blame] | 3499 | perf_pmu_disable(cpuctx->ctx.pmu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3500 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3501 | cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE); |
| 3502 | if (ctx) |
| 3503 | ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE); |
Peter Zijlstra | d4944a0 | 2010-03-08 13:51:20 +0100 | [diff] [blame] | 3504 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3505 | rotate_ctx(&cpuctx->ctx); |
| 3506 | if (ctx) |
| 3507 | rotate_ctx(ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3508 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3509 | perf_event_sched_in(cpuctx, ctx, current); |
Peter Zijlstra | 0f5a260 | 2011-11-16 14:38:16 +0100 | [diff] [blame] | 3510 | |
| 3511 | perf_pmu_enable(cpuctx->ctx.pmu); |
| 3512 | perf_ctx_unlock(cpuctx, cpuctx->task_ctx); |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 3513 | done: |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 3514 | |
| 3515 | return rotate; |
Peter Zijlstra | e9d2b06 | 2010-09-17 11:28:50 +0200 | [diff] [blame] | 3516 | } |
| 3517 | |
| 3518 | void perf_event_task_tick(void) |
| 3519 | { |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 3520 | struct list_head *head = this_cpu_ptr(&active_ctx_list); |
| 3521 | struct perf_event_context *ctx, *tmp; |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3522 | int throttled; |
Peter Zijlstra | e9d2b06 | 2010-09-17 11:28:50 +0200 | [diff] [blame] | 3523 | |
| 3524 | WARN_ON(!irqs_disabled()); |
| 3525 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3526 | __this_cpu_inc(perf_throttled_seq); |
| 3527 | throttled = __this_cpu_xchg(perf_throttled_count, 0); |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 3528 | tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS); |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3529 | |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 3530 | list_for_each_entry_safe(ctx, tmp, head, active_ctx_list) |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3531 | perf_adjust_freq_unthr_context(ctx, throttled); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3532 | } |
| 3533 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 3534 | static int event_enable_on_exec(struct perf_event *event, |
| 3535 | struct perf_event_context *ctx) |
| 3536 | { |
| 3537 | if (!event->attr.enable_on_exec) |
| 3538 | return 0; |
| 3539 | |
| 3540 | event->attr.enable_on_exec = 0; |
| 3541 | if (event->state >= PERF_EVENT_STATE_INACTIVE) |
| 3542 | return 0; |
| 3543 | |
Peter Zijlstra | 1d9b482 | 2011-11-23 12:34:20 +0100 | [diff] [blame] | 3544 | __perf_event_mark_enabled(event); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 3545 | |
| 3546 | return 1; |
| 3547 | } |
| 3548 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3549 | /* |
| 3550 | * Enable all of a task's events that have been marked enable-on-exec. |
| 3551 | * This expects task == current. |
| 3552 | */ |
Peter Zijlstra | c127449 | 2015-12-10 20:57:40 +0100 | [diff] [blame] | 3553 | static void perf_event_enable_on_exec(int ctxn) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3554 | { |
Peter Zijlstra | c127449 | 2015-12-10 20:57:40 +0100 | [diff] [blame] | 3555 | struct perf_event_context *ctx, *clone_ctx = NULL; |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 3556 | enum event_type_t event_type = 0; |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3557 | struct perf_cpu_context *cpuctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3558 | struct perf_event *event; |
| 3559 | unsigned long flags; |
| 3560 | int enabled = 0; |
| 3561 | |
| 3562 | local_irq_save(flags); |
Peter Zijlstra | c127449 | 2015-12-10 20:57:40 +0100 | [diff] [blame] | 3563 | ctx = current->perf_event_ctxp[ctxn]; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3564 | if (!ctx || !ctx->nr_events) |
| 3565 | goto out; |
| 3566 | |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3567 | cpuctx = __get_cpu_context(ctx); |
| 3568 | perf_ctx_lock(cpuctx, ctx); |
Peter Zijlstra | 7fce250 | 2016-02-24 18:45:48 +0100 | [diff] [blame] | 3569 | ctx_sched_out(ctx, cpuctx, EVENT_TIME); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 3570 | list_for_each_entry(event, &ctx->event_list, event_entry) { |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3571 | enabled |= event_enable_on_exec(event, ctx); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 3572 | event_type |= get_event_type(event); |
| 3573 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3574 | |
| 3575 | /* |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3576 | * Unclone and reschedule this context if we enabled any event. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3577 | */ |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3578 | if (enabled) { |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 3579 | clone_ctx = unclone_ctx(ctx); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 3580 | ctx_resched(cpuctx, ctx, event_type); |
Peter Zijlstra | 7bbba0e | 2017-02-15 16:12:20 +0100 | [diff] [blame] | 3581 | } else { |
| 3582 | ctx_sched_in(ctx, cpuctx, EVENT_TIME, current); |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3583 | } |
| 3584 | perf_ctx_unlock(cpuctx, ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3585 | |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 3586 | out: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3587 | local_irq_restore(flags); |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 3588 | |
| 3589 | if (clone_ctx) |
| 3590 | put_ctx(clone_ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3591 | } |
| 3592 | |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3593 | struct perf_read_data { |
| 3594 | struct perf_event *event; |
| 3595 | bool group; |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 3596 | int ret; |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3597 | }; |
| 3598 | |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3599 | static int __perf_event_read_cpu(struct perf_event *event, int event_cpu) |
David Carrillo-Cisneros | d6a2f903 | 2016-08-17 13:55:06 -0700 | [diff] [blame] | 3600 | { |
David Carrillo-Cisneros | d6a2f903 | 2016-08-17 13:55:06 -0700 | [diff] [blame] | 3601 | u16 local_pkg, event_pkg; |
| 3602 | |
| 3603 | if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) { |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3604 | int local_cpu = smp_processor_id(); |
| 3605 | |
| 3606 | event_pkg = topology_physical_package_id(event_cpu); |
| 3607 | local_pkg = topology_physical_package_id(local_cpu); |
David Carrillo-Cisneros | d6a2f903 | 2016-08-17 13:55:06 -0700 | [diff] [blame] | 3608 | |
| 3609 | if (event_pkg == local_pkg) |
| 3610 | return local_cpu; |
| 3611 | } |
| 3612 | |
| 3613 | return event_cpu; |
| 3614 | } |
| 3615 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3616 | /* |
| 3617 | * Cross CPU call to read the hardware event |
| 3618 | */ |
| 3619 | static void __perf_event_read(void *info) |
| 3620 | { |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3621 | struct perf_read_data *data = info; |
| 3622 | struct perf_event *sub, *event = data->event; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3623 | struct perf_event_context *ctx = event->ctx; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 3624 | struct perf_cpu_context *cpuctx = __get_cpu_context(ctx); |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3625 | struct pmu *pmu = event->pmu; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3626 | |
| 3627 | /* |
| 3628 | * If this is a task context, we need to check whether it is |
| 3629 | * the current task context of this cpu. If not it has been |
| 3630 | * scheduled out before the smp call arrived. In that case |
| 3631 | * event->count would have been updated to a recent sample |
| 3632 | * when the event was scheduled out. |
| 3633 | */ |
| 3634 | if (ctx->task && cpuctx->task_ctx != ctx) |
| 3635 | return; |
| 3636 | |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3637 | raw_spin_lock(&ctx->lock); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3638 | if (ctx->is_active) { |
Peter Zijlstra | 542e72f | 2011-01-26 15:38:35 +0100 | [diff] [blame] | 3639 | update_context_time(ctx); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3640 | update_cgrp_time_from_event(event); |
| 3641 | } |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3642 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3643 | update_event_times(event); |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3644 | if (event->state != PERF_EVENT_STATE_ACTIVE) |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3645 | goto unlock; |
| 3646 | |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3647 | if (!data->group) { |
| 3648 | pmu->read(event); |
| 3649 | data->ret = 0; |
| 3650 | goto unlock; |
| 3651 | } |
| 3652 | |
| 3653 | pmu->start_txn(pmu, PERF_PMU_TXN_READ); |
| 3654 | |
| 3655 | pmu->read(event); |
| 3656 | |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3657 | list_for_each_entry(sub, &event->sibling_list, group_entry) { |
| 3658 | update_event_times(sub); |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3659 | if (sub->state == PERF_EVENT_STATE_ACTIVE) { |
| 3660 | /* |
| 3661 | * Use sibling's PMU rather than @event's since |
| 3662 | * sibling could be on different (eg: software) PMU. |
| 3663 | */ |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3664 | sub->pmu->read(sub); |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3665 | } |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3666 | } |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3667 | |
| 3668 | data->ret = pmu->commit_txn(pmu); |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3669 | |
| 3670 | unlock: |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3671 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3672 | } |
| 3673 | |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 3674 | static inline u64 perf_event_count(struct perf_event *event) |
| 3675 | { |
Vikas Shivappa | c39a0e2 | 2017-07-25 14:14:20 -0700 | [diff] [blame] | 3676 | return local64_read(&event->count) + atomic64_read(&event->child_count); |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 3677 | } |
| 3678 | |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3679 | /* |
| 3680 | * NMI-safe method to read a local event, that is an event that |
| 3681 | * is: |
| 3682 | * - either for the current task, or for this CPU |
| 3683 | * - does not have inherit set, for inherited task events |
| 3684 | * will not be local and we cannot read them atomically |
| 3685 | * - must not have a pmu::count method |
| 3686 | */ |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3687 | int perf_event_read_local(struct perf_event *event, u64 *value) |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3688 | { |
| 3689 | unsigned long flags; |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3690 | int ret = 0; |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3691 | |
| 3692 | /* |
| 3693 | * Disabling interrupts avoids all counter scheduling (context |
| 3694 | * switches, timer based rotation and IPIs). |
| 3695 | */ |
| 3696 | local_irq_save(flags); |
| 3697 | |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3698 | /* |
| 3699 | * It must not be an event with inherit set, we cannot read |
| 3700 | * all child counters from atomic context. |
| 3701 | */ |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3702 | if (event->attr.inherit) { |
| 3703 | ret = -EOPNOTSUPP; |
| 3704 | goto out; |
| 3705 | } |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3706 | |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3707 | /* If this is a per-task event, it must be for current */ |
| 3708 | if ((event->attach_state & PERF_ATTACH_TASK) && |
| 3709 | event->hw.target != current) { |
| 3710 | ret = -EINVAL; |
| 3711 | goto out; |
| 3712 | } |
| 3713 | |
| 3714 | /* If this is a per-CPU event, it must be for this CPU */ |
| 3715 | if (!(event->attach_state & PERF_ATTACH_TASK) && |
| 3716 | event->cpu != smp_processor_id()) { |
| 3717 | ret = -EINVAL; |
| 3718 | goto out; |
| 3719 | } |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3720 | |
| 3721 | /* |
| 3722 | * If the event is currently on this CPU, its either a per-task event, |
| 3723 | * or local to this CPU. Furthermore it means its ACTIVE (otherwise |
| 3724 | * oncpu == -1). |
| 3725 | */ |
| 3726 | if (event->oncpu == smp_processor_id()) |
| 3727 | event->pmu->read(event); |
| 3728 | |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3729 | *value = local64_read(&event->count); |
| 3730 | out: |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3731 | local_irq_restore(flags); |
| 3732 | |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3733 | return ret; |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3734 | } |
| 3735 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 3736 | static int perf_event_read(struct perf_event *event, bool group) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3737 | { |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3738 | int event_cpu, ret = 0; |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 3739 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3740 | /* |
| 3741 | * If event is enabled and currently active on a CPU, update the |
| 3742 | * value in the event structure: |
| 3743 | */ |
| 3744 | if (event->state == PERF_EVENT_STATE_ACTIVE) { |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3745 | struct perf_read_data data = { |
| 3746 | .event = event, |
| 3747 | .group = group, |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 3748 | .ret = 0, |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3749 | }; |
David Carrillo-Cisneros | d6a2f903 | 2016-08-17 13:55:06 -0700 | [diff] [blame] | 3750 | |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3751 | event_cpu = READ_ONCE(event->oncpu); |
| 3752 | if ((unsigned)event_cpu >= nr_cpu_ids) |
| 3753 | return 0; |
| 3754 | |
| 3755 | preempt_disable(); |
| 3756 | event_cpu = __perf_event_read_cpu(event, event_cpu); |
David Carrillo-Cisneros | d6a2f903 | 2016-08-17 13:55:06 -0700 | [diff] [blame] | 3757 | |
Peter Zijlstra | 5876314 | 2016-08-30 10:15:03 +0200 | [diff] [blame] | 3758 | /* |
| 3759 | * Purposely ignore the smp_call_function_single() return |
| 3760 | * value. |
| 3761 | * |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3762 | * If event_cpu isn't a valid CPU it means the event got |
Peter Zijlstra | 5876314 | 2016-08-30 10:15:03 +0200 | [diff] [blame] | 3763 | * scheduled out and that will have updated the event count. |
| 3764 | * |
| 3765 | * Therefore, either way, we'll have an up-to-date event count |
| 3766 | * after this. |
| 3767 | */ |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3768 | (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1); |
| 3769 | preempt_enable(); |
Peter Zijlstra | 5876314 | 2016-08-30 10:15:03 +0200 | [diff] [blame] | 3770 | ret = data.ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3771 | } else if (event->state == PERF_EVENT_STATE_INACTIVE) { |
Peter Zijlstra | 2b8988c | 2009-11-20 22:19:54 +0100 | [diff] [blame] | 3772 | struct perf_event_context *ctx = event->ctx; |
| 3773 | unsigned long flags; |
| 3774 | |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3775 | raw_spin_lock_irqsave(&ctx->lock, flags); |
Stephane Eranian | c530ccd | 2010-10-15 15:26:01 +0200 | [diff] [blame] | 3776 | /* |
| 3777 | * may read while context is not active |
| 3778 | * (e.g., thread is blocked), in that case |
| 3779 | * we cannot update context time |
| 3780 | */ |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3781 | if (ctx->is_active) { |
Stephane Eranian | c530ccd | 2010-10-15 15:26:01 +0200 | [diff] [blame] | 3782 | update_context_time(ctx); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3783 | update_cgrp_time_from_event(event); |
| 3784 | } |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3785 | if (group) |
| 3786 | update_group_times(event); |
| 3787 | else |
| 3788 | update_event_times(event); |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3789 | raw_spin_unlock_irqrestore(&ctx->lock, flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3790 | } |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 3791 | |
| 3792 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3793 | } |
| 3794 | |
| 3795 | /* |
| 3796 | * Initialize the perf_event context in a task_struct: |
| 3797 | */ |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 3798 | static void __perf_event_init_context(struct perf_event_context *ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3799 | { |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3800 | raw_spin_lock_init(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3801 | mutex_init(&ctx->mutex); |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 3802 | INIT_LIST_HEAD(&ctx->active_ctx_list); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 3803 | INIT_LIST_HEAD(&ctx->pinned_groups); |
| 3804 | INIT_LIST_HEAD(&ctx->flexible_groups); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3805 | INIT_LIST_HEAD(&ctx->event_list); |
| 3806 | atomic_set(&ctx->refcount, 1); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3807 | } |
| 3808 | |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 3809 | static struct perf_event_context * |
| 3810 | alloc_perf_context(struct pmu *pmu, struct task_struct *task) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3811 | { |
| 3812 | struct perf_event_context *ctx; |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 3813 | |
| 3814 | ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL); |
| 3815 | if (!ctx) |
| 3816 | return NULL; |
| 3817 | |
| 3818 | __perf_event_init_context(ctx); |
| 3819 | if (task) { |
| 3820 | ctx->task = task; |
| 3821 | get_task_struct(task); |
| 3822 | } |
| 3823 | ctx->pmu = pmu; |
| 3824 | |
| 3825 | return ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3826 | } |
| 3827 | |
Matt Helsley | 2ebd4ff | 2010-09-13 13:01:19 -0700 | [diff] [blame] | 3828 | static struct task_struct * |
| 3829 | find_lively_task_by_vpid(pid_t vpid) |
| 3830 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3831 | struct task_struct *task; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3832 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3833 | rcu_read_lock(); |
Matt Helsley | 2ebd4ff | 2010-09-13 13:01:19 -0700 | [diff] [blame] | 3834 | if (!vpid) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3835 | task = current; |
| 3836 | else |
Matt Helsley | 2ebd4ff | 2010-09-13 13:01:19 -0700 | [diff] [blame] | 3837 | task = find_task_by_vpid(vpid); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3838 | if (task) |
| 3839 | get_task_struct(task); |
| 3840 | rcu_read_unlock(); |
| 3841 | |
| 3842 | if (!task) |
| 3843 | return ERR_PTR(-ESRCH); |
| 3844 | |
Matt Helsley | 2ebd4ff | 2010-09-13 13:01:19 -0700 | [diff] [blame] | 3845 | return task; |
Matt Helsley | 2ebd4ff | 2010-09-13 13:01:19 -0700 | [diff] [blame] | 3846 | } |
| 3847 | |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3848 | /* |
| 3849 | * Returns a matching context with refcount and pincount. |
| 3850 | */ |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 3851 | static struct perf_event_context * |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3852 | find_get_context(struct pmu *pmu, struct task_struct *task, |
| 3853 | struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3854 | { |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 3855 | struct perf_event_context *ctx, *clone_ctx = NULL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3856 | struct perf_cpu_context *cpuctx; |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3857 | void *task_ctx_data = NULL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3858 | unsigned long flags; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3859 | int ctxn, err; |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3860 | int cpu = event->cpu; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3861 | |
Oleg Nesterov | 22a4ec7 | 2011-01-18 17:10:08 +0100 | [diff] [blame] | 3862 | if (!task) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3863 | /* Must be root to operate on a CPU event: */ |
| 3864 | if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN)) |
| 3865 | return ERR_PTR(-EACCES); |
| 3866 | |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 3867 | cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3868 | ctx = &cpuctx->ctx; |
| 3869 | get_ctx(ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3870 | ++ctx->pin_count; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3871 | |
| 3872 | return ctx; |
| 3873 | } |
| 3874 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3875 | err = -EINVAL; |
| 3876 | ctxn = pmu->task_ctx_nr; |
| 3877 | if (ctxn < 0) |
| 3878 | goto errout; |
| 3879 | |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3880 | if (event->attach_state & PERF_ATTACH_TASK_DATA) { |
| 3881 | task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL); |
| 3882 | if (!task_ctx_data) { |
| 3883 | err = -ENOMEM; |
| 3884 | goto errout; |
| 3885 | } |
| 3886 | } |
| 3887 | |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 3888 | retry: |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3889 | ctx = perf_lock_task_context(task, ctxn, &flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3890 | if (ctx) { |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 3891 | clone_ctx = unclone_ctx(ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3892 | ++ctx->pin_count; |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3893 | |
| 3894 | if (task_ctx_data && !ctx->task_ctx_data) { |
| 3895 | ctx->task_ctx_data = task_ctx_data; |
| 3896 | task_ctx_data = NULL; |
| 3897 | } |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3898 | raw_spin_unlock_irqrestore(&ctx->lock, flags); |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 3899 | |
| 3900 | if (clone_ctx) |
| 3901 | put_ctx(clone_ctx); |
Peter Zijlstra | 9137fb2 | 2011-04-09 21:17:41 +0200 | [diff] [blame] | 3902 | } else { |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 3903 | ctx = alloc_perf_context(pmu, task); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3904 | err = -ENOMEM; |
| 3905 | if (!ctx) |
| 3906 | goto errout; |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 3907 | |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3908 | if (task_ctx_data) { |
| 3909 | ctx->task_ctx_data = task_ctx_data; |
| 3910 | task_ctx_data = NULL; |
| 3911 | } |
| 3912 | |
Oleg Nesterov | dbe08d8 | 2011-01-19 19:22:07 +0100 | [diff] [blame] | 3913 | err = 0; |
| 3914 | mutex_lock(&task->perf_event_mutex); |
| 3915 | /* |
| 3916 | * If it has already passed perf_event_exit_task(). |
| 3917 | * we must see PF_EXITING, it takes this mutex too. |
| 3918 | */ |
| 3919 | if (task->flags & PF_EXITING) |
| 3920 | err = -ESRCH; |
| 3921 | else if (task->perf_event_ctxp[ctxn]) |
| 3922 | err = -EAGAIN; |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3923 | else { |
Peter Zijlstra | 9137fb2 | 2011-04-09 21:17:41 +0200 | [diff] [blame] | 3924 | get_ctx(ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3925 | ++ctx->pin_count; |
Oleg Nesterov | dbe08d8 | 2011-01-19 19:22:07 +0100 | [diff] [blame] | 3926 | rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3927 | } |
Oleg Nesterov | dbe08d8 | 2011-01-19 19:22:07 +0100 | [diff] [blame] | 3928 | mutex_unlock(&task->perf_event_mutex); |
| 3929 | |
| 3930 | if (unlikely(err)) { |
Peter Zijlstra | 9137fb2 | 2011-04-09 21:17:41 +0200 | [diff] [blame] | 3931 | put_ctx(ctx); |
Oleg Nesterov | dbe08d8 | 2011-01-19 19:22:07 +0100 | [diff] [blame] | 3932 | |
| 3933 | if (err == -EAGAIN) |
| 3934 | goto retry; |
| 3935 | goto errout; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3936 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3937 | } |
| 3938 | |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3939 | kfree(task_ctx_data); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3940 | return ctx; |
| 3941 | |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 3942 | errout: |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3943 | kfree(task_ctx_data); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3944 | return ERR_PTR(err); |
| 3945 | } |
| 3946 | |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 3947 | static void perf_event_free_filter(struct perf_event *event); |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 3948 | static void perf_event_free_bpf_prog(struct perf_event *event); |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 3949 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3950 | static void free_event_rcu(struct rcu_head *head) |
| 3951 | { |
| 3952 | struct perf_event *event; |
| 3953 | |
| 3954 | event = container_of(head, struct perf_event, rcu_head); |
| 3955 | if (event->ns) |
| 3956 | put_pid_ns(event->ns); |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 3957 | perf_event_free_filter(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3958 | kfree(event); |
| 3959 | } |
| 3960 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 3961 | static void ring_buffer_attach(struct perf_event *event, |
| 3962 | struct ring_buffer *rb); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3963 | |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3964 | static void detach_sb_event(struct perf_event *event) |
| 3965 | { |
| 3966 | struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu); |
| 3967 | |
| 3968 | raw_spin_lock(&pel->lock); |
| 3969 | list_del_rcu(&event->sb_list); |
| 3970 | raw_spin_unlock(&pel->lock); |
| 3971 | } |
| 3972 | |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 3973 | static bool is_sb_event(struct perf_event *event) |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3974 | { |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 3975 | struct perf_event_attr *attr = &event->attr; |
| 3976 | |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3977 | if (event->parent) |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 3978 | return false; |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3979 | |
| 3980 | if (event->attach_state & PERF_ATTACH_TASK) |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 3981 | return false; |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3982 | |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 3983 | if (attr->mmap || attr->mmap_data || attr->mmap2 || |
| 3984 | attr->comm || attr->comm_exec || |
| 3985 | attr->task || |
| 3986 | attr->context_switch) |
| 3987 | return true; |
| 3988 | return false; |
| 3989 | } |
| 3990 | |
| 3991 | static void unaccount_pmu_sb_event(struct perf_event *event) |
| 3992 | { |
| 3993 | if (is_sb_event(event)) |
| 3994 | detach_sb_event(event); |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3995 | } |
| 3996 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 3997 | static void unaccount_event_cpu(struct perf_event *event, int cpu) |
| 3998 | { |
| 3999 | if (event->parent) |
| 4000 | return; |
| 4001 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4002 | if (is_cgroup_event(event)) |
| 4003 | atomic_dec(&per_cpu(perf_cgroup_events, cpu)); |
| 4004 | } |
| 4005 | |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 4006 | #ifdef CONFIG_NO_HZ_FULL |
| 4007 | static DEFINE_SPINLOCK(nr_freq_lock); |
| 4008 | #endif |
| 4009 | |
| 4010 | static void unaccount_freq_event_nohz(void) |
| 4011 | { |
| 4012 | #ifdef CONFIG_NO_HZ_FULL |
| 4013 | spin_lock(&nr_freq_lock); |
| 4014 | if (atomic_dec_and_test(&nr_freq_events)) |
| 4015 | tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS); |
| 4016 | spin_unlock(&nr_freq_lock); |
| 4017 | #endif |
| 4018 | } |
| 4019 | |
| 4020 | static void unaccount_freq_event(void) |
| 4021 | { |
| 4022 | if (tick_nohz_full_enabled()) |
| 4023 | unaccount_freq_event_nohz(); |
| 4024 | else |
| 4025 | atomic_dec(&nr_freq_events); |
| 4026 | } |
| 4027 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4028 | static void unaccount_event(struct perf_event *event) |
| 4029 | { |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 4030 | bool dec = false; |
| 4031 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4032 | if (event->parent) |
| 4033 | return; |
| 4034 | |
| 4035 | if (event->attach_state & PERF_ATTACH_TASK) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 4036 | dec = true; |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4037 | if (event->attr.mmap || event->attr.mmap_data) |
| 4038 | atomic_dec(&nr_mmap_events); |
| 4039 | if (event->attr.comm) |
| 4040 | atomic_dec(&nr_comm_events); |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 4041 | if (event->attr.namespaces) |
| 4042 | atomic_dec(&nr_namespaces_events); |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4043 | if (event->attr.task) |
| 4044 | atomic_dec(&nr_task_events); |
Frederic Weisbecker | 948b26b | 2013-08-02 18:29:55 +0200 | [diff] [blame] | 4045 | if (event->attr.freq) |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 4046 | unaccount_freq_event(); |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 4047 | if (event->attr.context_switch) { |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 4048 | dec = true; |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 4049 | atomic_dec(&nr_switch_events); |
| 4050 | } |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4051 | if (is_cgroup_event(event)) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 4052 | dec = true; |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4053 | if (has_branch_stack(event)) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 4054 | dec = true; |
| 4055 | |
Peter Zijlstra | 9107c89 | 2016-02-24 18:45:45 +0100 | [diff] [blame] | 4056 | if (dec) { |
| 4057 | if (!atomic_add_unless(&perf_sched_count, -1, 1)) |
| 4058 | schedule_delayed_work(&perf_sched_work, HZ); |
| 4059 | } |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4060 | |
| 4061 | unaccount_event_cpu(event, event->cpu); |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 4062 | |
| 4063 | unaccount_pmu_sb_event(event); |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4064 | } |
| 4065 | |
Peter Zijlstra | 9107c89 | 2016-02-24 18:45:45 +0100 | [diff] [blame] | 4066 | static void perf_sched_delayed(struct work_struct *work) |
| 4067 | { |
| 4068 | mutex_lock(&perf_sched_mutex); |
| 4069 | if (atomic_dec_and_test(&perf_sched_count)) |
| 4070 | static_branch_disable(&perf_sched_events); |
| 4071 | mutex_unlock(&perf_sched_mutex); |
| 4072 | } |
| 4073 | |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 4074 | /* |
| 4075 | * The following implement mutual exclusion of events on "exclusive" pmus |
| 4076 | * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled |
| 4077 | * at a time, so we disallow creating events that might conflict, namely: |
| 4078 | * |
| 4079 | * 1) cpu-wide events in the presence of per-task events, |
| 4080 | * 2) per-task events in the presence of cpu-wide events, |
| 4081 | * 3) two matching events on the same context. |
| 4082 | * |
| 4083 | * The former two cases are handled in the allocation path (perf_event_alloc(), |
Peter Zijlstra | a0733e6 | 2016-01-26 12:14:40 +0100 | [diff] [blame] | 4084 | * _free_event()), the latter -- before the first perf_install_in_context(). |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 4085 | */ |
| 4086 | static int exclusive_event_init(struct perf_event *event) |
| 4087 | { |
| 4088 | struct pmu *pmu = event->pmu; |
| 4089 | |
| 4090 | if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE)) |
| 4091 | return 0; |
| 4092 | |
| 4093 | /* |
| 4094 | * Prevent co-existence of per-task and cpu-wide events on the |
| 4095 | * same exclusive pmu. |
| 4096 | * |
| 4097 | * Negative pmu::exclusive_cnt means there are cpu-wide |
| 4098 | * events on this "exclusive" pmu, positive means there are |
| 4099 | * per-task events. |
| 4100 | * |
| 4101 | * Since this is called in perf_event_alloc() path, event::ctx |
| 4102 | * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK |
| 4103 | * to mean "per-task event", because unlike other attach states it |
| 4104 | * never gets cleared. |
| 4105 | */ |
| 4106 | if (event->attach_state & PERF_ATTACH_TASK) { |
| 4107 | if (!atomic_inc_unless_negative(&pmu->exclusive_cnt)) |
| 4108 | return -EBUSY; |
| 4109 | } else { |
| 4110 | if (!atomic_dec_unless_positive(&pmu->exclusive_cnt)) |
| 4111 | return -EBUSY; |
| 4112 | } |
| 4113 | |
| 4114 | return 0; |
| 4115 | } |
| 4116 | |
| 4117 | static void exclusive_event_destroy(struct perf_event *event) |
| 4118 | { |
| 4119 | struct pmu *pmu = event->pmu; |
| 4120 | |
| 4121 | if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE)) |
| 4122 | return; |
| 4123 | |
| 4124 | /* see comment in exclusive_event_init() */ |
| 4125 | if (event->attach_state & PERF_ATTACH_TASK) |
| 4126 | atomic_dec(&pmu->exclusive_cnt); |
| 4127 | else |
| 4128 | atomic_inc(&pmu->exclusive_cnt); |
| 4129 | } |
| 4130 | |
| 4131 | static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2) |
| 4132 | { |
Alexander Shishkin | 3bf6215 | 2016-09-20 18:48:11 +0300 | [diff] [blame] | 4133 | if ((e1->pmu == e2->pmu) && |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 4134 | (e1->cpu == e2->cpu || |
| 4135 | e1->cpu == -1 || |
| 4136 | e2->cpu == -1)) |
| 4137 | return true; |
| 4138 | return false; |
| 4139 | } |
| 4140 | |
| 4141 | /* Called under the same ctx::mutex as perf_install_in_context() */ |
| 4142 | static bool exclusive_event_installable(struct perf_event *event, |
| 4143 | struct perf_event_context *ctx) |
| 4144 | { |
| 4145 | struct perf_event *iter_event; |
| 4146 | struct pmu *pmu = event->pmu; |
| 4147 | |
| 4148 | if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE)) |
| 4149 | return true; |
| 4150 | |
| 4151 | list_for_each_entry(iter_event, &ctx->event_list, event_entry) { |
| 4152 | if (exclusive_event_match(iter_event, event)) |
| 4153 | return false; |
| 4154 | } |
| 4155 | |
| 4156 | return true; |
| 4157 | } |
| 4158 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 4159 | static void perf_addr_filters_splice(struct perf_event *event, |
| 4160 | struct list_head *head); |
| 4161 | |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4162 | static void _free_event(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4163 | { |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 4164 | irq_work_sync(&event->pending); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4165 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4166 | unaccount_event(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4167 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4168 | if (event->rb) { |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 4169 | /* |
| 4170 | * Can happen when we close an event with re-directed output. |
| 4171 | * |
| 4172 | * Since we have a 0 refcount, perf_mmap_close() will skip |
| 4173 | * over us; possibly making our ring_buffer_put() the last. |
| 4174 | */ |
| 4175 | mutex_lock(&event->mmap_mutex); |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 4176 | ring_buffer_attach(event, NULL); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 4177 | mutex_unlock(&event->mmap_mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4178 | } |
| 4179 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 4180 | if (is_cgroup_event(event)) |
| 4181 | perf_detach_cgroup(event); |
| 4182 | |
Peter Zijlstra | a0733e6 | 2016-01-26 12:14:40 +0100 | [diff] [blame] | 4183 | if (!event->parent) { |
| 4184 | if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) |
| 4185 | put_callchain_buffers(); |
| 4186 | } |
| 4187 | |
| 4188 | perf_event_free_bpf_prog(event); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 4189 | perf_addr_filters_splice(event, NULL); |
| 4190 | kfree(event->addr_filters_offs); |
Peter Zijlstra | a0733e6 | 2016-01-26 12:14:40 +0100 | [diff] [blame] | 4191 | |
| 4192 | if (event->destroy) |
| 4193 | event->destroy(event); |
| 4194 | |
| 4195 | if (event->ctx) |
| 4196 | put_ctx(event->ctx); |
| 4197 | |
Alexander Shishkin | 62a92c8 | 2016-06-07 15:44:15 +0300 | [diff] [blame] | 4198 | exclusive_event_destroy(event); |
| 4199 | module_put(event->pmu->module); |
Peter Zijlstra | a0733e6 | 2016-01-26 12:14:40 +0100 | [diff] [blame] | 4200 | |
| 4201 | call_rcu(&event->rcu_head, free_event_rcu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4202 | } |
| 4203 | |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4204 | /* |
| 4205 | * Used to free events which have a known refcount of 1, such as in error paths |
| 4206 | * where the event isn't exposed yet and inherited events. |
| 4207 | */ |
| 4208 | static void free_event(struct perf_event *event) |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 4209 | { |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4210 | if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1, |
| 4211 | "unexpected event refcount: %ld; ptr=%p\n", |
| 4212 | atomic_long_read(&event->refcount), event)) { |
| 4213 | /* leak to avoid use-after-free */ |
| 4214 | return; |
| 4215 | } |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 4216 | |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4217 | _free_event(event); |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 4218 | } |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 4219 | |
Peter Zijlstra | a66a305 | 2009-11-23 11:37:23 +0100 | [diff] [blame] | 4220 | /* |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 4221 | * Remove user event from the owner task. |
Peter Zijlstra | a66a305 | 2009-11-23 11:37:23 +0100 | [diff] [blame] | 4222 | */ |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 4223 | static void perf_remove_from_owner(struct perf_event *event) |
Peter Zijlstra | a66a305 | 2009-11-23 11:37:23 +0100 | [diff] [blame] | 4224 | { |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4225 | struct task_struct *owner; |
Peter Zijlstra | a66a305 | 2009-11-23 11:37:23 +0100 | [diff] [blame] | 4226 | |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4227 | rcu_read_lock(); |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4228 | /* |
Peter Zijlstra | f47c02c | 2016-01-26 12:30:14 +0100 | [diff] [blame] | 4229 | * Matches the smp_store_release() in perf_event_exit_task(). If we |
| 4230 | * observe !owner it means the list deletion is complete and we can |
| 4231 | * indeed free this event, otherwise we need to serialize on |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4232 | * owner->perf_event_mutex. |
| 4233 | */ |
Peter Zijlstra | f47c02c | 2016-01-26 12:30:14 +0100 | [diff] [blame] | 4234 | owner = lockless_dereference(event->owner); |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4235 | if (owner) { |
| 4236 | /* |
| 4237 | * Since delayed_put_task_struct() also drops the last |
| 4238 | * task reference we can safely take a new reference |
| 4239 | * while holding the rcu_read_lock(). |
| 4240 | */ |
| 4241 | get_task_struct(owner); |
| 4242 | } |
| 4243 | rcu_read_unlock(); |
| 4244 | |
| 4245 | if (owner) { |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4246 | /* |
| 4247 | * If we're here through perf_event_exit_task() we're already |
| 4248 | * holding ctx->mutex which would be an inversion wrt. the |
| 4249 | * normal lock order. |
| 4250 | * |
| 4251 | * However we can safely take this lock because its the child |
| 4252 | * ctx->mutex. |
| 4253 | */ |
| 4254 | mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING); |
| 4255 | |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4256 | /* |
| 4257 | * We have to re-check the event->owner field, if it is cleared |
| 4258 | * we raced with perf_event_exit_task(), acquiring the mutex |
| 4259 | * ensured they're done, and we can proceed with freeing the |
| 4260 | * event. |
| 4261 | */ |
Peter Zijlstra | f47c02c | 2016-01-26 12:30:14 +0100 | [diff] [blame] | 4262 | if (event->owner) { |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4263 | list_del_init(&event->owner_entry); |
Peter Zijlstra | f47c02c | 2016-01-26 12:30:14 +0100 | [diff] [blame] | 4264 | smp_store_release(&event->owner, NULL); |
| 4265 | } |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4266 | mutex_unlock(&owner->perf_event_mutex); |
| 4267 | put_task_struct(owner); |
| 4268 | } |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 4269 | } |
| 4270 | |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 4271 | static void put_event(struct perf_event *event) |
| 4272 | { |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 4273 | if (!atomic_long_dec_and_test(&event->refcount)) |
| 4274 | return; |
| 4275 | |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4276 | _free_event(event); |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 4277 | } |
| 4278 | |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4279 | /* |
| 4280 | * Kill an event dead; while event:refcount will preserve the event |
| 4281 | * object, it will not preserve its functionality. Once the last 'user' |
| 4282 | * gives up the object, we'll destroy the thing. |
| 4283 | */ |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4284 | int perf_event_release_kernel(struct perf_event *event) |
| 4285 | { |
Peter Zijlstra | a4f4bb6 | 2016-02-24 18:45:42 +0100 | [diff] [blame] | 4286 | struct perf_event_context *ctx = event->ctx; |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4287 | struct perf_event *child, *tmp; |
| 4288 | |
Peter Zijlstra | a4f4bb6 | 2016-02-24 18:45:42 +0100 | [diff] [blame] | 4289 | /* |
| 4290 | * If we got here through err_file: fput(event_file); we will not have |
| 4291 | * attached to a context yet. |
| 4292 | */ |
| 4293 | if (!ctx) { |
| 4294 | WARN_ON_ONCE(event->attach_state & |
| 4295 | (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP)); |
| 4296 | goto no_ctx; |
| 4297 | } |
| 4298 | |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4299 | if (!is_kernel_event(event)) |
| 4300 | perf_remove_from_owner(event); |
| 4301 | |
Peter Zijlstra | 5fa7c8e | 2016-01-26 15:25:15 +0100 | [diff] [blame] | 4302 | ctx = perf_event_ctx_lock(event); |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4303 | WARN_ON_ONCE(ctx->parent_ctx); |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 4304 | perf_remove_from_context(event, DETACH_GROUP); |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4305 | |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 4306 | raw_spin_lock_irq(&ctx->lock); |
Peter Zijlstra | 60beda8 | 2016-01-26 14:55:02 +0100 | [diff] [blame] | 4307 | /* |
Peter Zijlstra | d8a8cfc | 2017-03-16 13:47:51 +0100 | [diff] [blame] | 4308 | * Mark this event as STATE_DEAD, there is no external reference to it |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 4309 | * anymore. |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4310 | * |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 4311 | * Anybody acquiring event->child_mutex after the below loop _must_ |
| 4312 | * also see this, most importantly inherit_event() which will avoid |
| 4313 | * placing more children on the list. |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4314 | * |
| 4315 | * Thus this guarantees that we will in fact observe and kill _ALL_ |
| 4316 | * child events. |
Peter Zijlstra | 60beda8 | 2016-01-26 14:55:02 +0100 | [diff] [blame] | 4317 | */ |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 4318 | event->state = PERF_EVENT_STATE_DEAD; |
| 4319 | raw_spin_unlock_irq(&ctx->lock); |
| 4320 | |
| 4321 | perf_event_ctx_unlock(event, ctx); |
Peter Zijlstra | 60beda8 | 2016-01-26 14:55:02 +0100 | [diff] [blame] | 4322 | |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4323 | again: |
| 4324 | mutex_lock(&event->child_mutex); |
| 4325 | list_for_each_entry(child, &event->child_list, child_list) { |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 4326 | |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4327 | /* |
| 4328 | * Cannot change, child events are not migrated, see the |
| 4329 | * comment with perf_event_ctx_lock_nested(). |
| 4330 | */ |
| 4331 | ctx = lockless_dereference(child->ctx); |
| 4332 | /* |
| 4333 | * Since child_mutex nests inside ctx::mutex, we must jump |
| 4334 | * through hoops. We start by grabbing a reference on the ctx. |
| 4335 | * |
| 4336 | * Since the event cannot get freed while we hold the |
| 4337 | * child_mutex, the context must also exist and have a !0 |
| 4338 | * reference count. |
| 4339 | */ |
| 4340 | get_ctx(ctx); |
| 4341 | |
| 4342 | /* |
| 4343 | * Now that we have a ctx ref, we can drop child_mutex, and |
| 4344 | * acquire ctx::mutex without fear of it going away. Then we |
| 4345 | * can re-acquire child_mutex. |
| 4346 | */ |
| 4347 | mutex_unlock(&event->child_mutex); |
| 4348 | mutex_lock(&ctx->mutex); |
| 4349 | mutex_lock(&event->child_mutex); |
| 4350 | |
| 4351 | /* |
| 4352 | * Now that we hold ctx::mutex and child_mutex, revalidate our |
| 4353 | * state, if child is still the first entry, it didn't get freed |
| 4354 | * and we can continue doing so. |
| 4355 | */ |
| 4356 | tmp = list_first_entry_or_null(&event->child_list, |
| 4357 | struct perf_event, child_list); |
| 4358 | if (tmp == child) { |
| 4359 | perf_remove_from_context(child, DETACH_GROUP); |
| 4360 | list_del(&child->child_list); |
| 4361 | free_event(child); |
| 4362 | /* |
| 4363 | * This matches the refcount bump in inherit_event(); |
| 4364 | * this can't be the last reference. |
| 4365 | */ |
| 4366 | put_event(event); |
| 4367 | } |
| 4368 | |
| 4369 | mutex_unlock(&event->child_mutex); |
| 4370 | mutex_unlock(&ctx->mutex); |
| 4371 | put_ctx(ctx); |
| 4372 | goto again; |
| 4373 | } |
| 4374 | mutex_unlock(&event->child_mutex); |
| 4375 | |
Peter Zijlstra | a4f4bb6 | 2016-02-24 18:45:42 +0100 | [diff] [blame] | 4376 | no_ctx: |
| 4377 | put_event(event); /* Must be the 'last' reference */ |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4378 | return 0; |
| 4379 | } |
| 4380 | EXPORT_SYMBOL_GPL(perf_event_release_kernel); |
| 4381 | |
Peter Zijlstra | 8b10c5e | 2015-05-01 16:08:46 +0200 | [diff] [blame] | 4382 | /* |
| 4383 | * Called when the last reference to the file is gone. |
| 4384 | */ |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 4385 | static int perf_release(struct inode *inode, struct file *file) |
| 4386 | { |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4387 | perf_event_release_kernel(file->private_data); |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 4388 | return 0; |
Peter Zijlstra | a66a305 | 2009-11-23 11:37:23 +0100 | [diff] [blame] | 4389 | } |
| 4390 | |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4391 | u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4392 | { |
| 4393 | struct perf_event *child; |
| 4394 | u64 total = 0; |
| 4395 | |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4396 | *enabled = 0; |
| 4397 | *running = 0; |
| 4398 | |
Peter Zijlstra | 6f10581 | 2009-11-20 22:19:56 +0100 | [diff] [blame] | 4399 | mutex_lock(&event->child_mutex); |
Sukadev Bhattiprolu | 01add3e | 2015-09-03 20:07:46 -0700 | [diff] [blame] | 4400 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4401 | (void)perf_event_read(event, false); |
Sukadev Bhattiprolu | 01add3e | 2015-09-03 20:07:46 -0700 | [diff] [blame] | 4402 | total += perf_event_count(event); |
| 4403 | |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4404 | *enabled += event->total_time_enabled + |
| 4405 | atomic64_read(&event->child_total_time_enabled); |
| 4406 | *running += event->total_time_running + |
| 4407 | atomic64_read(&event->child_total_time_running); |
| 4408 | |
| 4409 | list_for_each_entry(child, &event->child_list, child_list) { |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4410 | (void)perf_event_read(child, false); |
Sukadev Bhattiprolu | 01add3e | 2015-09-03 20:07:46 -0700 | [diff] [blame] | 4411 | total += perf_event_count(child); |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4412 | *enabled += child->total_time_enabled; |
| 4413 | *running += child->total_time_running; |
| 4414 | } |
Peter Zijlstra | 6f10581 | 2009-11-20 22:19:56 +0100 | [diff] [blame] | 4415 | mutex_unlock(&event->child_mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4416 | |
| 4417 | return total; |
| 4418 | } |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 4419 | EXPORT_SYMBOL_GPL(perf_event_read_value); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4420 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4421 | static int __perf_read_group_add(struct perf_event *leader, |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4422 | u64 read_format, u64 *values) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4423 | { |
Jiri Olsa | 2aeb188 | 2017-07-20 16:14:55 +0200 | [diff] [blame] | 4424 | struct perf_event_context *ctx = leader->ctx; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4425 | struct perf_event *sub; |
Jiri Olsa | 2aeb188 | 2017-07-20 16:14:55 +0200 | [diff] [blame] | 4426 | unsigned long flags; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4427 | int n = 1; /* skip @nr */ |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4428 | int ret; |
Peter Zijlstra | abf4868 | 2009-11-20 22:19:49 +0100 | [diff] [blame] | 4429 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4430 | ret = perf_event_read(leader, true); |
| 4431 | if (ret) |
| 4432 | return ret; |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4433 | |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4434 | /* |
| 4435 | * Since we co-schedule groups, {enabled,running} times of siblings |
| 4436 | * will be identical to those of the leader, so we only publish one |
| 4437 | * set. |
| 4438 | */ |
| 4439 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) { |
| 4440 | values[n++] += leader->total_time_enabled + |
| 4441 | atomic64_read(&leader->child_total_time_enabled); |
| 4442 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4443 | |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4444 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) { |
| 4445 | values[n++] += leader->total_time_running + |
| 4446 | atomic64_read(&leader->child_total_time_running); |
| 4447 | } |
| 4448 | |
| 4449 | /* |
| 4450 | * Write {count,id} tuples for every sibling. |
| 4451 | */ |
| 4452 | values[n++] += perf_event_count(leader); |
Peter Zijlstra | abf4868 | 2009-11-20 22:19:49 +0100 | [diff] [blame] | 4453 | if (read_format & PERF_FORMAT_ID) |
| 4454 | values[n++] = primary_event_id(leader); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4455 | |
Jiri Olsa | 2aeb188 | 2017-07-20 16:14:55 +0200 | [diff] [blame] | 4456 | raw_spin_lock_irqsave(&ctx->lock, flags); |
| 4457 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4458 | list_for_each_entry(sub, &leader->sibling_list, group_entry) { |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4459 | values[n++] += perf_event_count(sub); |
Peter Zijlstra | abf4868 | 2009-11-20 22:19:49 +0100 | [diff] [blame] | 4460 | if (read_format & PERF_FORMAT_ID) |
| 4461 | values[n++] = primary_event_id(sub); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4462 | } |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4463 | |
Jiri Olsa | 2aeb188 | 2017-07-20 16:14:55 +0200 | [diff] [blame] | 4464 | raw_spin_unlock_irqrestore(&ctx->lock, flags); |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4465 | return 0; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4466 | } |
| 4467 | |
| 4468 | static int perf_read_group(struct perf_event *event, |
| 4469 | u64 read_format, char __user *buf) |
| 4470 | { |
| 4471 | struct perf_event *leader = event->group_leader, *child; |
| 4472 | struct perf_event_context *ctx = leader->ctx; |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4473 | int ret; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4474 | u64 *values; |
| 4475 | |
| 4476 | lockdep_assert_held(&ctx->mutex); |
| 4477 | |
| 4478 | values = kzalloc(event->read_size, GFP_KERNEL); |
| 4479 | if (!values) |
| 4480 | return -ENOMEM; |
| 4481 | |
| 4482 | values[0] = 1 + leader->nr_siblings; |
| 4483 | |
| 4484 | /* |
| 4485 | * By locking the child_mutex of the leader we effectively |
| 4486 | * lock the child list of all siblings.. XXX explain how. |
| 4487 | */ |
| 4488 | mutex_lock(&leader->child_mutex); |
| 4489 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4490 | ret = __perf_read_group_add(leader, read_format, values); |
| 4491 | if (ret) |
| 4492 | goto unlock; |
| 4493 | |
| 4494 | list_for_each_entry(child, &leader->child_list, child_list) { |
| 4495 | ret = __perf_read_group_add(child, read_format, values); |
| 4496 | if (ret) |
| 4497 | goto unlock; |
| 4498 | } |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4499 | |
| 4500 | mutex_unlock(&leader->child_mutex); |
| 4501 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4502 | ret = event->read_size; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4503 | if (copy_to_user(buf, values, event->read_size)) |
| 4504 | ret = -EFAULT; |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4505 | goto out; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4506 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4507 | unlock: |
| 4508 | mutex_unlock(&leader->child_mutex); |
| 4509 | out: |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4510 | kfree(values); |
Peter Zijlstra | abf4868 | 2009-11-20 22:19:49 +0100 | [diff] [blame] | 4511 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4512 | } |
| 4513 | |
Peter Zijlstra (Intel) | b15f495 | 2015-09-03 20:07:47 -0700 | [diff] [blame] | 4514 | static int perf_read_one(struct perf_event *event, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4515 | u64 read_format, char __user *buf) |
| 4516 | { |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4517 | u64 enabled, running; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4518 | u64 values[4]; |
| 4519 | int n = 0; |
| 4520 | |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4521 | values[n++] = perf_event_read_value(event, &enabled, &running); |
| 4522 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) |
| 4523 | values[n++] = enabled; |
| 4524 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) |
| 4525 | values[n++] = running; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4526 | if (read_format & PERF_FORMAT_ID) |
| 4527 | values[n++] = primary_event_id(event); |
| 4528 | |
| 4529 | if (copy_to_user(buf, values, n * sizeof(u64))) |
| 4530 | return -EFAULT; |
| 4531 | |
| 4532 | return n * sizeof(u64); |
| 4533 | } |
| 4534 | |
Jiri Olsa | dc63398 | 2014-09-12 13:18:26 +0200 | [diff] [blame] | 4535 | static bool is_event_hup(struct perf_event *event) |
| 4536 | { |
| 4537 | bool no_children; |
| 4538 | |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 4539 | if (event->state > PERF_EVENT_STATE_EXIT) |
Jiri Olsa | dc63398 | 2014-09-12 13:18:26 +0200 | [diff] [blame] | 4540 | return false; |
| 4541 | |
| 4542 | mutex_lock(&event->child_mutex); |
| 4543 | no_children = list_empty(&event->child_list); |
| 4544 | mutex_unlock(&event->child_mutex); |
| 4545 | return no_children; |
| 4546 | } |
| 4547 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4548 | /* |
| 4549 | * Read the performance event - simple non blocking version for now |
| 4550 | */ |
| 4551 | static ssize_t |
Peter Zijlstra (Intel) | b15f495 | 2015-09-03 20:07:47 -0700 | [diff] [blame] | 4552 | __perf_read(struct perf_event *event, char __user *buf, size_t count) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4553 | { |
| 4554 | u64 read_format = event->attr.read_format; |
| 4555 | int ret; |
| 4556 | |
| 4557 | /* |
| 4558 | * Return end-of-file for a read on a event that is in |
| 4559 | * error state (i.e. because it was pinned but it couldn't be |
| 4560 | * scheduled on to the CPU at some point). |
| 4561 | */ |
| 4562 | if (event->state == PERF_EVENT_STATE_ERROR) |
| 4563 | return 0; |
| 4564 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 4565 | if (count < event->read_size) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4566 | return -ENOSPC; |
| 4567 | |
| 4568 | WARN_ON_ONCE(event->ctx->parent_ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4569 | if (read_format & PERF_FORMAT_GROUP) |
Peter Zijlstra (Intel) | b15f495 | 2015-09-03 20:07:47 -0700 | [diff] [blame] | 4570 | ret = perf_read_group(event, read_format, buf); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4571 | else |
Peter Zijlstra (Intel) | b15f495 | 2015-09-03 20:07:47 -0700 | [diff] [blame] | 4572 | ret = perf_read_one(event, read_format, buf); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4573 | |
| 4574 | return ret; |
| 4575 | } |
| 4576 | |
| 4577 | static ssize_t |
| 4578 | perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) |
| 4579 | { |
| 4580 | struct perf_event *event = file->private_data; |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4581 | struct perf_event_context *ctx; |
| 4582 | int ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4583 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4584 | ctx = perf_event_ctx_lock(event); |
Peter Zijlstra (Intel) | b15f495 | 2015-09-03 20:07:47 -0700 | [diff] [blame] | 4585 | ret = __perf_read(event, buf, count); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4586 | perf_event_ctx_unlock(event, ctx); |
| 4587 | |
| 4588 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4589 | } |
| 4590 | |
| 4591 | static unsigned int perf_poll(struct file *file, poll_table *wait) |
| 4592 | { |
| 4593 | struct perf_event *event = file->private_data; |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4594 | struct ring_buffer *rb; |
Jiri Olsa | 61b6768 | 2014-08-13 19:39:56 +0200 | [diff] [blame] | 4595 | unsigned int events = POLLHUP; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4596 | |
Sebastian Andrzej Siewior | e708d7a | 2014-08-04 15:31:08 +0200 | [diff] [blame] | 4597 | poll_wait(file, &event->waitq, wait); |
Jiri Olsa | 179033b | 2014-08-07 11:48:26 -0400 | [diff] [blame] | 4598 | |
Jiri Olsa | dc63398 | 2014-09-12 13:18:26 +0200 | [diff] [blame] | 4599 | if (is_event_hup(event)) |
Jiri Olsa | 179033b | 2014-08-07 11:48:26 -0400 | [diff] [blame] | 4600 | return events; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4601 | |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 4602 | /* |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 4603 | * Pin the event->rb by taking event->mmap_mutex; otherwise |
| 4604 | * perf_event_set_output() can swizzle our rb and make us miss wakeups. |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 4605 | */ |
| 4606 | mutex_lock(&event->mmap_mutex); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 4607 | rb = event->rb; |
| 4608 | if (rb) |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4609 | events = atomic_xchg(&rb->poll, 0); |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 4610 | mutex_unlock(&event->mmap_mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4611 | return events; |
| 4612 | } |
| 4613 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4614 | static void _perf_event_reset(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4615 | { |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4616 | (void)perf_event_read(event, false); |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 4617 | local64_set(&event->count, 0); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4618 | perf_event_update_userpage(event); |
| 4619 | } |
| 4620 | |
| 4621 | /* |
| 4622 | * Holding the top-level event's child_mutex means that any |
| 4623 | * descendant process that has inherited this event will block |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 4624 | * in perf_event_exit_event() if it goes to exit, thus satisfying the |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4625 | * task existence requirements of perf_event_enable/disable. |
| 4626 | */ |
| 4627 | static void perf_event_for_each_child(struct perf_event *event, |
| 4628 | void (*func)(struct perf_event *)) |
| 4629 | { |
| 4630 | struct perf_event *child; |
| 4631 | |
| 4632 | WARN_ON_ONCE(event->ctx->parent_ctx); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4633 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4634 | mutex_lock(&event->child_mutex); |
| 4635 | func(event); |
| 4636 | list_for_each_entry(child, &event->child_list, child_list) |
| 4637 | func(child); |
| 4638 | mutex_unlock(&event->child_mutex); |
| 4639 | } |
| 4640 | |
| 4641 | static void perf_event_for_each(struct perf_event *event, |
| 4642 | void (*func)(struct perf_event *)) |
| 4643 | { |
| 4644 | struct perf_event_context *ctx = event->ctx; |
| 4645 | struct perf_event *sibling; |
| 4646 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4647 | lockdep_assert_held(&ctx->mutex); |
| 4648 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4649 | event = event->group_leader; |
| 4650 | |
| 4651 | perf_event_for_each_child(event, func); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4652 | list_for_each_entry(sibling, &event->sibling_list, group_entry) |
Michael Ellerman | 724b6da | 2012-04-11 11:54:13 +1000 | [diff] [blame] | 4653 | perf_event_for_each_child(sibling, func); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4654 | } |
| 4655 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 4656 | static void __perf_event_period(struct perf_event *event, |
| 4657 | struct perf_cpu_context *cpuctx, |
| 4658 | struct perf_event_context *ctx, |
| 4659 | void *info) |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 4660 | { |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 4661 | u64 value = *((u64 *)info); |
Peter Zijlstra | c7999c6 | 2015-08-04 19:22:49 +0200 | [diff] [blame] | 4662 | bool active; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4663 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4664 | if (event->attr.freq) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4665 | event->attr.sample_freq = value; |
| 4666 | } else { |
| 4667 | event->attr.sample_period = value; |
| 4668 | event->hw.sample_period = value; |
| 4669 | } |
Peter Zijlstra | bad7192 | 2013-11-27 13:54:38 +0000 | [diff] [blame] | 4670 | |
| 4671 | active = (event->state == PERF_EVENT_STATE_ACTIVE); |
| 4672 | if (active) { |
| 4673 | perf_pmu_disable(ctx->pmu); |
Peter Zijlstra | 1e02cd4 | 2016-03-10 15:39:24 +0100 | [diff] [blame] | 4674 | /* |
| 4675 | * We could be throttled; unthrottle now to avoid the tick |
| 4676 | * trying to unthrottle while we already re-started the event. |
| 4677 | */ |
| 4678 | if (event->hw.interrupts == MAX_INTERRUPTS) { |
| 4679 | event->hw.interrupts = 0; |
| 4680 | perf_log_throttle(event, 1); |
| 4681 | } |
Peter Zijlstra | bad7192 | 2013-11-27 13:54:38 +0000 | [diff] [blame] | 4682 | event->pmu->stop(event, PERF_EF_UPDATE); |
| 4683 | } |
| 4684 | |
| 4685 | local64_set(&event->hw.period_left, 0); |
| 4686 | |
| 4687 | if (active) { |
| 4688 | event->pmu->start(event, PERF_EF_RELOAD); |
| 4689 | perf_pmu_enable(ctx->pmu); |
| 4690 | } |
Peter Zijlstra | c7999c6 | 2015-08-04 19:22:49 +0200 | [diff] [blame] | 4691 | } |
| 4692 | |
| 4693 | static int perf_event_period(struct perf_event *event, u64 __user *arg) |
| 4694 | { |
Peter Zijlstra | c7999c6 | 2015-08-04 19:22:49 +0200 | [diff] [blame] | 4695 | u64 value; |
| 4696 | |
| 4697 | if (!is_sampling_event(event)) |
| 4698 | return -EINVAL; |
| 4699 | |
| 4700 | if (copy_from_user(&value, arg, sizeof(value))) |
| 4701 | return -EFAULT; |
| 4702 | |
| 4703 | if (!value) |
| 4704 | return -EINVAL; |
| 4705 | |
| 4706 | if (event->attr.freq && value > sysctl_perf_event_sample_rate) |
| 4707 | return -EINVAL; |
| 4708 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 4709 | event_function_call(event, __perf_event_period, &value); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4710 | |
Peter Zijlstra | c7999c6 | 2015-08-04 19:22:49 +0200 | [diff] [blame] | 4711 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4712 | } |
| 4713 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4714 | static const struct file_operations perf_fops; |
| 4715 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 4716 | static inline int perf_fget_light(int fd, struct fd *p) |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4717 | { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 4718 | struct fd f = fdget(fd); |
| 4719 | if (!f.file) |
| 4720 | return -EBADF; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4721 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 4722 | if (f.file->f_op != &perf_fops) { |
| 4723 | fdput(f); |
| 4724 | return -EBADF; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4725 | } |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 4726 | *p = f; |
| 4727 | return 0; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4728 | } |
| 4729 | |
| 4730 | static int perf_event_set_output(struct perf_event *event, |
| 4731 | struct perf_event *output_event); |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 4732 | static int perf_event_set_filter(struct perf_event *event, void __user *arg); |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 4733 | static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4734 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4735 | static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4736 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4737 | void (*func)(struct perf_event *); |
| 4738 | u32 flags = arg; |
| 4739 | |
| 4740 | switch (cmd) { |
| 4741 | case PERF_EVENT_IOC_ENABLE: |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4742 | func = _perf_event_enable; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4743 | break; |
| 4744 | case PERF_EVENT_IOC_DISABLE: |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4745 | func = _perf_event_disable; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4746 | break; |
| 4747 | case PERF_EVENT_IOC_RESET: |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4748 | func = _perf_event_reset; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4749 | break; |
| 4750 | |
| 4751 | case PERF_EVENT_IOC_REFRESH: |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4752 | return _perf_event_refresh(event, arg); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4753 | |
| 4754 | case PERF_EVENT_IOC_PERIOD: |
| 4755 | return perf_event_period(event, (u64 __user *)arg); |
| 4756 | |
Jiri Olsa | cf4957f | 2012-10-24 13:37:58 +0200 | [diff] [blame] | 4757 | case PERF_EVENT_IOC_ID: |
| 4758 | { |
| 4759 | u64 id = primary_event_id(event); |
| 4760 | |
| 4761 | if (copy_to_user((void __user *)arg, &id, sizeof(id))) |
| 4762 | return -EFAULT; |
| 4763 | return 0; |
| 4764 | } |
| 4765 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4766 | case PERF_EVENT_IOC_SET_OUTPUT: |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4767 | { |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4768 | int ret; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4769 | if (arg != -1) { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 4770 | struct perf_event *output_event; |
| 4771 | struct fd output; |
| 4772 | ret = perf_fget_light(arg, &output); |
| 4773 | if (ret) |
| 4774 | return ret; |
| 4775 | output_event = output.file->private_data; |
| 4776 | ret = perf_event_set_output(event, output_event); |
| 4777 | fdput(output); |
| 4778 | } else { |
| 4779 | ret = perf_event_set_output(event, NULL); |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4780 | } |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4781 | return ret; |
| 4782 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4783 | |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 4784 | case PERF_EVENT_IOC_SET_FILTER: |
| 4785 | return perf_event_set_filter(event, (void __user *)arg); |
| 4786 | |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 4787 | case PERF_EVENT_IOC_SET_BPF: |
| 4788 | return perf_event_set_bpf_prog(event, arg); |
| 4789 | |
Wang Nan | 86e7972 | 2016-03-28 06:41:29 +0000 | [diff] [blame] | 4790 | case PERF_EVENT_IOC_PAUSE_OUTPUT: { |
| 4791 | struct ring_buffer *rb; |
| 4792 | |
| 4793 | rcu_read_lock(); |
| 4794 | rb = rcu_dereference(event->rb); |
| 4795 | if (!rb || !rb->nr_pages) { |
| 4796 | rcu_read_unlock(); |
| 4797 | return -EINVAL; |
| 4798 | } |
| 4799 | rb_toggle_paused(rb, !!arg); |
| 4800 | rcu_read_unlock(); |
| 4801 | return 0; |
| 4802 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4803 | default: |
| 4804 | return -ENOTTY; |
| 4805 | } |
| 4806 | |
| 4807 | if (flags & PERF_IOC_FLAG_GROUP) |
| 4808 | perf_event_for_each(event, func); |
| 4809 | else |
| 4810 | perf_event_for_each_child(event, func); |
| 4811 | |
| 4812 | return 0; |
| 4813 | } |
| 4814 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4815 | static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 4816 | { |
| 4817 | struct perf_event *event = file->private_data; |
| 4818 | struct perf_event_context *ctx; |
| 4819 | long ret; |
| 4820 | |
| 4821 | ctx = perf_event_ctx_lock(event); |
| 4822 | ret = _perf_ioctl(event, cmd, arg); |
| 4823 | perf_event_ctx_unlock(event, ctx); |
| 4824 | |
| 4825 | return ret; |
| 4826 | } |
| 4827 | |
Pawel Moll | b3f2078 | 2014-06-13 16:03:32 +0100 | [diff] [blame] | 4828 | #ifdef CONFIG_COMPAT |
| 4829 | static long perf_compat_ioctl(struct file *file, unsigned int cmd, |
| 4830 | unsigned long arg) |
| 4831 | { |
| 4832 | switch (_IOC_NR(cmd)) { |
| 4833 | case _IOC_NR(PERF_EVENT_IOC_SET_FILTER): |
| 4834 | case _IOC_NR(PERF_EVENT_IOC_ID): |
| 4835 | /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */ |
| 4836 | if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) { |
| 4837 | cmd &= ~IOCSIZE_MASK; |
| 4838 | cmd |= sizeof(void *) << IOCSIZE_SHIFT; |
| 4839 | } |
| 4840 | break; |
| 4841 | } |
| 4842 | return perf_ioctl(file, cmd, arg); |
| 4843 | } |
| 4844 | #else |
| 4845 | # define perf_compat_ioctl NULL |
| 4846 | #endif |
| 4847 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4848 | int perf_event_task_enable(void) |
| 4849 | { |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4850 | struct perf_event_context *ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4851 | struct perf_event *event; |
| 4852 | |
| 4853 | mutex_lock(¤t->perf_event_mutex); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4854 | list_for_each_entry(event, ¤t->perf_event_list, owner_entry) { |
| 4855 | ctx = perf_event_ctx_lock(event); |
| 4856 | perf_event_for_each_child(event, _perf_event_enable); |
| 4857 | perf_event_ctx_unlock(event, ctx); |
| 4858 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4859 | mutex_unlock(¤t->perf_event_mutex); |
| 4860 | |
| 4861 | return 0; |
| 4862 | } |
| 4863 | |
| 4864 | int perf_event_task_disable(void) |
| 4865 | { |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4866 | struct perf_event_context *ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4867 | struct perf_event *event; |
| 4868 | |
| 4869 | mutex_lock(¤t->perf_event_mutex); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4870 | list_for_each_entry(event, ¤t->perf_event_list, owner_entry) { |
| 4871 | ctx = perf_event_ctx_lock(event); |
| 4872 | perf_event_for_each_child(event, _perf_event_disable); |
| 4873 | perf_event_ctx_unlock(event, ctx); |
| 4874 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4875 | mutex_unlock(¤t->perf_event_mutex); |
| 4876 | |
| 4877 | return 0; |
| 4878 | } |
| 4879 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4880 | static int perf_event_index(struct perf_event *event) |
| 4881 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 4882 | if (event->hw.state & PERF_HES_STOPPED) |
| 4883 | return 0; |
| 4884 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4885 | if (event->state != PERF_EVENT_STATE_ACTIVE) |
| 4886 | return 0; |
| 4887 | |
Peter Zijlstra | 35edc2a | 2011-11-20 20:36:02 +0100 | [diff] [blame] | 4888 | return event->pmu->event_idx(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4889 | } |
| 4890 | |
Eric B Munson | c479429 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 4891 | static void calc_timer_values(struct perf_event *event, |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4892 | u64 *now, |
Eric B Munson | 7f310a5 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 4893 | u64 *enabled, |
| 4894 | u64 *running) |
Eric B Munson | c479429 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 4895 | { |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4896 | u64 ctx_time; |
Eric B Munson | c479429 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 4897 | |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4898 | *now = perf_clock(); |
| 4899 | ctx_time = event->shadow_ctx_time + *now; |
Eric B Munson | c479429 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 4900 | *enabled = ctx_time - event->tstamp_enabled; |
| 4901 | *running = ctx_time - event->tstamp_running; |
| 4902 | } |
| 4903 | |
Peter Zijlstra | fa731587 | 2013-09-19 10:16:42 +0200 | [diff] [blame] | 4904 | static void perf_event_init_userpage(struct perf_event *event) |
| 4905 | { |
| 4906 | struct perf_event_mmap_page *userpg; |
| 4907 | struct ring_buffer *rb; |
| 4908 | |
| 4909 | rcu_read_lock(); |
| 4910 | rb = rcu_dereference(event->rb); |
| 4911 | if (!rb) |
| 4912 | goto unlock; |
| 4913 | |
| 4914 | userpg = rb->user_page; |
| 4915 | |
| 4916 | /* Allow new userspace to detect that bit 0 is deprecated */ |
| 4917 | userpg->cap_bit0_is_deprecated = 1; |
| 4918 | userpg->size = offsetof(struct perf_event_mmap_page, __reserved); |
Alexander Shishkin | e8c6dea | 2015-01-14 14:18:10 +0200 | [diff] [blame] | 4919 | userpg->data_offset = PAGE_SIZE; |
| 4920 | userpg->data_size = perf_data_size(rb); |
Peter Zijlstra | fa731587 | 2013-09-19 10:16:42 +0200 | [diff] [blame] | 4921 | |
| 4922 | unlock: |
| 4923 | rcu_read_unlock(); |
| 4924 | } |
| 4925 | |
Andy Lutomirski | c1317ec | 2014-10-24 15:58:11 -0700 | [diff] [blame] | 4926 | void __weak arch_perf_update_userpage( |
| 4927 | struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now) |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4928 | { |
| 4929 | } |
| 4930 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4931 | /* |
| 4932 | * Callers need to ensure there can be no nesting of this function, otherwise |
| 4933 | * the seqlock logic goes bad. We can not serialize this because the arch |
| 4934 | * code calls this from NMI context. |
| 4935 | */ |
| 4936 | void perf_event_update_userpage(struct perf_event *event) |
| 4937 | { |
| 4938 | struct perf_event_mmap_page *userpg; |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4939 | struct ring_buffer *rb; |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4940 | u64 enabled, running, now; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4941 | |
| 4942 | rcu_read_lock(); |
Peter Zijlstra | 5ec4c59 | 2013-08-02 21:16:30 +0200 | [diff] [blame] | 4943 | rb = rcu_dereference(event->rb); |
| 4944 | if (!rb) |
| 4945 | goto unlock; |
| 4946 | |
Eric B Munson | 0d64120 | 2011-06-24 12:26:26 -0400 | [diff] [blame] | 4947 | /* |
| 4948 | * compute total_time_enabled, total_time_running |
| 4949 | * based on snapshot values taken when the event |
| 4950 | * was last scheduled in. |
| 4951 | * |
| 4952 | * we cannot simply called update_context_time() |
| 4953 | * because of locking issue as we can be called in |
| 4954 | * NMI context |
| 4955 | */ |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4956 | calc_timer_values(event, &now, &enabled, &running); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4957 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4958 | userpg = rb->user_page; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4959 | /* |
| 4960 | * Disable preemption so as to not let the corresponding user-space |
| 4961 | * spin too long if we get preempted. |
| 4962 | */ |
| 4963 | preempt_disable(); |
| 4964 | ++userpg->lock; |
| 4965 | barrier(); |
| 4966 | userpg->index = perf_event_index(event); |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 4967 | userpg->offset = perf_event_count(event); |
Peter Zijlstra | 365a403 | 2011-11-21 20:58:59 +0100 | [diff] [blame] | 4968 | if (userpg->index) |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 4969 | userpg->offset -= local64_read(&event->hw.prev_count); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4970 | |
Eric B Munson | 0d64120 | 2011-06-24 12:26:26 -0400 | [diff] [blame] | 4971 | userpg->time_enabled = enabled + |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4972 | atomic64_read(&event->child_total_time_enabled); |
| 4973 | |
Eric B Munson | 0d64120 | 2011-06-24 12:26:26 -0400 | [diff] [blame] | 4974 | userpg->time_running = running + |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4975 | atomic64_read(&event->child_total_time_running); |
| 4976 | |
Andy Lutomirski | c1317ec | 2014-10-24 15:58:11 -0700 | [diff] [blame] | 4977 | arch_perf_update_userpage(event, userpg, now); |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4978 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4979 | barrier(); |
| 4980 | ++userpg->lock; |
| 4981 | preempt_enable(); |
| 4982 | unlock: |
| 4983 | rcu_read_unlock(); |
| 4984 | } |
| 4985 | |
Dave Jiang | 11bac80 | 2017-02-24 14:56:41 -0800 | [diff] [blame] | 4986 | static int perf_mmap_fault(struct vm_fault *vmf) |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 4987 | { |
Dave Jiang | 11bac80 | 2017-02-24 14:56:41 -0800 | [diff] [blame] | 4988 | struct perf_event *event = vmf->vma->vm_file->private_data; |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4989 | struct ring_buffer *rb; |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 4990 | int ret = VM_FAULT_SIGBUS; |
| 4991 | |
| 4992 | if (vmf->flags & FAULT_FLAG_MKWRITE) { |
| 4993 | if (vmf->pgoff == 0) |
| 4994 | ret = 0; |
| 4995 | return ret; |
| 4996 | } |
| 4997 | |
| 4998 | rcu_read_lock(); |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4999 | rb = rcu_dereference(event->rb); |
| 5000 | if (!rb) |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 5001 | goto unlock; |
| 5002 | |
| 5003 | if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE)) |
| 5004 | goto unlock; |
| 5005 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5006 | vmf->page = perf_mmap_to_page(rb, vmf->pgoff); |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 5007 | if (!vmf->page) |
| 5008 | goto unlock; |
| 5009 | |
| 5010 | get_page(vmf->page); |
Dave Jiang | 11bac80 | 2017-02-24 14:56:41 -0800 | [diff] [blame] | 5011 | vmf->page->mapping = vmf->vma->vm_file->f_mapping; |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 5012 | vmf->page->index = vmf->pgoff; |
| 5013 | |
| 5014 | ret = 0; |
| 5015 | unlock: |
| 5016 | rcu_read_unlock(); |
| 5017 | |
| 5018 | return ret; |
| 5019 | } |
| 5020 | |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5021 | static void ring_buffer_attach(struct perf_event *event, |
| 5022 | struct ring_buffer *rb) |
| 5023 | { |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5024 | struct ring_buffer *old_rb = NULL; |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5025 | unsigned long flags; |
| 5026 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5027 | if (event->rb) { |
| 5028 | /* |
| 5029 | * Should be impossible, we set this when removing |
| 5030 | * event->rb_entry and wait/clear when adding event->rb_entry. |
| 5031 | */ |
| 5032 | WARN_ON_ONCE(event->rcu_pending); |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5033 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5034 | old_rb = event->rb; |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5035 | spin_lock_irqsave(&old_rb->event_lock, flags); |
| 5036 | list_del_rcu(&event->rb_entry); |
| 5037 | spin_unlock_irqrestore(&old_rb->event_lock, flags); |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5038 | |
Oleg Nesterov | 2f993cf | 2015-05-30 22:04:25 +0200 | [diff] [blame] | 5039 | event->rcu_batches = get_state_synchronize_rcu(); |
| 5040 | event->rcu_pending = 1; |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5041 | } |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5042 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5043 | if (rb) { |
Oleg Nesterov | 2f993cf | 2015-05-30 22:04:25 +0200 | [diff] [blame] | 5044 | if (event->rcu_pending) { |
| 5045 | cond_synchronize_rcu(event->rcu_batches); |
| 5046 | event->rcu_pending = 0; |
| 5047 | } |
| 5048 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5049 | spin_lock_irqsave(&rb->event_lock, flags); |
| 5050 | list_add_rcu(&event->rb_entry, &rb->event_list); |
| 5051 | spin_unlock_irqrestore(&rb->event_lock, flags); |
| 5052 | } |
| 5053 | |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 5054 | /* |
| 5055 | * Avoid racing with perf_mmap_close(AUX): stop the event |
| 5056 | * before swizzling the event::rb pointer; if it's getting |
| 5057 | * unmapped, its aux_mmap_count will be 0 and it won't |
| 5058 | * restart. See the comment in __perf_pmu_output_stop(). |
| 5059 | * |
| 5060 | * Data will inevitably be lost when set_output is done in |
| 5061 | * mid-air, but then again, whoever does it like this is |
| 5062 | * not in for the data anyway. |
| 5063 | */ |
| 5064 | if (has_aux(event)) |
| 5065 | perf_event_stop(event, 0); |
| 5066 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5067 | rcu_assign_pointer(event->rb, rb); |
| 5068 | |
| 5069 | if (old_rb) { |
| 5070 | ring_buffer_put(old_rb); |
| 5071 | /* |
| 5072 | * Since we detached before setting the new rb, so that we |
| 5073 | * could attach the new rb, we could have missed a wakeup. |
| 5074 | * Provide it now. |
| 5075 | */ |
| 5076 | wake_up_all(&event->waitq); |
| 5077 | } |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5078 | } |
| 5079 | |
| 5080 | static void ring_buffer_wakeup(struct perf_event *event) |
| 5081 | { |
| 5082 | struct ring_buffer *rb; |
| 5083 | |
| 5084 | rcu_read_lock(); |
| 5085 | rb = rcu_dereference(event->rb); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5086 | if (rb) { |
| 5087 | list_for_each_entry_rcu(event, &rb->event_list, rb_entry) |
| 5088 | wake_up_all(&event->waitq); |
| 5089 | } |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5090 | rcu_read_unlock(); |
| 5091 | } |
| 5092 | |
Alexander Shishkin | fdc2670 | 2015-01-14 14:18:16 +0200 | [diff] [blame] | 5093 | struct ring_buffer *ring_buffer_get(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5094 | { |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5095 | struct ring_buffer *rb; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5096 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5097 | rcu_read_lock(); |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5098 | rb = rcu_dereference(event->rb); |
| 5099 | if (rb) { |
| 5100 | if (!atomic_inc_not_zero(&rb->refcount)) |
| 5101 | rb = NULL; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5102 | } |
| 5103 | rcu_read_unlock(); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5104 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5105 | return rb; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5106 | } |
| 5107 | |
Alexander Shishkin | fdc2670 | 2015-01-14 14:18:16 +0200 | [diff] [blame] | 5108 | void ring_buffer_put(struct ring_buffer *rb) |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5109 | { |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5110 | if (!atomic_dec_and_test(&rb->refcount)) |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5111 | return; |
| 5112 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5113 | WARN_ON_ONCE(!list_empty(&rb->event_list)); |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5114 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5115 | call_rcu(&rb->rcu_head, rb_free_rcu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5116 | } |
| 5117 | |
| 5118 | static void perf_mmap_open(struct vm_area_struct *vma) |
| 5119 | { |
| 5120 | struct perf_event *event = vma->vm_file->private_data; |
| 5121 | |
| 5122 | atomic_inc(&event->mmap_count); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5123 | atomic_inc(&event->rb->mmap_count); |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5124 | |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5125 | if (vma->vm_pgoff) |
| 5126 | atomic_inc(&event->rb->aux_mmap_count); |
| 5127 | |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5128 | if (event->pmu->event_mapped) |
Peter Zijlstra | bfe33492 | 2017-08-02 19:39:30 +0200 | [diff] [blame] | 5129 | event->pmu->event_mapped(event, vma->vm_mm); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5130 | } |
| 5131 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 5132 | static void perf_pmu_output_stop(struct perf_event *event); |
| 5133 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5134 | /* |
| 5135 | * A buffer can be mmap()ed multiple times; either directly through the same |
| 5136 | * event, or through other events by use of perf_event_set_output(). |
| 5137 | * |
| 5138 | * In order to undo the VM accounting done by perf_mmap() we need to destroy |
| 5139 | * the buffer here, where we still have a VM context. This means we need |
| 5140 | * to detach all events redirecting to us. |
| 5141 | */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5142 | static void perf_mmap_close(struct vm_area_struct *vma) |
| 5143 | { |
| 5144 | struct perf_event *event = vma->vm_file->private_data; |
| 5145 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5146 | struct ring_buffer *rb = ring_buffer_get(event); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5147 | struct user_struct *mmap_user = rb->mmap_user; |
| 5148 | int mmap_locked = rb->mmap_locked; |
| 5149 | unsigned long size = perf_data_size(rb); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5150 | |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5151 | if (event->pmu->event_unmapped) |
Peter Zijlstra | bfe33492 | 2017-08-02 19:39:30 +0200 | [diff] [blame] | 5152 | event->pmu->event_unmapped(event, vma->vm_mm); |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5153 | |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5154 | /* |
| 5155 | * rb->aux_mmap_count will always drop before rb->mmap_count and |
| 5156 | * event->mmap_count, so it is ok to use event->mmap_mutex to |
| 5157 | * serialize with perf_mmap here. |
| 5158 | */ |
| 5159 | if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff && |
| 5160 | atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) { |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 5161 | /* |
| 5162 | * Stop all AUX events that are writing to this buffer, |
| 5163 | * so that we can free its AUX pages and corresponding PMU |
| 5164 | * data. Note that after rb::aux_mmap_count dropped to zero, |
| 5165 | * they won't start any more (see perf_aux_output_begin()). |
| 5166 | */ |
| 5167 | perf_pmu_output_stop(event); |
| 5168 | |
| 5169 | /* now it's safe to free the pages */ |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5170 | atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm); |
| 5171 | vma->vm_mm->pinned_vm -= rb->aux_mmap_locked; |
| 5172 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 5173 | /* this has to be the last one */ |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5174 | rb_free_aux(rb); |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 5175 | WARN_ON_ONCE(atomic_read(&rb->aux_refcount)); |
| 5176 | |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5177 | mutex_unlock(&event->mmap_mutex); |
| 5178 | } |
| 5179 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5180 | atomic_dec(&rb->mmap_count); |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5181 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5182 | if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex)) |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5183 | goto out_put; |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5184 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5185 | ring_buffer_attach(event, NULL); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5186 | mutex_unlock(&event->mmap_mutex); |
| 5187 | |
| 5188 | /* If there's still other mmap()s of this buffer, we're done. */ |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5189 | if (atomic_read(&rb->mmap_count)) |
| 5190 | goto out_put; |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5191 | |
| 5192 | /* |
| 5193 | * No other mmap()s, detach from all other events that might redirect |
| 5194 | * into the now unreachable buffer. Somewhat complicated by the |
| 5195 | * fact that rb::event_lock otherwise nests inside mmap_mutex. |
| 5196 | */ |
| 5197 | again: |
| 5198 | rcu_read_lock(); |
| 5199 | list_for_each_entry_rcu(event, &rb->event_list, rb_entry) { |
| 5200 | if (!atomic_long_inc_not_zero(&event->refcount)) { |
| 5201 | /* |
| 5202 | * This event is en-route to free_event() which will |
| 5203 | * detach it and remove it from the list. |
| 5204 | */ |
| 5205 | continue; |
| 5206 | } |
| 5207 | rcu_read_unlock(); |
| 5208 | |
| 5209 | mutex_lock(&event->mmap_mutex); |
| 5210 | /* |
| 5211 | * Check we didn't race with perf_event_set_output() which can |
| 5212 | * swizzle the rb from under us while we were waiting to |
| 5213 | * acquire mmap_mutex. |
| 5214 | * |
| 5215 | * If we find a different rb; ignore this event, a next |
| 5216 | * iteration will no longer find it on the list. We have to |
| 5217 | * still restart the iteration to make sure we're not now |
| 5218 | * iterating the wrong list. |
| 5219 | */ |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5220 | if (event->rb == rb) |
| 5221 | ring_buffer_attach(event, NULL); |
| 5222 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5223 | mutex_unlock(&event->mmap_mutex); |
| 5224 | put_event(event); |
| 5225 | |
| 5226 | /* |
| 5227 | * Restart the iteration; either we're on the wrong list or |
| 5228 | * destroyed its integrity by doing a deletion. |
| 5229 | */ |
| 5230 | goto again; |
| 5231 | } |
| 5232 | rcu_read_unlock(); |
| 5233 | |
| 5234 | /* |
| 5235 | * It could be there's still a few 0-ref events on the list; they'll |
| 5236 | * get cleaned up by free_event() -- they'll also still have their |
| 5237 | * ref on the rb and will free it whenever they are done with it. |
| 5238 | * |
| 5239 | * Aside from that, this buffer is 'fully' detached and unmapped, |
| 5240 | * undo the VM accounting. |
| 5241 | */ |
| 5242 | |
| 5243 | atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm); |
| 5244 | vma->vm_mm->pinned_vm -= mmap_locked; |
| 5245 | free_uid(mmap_user); |
| 5246 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5247 | out_put: |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5248 | ring_buffer_put(rb); /* could be last */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5249 | } |
| 5250 | |
Alexey Dobriyan | f0f37e2f | 2009-09-27 22:29:37 +0400 | [diff] [blame] | 5251 | static const struct vm_operations_struct perf_mmap_vmops = { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5252 | .open = perf_mmap_open, |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5253 | .close = perf_mmap_close, /* non mergable */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5254 | .fault = perf_mmap_fault, |
| 5255 | .page_mkwrite = perf_mmap_fault, |
| 5256 | }; |
| 5257 | |
| 5258 | static int perf_mmap(struct file *file, struct vm_area_struct *vma) |
| 5259 | { |
| 5260 | struct perf_event *event = file->private_data; |
| 5261 | unsigned long user_locked, user_lock_limit; |
| 5262 | struct user_struct *user = current_user(); |
| 5263 | unsigned long locked, lock_limit; |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5264 | struct ring_buffer *rb = NULL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5265 | unsigned long vma_size; |
| 5266 | unsigned long nr_pages; |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5267 | long user_extra = 0, extra = 0; |
Peter Zijlstra | d57e34f | 2010-05-28 19:41:35 +0200 | [diff] [blame] | 5268 | int ret = 0, flags = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5269 | |
Peter Zijlstra | c792061 | 2010-05-18 10:33:24 +0200 | [diff] [blame] | 5270 | /* |
| 5271 | * Don't allow mmap() of inherited per-task counters. This would |
| 5272 | * create a performance issue due to all children writing to the |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5273 | * same rb. |
Peter Zijlstra | c792061 | 2010-05-18 10:33:24 +0200 | [diff] [blame] | 5274 | */ |
| 5275 | if (event->cpu == -1 && event->attr.inherit) |
| 5276 | return -EINVAL; |
| 5277 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5278 | if (!(vma->vm_flags & VM_SHARED)) |
| 5279 | return -EINVAL; |
| 5280 | |
| 5281 | vma_size = vma->vm_end - vma->vm_start; |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5282 | |
| 5283 | if (vma->vm_pgoff == 0) { |
| 5284 | nr_pages = (vma_size / PAGE_SIZE) - 1; |
| 5285 | } else { |
| 5286 | /* |
| 5287 | * AUX area mapping: if rb->aux_nr_pages != 0, it's already |
| 5288 | * mapped, all subsequent mappings should have the same size |
| 5289 | * and offset. Must be above the normal perf buffer. |
| 5290 | */ |
| 5291 | u64 aux_offset, aux_size; |
| 5292 | |
| 5293 | if (!event->rb) |
| 5294 | return -EINVAL; |
| 5295 | |
| 5296 | nr_pages = vma_size / PAGE_SIZE; |
| 5297 | |
| 5298 | mutex_lock(&event->mmap_mutex); |
| 5299 | ret = -EINVAL; |
| 5300 | |
| 5301 | rb = event->rb; |
| 5302 | if (!rb) |
| 5303 | goto aux_unlock; |
| 5304 | |
| 5305 | aux_offset = ACCESS_ONCE(rb->user_page->aux_offset); |
| 5306 | aux_size = ACCESS_ONCE(rb->user_page->aux_size); |
| 5307 | |
| 5308 | if (aux_offset < perf_data_size(rb) + PAGE_SIZE) |
| 5309 | goto aux_unlock; |
| 5310 | |
| 5311 | if (aux_offset != vma->vm_pgoff << PAGE_SHIFT) |
| 5312 | goto aux_unlock; |
| 5313 | |
| 5314 | /* already mapped with a different offset */ |
| 5315 | if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff) |
| 5316 | goto aux_unlock; |
| 5317 | |
| 5318 | if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE) |
| 5319 | goto aux_unlock; |
| 5320 | |
| 5321 | /* already mapped with a different size */ |
| 5322 | if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages) |
| 5323 | goto aux_unlock; |
| 5324 | |
| 5325 | if (!is_power_of_2(nr_pages)) |
| 5326 | goto aux_unlock; |
| 5327 | |
| 5328 | if (!atomic_inc_not_zero(&rb->mmap_count)) |
| 5329 | goto aux_unlock; |
| 5330 | |
| 5331 | if (rb_has_aux(rb)) { |
| 5332 | atomic_inc(&rb->aux_mmap_count); |
| 5333 | ret = 0; |
| 5334 | goto unlock; |
| 5335 | } |
| 5336 | |
| 5337 | atomic_set(&rb->aux_mmap_count, 1); |
| 5338 | user_extra = nr_pages; |
| 5339 | |
| 5340 | goto accounting; |
| 5341 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5342 | |
| 5343 | /* |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5344 | * If we have rb pages ensure they're a power-of-two number, so we |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5345 | * can do bitmasks instead of modulo. |
| 5346 | */ |
Kan Liang | 2ed1131 | 2015-03-02 02:14:26 -0500 | [diff] [blame] | 5347 | if (nr_pages != 0 && !is_power_of_2(nr_pages)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5348 | return -EINVAL; |
| 5349 | |
| 5350 | if (vma_size != PAGE_SIZE * (1 + nr_pages)) |
| 5351 | return -EINVAL; |
| 5352 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5353 | WARN_ON_ONCE(event->ctx->parent_ctx); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5354 | again: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5355 | mutex_lock(&event->mmap_mutex); |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5356 | if (event->rb) { |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5357 | if (event->rb->nr_pages != nr_pages) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5358 | ret = -EINVAL; |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5359 | goto unlock; |
| 5360 | } |
| 5361 | |
| 5362 | if (!atomic_inc_not_zero(&event->rb->mmap_count)) { |
| 5363 | /* |
| 5364 | * Raced against perf_mmap_close() through |
| 5365 | * perf_event_set_output(). Try again, hope for better |
| 5366 | * luck. |
| 5367 | */ |
| 5368 | mutex_unlock(&event->mmap_mutex); |
| 5369 | goto again; |
| 5370 | } |
| 5371 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5372 | goto unlock; |
| 5373 | } |
| 5374 | |
| 5375 | user_extra = nr_pages + 1; |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5376 | |
| 5377 | accounting: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5378 | user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10); |
| 5379 | |
| 5380 | /* |
| 5381 | * Increase the limit linearly with more CPUs: |
| 5382 | */ |
| 5383 | user_lock_limit *= num_online_cpus(); |
| 5384 | |
| 5385 | user_locked = atomic_long_read(&user->locked_vm) + user_extra; |
| 5386 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5387 | if (user_locked > user_lock_limit) |
| 5388 | extra = user_locked - user_lock_limit; |
| 5389 | |
Jiri Slaby | 78d7d40 | 2010-03-05 13:42:54 -0800 | [diff] [blame] | 5390 | lock_limit = rlimit(RLIMIT_MEMLOCK); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5391 | lock_limit >>= PAGE_SHIFT; |
Christoph Lameter | bc3e53f | 2011-10-31 17:07:30 -0700 | [diff] [blame] | 5392 | locked = vma->vm_mm->pinned_vm + extra; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5393 | |
| 5394 | if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() && |
| 5395 | !capable(CAP_IPC_LOCK)) { |
| 5396 | ret = -EPERM; |
| 5397 | goto unlock; |
| 5398 | } |
| 5399 | |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5400 | WARN_ON(!rb && event->rb); |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 5401 | |
Peter Zijlstra | d57e34f | 2010-05-28 19:41:35 +0200 | [diff] [blame] | 5402 | if (vma->vm_flags & VM_WRITE) |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5403 | flags |= RING_BUFFER_WRITABLE; |
Peter Zijlstra | d57e34f | 2010-05-28 19:41:35 +0200 | [diff] [blame] | 5404 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5405 | if (!rb) { |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5406 | rb = rb_alloc(nr_pages, |
| 5407 | event->attr.watermark ? event->attr.wakeup_watermark : 0, |
| 5408 | event->cpu, flags); |
| 5409 | |
| 5410 | if (!rb) { |
| 5411 | ret = -ENOMEM; |
| 5412 | goto unlock; |
| 5413 | } |
| 5414 | |
| 5415 | atomic_set(&rb->mmap_count, 1); |
| 5416 | rb->mmap_user = get_current_user(); |
| 5417 | rb->mmap_locked = extra; |
| 5418 | |
| 5419 | ring_buffer_attach(event, rb); |
| 5420 | |
| 5421 | perf_event_init_userpage(event); |
| 5422 | perf_event_update_userpage(event); |
| 5423 | } else { |
Alexander Shishkin | 1a59413 | 2015-01-14 14:18:18 +0200 | [diff] [blame] | 5424 | ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages, |
| 5425 | event->attr.aux_watermark, flags); |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5426 | if (!ret) |
| 5427 | rb->aux_mmap_locked = extra; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5428 | } |
Peter Zijlstra | 26cb63a | 2013-05-28 10:55:48 +0200 | [diff] [blame] | 5429 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5430 | unlock: |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5431 | if (!ret) { |
| 5432 | atomic_long_add(user_extra, &user->locked_vm); |
| 5433 | vma->vm_mm->pinned_vm += extra; |
| 5434 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5435 | atomic_inc(&event->mmap_count); |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5436 | } else if (rb) { |
| 5437 | atomic_dec(&rb->mmap_count); |
| 5438 | } |
| 5439 | aux_unlock: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5440 | mutex_unlock(&event->mmap_mutex); |
| 5441 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5442 | /* |
| 5443 | * Since pinned accounting is per vm we cannot allow fork() to copy our |
| 5444 | * vma. |
| 5445 | */ |
Peter Zijlstra | 26cb63a | 2013-05-28 10:55:48 +0200 | [diff] [blame] | 5446 | vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5447 | vma->vm_ops = &perf_mmap_vmops; |
| 5448 | |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5449 | if (event->pmu->event_mapped) |
Peter Zijlstra | bfe33492 | 2017-08-02 19:39:30 +0200 | [diff] [blame] | 5450 | event->pmu->event_mapped(event, vma->vm_mm); |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5451 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5452 | return ret; |
| 5453 | } |
| 5454 | |
| 5455 | static int perf_fasync(int fd, struct file *filp, int on) |
| 5456 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 5457 | struct inode *inode = file_inode(filp); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5458 | struct perf_event *event = filp->private_data; |
| 5459 | int retval; |
| 5460 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 5461 | inode_lock(inode); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5462 | retval = fasync_helper(fd, filp, on, &event->fasync); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 5463 | inode_unlock(inode); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5464 | |
| 5465 | if (retval < 0) |
| 5466 | return retval; |
| 5467 | |
| 5468 | return 0; |
| 5469 | } |
| 5470 | |
| 5471 | static const struct file_operations perf_fops = { |
Arnd Bergmann | 3326c1c | 2010-03-23 19:09:33 +0100 | [diff] [blame] | 5472 | .llseek = no_llseek, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5473 | .release = perf_release, |
| 5474 | .read = perf_read, |
| 5475 | .poll = perf_poll, |
| 5476 | .unlocked_ioctl = perf_ioctl, |
Pawel Moll | b3f2078 | 2014-06-13 16:03:32 +0100 | [diff] [blame] | 5477 | .compat_ioctl = perf_compat_ioctl, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5478 | .mmap = perf_mmap, |
| 5479 | .fasync = perf_fasync, |
| 5480 | }; |
| 5481 | |
| 5482 | /* |
| 5483 | * Perf event wakeup |
| 5484 | * |
| 5485 | * If there's data, ensure we set the poll() state and publish everything |
| 5486 | * to user-space before waking everybody up. |
| 5487 | */ |
| 5488 | |
Peter Zijlstra | fed66e2cd | 2015-06-11 10:32:01 +0200 | [diff] [blame] | 5489 | static inline struct fasync_struct **perf_event_fasync(struct perf_event *event) |
| 5490 | { |
| 5491 | /* only the parent has fasync state */ |
| 5492 | if (event->parent) |
| 5493 | event = event->parent; |
| 5494 | return &event->fasync; |
| 5495 | } |
| 5496 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5497 | void perf_event_wakeup(struct perf_event *event) |
| 5498 | { |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5499 | ring_buffer_wakeup(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5500 | |
| 5501 | if (event->pending_kill) { |
Peter Zijlstra | fed66e2cd | 2015-06-11 10:32:01 +0200 | [diff] [blame] | 5502 | kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5503 | event->pending_kill = 0; |
| 5504 | } |
| 5505 | } |
| 5506 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 5507 | static void perf_pending_event(struct irq_work *entry) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5508 | { |
| 5509 | struct perf_event *event = container_of(entry, |
| 5510 | struct perf_event, pending); |
Peter Zijlstra | d525211 | 2015-02-19 18:03:11 +0100 | [diff] [blame] | 5511 | int rctx; |
| 5512 | |
| 5513 | rctx = perf_swevent_get_recursion_context(); |
| 5514 | /* |
| 5515 | * If we 'fail' here, that's OK, it means recursion is already disabled |
| 5516 | * and we won't recurse 'further'. |
| 5517 | */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5518 | |
| 5519 | if (event->pending_disable) { |
| 5520 | event->pending_disable = 0; |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 5521 | perf_event_disable_local(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5522 | } |
| 5523 | |
| 5524 | if (event->pending_wakeup) { |
| 5525 | event->pending_wakeup = 0; |
| 5526 | perf_event_wakeup(event); |
| 5527 | } |
Peter Zijlstra | d525211 | 2015-02-19 18:03:11 +0100 | [diff] [blame] | 5528 | |
| 5529 | if (rctx >= 0) |
| 5530 | perf_swevent_put_recursion_context(rctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5531 | } |
| 5532 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5533 | /* |
Zhang, Yanmin | 39447b3 | 2010-04-19 13:32:41 +0800 | [diff] [blame] | 5534 | * We assume there is only KVM supporting the callbacks. |
| 5535 | * Later on, we might change it to a list if there is |
| 5536 | * another virtualization implementation supporting the callbacks. |
| 5537 | */ |
| 5538 | struct perf_guest_info_callbacks *perf_guest_cbs; |
| 5539 | |
| 5540 | int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs) |
| 5541 | { |
| 5542 | perf_guest_cbs = cbs; |
| 5543 | return 0; |
| 5544 | } |
| 5545 | EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks); |
| 5546 | |
| 5547 | int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs) |
| 5548 | { |
| 5549 | perf_guest_cbs = NULL; |
| 5550 | return 0; |
| 5551 | } |
| 5552 | EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks); |
| 5553 | |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5554 | static void |
| 5555 | perf_output_sample_regs(struct perf_output_handle *handle, |
| 5556 | struct pt_regs *regs, u64 mask) |
| 5557 | { |
| 5558 | int bit; |
Madhavan Srinivasan | 29dd328 | 2016-08-17 15:06:08 +0530 | [diff] [blame] | 5559 | DECLARE_BITMAP(_mask, 64); |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5560 | |
Madhavan Srinivasan | 29dd328 | 2016-08-17 15:06:08 +0530 | [diff] [blame] | 5561 | bitmap_from_u64(_mask, mask); |
| 5562 | for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) { |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5563 | u64 val; |
| 5564 | |
| 5565 | val = perf_reg_value(regs, bit); |
| 5566 | perf_output_put(handle, val); |
| 5567 | } |
| 5568 | } |
| 5569 | |
Stephane Eranian | 60e2364 | 2014-09-24 13:48:37 +0200 | [diff] [blame] | 5570 | static void perf_sample_regs_user(struct perf_regs *regs_user, |
Andy Lutomirski | 88a7c26 | 2015-01-04 10:36:19 -0800 | [diff] [blame] | 5571 | struct pt_regs *regs, |
| 5572 | struct pt_regs *regs_user_copy) |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5573 | { |
Andy Lutomirski | 88a7c26 | 2015-01-04 10:36:19 -0800 | [diff] [blame] | 5574 | if (user_mode(regs)) { |
| 5575 | regs_user->abi = perf_reg_abi(current); |
Peter Zijlstra | 2565711 | 2014-09-24 13:48:42 +0200 | [diff] [blame] | 5576 | regs_user->regs = regs; |
Andy Lutomirski | 88a7c26 | 2015-01-04 10:36:19 -0800 | [diff] [blame] | 5577 | } else if (current->mm) { |
| 5578 | perf_get_regs_user(regs_user, regs, regs_user_copy); |
Peter Zijlstra | 2565711 | 2014-09-24 13:48:42 +0200 | [diff] [blame] | 5579 | } else { |
| 5580 | regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE; |
| 5581 | regs_user->regs = NULL; |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5582 | } |
| 5583 | } |
| 5584 | |
Stephane Eranian | 60e2364 | 2014-09-24 13:48:37 +0200 | [diff] [blame] | 5585 | static void perf_sample_regs_intr(struct perf_regs *regs_intr, |
| 5586 | struct pt_regs *regs) |
| 5587 | { |
| 5588 | regs_intr->regs = regs; |
| 5589 | regs_intr->abi = perf_reg_abi(current); |
| 5590 | } |
| 5591 | |
| 5592 | |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 5593 | /* |
| 5594 | * Get remaining task size from user stack pointer. |
| 5595 | * |
| 5596 | * It'd be better to take stack vma map and limit this more |
| 5597 | * precisly, but there's no way to get it safely under interrupt, |
| 5598 | * so using TASK_SIZE as limit. |
| 5599 | */ |
| 5600 | static u64 perf_ustack_task_size(struct pt_regs *regs) |
| 5601 | { |
| 5602 | unsigned long addr = perf_user_stack_pointer(regs); |
| 5603 | |
| 5604 | if (!addr || addr >= TASK_SIZE) |
| 5605 | return 0; |
| 5606 | |
| 5607 | return TASK_SIZE - addr; |
| 5608 | } |
| 5609 | |
| 5610 | static u16 |
| 5611 | perf_sample_ustack_size(u16 stack_size, u16 header_size, |
| 5612 | struct pt_regs *regs) |
| 5613 | { |
| 5614 | u64 task_size; |
| 5615 | |
| 5616 | /* No regs, no stack pointer, no dump. */ |
| 5617 | if (!regs) |
| 5618 | return 0; |
| 5619 | |
| 5620 | /* |
| 5621 | * Check if we fit in with the requested stack size into the: |
| 5622 | * - TASK_SIZE |
| 5623 | * If we don't, we limit the size to the TASK_SIZE. |
| 5624 | * |
| 5625 | * - remaining sample size |
| 5626 | * If we don't, we customize the stack size to |
| 5627 | * fit in to the remaining sample size. |
| 5628 | */ |
| 5629 | |
| 5630 | task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs)); |
| 5631 | stack_size = min(stack_size, (u16) task_size); |
| 5632 | |
| 5633 | /* Current header size plus static size and dynamic size. */ |
| 5634 | header_size += 2 * sizeof(u64); |
| 5635 | |
| 5636 | /* Do we fit in with the current stack dump size? */ |
| 5637 | if ((u16) (header_size + stack_size) < header_size) { |
| 5638 | /* |
| 5639 | * If we overflow the maximum size for the sample, |
| 5640 | * we customize the stack dump size to fit in. |
| 5641 | */ |
| 5642 | stack_size = USHRT_MAX - header_size - sizeof(u64); |
| 5643 | stack_size = round_up(stack_size, sizeof(u64)); |
| 5644 | } |
| 5645 | |
| 5646 | return stack_size; |
| 5647 | } |
| 5648 | |
| 5649 | static void |
| 5650 | perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size, |
| 5651 | struct pt_regs *regs) |
| 5652 | { |
| 5653 | /* Case of a kernel thread, nothing to dump */ |
| 5654 | if (!regs) { |
| 5655 | u64 size = 0; |
| 5656 | perf_output_put(handle, size); |
| 5657 | } else { |
| 5658 | unsigned long sp; |
| 5659 | unsigned int rem; |
| 5660 | u64 dyn_size; |
| 5661 | |
| 5662 | /* |
| 5663 | * We dump: |
| 5664 | * static size |
| 5665 | * - the size requested by user or the best one we can fit |
| 5666 | * in to the sample max size |
| 5667 | * data |
| 5668 | * - user stack dump data |
| 5669 | * dynamic size |
| 5670 | * - the actual dumped size |
| 5671 | */ |
| 5672 | |
| 5673 | /* Static size. */ |
| 5674 | perf_output_put(handle, dump_size); |
| 5675 | |
| 5676 | /* Data. */ |
| 5677 | sp = perf_user_stack_pointer(regs); |
| 5678 | rem = __output_copy_user(handle, (void *) sp, dump_size); |
| 5679 | dyn_size = dump_size - rem; |
| 5680 | |
| 5681 | perf_output_skip(handle, rem); |
| 5682 | |
| 5683 | /* Dynamic size. */ |
| 5684 | perf_output_put(handle, dyn_size); |
| 5685 | } |
| 5686 | } |
| 5687 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 5688 | static void __perf_event_header__init_id(struct perf_event_header *header, |
| 5689 | struct perf_sample_data *data, |
| 5690 | struct perf_event *event) |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 5691 | { |
| 5692 | u64 sample_type = event->attr.sample_type; |
| 5693 | |
| 5694 | data->type = sample_type; |
| 5695 | header->size += event->id_header_size; |
| 5696 | |
| 5697 | if (sample_type & PERF_SAMPLE_TID) { |
| 5698 | /* namespace issues */ |
| 5699 | data->tid_entry.pid = perf_event_pid(event, current); |
| 5700 | data->tid_entry.tid = perf_event_tid(event, current); |
| 5701 | } |
| 5702 | |
| 5703 | if (sample_type & PERF_SAMPLE_TIME) |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 5704 | data->time = perf_event_clock(event); |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 5705 | |
Adrian Hunter | ff3d527 | 2013-08-27 11:23:07 +0300 | [diff] [blame] | 5706 | if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER)) |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 5707 | data->id = primary_event_id(event); |
| 5708 | |
| 5709 | if (sample_type & PERF_SAMPLE_STREAM_ID) |
| 5710 | data->stream_id = event->id; |
| 5711 | |
| 5712 | if (sample_type & PERF_SAMPLE_CPU) { |
| 5713 | data->cpu_entry.cpu = raw_smp_processor_id(); |
| 5714 | data->cpu_entry.reserved = 0; |
| 5715 | } |
| 5716 | } |
| 5717 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5718 | void perf_event_header__init_id(struct perf_event_header *header, |
| 5719 | struct perf_sample_data *data, |
| 5720 | struct perf_event *event) |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 5721 | { |
| 5722 | if (event->attr.sample_id_all) |
| 5723 | __perf_event_header__init_id(header, data, event); |
| 5724 | } |
| 5725 | |
| 5726 | static void __perf_event__output_id_sample(struct perf_output_handle *handle, |
| 5727 | struct perf_sample_data *data) |
| 5728 | { |
| 5729 | u64 sample_type = data->type; |
| 5730 | |
| 5731 | if (sample_type & PERF_SAMPLE_TID) |
| 5732 | perf_output_put(handle, data->tid_entry); |
| 5733 | |
| 5734 | if (sample_type & PERF_SAMPLE_TIME) |
| 5735 | perf_output_put(handle, data->time); |
| 5736 | |
| 5737 | if (sample_type & PERF_SAMPLE_ID) |
| 5738 | perf_output_put(handle, data->id); |
| 5739 | |
| 5740 | if (sample_type & PERF_SAMPLE_STREAM_ID) |
| 5741 | perf_output_put(handle, data->stream_id); |
| 5742 | |
| 5743 | if (sample_type & PERF_SAMPLE_CPU) |
| 5744 | perf_output_put(handle, data->cpu_entry); |
Adrian Hunter | ff3d527 | 2013-08-27 11:23:07 +0300 | [diff] [blame] | 5745 | |
| 5746 | if (sample_type & PERF_SAMPLE_IDENTIFIER) |
| 5747 | perf_output_put(handle, data->id); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 5748 | } |
| 5749 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5750 | void perf_event__output_id_sample(struct perf_event *event, |
| 5751 | struct perf_output_handle *handle, |
| 5752 | struct perf_sample_data *sample) |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 5753 | { |
| 5754 | if (event->attr.sample_id_all) |
| 5755 | __perf_event__output_id_sample(handle, sample); |
| 5756 | } |
| 5757 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5758 | static void perf_output_read_one(struct perf_output_handle *handle, |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5759 | struct perf_event *event, |
| 5760 | u64 enabled, u64 running) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5761 | { |
| 5762 | u64 read_format = event->attr.read_format; |
| 5763 | u64 values[4]; |
| 5764 | int n = 0; |
| 5765 | |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 5766 | values[n++] = perf_event_count(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5767 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) { |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5768 | values[n++] = enabled + |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5769 | atomic64_read(&event->child_total_time_enabled); |
| 5770 | } |
| 5771 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) { |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5772 | values[n++] = running + |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5773 | atomic64_read(&event->child_total_time_running); |
| 5774 | } |
| 5775 | if (read_format & PERF_FORMAT_ID) |
| 5776 | values[n++] = primary_event_id(event); |
| 5777 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5778 | __output_copy(handle, values, n * sizeof(u64)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5779 | } |
| 5780 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5781 | static void perf_output_read_group(struct perf_output_handle *handle, |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5782 | struct perf_event *event, |
| 5783 | u64 enabled, u64 running) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5784 | { |
| 5785 | struct perf_event *leader = event->group_leader, *sub; |
| 5786 | u64 read_format = event->attr.read_format; |
| 5787 | u64 values[5]; |
| 5788 | int n = 0; |
| 5789 | |
| 5790 | values[n++] = 1 + leader->nr_siblings; |
| 5791 | |
| 5792 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5793 | values[n++] = enabled; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5794 | |
| 5795 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5796 | values[n++] = running; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5797 | |
| 5798 | if (leader != event) |
| 5799 | leader->pmu->read(leader); |
| 5800 | |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 5801 | values[n++] = perf_event_count(leader); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5802 | if (read_format & PERF_FORMAT_ID) |
| 5803 | values[n++] = primary_event_id(leader); |
| 5804 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5805 | __output_copy(handle, values, n * sizeof(u64)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5806 | |
| 5807 | list_for_each_entry(sub, &leader->sibling_list, group_entry) { |
| 5808 | n = 0; |
| 5809 | |
Jiri Olsa | 6f5ab00 | 2012-10-15 20:13:45 +0200 | [diff] [blame] | 5810 | if ((sub != event) && |
| 5811 | (sub->state == PERF_EVENT_STATE_ACTIVE)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5812 | sub->pmu->read(sub); |
| 5813 | |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 5814 | values[n++] = perf_event_count(sub); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5815 | if (read_format & PERF_FORMAT_ID) |
| 5816 | values[n++] = primary_event_id(sub); |
| 5817 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5818 | __output_copy(handle, values, n * sizeof(u64)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5819 | } |
| 5820 | } |
| 5821 | |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5822 | #define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\ |
| 5823 | PERF_FORMAT_TOTAL_TIME_RUNNING) |
| 5824 | |
Peter Zijlstra | ba5213a | 2017-05-30 11:45:12 +0200 | [diff] [blame] | 5825 | /* |
| 5826 | * XXX PERF_SAMPLE_READ vs inherited events seems difficult. |
| 5827 | * |
| 5828 | * The problem is that its both hard and excessively expensive to iterate the |
| 5829 | * child list, not to mention that its impossible to IPI the children running |
| 5830 | * on another CPU, from interrupt/NMI context. |
| 5831 | */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5832 | static void perf_output_read(struct perf_output_handle *handle, |
| 5833 | struct perf_event *event) |
| 5834 | { |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 5835 | u64 enabled = 0, running = 0, now; |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5836 | u64 read_format = event->attr.read_format; |
| 5837 | |
| 5838 | /* |
| 5839 | * compute total_time_enabled, total_time_running |
| 5840 | * based on snapshot values taken when the event |
| 5841 | * was last scheduled in. |
| 5842 | * |
| 5843 | * we cannot simply called update_context_time() |
| 5844 | * because of locking issue as we are called in |
| 5845 | * NMI context |
| 5846 | */ |
Eric B Munson | c479429 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 5847 | if (read_format & PERF_FORMAT_TOTAL_TIMES) |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 5848 | calc_timer_values(event, &now, &enabled, &running); |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5849 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5850 | if (event->attr.read_format & PERF_FORMAT_GROUP) |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5851 | perf_output_read_group(handle, event, enabled, running); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5852 | else |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5853 | perf_output_read_one(handle, event, enabled, running); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5854 | } |
| 5855 | |
| 5856 | void perf_output_sample(struct perf_output_handle *handle, |
| 5857 | struct perf_event_header *header, |
| 5858 | struct perf_sample_data *data, |
| 5859 | struct perf_event *event) |
| 5860 | { |
| 5861 | u64 sample_type = data->type; |
| 5862 | |
| 5863 | perf_output_put(handle, *header); |
| 5864 | |
Adrian Hunter | ff3d527 | 2013-08-27 11:23:07 +0300 | [diff] [blame] | 5865 | if (sample_type & PERF_SAMPLE_IDENTIFIER) |
| 5866 | perf_output_put(handle, data->id); |
| 5867 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5868 | if (sample_type & PERF_SAMPLE_IP) |
| 5869 | perf_output_put(handle, data->ip); |
| 5870 | |
| 5871 | if (sample_type & PERF_SAMPLE_TID) |
| 5872 | perf_output_put(handle, data->tid_entry); |
| 5873 | |
| 5874 | if (sample_type & PERF_SAMPLE_TIME) |
| 5875 | perf_output_put(handle, data->time); |
| 5876 | |
| 5877 | if (sample_type & PERF_SAMPLE_ADDR) |
| 5878 | perf_output_put(handle, data->addr); |
| 5879 | |
| 5880 | if (sample_type & PERF_SAMPLE_ID) |
| 5881 | perf_output_put(handle, data->id); |
| 5882 | |
| 5883 | if (sample_type & PERF_SAMPLE_STREAM_ID) |
| 5884 | perf_output_put(handle, data->stream_id); |
| 5885 | |
| 5886 | if (sample_type & PERF_SAMPLE_CPU) |
| 5887 | perf_output_put(handle, data->cpu_entry); |
| 5888 | |
| 5889 | if (sample_type & PERF_SAMPLE_PERIOD) |
| 5890 | perf_output_put(handle, data->period); |
| 5891 | |
| 5892 | if (sample_type & PERF_SAMPLE_READ) |
| 5893 | perf_output_read(handle, event); |
| 5894 | |
| 5895 | if (sample_type & PERF_SAMPLE_CALLCHAIN) { |
| 5896 | if (data->callchain) { |
| 5897 | int size = 1; |
| 5898 | |
| 5899 | if (data->callchain) |
| 5900 | size += data->callchain->nr; |
| 5901 | |
| 5902 | size *= sizeof(u64); |
| 5903 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5904 | __output_copy(handle, data->callchain, size); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5905 | } else { |
| 5906 | u64 nr = 0; |
| 5907 | perf_output_put(handle, nr); |
| 5908 | } |
| 5909 | } |
| 5910 | |
| 5911 | if (sample_type & PERF_SAMPLE_RAW) { |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 5912 | struct perf_raw_record *raw = data->raw; |
Alexei Starovoitov | fa128e6 | 2015-10-20 20:02:33 -0700 | [diff] [blame] | 5913 | |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 5914 | if (raw) { |
| 5915 | struct perf_raw_frag *frag = &raw->frag; |
| 5916 | |
| 5917 | perf_output_put(handle, raw->size); |
| 5918 | do { |
| 5919 | if (frag->copy) { |
| 5920 | __output_custom(handle, frag->copy, |
| 5921 | frag->data, frag->size); |
| 5922 | } else { |
| 5923 | __output_copy(handle, frag->data, |
| 5924 | frag->size); |
| 5925 | } |
| 5926 | if (perf_raw_frag_last(frag)) |
| 5927 | break; |
| 5928 | frag = frag->next; |
| 5929 | } while (1); |
| 5930 | if (frag->pad) |
| 5931 | __output_skip(handle, NULL, frag->pad); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5932 | } else { |
| 5933 | struct { |
| 5934 | u32 size; |
| 5935 | u32 data; |
| 5936 | } raw = { |
| 5937 | .size = sizeof(u32), |
| 5938 | .data = 0, |
| 5939 | }; |
| 5940 | perf_output_put(handle, raw); |
| 5941 | } |
| 5942 | } |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 5943 | |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 5944 | if (sample_type & PERF_SAMPLE_BRANCH_STACK) { |
| 5945 | if (data->br_stack) { |
| 5946 | size_t size; |
| 5947 | |
| 5948 | size = data->br_stack->nr |
| 5949 | * sizeof(struct perf_branch_entry); |
| 5950 | |
| 5951 | perf_output_put(handle, data->br_stack->nr); |
| 5952 | perf_output_copy(handle, data->br_stack->entries, size); |
| 5953 | } else { |
| 5954 | /* |
| 5955 | * we always store at least the value of nr |
| 5956 | */ |
| 5957 | u64 nr = 0; |
| 5958 | perf_output_put(handle, nr); |
| 5959 | } |
| 5960 | } |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5961 | |
| 5962 | if (sample_type & PERF_SAMPLE_REGS_USER) { |
| 5963 | u64 abi = data->regs_user.abi; |
| 5964 | |
| 5965 | /* |
| 5966 | * If there are no regs to dump, notice it through |
| 5967 | * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE). |
| 5968 | */ |
| 5969 | perf_output_put(handle, abi); |
| 5970 | |
| 5971 | if (abi) { |
| 5972 | u64 mask = event->attr.sample_regs_user; |
| 5973 | perf_output_sample_regs(handle, |
| 5974 | data->regs_user.regs, |
| 5975 | mask); |
| 5976 | } |
| 5977 | } |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 5978 | |
Peter Zijlstra | a5cdd40 | 2013-07-16 17:09:07 +0200 | [diff] [blame] | 5979 | if (sample_type & PERF_SAMPLE_STACK_USER) { |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 5980 | perf_output_sample_ustack(handle, |
| 5981 | data->stack_user_size, |
| 5982 | data->regs_user.regs); |
Peter Zijlstra | a5cdd40 | 2013-07-16 17:09:07 +0200 | [diff] [blame] | 5983 | } |
Andi Kleen | c3feedf | 2013-01-24 16:10:28 +0100 | [diff] [blame] | 5984 | |
| 5985 | if (sample_type & PERF_SAMPLE_WEIGHT) |
| 5986 | perf_output_put(handle, data->weight); |
Stephane Eranian | d6be9ad | 2013-01-24 16:10:31 +0100 | [diff] [blame] | 5987 | |
| 5988 | if (sample_type & PERF_SAMPLE_DATA_SRC) |
| 5989 | perf_output_put(handle, data->data_src.val); |
Peter Zijlstra | a5cdd40 | 2013-07-16 17:09:07 +0200 | [diff] [blame] | 5990 | |
Andi Kleen | fdfbbd0 | 2013-09-20 07:40:39 -0700 | [diff] [blame] | 5991 | if (sample_type & PERF_SAMPLE_TRANSACTION) |
| 5992 | perf_output_put(handle, data->txn); |
| 5993 | |
Stephane Eranian | 60e2364 | 2014-09-24 13:48:37 +0200 | [diff] [blame] | 5994 | if (sample_type & PERF_SAMPLE_REGS_INTR) { |
| 5995 | u64 abi = data->regs_intr.abi; |
| 5996 | /* |
| 5997 | * If there are no regs to dump, notice it through |
| 5998 | * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE). |
| 5999 | */ |
| 6000 | perf_output_put(handle, abi); |
| 6001 | |
| 6002 | if (abi) { |
| 6003 | u64 mask = event->attr.sample_regs_intr; |
| 6004 | |
| 6005 | perf_output_sample_regs(handle, |
| 6006 | data->regs_intr.regs, |
| 6007 | mask); |
| 6008 | } |
| 6009 | } |
| 6010 | |
Kan Liang | fc7ce9c | 2017-08-28 20:52:49 -0400 | [diff] [blame] | 6011 | if (sample_type & PERF_SAMPLE_PHYS_ADDR) |
| 6012 | perf_output_put(handle, data->phys_addr); |
| 6013 | |
Peter Zijlstra | a5cdd40 | 2013-07-16 17:09:07 +0200 | [diff] [blame] | 6014 | if (!event->attr.watermark) { |
| 6015 | int wakeup_events = event->attr.wakeup_events; |
| 6016 | |
| 6017 | if (wakeup_events) { |
| 6018 | struct ring_buffer *rb = handle->rb; |
| 6019 | int events = local_inc_return(&rb->events); |
| 6020 | |
| 6021 | if (events >= wakeup_events) { |
| 6022 | local_sub(wakeup_events, &rb->events); |
| 6023 | local_inc(&rb->wakeup); |
| 6024 | } |
| 6025 | } |
| 6026 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6027 | } |
| 6028 | |
Kan Liang | fc7ce9c | 2017-08-28 20:52:49 -0400 | [diff] [blame] | 6029 | static u64 perf_virt_to_phys(u64 virt) |
| 6030 | { |
| 6031 | u64 phys_addr = 0; |
| 6032 | struct page *p = NULL; |
| 6033 | |
| 6034 | if (!virt) |
| 6035 | return 0; |
| 6036 | |
| 6037 | if (virt >= TASK_SIZE) { |
| 6038 | /* If it's vmalloc()d memory, leave phys_addr as 0 */ |
| 6039 | if (virt_addr_valid((void *)(uintptr_t)virt) && |
| 6040 | !(virt >= VMALLOC_START && virt < VMALLOC_END)) |
| 6041 | phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt); |
| 6042 | } else { |
| 6043 | /* |
| 6044 | * Walking the pages tables for user address. |
| 6045 | * Interrupts are disabled, so it prevents any tear down |
| 6046 | * of the page tables. |
| 6047 | * Try IRQ-safe __get_user_pages_fast first. |
| 6048 | * If failed, leave phys_addr as 0. |
| 6049 | */ |
| 6050 | if ((current->mm != NULL) && |
| 6051 | (__get_user_pages_fast(virt, 1, 0, &p) == 1)) |
| 6052 | phys_addr = page_to_phys(p) + virt % PAGE_SIZE; |
| 6053 | |
| 6054 | if (p) |
| 6055 | put_page(p); |
| 6056 | } |
| 6057 | |
| 6058 | return phys_addr; |
| 6059 | } |
| 6060 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6061 | void perf_prepare_sample(struct perf_event_header *header, |
| 6062 | struct perf_sample_data *data, |
| 6063 | struct perf_event *event, |
| 6064 | struct pt_regs *regs) |
| 6065 | { |
| 6066 | u64 sample_type = event->attr.sample_type; |
| 6067 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6068 | header->type = PERF_RECORD_SAMPLE; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 6069 | header->size = sizeof(*header) + event->header_size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6070 | |
| 6071 | header->misc = 0; |
| 6072 | header->misc |= perf_misc_flags(regs); |
| 6073 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6074 | __perf_event_header__init_id(header, data, event); |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 6075 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 6076 | if (sample_type & PERF_SAMPLE_IP) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6077 | data->ip = perf_instruction_pointer(regs); |
| 6078 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6079 | if (sample_type & PERF_SAMPLE_CALLCHAIN) { |
| 6080 | int size = 1; |
| 6081 | |
Andrew Vagin | e6dab5f | 2012-07-11 18:14:58 +0400 | [diff] [blame] | 6082 | data->callchain = perf_callchain(event, regs); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6083 | |
| 6084 | if (data->callchain) |
| 6085 | size += data->callchain->nr; |
| 6086 | |
| 6087 | header->size += size * sizeof(u64); |
| 6088 | } |
| 6089 | |
| 6090 | if (sample_type & PERF_SAMPLE_RAW) { |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 6091 | struct perf_raw_record *raw = data->raw; |
| 6092 | int size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6093 | |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 6094 | if (raw) { |
| 6095 | struct perf_raw_frag *frag = &raw->frag; |
| 6096 | u32 sum = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6097 | |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 6098 | do { |
| 6099 | sum += frag->size; |
| 6100 | if (perf_raw_frag_last(frag)) |
| 6101 | break; |
| 6102 | frag = frag->next; |
| 6103 | } while (1); |
| 6104 | |
| 6105 | size = round_up(sum + sizeof(u32), sizeof(u64)); |
| 6106 | raw->size = size - sizeof(u32); |
| 6107 | frag->pad = raw->size - sum; |
| 6108 | } else { |
| 6109 | size = sizeof(u64); |
| 6110 | } |
| 6111 | |
| 6112 | header->size += size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6113 | } |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 6114 | |
| 6115 | if (sample_type & PERF_SAMPLE_BRANCH_STACK) { |
| 6116 | int size = sizeof(u64); /* nr */ |
| 6117 | if (data->br_stack) { |
| 6118 | size += data->br_stack->nr |
| 6119 | * sizeof(struct perf_branch_entry); |
| 6120 | } |
| 6121 | header->size += size; |
| 6122 | } |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 6123 | |
Peter Zijlstra | 2565711 | 2014-09-24 13:48:42 +0200 | [diff] [blame] | 6124 | if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER)) |
Andy Lutomirski | 88a7c26 | 2015-01-04 10:36:19 -0800 | [diff] [blame] | 6125 | perf_sample_regs_user(&data->regs_user, regs, |
| 6126 | &data->regs_user_copy); |
Peter Zijlstra | 2565711 | 2014-09-24 13:48:42 +0200 | [diff] [blame] | 6127 | |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 6128 | if (sample_type & PERF_SAMPLE_REGS_USER) { |
| 6129 | /* regs dump ABI info */ |
| 6130 | int size = sizeof(u64); |
| 6131 | |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 6132 | if (data->regs_user.regs) { |
| 6133 | u64 mask = event->attr.sample_regs_user; |
| 6134 | size += hweight64(mask) * sizeof(u64); |
| 6135 | } |
| 6136 | |
| 6137 | header->size += size; |
| 6138 | } |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 6139 | |
| 6140 | if (sample_type & PERF_SAMPLE_STACK_USER) { |
| 6141 | /* |
| 6142 | * Either we need PERF_SAMPLE_STACK_USER bit to be allways |
| 6143 | * processed as the last one or have additional check added |
| 6144 | * in case new sample type is added, because we could eat |
| 6145 | * up the rest of the sample size. |
| 6146 | */ |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 6147 | u16 stack_size = event->attr.sample_stack_user; |
| 6148 | u16 size = sizeof(u64); |
| 6149 | |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 6150 | stack_size = perf_sample_ustack_size(stack_size, header->size, |
Peter Zijlstra | 2565711 | 2014-09-24 13:48:42 +0200 | [diff] [blame] | 6151 | data->regs_user.regs); |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 6152 | |
| 6153 | /* |
| 6154 | * If there is something to dump, add space for the dump |
| 6155 | * itself and for the field that tells the dynamic size, |
| 6156 | * which is how many have been actually dumped. |
| 6157 | */ |
| 6158 | if (stack_size) |
| 6159 | size += sizeof(u64) + stack_size; |
| 6160 | |
| 6161 | data->stack_user_size = stack_size; |
| 6162 | header->size += size; |
| 6163 | } |
Stephane Eranian | 60e2364 | 2014-09-24 13:48:37 +0200 | [diff] [blame] | 6164 | |
| 6165 | if (sample_type & PERF_SAMPLE_REGS_INTR) { |
| 6166 | /* regs dump ABI info */ |
| 6167 | int size = sizeof(u64); |
| 6168 | |
| 6169 | perf_sample_regs_intr(&data->regs_intr, regs); |
| 6170 | |
| 6171 | if (data->regs_intr.regs) { |
| 6172 | u64 mask = event->attr.sample_regs_intr; |
| 6173 | |
| 6174 | size += hweight64(mask) * sizeof(u64); |
| 6175 | } |
| 6176 | |
| 6177 | header->size += size; |
| 6178 | } |
Kan Liang | fc7ce9c | 2017-08-28 20:52:49 -0400 | [diff] [blame] | 6179 | |
| 6180 | if (sample_type & PERF_SAMPLE_PHYS_ADDR) |
| 6181 | data->phys_addr = perf_virt_to_phys(data->addr); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6182 | } |
| 6183 | |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 6184 | static void __always_inline |
| 6185 | __perf_event_output(struct perf_event *event, |
| 6186 | struct perf_sample_data *data, |
| 6187 | struct pt_regs *regs, |
| 6188 | int (*output_begin)(struct perf_output_handle *, |
| 6189 | struct perf_event *, |
| 6190 | unsigned int)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6191 | { |
| 6192 | struct perf_output_handle handle; |
| 6193 | struct perf_event_header header; |
| 6194 | |
Frederic Weisbecker | 927c7a9 | 2010-07-01 16:20:36 +0200 | [diff] [blame] | 6195 | /* protect the callchain buffers */ |
| 6196 | rcu_read_lock(); |
| 6197 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6198 | perf_prepare_sample(&header, data, event, regs); |
| 6199 | |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 6200 | if (output_begin(&handle, event, header.size)) |
Frederic Weisbecker | 927c7a9 | 2010-07-01 16:20:36 +0200 | [diff] [blame] | 6201 | goto exit; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6202 | |
| 6203 | perf_output_sample(&handle, &header, data, event); |
| 6204 | |
| 6205 | perf_output_end(&handle); |
Frederic Weisbecker | 927c7a9 | 2010-07-01 16:20:36 +0200 | [diff] [blame] | 6206 | |
| 6207 | exit: |
| 6208 | rcu_read_unlock(); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6209 | } |
| 6210 | |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 6211 | void |
| 6212 | perf_event_output_forward(struct perf_event *event, |
| 6213 | struct perf_sample_data *data, |
| 6214 | struct pt_regs *regs) |
| 6215 | { |
| 6216 | __perf_event_output(event, data, regs, perf_output_begin_forward); |
| 6217 | } |
| 6218 | |
| 6219 | void |
| 6220 | perf_event_output_backward(struct perf_event *event, |
| 6221 | struct perf_sample_data *data, |
| 6222 | struct pt_regs *regs) |
| 6223 | { |
| 6224 | __perf_event_output(event, data, regs, perf_output_begin_backward); |
| 6225 | } |
| 6226 | |
| 6227 | void |
| 6228 | perf_event_output(struct perf_event *event, |
| 6229 | struct perf_sample_data *data, |
| 6230 | struct pt_regs *regs) |
| 6231 | { |
| 6232 | __perf_event_output(event, data, regs, perf_output_begin); |
| 6233 | } |
| 6234 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6235 | /* |
| 6236 | * read event_id |
| 6237 | */ |
| 6238 | |
| 6239 | struct perf_read_event { |
| 6240 | struct perf_event_header header; |
| 6241 | |
| 6242 | u32 pid; |
| 6243 | u32 tid; |
| 6244 | }; |
| 6245 | |
| 6246 | static void |
| 6247 | perf_event_read_event(struct perf_event *event, |
| 6248 | struct task_struct *task) |
| 6249 | { |
| 6250 | struct perf_output_handle handle; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6251 | struct perf_sample_data sample; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6252 | struct perf_read_event read_event = { |
| 6253 | .header = { |
| 6254 | .type = PERF_RECORD_READ, |
| 6255 | .misc = 0, |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 6256 | .size = sizeof(read_event) + event->read_size, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6257 | }, |
| 6258 | .pid = perf_event_pid(event, task), |
| 6259 | .tid = perf_event_tid(event, task), |
| 6260 | }; |
| 6261 | int ret; |
| 6262 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6263 | perf_event_header__init_id(&read_event.header, &sample, event); |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 6264 | ret = perf_output_begin(&handle, event, read_event.header.size); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6265 | if (ret) |
| 6266 | return; |
| 6267 | |
| 6268 | perf_output_put(&handle, read_event); |
| 6269 | perf_output_read(&handle, event); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6270 | perf_event__output_id_sample(event, &handle, &sample); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6271 | |
| 6272 | perf_output_end(&handle); |
| 6273 | } |
| 6274 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6275 | typedef void (perf_iterate_f)(struct perf_event *event, void *data); |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6276 | |
| 6277 | static void |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6278 | perf_iterate_ctx(struct perf_event_context *ctx, |
| 6279 | perf_iterate_f output, |
Alexander Shishkin | b73e4fe | 2016-04-27 18:44:45 +0300 | [diff] [blame] | 6280 | void *data, bool all) |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6281 | { |
| 6282 | struct perf_event *event; |
| 6283 | |
| 6284 | list_for_each_entry_rcu(event, &ctx->event_list, event_entry) { |
Alexander Shishkin | b73e4fe | 2016-04-27 18:44:45 +0300 | [diff] [blame] | 6285 | if (!all) { |
| 6286 | if (event->state < PERF_EVENT_STATE_INACTIVE) |
| 6287 | continue; |
| 6288 | if (!event_filter_match(event)) |
| 6289 | continue; |
| 6290 | } |
| 6291 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6292 | output(event, data); |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6293 | } |
| 6294 | } |
| 6295 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6296 | static void perf_iterate_sb_cpu(perf_iterate_f output, void *data) |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 6297 | { |
| 6298 | struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events); |
| 6299 | struct perf_event *event; |
| 6300 | |
| 6301 | list_for_each_entry_rcu(event, &pel->list, sb_list) { |
Peter Zijlstra | 0b8f1e2 | 2016-08-04 14:37:24 +0200 | [diff] [blame] | 6302 | /* |
| 6303 | * Skip events that are not fully formed yet; ensure that |
| 6304 | * if we observe event->ctx, both event and ctx will be |
| 6305 | * complete enough. See perf_install_in_context(). |
| 6306 | */ |
| 6307 | if (!smp_load_acquire(&event->ctx)) |
| 6308 | continue; |
| 6309 | |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 6310 | if (event->state < PERF_EVENT_STATE_INACTIVE) |
| 6311 | continue; |
| 6312 | if (!event_filter_match(event)) |
| 6313 | continue; |
| 6314 | output(event, data); |
| 6315 | } |
| 6316 | } |
| 6317 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6318 | /* |
| 6319 | * Iterate all events that need to receive side-band events. |
| 6320 | * |
| 6321 | * For new callers; ensure that account_pmu_sb_event() includes |
| 6322 | * your event, otherwise it might not get delivered. |
| 6323 | */ |
Jiri Olsa | 4e93ad6 | 2015-11-04 16:00:05 +0100 | [diff] [blame] | 6324 | static void |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6325 | perf_iterate_sb(perf_iterate_f output, void *data, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6326 | struct perf_event_context *task_ctx) |
| 6327 | { |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6328 | struct perf_event_context *ctx; |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6329 | int ctxn; |
| 6330 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6331 | rcu_read_lock(); |
| 6332 | preempt_disable(); |
| 6333 | |
Jiri Olsa | 4e93ad6 | 2015-11-04 16:00:05 +0100 | [diff] [blame] | 6334 | /* |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6335 | * If we have task_ctx != NULL we only notify the task context itself. |
| 6336 | * The task_ctx is set only for EXIT events before releasing task |
Jiri Olsa | 4e93ad6 | 2015-11-04 16:00:05 +0100 | [diff] [blame] | 6337 | * context. |
| 6338 | */ |
| 6339 | if (task_ctx) { |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6340 | perf_iterate_ctx(task_ctx, output, data, false); |
| 6341 | goto done; |
Jiri Olsa | 4e93ad6 | 2015-11-04 16:00:05 +0100 | [diff] [blame] | 6342 | } |
| 6343 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6344 | perf_iterate_sb_cpu(output, data); |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 6345 | |
| 6346 | for_each_task_context_nr(ctxn) { |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6347 | ctx = rcu_dereference(current->perf_event_ctxp[ctxn]); |
| 6348 | if (ctx) |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6349 | perf_iterate_ctx(ctx, output, data, false); |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6350 | } |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6351 | done: |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 6352 | preempt_enable(); |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6353 | rcu_read_unlock(); |
| 6354 | } |
| 6355 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6356 | /* |
| 6357 | * Clear all file-based filters at exec, they'll have to be |
| 6358 | * re-instated when/if these objects are mmapped again. |
| 6359 | */ |
| 6360 | static void perf_event_addr_filters_exec(struct perf_event *event, void *data) |
| 6361 | { |
| 6362 | struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); |
| 6363 | struct perf_addr_filter *filter; |
| 6364 | unsigned int restart = 0, count = 0; |
| 6365 | unsigned long flags; |
| 6366 | |
| 6367 | if (!has_addr_filter(event)) |
| 6368 | return; |
| 6369 | |
| 6370 | raw_spin_lock_irqsave(&ifh->lock, flags); |
| 6371 | list_for_each_entry(filter, &ifh->list, entry) { |
| 6372 | if (filter->inode) { |
| 6373 | event->addr_filters_offs[count] = 0; |
| 6374 | restart++; |
| 6375 | } |
| 6376 | |
| 6377 | count++; |
| 6378 | } |
| 6379 | |
| 6380 | if (restart) |
| 6381 | event->addr_filters_gen++; |
| 6382 | raw_spin_unlock_irqrestore(&ifh->lock, flags); |
| 6383 | |
| 6384 | if (restart) |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 6385 | perf_event_stop(event, 1); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6386 | } |
| 6387 | |
| 6388 | void perf_event_exec(void) |
| 6389 | { |
| 6390 | struct perf_event_context *ctx; |
| 6391 | int ctxn; |
| 6392 | |
| 6393 | rcu_read_lock(); |
| 6394 | for_each_task_context_nr(ctxn) { |
| 6395 | ctx = current->perf_event_ctxp[ctxn]; |
| 6396 | if (!ctx) |
| 6397 | continue; |
| 6398 | |
| 6399 | perf_event_enable_on_exec(ctxn); |
| 6400 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6401 | perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL, |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6402 | true); |
| 6403 | } |
| 6404 | rcu_read_unlock(); |
| 6405 | } |
| 6406 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6407 | struct remote_output { |
| 6408 | struct ring_buffer *rb; |
| 6409 | int err; |
| 6410 | }; |
| 6411 | |
| 6412 | static void __perf_event_output_stop(struct perf_event *event, void *data) |
| 6413 | { |
| 6414 | struct perf_event *parent = event->parent; |
| 6415 | struct remote_output *ro = data; |
| 6416 | struct ring_buffer *rb = ro->rb; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6417 | struct stop_event_data sd = { |
| 6418 | .event = event, |
| 6419 | }; |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6420 | |
| 6421 | if (!has_aux(event)) |
| 6422 | return; |
| 6423 | |
| 6424 | if (!parent) |
| 6425 | parent = event; |
| 6426 | |
| 6427 | /* |
| 6428 | * In case of inheritance, it will be the parent that links to the |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 6429 | * ring-buffer, but it will be the child that's actually using it. |
| 6430 | * |
| 6431 | * We are using event::rb to determine if the event should be stopped, |
| 6432 | * however this may race with ring_buffer_attach() (through set_output), |
| 6433 | * which will make us skip the event that actually needs to be stopped. |
| 6434 | * So ring_buffer_attach() has to stop an aux event before re-assigning |
| 6435 | * its rb pointer. |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6436 | */ |
| 6437 | if (rcu_dereference(parent->rb) == rb) |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6438 | ro->err = __perf_event_stop(&sd); |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6439 | } |
| 6440 | |
| 6441 | static int __perf_pmu_output_stop(void *info) |
| 6442 | { |
| 6443 | struct perf_event *event = info; |
| 6444 | struct pmu *pmu = event->pmu; |
Will Deacon | 8b6a3fe | 2016-08-24 10:07:14 +0100 | [diff] [blame] | 6445 | struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context); |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6446 | struct remote_output ro = { |
| 6447 | .rb = event->rb, |
| 6448 | }; |
| 6449 | |
| 6450 | rcu_read_lock(); |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6451 | perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false); |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6452 | if (cpuctx->task_ctx) |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6453 | perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop, |
Alexander Shishkin | b73e4fe | 2016-04-27 18:44:45 +0300 | [diff] [blame] | 6454 | &ro, false); |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6455 | rcu_read_unlock(); |
| 6456 | |
| 6457 | return ro.err; |
| 6458 | } |
| 6459 | |
| 6460 | static void perf_pmu_output_stop(struct perf_event *event) |
| 6461 | { |
| 6462 | struct perf_event *iter; |
| 6463 | int err, cpu; |
| 6464 | |
| 6465 | restart: |
| 6466 | rcu_read_lock(); |
| 6467 | list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) { |
| 6468 | /* |
| 6469 | * For per-CPU events, we need to make sure that neither they |
| 6470 | * nor their children are running; for cpu==-1 events it's |
| 6471 | * sufficient to stop the event itself if it's active, since |
| 6472 | * it can't have children. |
| 6473 | */ |
| 6474 | cpu = iter->cpu; |
| 6475 | if (cpu == -1) |
| 6476 | cpu = READ_ONCE(iter->oncpu); |
| 6477 | |
| 6478 | if (cpu == -1) |
| 6479 | continue; |
| 6480 | |
| 6481 | err = cpu_function_call(cpu, __perf_pmu_output_stop, event); |
| 6482 | if (err == -EAGAIN) { |
| 6483 | rcu_read_unlock(); |
| 6484 | goto restart; |
| 6485 | } |
| 6486 | } |
| 6487 | rcu_read_unlock(); |
| 6488 | } |
| 6489 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6490 | /* |
| 6491 | * task tracking -- fork/exit |
| 6492 | * |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6493 | * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6494 | */ |
| 6495 | |
| 6496 | struct perf_task_event { |
| 6497 | struct task_struct *task; |
| 6498 | struct perf_event_context *task_ctx; |
| 6499 | |
| 6500 | struct { |
| 6501 | struct perf_event_header header; |
| 6502 | |
| 6503 | u32 pid; |
| 6504 | u32 ppid; |
| 6505 | u32 tid; |
| 6506 | u32 ptid; |
| 6507 | u64 time; |
| 6508 | } event_id; |
| 6509 | }; |
| 6510 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6511 | static int perf_event_task_match(struct perf_event *event) |
| 6512 | { |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6513 | return event->attr.comm || event->attr.mmap || |
| 6514 | event->attr.mmap2 || event->attr.mmap_data || |
| 6515 | event->attr.task; |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6516 | } |
| 6517 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6518 | static void perf_event_task_output(struct perf_event *event, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6519 | void *data) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6520 | { |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6521 | struct perf_task_event *task_event = data; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6522 | struct perf_output_handle handle; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6523 | struct perf_sample_data sample; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6524 | struct task_struct *task = task_event->task; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6525 | int ret, size = task_event->event_id.header.size; |
Mike Galbraith | 8bb39f9 | 2010-03-26 11:11:33 +0100 | [diff] [blame] | 6526 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6527 | if (!perf_event_task_match(event)) |
| 6528 | return; |
| 6529 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6530 | perf_event_header__init_id(&task_event->event_id.header, &sample, event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6531 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6532 | ret = perf_output_begin(&handle, event, |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 6533 | task_event->event_id.header.size); |
Peter Zijlstra | ef60777 | 2010-05-18 10:50:41 +0200 | [diff] [blame] | 6534 | if (ret) |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6535 | goto out; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6536 | |
| 6537 | task_event->event_id.pid = perf_event_pid(event, task); |
| 6538 | task_event->event_id.ppid = perf_event_pid(event, current); |
| 6539 | |
| 6540 | task_event->event_id.tid = perf_event_tid(event, task); |
| 6541 | task_event->event_id.ptid = perf_event_tid(event, current); |
| 6542 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 6543 | task_event->event_id.time = perf_event_clock(event); |
| 6544 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6545 | perf_output_put(&handle, task_event->event_id); |
| 6546 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6547 | perf_event__output_id_sample(event, &handle, &sample); |
| 6548 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6549 | perf_output_end(&handle); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6550 | out: |
| 6551 | task_event->event_id.header.size = size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6552 | } |
| 6553 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6554 | static void perf_event_task(struct task_struct *task, |
| 6555 | struct perf_event_context *task_ctx, |
| 6556 | int new) |
| 6557 | { |
| 6558 | struct perf_task_event task_event; |
| 6559 | |
| 6560 | if (!atomic_read(&nr_comm_events) && |
| 6561 | !atomic_read(&nr_mmap_events) && |
| 6562 | !atomic_read(&nr_task_events)) |
| 6563 | return; |
| 6564 | |
| 6565 | task_event = (struct perf_task_event){ |
| 6566 | .task = task, |
| 6567 | .task_ctx = task_ctx, |
| 6568 | .event_id = { |
| 6569 | .header = { |
| 6570 | .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT, |
| 6571 | .misc = 0, |
| 6572 | .size = sizeof(task_event.event_id), |
| 6573 | }, |
| 6574 | /* .pid */ |
| 6575 | /* .ppid */ |
| 6576 | /* .tid */ |
| 6577 | /* .ptid */ |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 6578 | /* .time */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6579 | }, |
| 6580 | }; |
| 6581 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6582 | perf_iterate_sb(perf_event_task_output, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6583 | &task_event, |
| 6584 | task_ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6585 | } |
| 6586 | |
| 6587 | void perf_event_fork(struct task_struct *task) |
| 6588 | { |
| 6589 | perf_event_task(task, NULL, 1); |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 6590 | perf_event_namespaces(task); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6591 | } |
| 6592 | |
| 6593 | /* |
| 6594 | * comm tracking |
| 6595 | */ |
| 6596 | |
| 6597 | struct perf_comm_event { |
| 6598 | struct task_struct *task; |
| 6599 | char *comm; |
| 6600 | int comm_size; |
| 6601 | |
| 6602 | struct { |
| 6603 | struct perf_event_header header; |
| 6604 | |
| 6605 | u32 pid; |
| 6606 | u32 tid; |
| 6607 | } event_id; |
| 6608 | }; |
| 6609 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6610 | static int perf_event_comm_match(struct perf_event *event) |
| 6611 | { |
| 6612 | return event->attr.comm; |
| 6613 | } |
| 6614 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6615 | static void perf_event_comm_output(struct perf_event *event, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6616 | void *data) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6617 | { |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6618 | struct perf_comm_event *comm_event = data; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6619 | struct perf_output_handle handle; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6620 | struct perf_sample_data sample; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6621 | int size = comm_event->event_id.header.size; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6622 | int ret; |
| 6623 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6624 | if (!perf_event_comm_match(event)) |
| 6625 | return; |
| 6626 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6627 | perf_event_header__init_id(&comm_event->event_id.header, &sample, event); |
| 6628 | ret = perf_output_begin(&handle, event, |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 6629 | comm_event->event_id.header.size); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6630 | |
| 6631 | if (ret) |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6632 | goto out; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6633 | |
| 6634 | comm_event->event_id.pid = perf_event_pid(event, comm_event->task); |
| 6635 | comm_event->event_id.tid = perf_event_tid(event, comm_event->task); |
| 6636 | |
| 6637 | perf_output_put(&handle, comm_event->event_id); |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 6638 | __output_copy(&handle, comm_event->comm, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6639 | comm_event->comm_size); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6640 | |
| 6641 | perf_event__output_id_sample(event, &handle, &sample); |
| 6642 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6643 | perf_output_end(&handle); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6644 | out: |
| 6645 | comm_event->event_id.header.size = size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6646 | } |
| 6647 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6648 | static void perf_event_comm_event(struct perf_comm_event *comm_event) |
| 6649 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6650 | char comm[TASK_COMM_LEN]; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6651 | unsigned int size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6652 | |
| 6653 | memset(comm, 0, sizeof(comm)); |
Márton Németh | 96b02d7 | 2009-11-21 23:10:15 +0100 | [diff] [blame] | 6654 | strlcpy(comm, comm_event->task->comm, sizeof(comm)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6655 | size = ALIGN(strlen(comm)+1, sizeof(u64)); |
| 6656 | |
| 6657 | comm_event->comm = comm; |
| 6658 | comm_event->comm_size = size; |
| 6659 | |
| 6660 | comm_event->event_id.header.size = sizeof(comm_event->event_id) + size; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 6661 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6662 | perf_iterate_sb(perf_event_comm_output, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6663 | comm_event, |
| 6664 | NULL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6665 | } |
| 6666 | |
Adrian Hunter | 82b8977 | 2014-05-28 11:45:04 +0300 | [diff] [blame] | 6667 | void perf_event_comm(struct task_struct *task, bool exec) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6668 | { |
| 6669 | struct perf_comm_event comm_event; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6670 | |
| 6671 | if (!atomic_read(&nr_comm_events)) |
| 6672 | return; |
| 6673 | |
| 6674 | comm_event = (struct perf_comm_event){ |
| 6675 | .task = task, |
| 6676 | /* .comm */ |
| 6677 | /* .comm_size */ |
| 6678 | .event_id = { |
| 6679 | .header = { |
| 6680 | .type = PERF_RECORD_COMM, |
Adrian Hunter | 82b8977 | 2014-05-28 11:45:04 +0300 | [diff] [blame] | 6681 | .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6682 | /* .size */ |
| 6683 | }, |
| 6684 | /* .pid */ |
| 6685 | /* .tid */ |
| 6686 | }, |
| 6687 | }; |
| 6688 | |
| 6689 | perf_event_comm_event(&comm_event); |
| 6690 | } |
| 6691 | |
| 6692 | /* |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 6693 | * namespaces tracking |
| 6694 | */ |
| 6695 | |
| 6696 | struct perf_namespaces_event { |
| 6697 | struct task_struct *task; |
| 6698 | |
| 6699 | struct { |
| 6700 | struct perf_event_header header; |
| 6701 | |
| 6702 | u32 pid; |
| 6703 | u32 tid; |
| 6704 | u64 nr_namespaces; |
| 6705 | struct perf_ns_link_info link_info[NR_NAMESPACES]; |
| 6706 | } event_id; |
| 6707 | }; |
| 6708 | |
| 6709 | static int perf_event_namespaces_match(struct perf_event *event) |
| 6710 | { |
| 6711 | return event->attr.namespaces; |
| 6712 | } |
| 6713 | |
| 6714 | static void perf_event_namespaces_output(struct perf_event *event, |
| 6715 | void *data) |
| 6716 | { |
| 6717 | struct perf_namespaces_event *namespaces_event = data; |
| 6718 | struct perf_output_handle handle; |
| 6719 | struct perf_sample_data sample; |
| 6720 | int ret; |
| 6721 | |
| 6722 | if (!perf_event_namespaces_match(event)) |
| 6723 | return; |
| 6724 | |
| 6725 | perf_event_header__init_id(&namespaces_event->event_id.header, |
| 6726 | &sample, event); |
| 6727 | ret = perf_output_begin(&handle, event, |
| 6728 | namespaces_event->event_id.header.size); |
| 6729 | if (ret) |
| 6730 | return; |
| 6731 | |
| 6732 | namespaces_event->event_id.pid = perf_event_pid(event, |
| 6733 | namespaces_event->task); |
| 6734 | namespaces_event->event_id.tid = perf_event_tid(event, |
| 6735 | namespaces_event->task); |
| 6736 | |
| 6737 | perf_output_put(&handle, namespaces_event->event_id); |
| 6738 | |
| 6739 | perf_event__output_id_sample(event, &handle, &sample); |
| 6740 | |
| 6741 | perf_output_end(&handle); |
| 6742 | } |
| 6743 | |
| 6744 | static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info, |
| 6745 | struct task_struct *task, |
| 6746 | const struct proc_ns_operations *ns_ops) |
| 6747 | { |
| 6748 | struct path ns_path; |
| 6749 | struct inode *ns_inode; |
| 6750 | void *error; |
| 6751 | |
| 6752 | error = ns_get_path(&ns_path, task, ns_ops); |
| 6753 | if (!error) { |
| 6754 | ns_inode = ns_path.dentry->d_inode; |
| 6755 | ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev); |
| 6756 | ns_link_info->ino = ns_inode->i_ino; |
| 6757 | } |
| 6758 | } |
| 6759 | |
| 6760 | void perf_event_namespaces(struct task_struct *task) |
| 6761 | { |
| 6762 | struct perf_namespaces_event namespaces_event; |
| 6763 | struct perf_ns_link_info *ns_link_info; |
| 6764 | |
| 6765 | if (!atomic_read(&nr_namespaces_events)) |
| 6766 | return; |
| 6767 | |
| 6768 | namespaces_event = (struct perf_namespaces_event){ |
| 6769 | .task = task, |
| 6770 | .event_id = { |
| 6771 | .header = { |
| 6772 | .type = PERF_RECORD_NAMESPACES, |
| 6773 | .misc = 0, |
| 6774 | .size = sizeof(namespaces_event.event_id), |
| 6775 | }, |
| 6776 | /* .pid */ |
| 6777 | /* .tid */ |
| 6778 | .nr_namespaces = NR_NAMESPACES, |
| 6779 | /* .link_info[NR_NAMESPACES] */ |
| 6780 | }, |
| 6781 | }; |
| 6782 | |
| 6783 | ns_link_info = namespaces_event.event_id.link_info; |
| 6784 | |
| 6785 | perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX], |
| 6786 | task, &mntns_operations); |
| 6787 | |
| 6788 | #ifdef CONFIG_USER_NS |
| 6789 | perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX], |
| 6790 | task, &userns_operations); |
| 6791 | #endif |
| 6792 | #ifdef CONFIG_NET_NS |
| 6793 | perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX], |
| 6794 | task, &netns_operations); |
| 6795 | #endif |
| 6796 | #ifdef CONFIG_UTS_NS |
| 6797 | perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX], |
| 6798 | task, &utsns_operations); |
| 6799 | #endif |
| 6800 | #ifdef CONFIG_IPC_NS |
| 6801 | perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX], |
| 6802 | task, &ipcns_operations); |
| 6803 | #endif |
| 6804 | #ifdef CONFIG_PID_NS |
| 6805 | perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX], |
| 6806 | task, &pidns_operations); |
| 6807 | #endif |
| 6808 | #ifdef CONFIG_CGROUPS |
| 6809 | perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX], |
| 6810 | task, &cgroupns_operations); |
| 6811 | #endif |
| 6812 | |
| 6813 | perf_iterate_sb(perf_event_namespaces_output, |
| 6814 | &namespaces_event, |
| 6815 | NULL); |
| 6816 | } |
| 6817 | |
| 6818 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6819 | * mmap tracking |
| 6820 | */ |
| 6821 | |
| 6822 | struct perf_mmap_event { |
| 6823 | struct vm_area_struct *vma; |
| 6824 | |
| 6825 | const char *file_name; |
| 6826 | int file_size; |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6827 | int maj, min; |
| 6828 | u64 ino; |
| 6829 | u64 ino_generation; |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 6830 | u32 prot, flags; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6831 | |
| 6832 | struct { |
| 6833 | struct perf_event_header header; |
| 6834 | |
| 6835 | u32 pid; |
| 6836 | u32 tid; |
| 6837 | u64 start; |
| 6838 | u64 len; |
| 6839 | u64 pgoff; |
| 6840 | } event_id; |
| 6841 | }; |
| 6842 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6843 | static int perf_event_mmap_match(struct perf_event *event, |
| 6844 | void *data) |
| 6845 | { |
| 6846 | struct perf_mmap_event *mmap_event = data; |
| 6847 | struct vm_area_struct *vma = mmap_event->vma; |
| 6848 | int executable = vma->vm_flags & VM_EXEC; |
| 6849 | |
| 6850 | return (!executable && event->attr.mmap_data) || |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6851 | (executable && (event->attr.mmap || event->attr.mmap2)); |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6852 | } |
| 6853 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6854 | static void perf_event_mmap_output(struct perf_event *event, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6855 | void *data) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6856 | { |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6857 | struct perf_mmap_event *mmap_event = data; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6858 | struct perf_output_handle handle; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6859 | struct perf_sample_data sample; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6860 | int size = mmap_event->event_id.header.size; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6861 | int ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6862 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6863 | if (!perf_event_mmap_match(event, data)) |
| 6864 | return; |
| 6865 | |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6866 | if (event->attr.mmap2) { |
| 6867 | mmap_event->event_id.header.type = PERF_RECORD_MMAP2; |
| 6868 | mmap_event->event_id.header.size += sizeof(mmap_event->maj); |
| 6869 | mmap_event->event_id.header.size += sizeof(mmap_event->min); |
| 6870 | mmap_event->event_id.header.size += sizeof(mmap_event->ino); |
Arnaldo Carvalho de Melo | d008d52 | 2013-09-10 10:24:05 -0300 | [diff] [blame] | 6871 | mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation); |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 6872 | mmap_event->event_id.header.size += sizeof(mmap_event->prot); |
| 6873 | mmap_event->event_id.header.size += sizeof(mmap_event->flags); |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6874 | } |
| 6875 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6876 | perf_event_header__init_id(&mmap_event->event_id.header, &sample, event); |
| 6877 | ret = perf_output_begin(&handle, event, |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 6878 | mmap_event->event_id.header.size); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6879 | if (ret) |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6880 | goto out; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6881 | |
| 6882 | mmap_event->event_id.pid = perf_event_pid(event, current); |
| 6883 | mmap_event->event_id.tid = perf_event_tid(event, current); |
| 6884 | |
| 6885 | perf_output_put(&handle, mmap_event->event_id); |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6886 | |
| 6887 | if (event->attr.mmap2) { |
| 6888 | perf_output_put(&handle, mmap_event->maj); |
| 6889 | perf_output_put(&handle, mmap_event->min); |
| 6890 | perf_output_put(&handle, mmap_event->ino); |
| 6891 | perf_output_put(&handle, mmap_event->ino_generation); |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 6892 | perf_output_put(&handle, mmap_event->prot); |
| 6893 | perf_output_put(&handle, mmap_event->flags); |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6894 | } |
| 6895 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 6896 | __output_copy(&handle, mmap_event->file_name, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6897 | mmap_event->file_size); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6898 | |
| 6899 | perf_event__output_id_sample(event, &handle, &sample); |
| 6900 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6901 | perf_output_end(&handle); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6902 | out: |
| 6903 | mmap_event->event_id.header.size = size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6904 | } |
| 6905 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6906 | static void perf_event_mmap_event(struct perf_mmap_event *mmap_event) |
| 6907 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6908 | struct vm_area_struct *vma = mmap_event->vma; |
| 6909 | struct file *file = vma->vm_file; |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6910 | int maj = 0, min = 0; |
| 6911 | u64 ino = 0, gen = 0; |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 6912 | u32 prot = 0, flags = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6913 | unsigned int size; |
| 6914 | char tmp[16]; |
| 6915 | char *buf = NULL; |
Peter Zijlstra | 2c42cfbf | 2013-10-17 00:06:46 +0200 | [diff] [blame] | 6916 | char *name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6917 | |
Peter Zijlstra | 0b3589b | 2017-01-26 23:15:08 +0100 | [diff] [blame] | 6918 | if (vma->vm_flags & VM_READ) |
| 6919 | prot |= PROT_READ; |
| 6920 | if (vma->vm_flags & VM_WRITE) |
| 6921 | prot |= PROT_WRITE; |
| 6922 | if (vma->vm_flags & VM_EXEC) |
| 6923 | prot |= PROT_EXEC; |
| 6924 | |
| 6925 | if (vma->vm_flags & VM_MAYSHARE) |
| 6926 | flags = MAP_SHARED; |
| 6927 | else |
| 6928 | flags = MAP_PRIVATE; |
| 6929 | |
| 6930 | if (vma->vm_flags & VM_DENYWRITE) |
| 6931 | flags |= MAP_DENYWRITE; |
| 6932 | if (vma->vm_flags & VM_MAYEXEC) |
| 6933 | flags |= MAP_EXECUTABLE; |
| 6934 | if (vma->vm_flags & VM_LOCKED) |
| 6935 | flags |= MAP_LOCKED; |
| 6936 | if (vma->vm_flags & VM_HUGETLB) |
| 6937 | flags |= MAP_HUGETLB; |
| 6938 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6939 | if (file) { |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6940 | struct inode *inode; |
| 6941 | dev_t dev; |
Oleg Nesterov | 3ea2f2b | 2013-10-16 22:10:04 +0200 | [diff] [blame] | 6942 | |
Peter Zijlstra | 2c42cfbf | 2013-10-17 00:06:46 +0200 | [diff] [blame] | 6943 | buf = kmalloc(PATH_MAX, GFP_KERNEL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6944 | if (!buf) { |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6945 | name = "//enomem"; |
| 6946 | goto cpy_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6947 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6948 | /* |
Oleg Nesterov | 3ea2f2b | 2013-10-16 22:10:04 +0200 | [diff] [blame] | 6949 | * d_path() works from the end of the rb backwards, so we |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6950 | * need to add enough zero bytes after the string to handle |
| 6951 | * the 64bit alignment we do later. |
| 6952 | */ |
Miklos Szeredi | 9bf39ab | 2015-06-19 10:29:13 +0200 | [diff] [blame] | 6953 | name = file_path(file, buf, PATH_MAX - sizeof(u64)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6954 | if (IS_ERR(name)) { |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6955 | name = "//toolong"; |
| 6956 | goto cpy_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6957 | } |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6958 | inode = file_inode(vma->vm_file); |
| 6959 | dev = inode->i_sb->s_dev; |
| 6960 | ino = inode->i_ino; |
| 6961 | gen = inode->i_generation; |
| 6962 | maj = MAJOR(dev); |
| 6963 | min = MINOR(dev); |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 6964 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6965 | goto got_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6966 | } else { |
Jiri Olsa | fbe26ab | 2014-07-14 17:57:19 +0200 | [diff] [blame] | 6967 | if (vma->vm_ops && vma->vm_ops->name) { |
| 6968 | name = (char *) vma->vm_ops->name(vma); |
| 6969 | if (name) |
| 6970 | goto cpy_name; |
| 6971 | } |
| 6972 | |
Peter Zijlstra | 2c42cfbf | 2013-10-17 00:06:46 +0200 | [diff] [blame] | 6973 | name = (char *)arch_vma_name(vma); |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6974 | if (name) |
| 6975 | goto cpy_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6976 | |
Oleg Nesterov | 32c5fb7 | 2013-10-16 22:09:45 +0200 | [diff] [blame] | 6977 | if (vma->vm_start <= vma->vm_mm->start_brk && |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6978 | vma->vm_end >= vma->vm_mm->brk) { |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6979 | name = "[heap]"; |
| 6980 | goto cpy_name; |
Oleg Nesterov | 32c5fb7 | 2013-10-16 22:09:45 +0200 | [diff] [blame] | 6981 | } |
| 6982 | if (vma->vm_start <= vma->vm_mm->start_stack && |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6983 | vma->vm_end >= vma->vm_mm->start_stack) { |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6984 | name = "[stack]"; |
| 6985 | goto cpy_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6986 | } |
| 6987 | |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6988 | name = "//anon"; |
| 6989 | goto cpy_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6990 | } |
| 6991 | |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6992 | cpy_name: |
| 6993 | strlcpy(tmp, name, sizeof(tmp)); |
| 6994 | name = tmp; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6995 | got_name: |
Peter Zijlstra | 2c42cfbf | 2013-10-17 00:06:46 +0200 | [diff] [blame] | 6996 | /* |
| 6997 | * Since our buffer works in 8 byte units we need to align our string |
| 6998 | * size to a multiple of 8. However, we must guarantee the tail end is |
| 6999 | * zero'd out to avoid leaking random bits to userspace. |
| 7000 | */ |
| 7001 | size = strlen(name)+1; |
| 7002 | while (!IS_ALIGNED(size, sizeof(u64))) |
| 7003 | name[size++] = '\0'; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7004 | |
| 7005 | mmap_event->file_name = name; |
| 7006 | mmap_event->file_size = size; |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 7007 | mmap_event->maj = maj; |
| 7008 | mmap_event->min = min; |
| 7009 | mmap_event->ino = ino; |
| 7010 | mmap_event->ino_generation = gen; |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 7011 | mmap_event->prot = prot; |
| 7012 | mmap_event->flags = flags; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7013 | |
Stephane Eranian | 2fe8542 | 2013-01-24 16:10:39 +0100 | [diff] [blame] | 7014 | if (!(vma->vm_flags & VM_EXEC)) |
| 7015 | mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA; |
| 7016 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7017 | mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size; |
| 7018 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 7019 | perf_iterate_sb(perf_event_mmap_output, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 7020 | mmap_event, |
| 7021 | NULL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7022 | |
| 7023 | kfree(buf); |
| 7024 | } |
| 7025 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 7026 | /* |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 7027 | * Check whether inode and address range match filter criteria. |
| 7028 | */ |
| 7029 | static bool perf_addr_filter_match(struct perf_addr_filter *filter, |
| 7030 | struct file *file, unsigned long offset, |
| 7031 | unsigned long size) |
| 7032 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 7033 | if (filter->inode != file_inode(file)) |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 7034 | return false; |
| 7035 | |
| 7036 | if (filter->offset > offset + size) |
| 7037 | return false; |
| 7038 | |
| 7039 | if (filter->offset + filter->size < offset) |
| 7040 | return false; |
| 7041 | |
| 7042 | return true; |
| 7043 | } |
| 7044 | |
| 7045 | static void __perf_addr_filters_adjust(struct perf_event *event, void *data) |
| 7046 | { |
| 7047 | struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); |
| 7048 | struct vm_area_struct *vma = data; |
| 7049 | unsigned long off = vma->vm_pgoff << PAGE_SHIFT, flags; |
| 7050 | struct file *file = vma->vm_file; |
| 7051 | struct perf_addr_filter *filter; |
| 7052 | unsigned int restart = 0, count = 0; |
| 7053 | |
| 7054 | if (!has_addr_filter(event)) |
| 7055 | return; |
| 7056 | |
| 7057 | if (!file) |
| 7058 | return; |
| 7059 | |
| 7060 | raw_spin_lock_irqsave(&ifh->lock, flags); |
| 7061 | list_for_each_entry(filter, &ifh->list, entry) { |
| 7062 | if (perf_addr_filter_match(filter, file, off, |
| 7063 | vma->vm_end - vma->vm_start)) { |
| 7064 | event->addr_filters_offs[count] = vma->vm_start; |
| 7065 | restart++; |
| 7066 | } |
| 7067 | |
| 7068 | count++; |
| 7069 | } |
| 7070 | |
| 7071 | if (restart) |
| 7072 | event->addr_filters_gen++; |
| 7073 | raw_spin_unlock_irqrestore(&ifh->lock, flags); |
| 7074 | |
| 7075 | if (restart) |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 7076 | perf_event_stop(event, 1); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 7077 | } |
| 7078 | |
| 7079 | /* |
| 7080 | * Adjust all task's events' filters to the new vma |
| 7081 | */ |
| 7082 | static void perf_addr_filters_adjust(struct vm_area_struct *vma) |
| 7083 | { |
| 7084 | struct perf_event_context *ctx; |
| 7085 | int ctxn; |
| 7086 | |
Mathieu Poirier | 12b40a2 | 2016-07-18 10:43:06 -0600 | [diff] [blame] | 7087 | /* |
| 7088 | * Data tracing isn't supported yet and as such there is no need |
| 7089 | * to keep track of anything that isn't related to executable code: |
| 7090 | */ |
| 7091 | if (!(vma->vm_flags & VM_EXEC)) |
| 7092 | return; |
| 7093 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 7094 | rcu_read_lock(); |
| 7095 | for_each_task_context_nr(ctxn) { |
| 7096 | ctx = rcu_dereference(current->perf_event_ctxp[ctxn]); |
| 7097 | if (!ctx) |
| 7098 | continue; |
| 7099 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 7100 | perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 7101 | } |
| 7102 | rcu_read_unlock(); |
| 7103 | } |
| 7104 | |
Eric B Munson | 3af9e85 | 2010-05-18 15:30:49 +0100 | [diff] [blame] | 7105 | void perf_event_mmap(struct vm_area_struct *vma) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7106 | { |
| 7107 | struct perf_mmap_event mmap_event; |
| 7108 | |
| 7109 | if (!atomic_read(&nr_mmap_events)) |
| 7110 | return; |
| 7111 | |
| 7112 | mmap_event = (struct perf_mmap_event){ |
| 7113 | .vma = vma, |
| 7114 | /* .file_name */ |
| 7115 | /* .file_size */ |
| 7116 | .event_id = { |
| 7117 | .header = { |
| 7118 | .type = PERF_RECORD_MMAP, |
Zhang, Yanmin | 39447b3 | 2010-04-19 13:32:41 +0800 | [diff] [blame] | 7119 | .misc = PERF_RECORD_MISC_USER, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7120 | /* .size */ |
| 7121 | }, |
| 7122 | /* .pid */ |
| 7123 | /* .tid */ |
| 7124 | .start = vma->vm_start, |
| 7125 | .len = vma->vm_end - vma->vm_start, |
Peter Zijlstra | 3a0304e | 2010-02-26 10:33:41 +0100 | [diff] [blame] | 7126 | .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7127 | }, |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 7128 | /* .maj (attr_mmap2 only) */ |
| 7129 | /* .min (attr_mmap2 only) */ |
| 7130 | /* .ino (attr_mmap2 only) */ |
| 7131 | /* .ino_generation (attr_mmap2 only) */ |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 7132 | /* .prot (attr_mmap2 only) */ |
| 7133 | /* .flags (attr_mmap2 only) */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7134 | }; |
| 7135 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 7136 | perf_addr_filters_adjust(vma); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7137 | perf_event_mmap_event(&mmap_event); |
| 7138 | } |
| 7139 | |
Alexander Shishkin | 68db7e9 | 2015-01-14 14:18:15 +0200 | [diff] [blame] | 7140 | void perf_event_aux_event(struct perf_event *event, unsigned long head, |
| 7141 | unsigned long size, u64 flags) |
| 7142 | { |
| 7143 | struct perf_output_handle handle; |
| 7144 | struct perf_sample_data sample; |
| 7145 | struct perf_aux_event { |
| 7146 | struct perf_event_header header; |
| 7147 | u64 offset; |
| 7148 | u64 size; |
| 7149 | u64 flags; |
| 7150 | } rec = { |
| 7151 | .header = { |
| 7152 | .type = PERF_RECORD_AUX, |
| 7153 | .misc = 0, |
| 7154 | .size = sizeof(rec), |
| 7155 | }, |
| 7156 | .offset = head, |
| 7157 | .size = size, |
| 7158 | .flags = flags, |
| 7159 | }; |
| 7160 | int ret; |
| 7161 | |
| 7162 | perf_event_header__init_id(&rec.header, &sample, event); |
| 7163 | ret = perf_output_begin(&handle, event, rec.header.size); |
| 7164 | |
| 7165 | if (ret) |
| 7166 | return; |
| 7167 | |
| 7168 | perf_output_put(&handle, rec); |
| 7169 | perf_event__output_id_sample(event, &handle, &sample); |
| 7170 | |
| 7171 | perf_output_end(&handle); |
| 7172 | } |
| 7173 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7174 | /* |
Kan Liang | f38b0db | 2015-05-10 15:13:14 -0400 | [diff] [blame] | 7175 | * Lost/dropped samples logging |
| 7176 | */ |
| 7177 | void perf_log_lost_samples(struct perf_event *event, u64 lost) |
| 7178 | { |
| 7179 | struct perf_output_handle handle; |
| 7180 | struct perf_sample_data sample; |
| 7181 | int ret; |
| 7182 | |
| 7183 | struct { |
| 7184 | struct perf_event_header header; |
| 7185 | u64 lost; |
| 7186 | } lost_samples_event = { |
| 7187 | .header = { |
| 7188 | .type = PERF_RECORD_LOST_SAMPLES, |
| 7189 | .misc = 0, |
| 7190 | .size = sizeof(lost_samples_event), |
| 7191 | }, |
| 7192 | .lost = lost, |
| 7193 | }; |
| 7194 | |
| 7195 | perf_event_header__init_id(&lost_samples_event.header, &sample, event); |
| 7196 | |
| 7197 | ret = perf_output_begin(&handle, event, |
| 7198 | lost_samples_event.header.size); |
| 7199 | if (ret) |
| 7200 | return; |
| 7201 | |
| 7202 | perf_output_put(&handle, lost_samples_event); |
| 7203 | perf_event__output_id_sample(event, &handle, &sample); |
| 7204 | perf_output_end(&handle); |
| 7205 | } |
| 7206 | |
| 7207 | /* |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 7208 | * context_switch tracking |
| 7209 | */ |
| 7210 | |
| 7211 | struct perf_switch_event { |
| 7212 | struct task_struct *task; |
| 7213 | struct task_struct *next_prev; |
| 7214 | |
| 7215 | struct { |
| 7216 | struct perf_event_header header; |
| 7217 | u32 next_prev_pid; |
| 7218 | u32 next_prev_tid; |
| 7219 | } event_id; |
| 7220 | }; |
| 7221 | |
| 7222 | static int perf_event_switch_match(struct perf_event *event) |
| 7223 | { |
| 7224 | return event->attr.context_switch; |
| 7225 | } |
| 7226 | |
| 7227 | static void perf_event_switch_output(struct perf_event *event, void *data) |
| 7228 | { |
| 7229 | struct perf_switch_event *se = data; |
| 7230 | struct perf_output_handle handle; |
| 7231 | struct perf_sample_data sample; |
| 7232 | int ret; |
| 7233 | |
| 7234 | if (!perf_event_switch_match(event)) |
| 7235 | return; |
| 7236 | |
| 7237 | /* Only CPU-wide events are allowed to see next/prev pid/tid */ |
| 7238 | if (event->ctx->task) { |
| 7239 | se->event_id.header.type = PERF_RECORD_SWITCH; |
| 7240 | se->event_id.header.size = sizeof(se->event_id.header); |
| 7241 | } else { |
| 7242 | se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE; |
| 7243 | se->event_id.header.size = sizeof(se->event_id); |
| 7244 | se->event_id.next_prev_pid = |
| 7245 | perf_event_pid(event, se->next_prev); |
| 7246 | se->event_id.next_prev_tid = |
| 7247 | perf_event_tid(event, se->next_prev); |
| 7248 | } |
| 7249 | |
| 7250 | perf_event_header__init_id(&se->event_id.header, &sample, event); |
| 7251 | |
| 7252 | ret = perf_output_begin(&handle, event, se->event_id.header.size); |
| 7253 | if (ret) |
| 7254 | return; |
| 7255 | |
| 7256 | if (event->ctx->task) |
| 7257 | perf_output_put(&handle, se->event_id.header); |
| 7258 | else |
| 7259 | perf_output_put(&handle, se->event_id); |
| 7260 | |
| 7261 | perf_event__output_id_sample(event, &handle, &sample); |
| 7262 | |
| 7263 | perf_output_end(&handle); |
| 7264 | } |
| 7265 | |
| 7266 | static void perf_event_switch(struct task_struct *task, |
| 7267 | struct task_struct *next_prev, bool sched_in) |
| 7268 | { |
| 7269 | struct perf_switch_event switch_event; |
| 7270 | |
| 7271 | /* N.B. caller checks nr_switch_events != 0 */ |
| 7272 | |
| 7273 | switch_event = (struct perf_switch_event){ |
| 7274 | .task = task, |
| 7275 | .next_prev = next_prev, |
| 7276 | .event_id = { |
| 7277 | .header = { |
| 7278 | /* .type */ |
| 7279 | .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT, |
| 7280 | /* .size */ |
| 7281 | }, |
| 7282 | /* .next_prev_pid */ |
| 7283 | /* .next_prev_tid */ |
| 7284 | }, |
| 7285 | }; |
| 7286 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 7287 | perf_iterate_sb(perf_event_switch_output, |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 7288 | &switch_event, |
| 7289 | NULL); |
| 7290 | } |
| 7291 | |
| 7292 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7293 | * IRQ throttle logging |
| 7294 | */ |
| 7295 | |
| 7296 | static void perf_log_throttle(struct perf_event *event, int enable) |
| 7297 | { |
| 7298 | struct perf_output_handle handle; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 7299 | struct perf_sample_data sample; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7300 | int ret; |
| 7301 | |
| 7302 | struct { |
| 7303 | struct perf_event_header header; |
| 7304 | u64 time; |
| 7305 | u64 id; |
| 7306 | u64 stream_id; |
| 7307 | } throttle_event = { |
| 7308 | .header = { |
| 7309 | .type = PERF_RECORD_THROTTLE, |
| 7310 | .misc = 0, |
| 7311 | .size = sizeof(throttle_event), |
| 7312 | }, |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 7313 | .time = perf_event_clock(event), |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7314 | .id = primary_event_id(event), |
| 7315 | .stream_id = event->id, |
| 7316 | }; |
| 7317 | |
| 7318 | if (enable) |
| 7319 | throttle_event.header.type = PERF_RECORD_UNTHROTTLE; |
| 7320 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 7321 | perf_event_header__init_id(&throttle_event.header, &sample, event); |
| 7322 | |
| 7323 | ret = perf_output_begin(&handle, event, |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 7324 | throttle_event.header.size); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7325 | if (ret) |
| 7326 | return; |
| 7327 | |
| 7328 | perf_output_put(&handle, throttle_event); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 7329 | perf_event__output_id_sample(event, &handle, &sample); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7330 | perf_output_end(&handle); |
| 7331 | } |
| 7332 | |
Alexander Shishkin | 8d4e6c4 | 2017-03-30 18:39:56 +0300 | [diff] [blame] | 7333 | void perf_event_itrace_started(struct perf_event *event) |
| 7334 | { |
| 7335 | event->attach_state |= PERF_ATTACH_ITRACE; |
| 7336 | } |
| 7337 | |
Alexander Shishkin | ec0d772 | 2015-01-14 14:18:23 +0200 | [diff] [blame] | 7338 | static void perf_log_itrace_start(struct perf_event *event) |
| 7339 | { |
| 7340 | struct perf_output_handle handle; |
| 7341 | struct perf_sample_data sample; |
| 7342 | struct perf_aux_event { |
| 7343 | struct perf_event_header header; |
| 7344 | u32 pid; |
| 7345 | u32 tid; |
| 7346 | } rec; |
| 7347 | int ret; |
| 7348 | |
| 7349 | if (event->parent) |
| 7350 | event = event->parent; |
| 7351 | |
| 7352 | if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) || |
Alexander Shishkin | 8d4e6c4 | 2017-03-30 18:39:56 +0300 | [diff] [blame] | 7353 | event->attach_state & PERF_ATTACH_ITRACE) |
Alexander Shishkin | ec0d772 | 2015-01-14 14:18:23 +0200 | [diff] [blame] | 7354 | return; |
| 7355 | |
Alexander Shishkin | ec0d772 | 2015-01-14 14:18:23 +0200 | [diff] [blame] | 7356 | rec.header.type = PERF_RECORD_ITRACE_START; |
| 7357 | rec.header.misc = 0; |
| 7358 | rec.header.size = sizeof(rec); |
| 7359 | rec.pid = perf_event_pid(event, current); |
| 7360 | rec.tid = perf_event_tid(event, current); |
| 7361 | |
| 7362 | perf_event_header__init_id(&rec.header, &sample, event); |
| 7363 | ret = perf_output_begin(&handle, event, rec.header.size); |
| 7364 | |
| 7365 | if (ret) |
| 7366 | return; |
| 7367 | |
| 7368 | perf_output_put(&handle, rec); |
| 7369 | perf_event__output_id_sample(event, &handle, &sample); |
| 7370 | |
| 7371 | perf_output_end(&handle); |
| 7372 | } |
| 7373 | |
Jiri Olsa | 475113d | 2016-12-28 14:31:03 +0100 | [diff] [blame] | 7374 | static int |
| 7375 | __perf_event_account_interrupt(struct perf_event *event, int throttle) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7376 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7377 | struct hw_perf_event *hwc = &event->hw; |
| 7378 | int ret = 0; |
Jiri Olsa | 475113d | 2016-12-28 14:31:03 +0100 | [diff] [blame] | 7379 | u64 seq; |
Peter Zijlstra | 9639882 | 2010-11-24 18:55:29 +0100 | [diff] [blame] | 7380 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 7381 | seq = __this_cpu_read(perf_throttled_seq); |
| 7382 | if (seq != hwc->interrupts_seq) { |
| 7383 | hwc->interrupts_seq = seq; |
| 7384 | hwc->interrupts = 1; |
| 7385 | } else { |
| 7386 | hwc->interrupts++; |
| 7387 | if (unlikely(throttle |
| 7388 | && hwc->interrupts >= max_samples_per_tick)) { |
| 7389 | __this_cpu_inc(perf_throttled_count); |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 7390 | tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS); |
Peter Zijlstra | 163ec43 | 2011-02-16 11:22:34 +0100 | [diff] [blame] | 7391 | hwc->interrupts = MAX_INTERRUPTS; |
| 7392 | perf_log_throttle(event, 0); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7393 | ret = 1; |
| 7394 | } |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 7395 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7396 | |
| 7397 | if (event->attr.freq) { |
| 7398 | u64 now = perf_clock(); |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 7399 | s64 delta = now - hwc->freq_time_stamp; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7400 | |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 7401 | hwc->freq_time_stamp = now; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7402 | |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 7403 | if (delta > 0 && delta < 2*TICK_NSEC) |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 7404 | perf_adjust_period(event, delta, hwc->last_period, true); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7405 | } |
| 7406 | |
Jiri Olsa | 475113d | 2016-12-28 14:31:03 +0100 | [diff] [blame] | 7407 | return ret; |
| 7408 | } |
| 7409 | |
| 7410 | int perf_event_account_interrupt(struct perf_event *event) |
| 7411 | { |
| 7412 | return __perf_event_account_interrupt(event, 1); |
| 7413 | } |
| 7414 | |
| 7415 | /* |
| 7416 | * Generic event overflow handling, sampling. |
| 7417 | */ |
| 7418 | |
| 7419 | static int __perf_event_overflow(struct perf_event *event, |
| 7420 | int throttle, struct perf_sample_data *data, |
| 7421 | struct pt_regs *regs) |
| 7422 | { |
| 7423 | int events = atomic_read(&event->event_limit); |
| 7424 | int ret = 0; |
| 7425 | |
| 7426 | /* |
| 7427 | * Non-sampling counters might still use the PMI to fold short |
| 7428 | * hardware counters, ignore those. |
| 7429 | */ |
| 7430 | if (unlikely(!is_sampling_event(event))) |
| 7431 | return 0; |
| 7432 | |
| 7433 | ret = __perf_event_account_interrupt(event, throttle); |
| 7434 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7435 | /* |
| 7436 | * XXX event_limit might not quite work as expected on inherited |
| 7437 | * events |
| 7438 | */ |
| 7439 | |
| 7440 | event->pending_kill = POLL_IN; |
| 7441 | if (events && atomic_dec_and_test(&event->event_limit)) { |
| 7442 | ret = 1; |
| 7443 | event->pending_kill = POLL_HUP; |
Jiri Olsa | 5aab90c | 2016-10-26 11:48:24 +0200 | [diff] [blame] | 7444 | |
| 7445 | perf_event_disable_inatomic(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7446 | } |
| 7447 | |
Alexei Starovoitov | aa6a5f3 | 2016-09-01 18:37:24 -0700 | [diff] [blame] | 7448 | READ_ONCE(event->overflow_handler)(event, data, regs); |
Peter Zijlstra | 453f19e | 2009-11-20 22:19:43 +0100 | [diff] [blame] | 7449 | |
Peter Zijlstra | fed66e2cd | 2015-06-11 10:32:01 +0200 | [diff] [blame] | 7450 | if (*perf_event_fasync(event) && event->pending_kill) { |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7451 | event->pending_wakeup = 1; |
| 7452 | irq_work_queue(&event->pending); |
Peter Zijlstra | f506b3d | 2011-05-26 17:02:53 +0200 | [diff] [blame] | 7453 | } |
| 7454 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7455 | return ret; |
| 7456 | } |
| 7457 | |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7458 | int perf_event_overflow(struct perf_event *event, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7459 | struct perf_sample_data *data, |
| 7460 | struct pt_regs *regs) |
| 7461 | { |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7462 | return __perf_event_overflow(event, 1, data, regs); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7463 | } |
| 7464 | |
| 7465 | /* |
| 7466 | * Generic software event infrastructure |
| 7467 | */ |
| 7468 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7469 | struct swevent_htable { |
| 7470 | struct swevent_hlist *swevent_hlist; |
| 7471 | struct mutex hlist_mutex; |
| 7472 | int hlist_refcount; |
| 7473 | |
| 7474 | /* Recursion avoidance in each contexts */ |
| 7475 | int recursion[PERF_NR_CONTEXTS]; |
| 7476 | }; |
| 7477 | |
| 7478 | static DEFINE_PER_CPU(struct swevent_htable, swevent_htable); |
| 7479 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7480 | /* |
| 7481 | * We directly increment event->count and keep a second value in |
| 7482 | * event->hw.period_left to count intervals. This period event |
| 7483 | * is kept in the range [-sample_period, 0] so that we can use the |
| 7484 | * sign as trigger. |
| 7485 | */ |
| 7486 | |
Jiri Olsa | ab57384 | 2013-05-01 17:25:44 +0200 | [diff] [blame] | 7487 | u64 perf_swevent_set_period(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7488 | { |
| 7489 | struct hw_perf_event *hwc = &event->hw; |
| 7490 | u64 period = hwc->last_period; |
| 7491 | u64 nr, offset; |
| 7492 | s64 old, val; |
| 7493 | |
| 7494 | hwc->last_period = hwc->sample_period; |
| 7495 | |
| 7496 | again: |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 7497 | old = val = local64_read(&hwc->period_left); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7498 | if (val < 0) |
| 7499 | return 0; |
| 7500 | |
| 7501 | nr = div64_u64(period + val, period); |
| 7502 | offset = nr * period; |
| 7503 | val -= offset; |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 7504 | if (local64_cmpxchg(&hwc->period_left, old, val) != old) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7505 | goto again; |
| 7506 | |
| 7507 | return nr; |
| 7508 | } |
| 7509 | |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7510 | static void perf_swevent_overflow(struct perf_event *event, u64 overflow, |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7511 | struct perf_sample_data *data, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7512 | struct pt_regs *regs) |
| 7513 | { |
| 7514 | struct hw_perf_event *hwc = &event->hw; |
| 7515 | int throttle = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7516 | |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7517 | if (!overflow) |
| 7518 | overflow = perf_swevent_set_period(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7519 | |
| 7520 | if (hwc->interrupts == MAX_INTERRUPTS) |
| 7521 | return; |
| 7522 | |
| 7523 | for (; overflow; overflow--) { |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7524 | if (__perf_event_overflow(event, throttle, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7525 | data, regs)) { |
| 7526 | /* |
| 7527 | * We inhibit the overflow from happening when |
| 7528 | * hwc->interrupts == MAX_INTERRUPTS. |
| 7529 | */ |
| 7530 | break; |
| 7531 | } |
| 7532 | throttle = 1; |
| 7533 | } |
| 7534 | } |
| 7535 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7536 | static void perf_swevent_event(struct perf_event *event, u64 nr, |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7537 | struct perf_sample_data *data, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7538 | struct pt_regs *regs) |
| 7539 | { |
| 7540 | struct hw_perf_event *hwc = &event->hw; |
| 7541 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 7542 | local64_add(nr, &event->count); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7543 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7544 | if (!regs) |
| 7545 | return; |
| 7546 | |
Franck Bui-Huu | 6c7e550 | 2010-11-23 16:21:43 +0100 | [diff] [blame] | 7547 | if (!is_sampling_event(event)) |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7548 | return; |
| 7549 | |
Andrew Vagin | 5d81e5c | 2011-11-07 15:54:12 +0300 | [diff] [blame] | 7550 | if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) { |
| 7551 | data->period = nr; |
| 7552 | return perf_swevent_overflow(event, 1, data, regs); |
| 7553 | } else |
| 7554 | data->period = event->hw.last_period; |
| 7555 | |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7556 | if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq) |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7557 | return perf_swevent_overflow(event, 1, data, regs); |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7558 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 7559 | if (local64_add_negative(nr, &hwc->period_left)) |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7560 | return; |
| 7561 | |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7562 | perf_swevent_overflow(event, 0, data, regs); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7563 | } |
| 7564 | |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 7565 | static int perf_exclude_event(struct perf_event *event, |
| 7566 | struct pt_regs *regs) |
| 7567 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7568 | if (event->hw.state & PERF_HES_STOPPED) |
Frederic Weisbecker | 91b2f48 | 2011-03-07 21:27:08 +0100 | [diff] [blame] | 7569 | return 1; |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7570 | |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 7571 | if (regs) { |
| 7572 | if (event->attr.exclude_user && user_mode(regs)) |
| 7573 | return 1; |
| 7574 | |
| 7575 | if (event->attr.exclude_kernel && !user_mode(regs)) |
| 7576 | return 1; |
| 7577 | } |
| 7578 | |
| 7579 | return 0; |
| 7580 | } |
| 7581 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7582 | static int perf_swevent_match(struct perf_event *event, |
| 7583 | enum perf_type_id type, |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 7584 | u32 event_id, |
| 7585 | struct perf_sample_data *data, |
| 7586 | struct pt_regs *regs) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7587 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7588 | if (event->attr.type != type) |
| 7589 | return 0; |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 7590 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7591 | if (event->attr.config != event_id) |
| 7592 | return 0; |
| 7593 | |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 7594 | if (perf_exclude_event(event, regs)) |
| 7595 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7596 | |
| 7597 | return 1; |
| 7598 | } |
| 7599 | |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7600 | static inline u64 swevent_hash(u64 type, u32 event_id) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7601 | { |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7602 | u64 val = event_id | (type << 32); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7603 | |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7604 | return hash_64(val, SWEVENT_HLIST_BITS); |
| 7605 | } |
| 7606 | |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7607 | static inline struct hlist_head * |
| 7608 | __find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7609 | { |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7610 | u64 hash = swevent_hash(type, event_id); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7611 | |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7612 | return &hlist->heads[hash]; |
| 7613 | } |
| 7614 | |
| 7615 | /* For the read side: events when they trigger */ |
| 7616 | static inline struct hlist_head * |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7617 | find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id) |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7618 | { |
| 7619 | struct swevent_hlist *hlist; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7620 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7621 | hlist = rcu_dereference(swhash->swevent_hlist); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7622 | if (!hlist) |
| 7623 | return NULL; |
| 7624 | |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7625 | return __find_swevent_head(hlist, type, event_id); |
| 7626 | } |
| 7627 | |
| 7628 | /* For the event head insertion and removal in the hlist */ |
| 7629 | static inline struct hlist_head * |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7630 | find_swevent_head(struct swevent_htable *swhash, struct perf_event *event) |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7631 | { |
| 7632 | struct swevent_hlist *hlist; |
| 7633 | u32 event_id = event->attr.config; |
| 7634 | u64 type = event->attr.type; |
| 7635 | |
| 7636 | /* |
| 7637 | * Event scheduling is always serialized against hlist allocation |
| 7638 | * and release. Which makes the protected version suitable here. |
| 7639 | * The context lock guarantees that. |
| 7640 | */ |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7641 | hlist = rcu_dereference_protected(swhash->swevent_hlist, |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7642 | lockdep_is_held(&event->ctx->lock)); |
| 7643 | if (!hlist) |
| 7644 | return NULL; |
| 7645 | |
| 7646 | return __find_swevent_head(hlist, type, event_id); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7647 | } |
| 7648 | |
| 7649 | static void do_perf_sw_event(enum perf_type_id type, u32 event_id, |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7650 | u64 nr, |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7651 | struct perf_sample_data *data, |
| 7652 | struct pt_regs *regs) |
| 7653 | { |
Christoph Lameter | 4a32fea | 2014-08-17 12:30:27 -0500 | [diff] [blame] | 7654 | struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7655 | struct perf_event *event; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7656 | struct hlist_head *head; |
| 7657 | |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7658 | rcu_read_lock(); |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7659 | head = find_swevent_head_rcu(swhash, type, event_id); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7660 | if (!head) |
| 7661 | goto end; |
| 7662 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 7663 | hlist_for_each_entry_rcu(event, head, hlist_entry) { |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 7664 | if (perf_swevent_match(event, type, event_id, data, regs)) |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7665 | perf_swevent_event(event, nr, data, regs); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7666 | } |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7667 | end: |
| 7668 | rcu_read_unlock(); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7669 | } |
| 7670 | |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7671 | DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]); |
| 7672 | |
Peter Zijlstra | 4ed7c92 | 2009-11-23 11:37:29 +0100 | [diff] [blame] | 7673 | int perf_swevent_get_recursion_context(void) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7674 | { |
Christoph Lameter | 4a32fea | 2014-08-17 12:30:27 -0500 | [diff] [blame] | 7675 | struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable); |
Frederic Weisbecker | ce71b9d | 2009-11-22 05:26:55 +0100 | [diff] [blame] | 7676 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7677 | return get_recursion_context(swhash->recursion); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7678 | } |
Ingo Molnar | 645e8cc | 2009-11-22 12:20:19 +0100 | [diff] [blame] | 7679 | EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7680 | |
Alexei Starovoitov | 98b5c2c | 2016-04-06 18:43:25 -0700 | [diff] [blame] | 7681 | void perf_swevent_put_recursion_context(int rctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7682 | { |
Christoph Lameter | 4a32fea | 2014-08-17 12:30:27 -0500 | [diff] [blame] | 7683 | struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable); |
Frederic Weisbecker | 927c7a9 | 2010-07-01 16:20:36 +0200 | [diff] [blame] | 7684 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7685 | put_recursion_context(swhash->recursion, rctx); |
Frederic Weisbecker | ce71b9d | 2009-11-22 05:26:55 +0100 | [diff] [blame] | 7686 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7687 | |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7688 | void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7689 | { |
Ingo Molnar | a4234bf | 2009-11-23 10:57:59 +0100 | [diff] [blame] | 7690 | struct perf_sample_data data; |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7691 | |
| 7692 | if (WARN_ON_ONCE(!regs)) |
| 7693 | return; |
| 7694 | |
| 7695 | perf_sample_data_init(&data, addr, 0); |
| 7696 | do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs); |
| 7697 | } |
| 7698 | |
| 7699 | void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) |
| 7700 | { |
Peter Zijlstra | 4ed7c92 | 2009-11-23 11:37:29 +0100 | [diff] [blame] | 7701 | int rctx; |
| 7702 | |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7703 | preempt_disable_notrace(); |
Peter Zijlstra | 4ed7c92 | 2009-11-23 11:37:29 +0100 | [diff] [blame] | 7704 | rctx = perf_swevent_get_recursion_context(); |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7705 | if (unlikely(rctx < 0)) |
| 7706 | goto fail; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7707 | |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7708 | ___perf_sw_event(event_id, nr, regs, addr); |
Peter Zijlstra | 4ed7c92 | 2009-11-23 11:37:29 +0100 | [diff] [blame] | 7709 | |
| 7710 | perf_swevent_put_recursion_context(rctx); |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7711 | fail: |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7712 | preempt_enable_notrace(); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7713 | } |
| 7714 | |
| 7715 | static void perf_swevent_read(struct perf_event *event) |
| 7716 | { |
| 7717 | } |
| 7718 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7719 | static int perf_swevent_add(struct perf_event *event, int flags) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7720 | { |
Christoph Lameter | 4a32fea | 2014-08-17 12:30:27 -0500 | [diff] [blame] | 7721 | struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7722 | struct hw_perf_event *hwc = &event->hw; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7723 | struct hlist_head *head; |
| 7724 | |
Franck Bui-Huu | 6c7e550 | 2010-11-23 16:21:43 +0100 | [diff] [blame] | 7725 | if (is_sampling_event(event)) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7726 | hwc->last_period = hwc->sample_period; |
| 7727 | perf_swevent_set_period(event); |
| 7728 | } |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7729 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7730 | hwc->state = !(flags & PERF_EF_START); |
| 7731 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7732 | head = find_swevent_head(swhash, event); |
Peter Zijlstra | 12ca6ad | 2015-12-15 13:49:05 +0100 | [diff] [blame] | 7733 | if (WARN_ON_ONCE(!head)) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7734 | return -EINVAL; |
| 7735 | |
| 7736 | hlist_add_head_rcu(&event->hlist_entry, head); |
Shaohua Li | 6a694a6 | 2015-02-05 15:55:32 -0800 | [diff] [blame] | 7737 | perf_event_update_userpage(event); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7738 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7739 | return 0; |
| 7740 | } |
| 7741 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7742 | static void perf_swevent_del(struct perf_event *event, int flags) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7743 | { |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7744 | hlist_del_rcu(&event->hlist_entry); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7745 | } |
| 7746 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7747 | static void perf_swevent_start(struct perf_event *event, int flags) |
Peter Zijlstra | c6df8d5 | 2010-06-03 11:21:20 +0200 | [diff] [blame] | 7748 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7749 | event->hw.state = 0; |
Peter Zijlstra | c6df8d5 | 2010-06-03 11:21:20 +0200 | [diff] [blame] | 7750 | } |
| 7751 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7752 | static void perf_swevent_stop(struct perf_event *event, int flags) |
Peter Zijlstra | c6df8d5 | 2010-06-03 11:21:20 +0200 | [diff] [blame] | 7753 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7754 | event->hw.state = PERF_HES_STOPPED; |
Peter Zijlstra | c6df8d5 | 2010-06-03 11:21:20 +0200 | [diff] [blame] | 7755 | } |
| 7756 | |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7757 | /* Deref the hlist from the update side */ |
| 7758 | static inline struct swevent_hlist * |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7759 | swevent_hlist_deref(struct swevent_htable *swhash) |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7760 | { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7761 | return rcu_dereference_protected(swhash->swevent_hlist, |
| 7762 | lockdep_is_held(&swhash->hlist_mutex)); |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7763 | } |
| 7764 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7765 | static void swevent_hlist_release(struct swevent_htable *swhash) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7766 | { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7767 | struct swevent_hlist *hlist = swevent_hlist_deref(swhash); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7768 | |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7769 | if (!hlist) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7770 | return; |
| 7771 | |
Andreea-Cristina Bernat | 70691d4 | 2014-08-22 16:26:05 +0300 | [diff] [blame] | 7772 | RCU_INIT_POINTER(swhash->swevent_hlist, NULL); |
Lai Jiangshan | fa4bbc4 | 2011-03-18 12:08:29 +0800 | [diff] [blame] | 7773 | kfree_rcu(hlist, rcu_head); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7774 | } |
| 7775 | |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7776 | static void swevent_hlist_put_cpu(int cpu) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7777 | { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7778 | struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7779 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7780 | mutex_lock(&swhash->hlist_mutex); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7781 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7782 | if (!--swhash->hlist_refcount) |
| 7783 | swevent_hlist_release(swhash); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7784 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7785 | mutex_unlock(&swhash->hlist_mutex); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7786 | } |
| 7787 | |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7788 | static void swevent_hlist_put(void) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7789 | { |
| 7790 | int cpu; |
| 7791 | |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7792 | for_each_possible_cpu(cpu) |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7793 | swevent_hlist_put_cpu(cpu); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7794 | } |
| 7795 | |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7796 | static int swevent_hlist_get_cpu(int cpu) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7797 | { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7798 | struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7799 | int err = 0; |
| 7800 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7801 | mutex_lock(&swhash->hlist_mutex); |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 7802 | if (!swevent_hlist_deref(swhash) && |
| 7803 | cpumask_test_cpu(cpu, perf_online_mask)) { |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7804 | struct swevent_hlist *hlist; |
| 7805 | |
| 7806 | hlist = kzalloc(sizeof(*hlist), GFP_KERNEL); |
| 7807 | if (!hlist) { |
| 7808 | err = -ENOMEM; |
| 7809 | goto exit; |
| 7810 | } |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7811 | rcu_assign_pointer(swhash->swevent_hlist, hlist); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7812 | } |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7813 | swhash->hlist_refcount++; |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 7814 | exit: |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7815 | mutex_unlock(&swhash->hlist_mutex); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7816 | |
| 7817 | return err; |
| 7818 | } |
| 7819 | |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7820 | static int swevent_hlist_get(void) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7821 | { |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7822 | int err, cpu, failed_cpu; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7823 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 7824 | mutex_lock(&pmus_lock); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7825 | for_each_possible_cpu(cpu) { |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7826 | err = swevent_hlist_get_cpu(cpu); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7827 | if (err) { |
| 7828 | failed_cpu = cpu; |
| 7829 | goto fail; |
| 7830 | } |
| 7831 | } |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 7832 | mutex_unlock(&pmus_lock); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7833 | return 0; |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 7834 | fail: |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7835 | for_each_possible_cpu(cpu) { |
| 7836 | if (cpu == failed_cpu) |
| 7837 | break; |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7838 | swevent_hlist_put_cpu(cpu); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7839 | } |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 7840 | mutex_unlock(&pmus_lock); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7841 | return err; |
| 7842 | } |
| 7843 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 7844 | struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX]; |
Frederic Weisbecker | 95476b6 | 2010-04-14 23:42:18 +0200 | [diff] [blame] | 7845 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7846 | static void sw_perf_event_destroy(struct perf_event *event) |
| 7847 | { |
| 7848 | u64 event_id = event->attr.config; |
| 7849 | |
| 7850 | WARN_ON(event->parent); |
| 7851 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 7852 | static_key_slow_dec(&perf_swevent_enabled[event_id]); |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7853 | swevent_hlist_put(); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7854 | } |
| 7855 | |
| 7856 | static int perf_swevent_init(struct perf_event *event) |
| 7857 | { |
Tommi Rantala | 8176cce | 2013-04-13 22:49:14 +0300 | [diff] [blame] | 7858 | u64 event_id = event->attr.config; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7859 | |
| 7860 | if (event->attr.type != PERF_TYPE_SOFTWARE) |
| 7861 | return -ENOENT; |
| 7862 | |
Stephane Eranian | 2481c5f | 2012-02-09 23:20:59 +0100 | [diff] [blame] | 7863 | /* |
| 7864 | * no branch sampling for software events |
| 7865 | */ |
| 7866 | if (has_branch_stack(event)) |
| 7867 | return -EOPNOTSUPP; |
| 7868 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7869 | switch (event_id) { |
| 7870 | case PERF_COUNT_SW_CPU_CLOCK: |
| 7871 | case PERF_COUNT_SW_TASK_CLOCK: |
| 7872 | return -ENOENT; |
| 7873 | |
| 7874 | default: |
| 7875 | break; |
| 7876 | } |
| 7877 | |
Dan Carpenter | ce67783 | 2010-10-24 21:50:42 +0200 | [diff] [blame] | 7878 | if (event_id >= PERF_COUNT_SW_MAX) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7879 | return -ENOENT; |
| 7880 | |
| 7881 | if (!event->parent) { |
| 7882 | int err; |
| 7883 | |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7884 | err = swevent_hlist_get(); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7885 | if (err) |
| 7886 | return err; |
| 7887 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 7888 | static_key_slow_inc(&perf_swevent_enabled[event_id]); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7889 | event->destroy = sw_perf_event_destroy; |
| 7890 | } |
| 7891 | |
| 7892 | return 0; |
| 7893 | } |
| 7894 | |
| 7895 | static struct pmu perf_swevent = { |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 7896 | .task_ctx_nr = perf_sw_context, |
| 7897 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 7898 | .capabilities = PERF_PMU_CAP_NO_NMI, |
| 7899 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7900 | .event_init = perf_swevent_init, |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7901 | .add = perf_swevent_add, |
| 7902 | .del = perf_swevent_del, |
| 7903 | .start = perf_swevent_start, |
| 7904 | .stop = perf_swevent_stop, |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7905 | .read = perf_swevent_read, |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7906 | }; |
Frederic Weisbecker | 95476b6 | 2010-04-14 23:42:18 +0200 | [diff] [blame] | 7907 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7908 | #ifdef CONFIG_EVENT_TRACING |
| 7909 | |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7910 | static int perf_tp_filter_match(struct perf_event *event, |
Frederic Weisbecker | 95476b6 | 2010-04-14 23:42:18 +0200 | [diff] [blame] | 7911 | struct perf_sample_data *data) |
| 7912 | { |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 7913 | void *record = data->raw->frag.data; |
Frederic Weisbecker | 95476b6 | 2010-04-14 23:42:18 +0200 | [diff] [blame] | 7914 | |
Peter Zijlstra | b71b437 | 2015-11-02 10:50:51 +0100 | [diff] [blame] | 7915 | /* only top level events have filters set */ |
| 7916 | if (event->parent) |
| 7917 | event = event->parent; |
| 7918 | |
Frederic Weisbecker | 95476b6 | 2010-04-14 23:42:18 +0200 | [diff] [blame] | 7919 | if (likely(!event->filter) || filter_match_preds(event->filter, record)) |
| 7920 | return 1; |
| 7921 | return 0; |
| 7922 | } |
| 7923 | |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7924 | static int perf_tp_event_match(struct perf_event *event, |
| 7925 | struct perf_sample_data *data, |
| 7926 | struct pt_regs *regs) |
| 7927 | { |
Frederic Weisbecker | a0f7d0f | 2011-03-07 21:27:09 +0100 | [diff] [blame] | 7928 | if (event->hw.state & PERF_HES_STOPPED) |
| 7929 | return 0; |
Peter Zijlstra | 580d607 | 2010-05-20 20:54:31 +0200 | [diff] [blame] | 7930 | /* |
| 7931 | * All tracepoints are from kernel-space. |
| 7932 | */ |
| 7933 | if (event->attr.exclude_kernel) |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7934 | return 0; |
| 7935 | |
| 7936 | if (!perf_tp_filter_match(event, data)) |
| 7937 | return 0; |
| 7938 | |
| 7939 | return 1; |
| 7940 | } |
| 7941 | |
Alexei Starovoitov | 85b67bc | 2016-04-18 20:11:50 -0700 | [diff] [blame] | 7942 | void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx, |
| 7943 | struct trace_event_call *call, u64 count, |
| 7944 | struct pt_regs *regs, struct hlist_head *head, |
| 7945 | struct task_struct *task) |
| 7946 | { |
| 7947 | struct bpf_prog *prog = call->prog; |
| 7948 | |
| 7949 | if (prog) { |
| 7950 | *(struct pt_regs **)raw_data = regs; |
| 7951 | if (!trace_call_bpf(prog, raw_data) || hlist_empty(head)) { |
| 7952 | perf_swevent_put_recursion_context(rctx); |
| 7953 | return; |
| 7954 | } |
| 7955 | } |
| 7956 | perf_tp_event(call->event.type, count, raw_data, size, regs, head, |
Peter Zijlstra | 8fd0fbb | 2017-10-11 09:45:29 +0200 | [diff] [blame^] | 7957 | rctx, task); |
Alexei Starovoitov | 85b67bc | 2016-04-18 20:11:50 -0700 | [diff] [blame] | 7958 | } |
| 7959 | EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit); |
| 7960 | |
Alexei Starovoitov | 1e1dcd9 | 2016-04-06 18:43:24 -0700 | [diff] [blame] | 7961 | void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size, |
Andrew Vagin | e6dab5f | 2012-07-11 18:14:58 +0400 | [diff] [blame] | 7962 | struct pt_regs *regs, struct hlist_head *head, int rctx, |
Peter Zijlstra | 8fd0fbb | 2017-10-11 09:45:29 +0200 | [diff] [blame^] | 7963 | struct task_struct *task) |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7964 | { |
| 7965 | struct perf_sample_data data; |
Peter Zijlstra | 8fd0fbb | 2017-10-11 09:45:29 +0200 | [diff] [blame^] | 7966 | struct perf_event *event; |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7967 | |
| 7968 | struct perf_raw_record raw = { |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 7969 | .frag = { |
| 7970 | .size = entry_size, |
| 7971 | .data = record, |
| 7972 | }, |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7973 | }; |
| 7974 | |
Alexei Starovoitov | 1e1dcd9 | 2016-04-06 18:43:24 -0700 | [diff] [blame] | 7975 | perf_sample_data_init(&data, 0, 0); |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7976 | data.raw = &raw; |
| 7977 | |
Alexei Starovoitov | 1e1dcd9 | 2016-04-06 18:43:24 -0700 | [diff] [blame] | 7978 | perf_trace_buf_update(record, event_type); |
| 7979 | |
Peter Zijlstra | 8fd0fbb | 2017-10-11 09:45:29 +0200 | [diff] [blame^] | 7980 | hlist_for_each_entry_rcu(event, head, hlist_entry) { |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7981 | if (perf_tp_event_match(event, &data, regs)) |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7982 | perf_swevent_event(event, count, &data, regs); |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7983 | } |
Peter Zijlstra | ecc55f8 | 2010-05-21 15:11:34 +0200 | [diff] [blame] | 7984 | |
Andrew Vagin | e6dab5f | 2012-07-11 18:14:58 +0400 | [diff] [blame] | 7985 | /* |
| 7986 | * If we got specified a target task, also iterate its context and |
| 7987 | * deliver this event there too. |
| 7988 | */ |
| 7989 | if (task && task != current) { |
| 7990 | struct perf_event_context *ctx; |
| 7991 | struct trace_entry *entry = record; |
| 7992 | |
| 7993 | rcu_read_lock(); |
| 7994 | ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]); |
| 7995 | if (!ctx) |
| 7996 | goto unlock; |
| 7997 | |
| 7998 | list_for_each_entry_rcu(event, &ctx->event_list, event_entry) { |
| 7999 | if (event->attr.type != PERF_TYPE_TRACEPOINT) |
| 8000 | continue; |
| 8001 | if (event->attr.config != entry->type) |
| 8002 | continue; |
| 8003 | if (perf_tp_event_match(event, &data, regs)) |
| 8004 | perf_swevent_event(event, count, &data, regs); |
| 8005 | } |
| 8006 | unlock: |
| 8007 | rcu_read_unlock(); |
| 8008 | } |
| 8009 | |
Peter Zijlstra | ecc55f8 | 2010-05-21 15:11:34 +0200 | [diff] [blame] | 8010 | perf_swevent_put_recursion_context(rctx); |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 8011 | } |
| 8012 | EXPORT_SYMBOL_GPL(perf_tp_event); |
| 8013 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8014 | static void tp_perf_event_destroy(struct perf_event *event) |
| 8015 | { |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 8016 | perf_trace_destroy(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8017 | } |
| 8018 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8019 | static int perf_tp_event_init(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8020 | { |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 8021 | int err; |
| 8022 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8023 | if (event->attr.type != PERF_TYPE_TRACEPOINT) |
| 8024 | return -ENOENT; |
| 8025 | |
Stephane Eranian | 2481c5f | 2012-02-09 23:20:59 +0100 | [diff] [blame] | 8026 | /* |
| 8027 | * no branch sampling for tracepoint events |
| 8028 | */ |
| 8029 | if (has_branch_stack(event)) |
| 8030 | return -EOPNOTSUPP; |
| 8031 | |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 8032 | err = perf_trace_init(event); |
| 8033 | if (err) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8034 | return err; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8035 | |
| 8036 | event->destroy = tp_perf_event_destroy; |
| 8037 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8038 | return 0; |
| 8039 | } |
| 8040 | |
| 8041 | static struct pmu perf_tracepoint = { |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 8042 | .task_ctx_nr = perf_sw_context, |
| 8043 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8044 | .event_init = perf_tp_event_init, |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8045 | .add = perf_trace_add, |
| 8046 | .del = perf_trace_del, |
| 8047 | .start = perf_swevent_start, |
| 8048 | .stop = perf_swevent_stop, |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8049 | .read = perf_swevent_read, |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8050 | }; |
| 8051 | |
| 8052 | static inline void perf_tp_register(void) |
| 8053 | { |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 8054 | perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8055 | } |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 8056 | |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 8057 | static void perf_event_free_filter(struct perf_event *event) |
| 8058 | { |
| 8059 | ftrace_profile_free_filter(event); |
| 8060 | } |
| 8061 | |
Alexei Starovoitov | aa6a5f3 | 2016-09-01 18:37:24 -0700 | [diff] [blame] | 8062 | #ifdef CONFIG_BPF_SYSCALL |
| 8063 | static void bpf_overflow_handler(struct perf_event *event, |
| 8064 | struct perf_sample_data *data, |
| 8065 | struct pt_regs *regs) |
| 8066 | { |
| 8067 | struct bpf_perf_event_data_kern ctx = { |
| 8068 | .data = data, |
| 8069 | .regs = regs, |
| 8070 | }; |
| 8071 | int ret = 0; |
| 8072 | |
| 8073 | preempt_disable(); |
| 8074 | if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1)) |
| 8075 | goto out; |
| 8076 | rcu_read_lock(); |
Daniel Borkmann | 8857519 | 2016-11-26 01:28:04 +0100 | [diff] [blame] | 8077 | ret = BPF_PROG_RUN(event->prog, &ctx); |
Alexei Starovoitov | aa6a5f3 | 2016-09-01 18:37:24 -0700 | [diff] [blame] | 8078 | rcu_read_unlock(); |
| 8079 | out: |
| 8080 | __this_cpu_dec(bpf_prog_active); |
| 8081 | preempt_enable(); |
| 8082 | if (!ret) |
| 8083 | return; |
| 8084 | |
| 8085 | event->orig_overflow_handler(event, data, regs); |
| 8086 | } |
| 8087 | |
| 8088 | static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd) |
| 8089 | { |
| 8090 | struct bpf_prog *prog; |
| 8091 | |
| 8092 | if (event->overflow_handler_context) |
| 8093 | /* hw breakpoint or kernel counter */ |
| 8094 | return -EINVAL; |
| 8095 | |
| 8096 | if (event->prog) |
| 8097 | return -EEXIST; |
| 8098 | |
| 8099 | prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT); |
| 8100 | if (IS_ERR(prog)) |
| 8101 | return PTR_ERR(prog); |
| 8102 | |
| 8103 | event->prog = prog; |
| 8104 | event->orig_overflow_handler = READ_ONCE(event->overflow_handler); |
| 8105 | WRITE_ONCE(event->overflow_handler, bpf_overflow_handler); |
| 8106 | return 0; |
| 8107 | } |
| 8108 | |
| 8109 | static void perf_event_free_bpf_handler(struct perf_event *event) |
| 8110 | { |
| 8111 | struct bpf_prog *prog = event->prog; |
| 8112 | |
| 8113 | if (!prog) |
| 8114 | return; |
| 8115 | |
| 8116 | WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler); |
| 8117 | event->prog = NULL; |
| 8118 | bpf_prog_put(prog); |
| 8119 | } |
| 8120 | #else |
| 8121 | static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd) |
| 8122 | { |
| 8123 | return -EOPNOTSUPP; |
| 8124 | } |
| 8125 | static void perf_event_free_bpf_handler(struct perf_event *event) |
| 8126 | { |
| 8127 | } |
| 8128 | #endif |
| 8129 | |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8130 | static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd) |
| 8131 | { |
Yonghong Song | cf5f5ce | 2017-08-04 16:00:09 -0700 | [diff] [blame] | 8132 | bool is_kprobe, is_tracepoint, is_syscall_tp; |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8133 | struct bpf_prog *prog; |
| 8134 | |
| 8135 | if (event->attr.type != PERF_TYPE_TRACEPOINT) |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 8136 | return perf_event_set_bpf_handler(event, prog_fd); |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8137 | |
| 8138 | if (event->tp_event->prog) |
| 8139 | return -EEXIST; |
| 8140 | |
Alexei Starovoitov | 98b5c2c | 2016-04-06 18:43:25 -0700 | [diff] [blame] | 8141 | is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE; |
| 8142 | is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT; |
Yonghong Song | cf5f5ce | 2017-08-04 16:00:09 -0700 | [diff] [blame] | 8143 | is_syscall_tp = is_syscall_trace_event(event->tp_event); |
| 8144 | if (!is_kprobe && !is_tracepoint && !is_syscall_tp) |
Alexei Starovoitov | 98b5c2c | 2016-04-06 18:43:25 -0700 | [diff] [blame] | 8145 | /* bpf programs can only be attached to u/kprobe or tracepoint */ |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8146 | return -EINVAL; |
| 8147 | |
| 8148 | prog = bpf_prog_get(prog_fd); |
| 8149 | if (IS_ERR(prog)) |
| 8150 | return PTR_ERR(prog); |
| 8151 | |
Alexei Starovoitov | 98b5c2c | 2016-04-06 18:43:25 -0700 | [diff] [blame] | 8152 | if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) || |
Yonghong Song | cf5f5ce | 2017-08-04 16:00:09 -0700 | [diff] [blame] | 8153 | (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) || |
| 8154 | (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT)) { |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8155 | /* valid fd, but invalid bpf program type */ |
| 8156 | bpf_prog_put(prog); |
| 8157 | return -EINVAL; |
| 8158 | } |
| 8159 | |
Yonghong Song | cf5f5ce | 2017-08-04 16:00:09 -0700 | [diff] [blame] | 8160 | if (is_tracepoint || is_syscall_tp) { |
Alexei Starovoitov | 32bbe00 | 2016-04-06 18:43:28 -0700 | [diff] [blame] | 8161 | int off = trace_event_get_offsets(event->tp_event); |
| 8162 | |
| 8163 | if (prog->aux->max_ctx_offset > off) { |
| 8164 | bpf_prog_put(prog); |
| 8165 | return -EACCES; |
| 8166 | } |
| 8167 | } |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8168 | event->tp_event->prog = prog; |
Yonghong Song | ec9dd35 | 2017-09-18 16:38:36 -0700 | [diff] [blame] | 8169 | event->tp_event->bpf_prog_owner = event; |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8170 | |
| 8171 | return 0; |
| 8172 | } |
| 8173 | |
| 8174 | static void perf_event_free_bpf_prog(struct perf_event *event) |
| 8175 | { |
| 8176 | struct bpf_prog *prog; |
| 8177 | |
Alexei Starovoitov | aa6a5f3 | 2016-09-01 18:37:24 -0700 | [diff] [blame] | 8178 | perf_event_free_bpf_handler(event); |
| 8179 | |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8180 | if (!event->tp_event) |
| 8181 | return; |
| 8182 | |
| 8183 | prog = event->tp_event->prog; |
Yonghong Song | ec9dd35 | 2017-09-18 16:38:36 -0700 | [diff] [blame] | 8184 | if (prog && event->tp_event->bpf_prog_owner == event) { |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8185 | event->tp_event->prog = NULL; |
Daniel Borkmann | 1aacde3 | 2016-06-30 17:24:43 +0200 | [diff] [blame] | 8186 | bpf_prog_put(prog); |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8187 | } |
| 8188 | } |
| 8189 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8190 | #else |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 8191 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8192 | static inline void perf_tp_register(void) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8193 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8194 | } |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 8195 | |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 8196 | static void perf_event_free_filter(struct perf_event *event) |
| 8197 | { |
| 8198 | } |
| 8199 | |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8200 | static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd) |
| 8201 | { |
| 8202 | return -ENOENT; |
| 8203 | } |
| 8204 | |
| 8205 | static void perf_event_free_bpf_prog(struct perf_event *event) |
| 8206 | { |
| 8207 | } |
Li Zefan | 07b139c | 2009-12-21 14:27:35 +0800 | [diff] [blame] | 8208 | #endif /* CONFIG_EVENT_TRACING */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8209 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 8210 | #ifdef CONFIG_HAVE_HW_BREAKPOINT |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 8211 | void perf_bp_event(struct perf_event *bp, void *data) |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 8212 | { |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 8213 | struct perf_sample_data sample; |
| 8214 | struct pt_regs *regs = data; |
| 8215 | |
Robert Richter | fd0d000 | 2012-04-02 20:19:08 +0200 | [diff] [blame] | 8216 | perf_sample_data_init(&sample, bp->attr.bp_addr, 0); |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 8217 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8218 | if (!bp->hw.state && !perf_exclude_event(bp, regs)) |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 8219 | perf_swevent_event(bp, 1, &sample, regs); |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 8220 | } |
| 8221 | #endif |
| 8222 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8223 | /* |
| 8224 | * Allocate a new address filter |
| 8225 | */ |
| 8226 | static struct perf_addr_filter * |
| 8227 | perf_addr_filter_new(struct perf_event *event, struct list_head *filters) |
| 8228 | { |
| 8229 | int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu); |
| 8230 | struct perf_addr_filter *filter; |
| 8231 | |
| 8232 | filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node); |
| 8233 | if (!filter) |
| 8234 | return NULL; |
| 8235 | |
| 8236 | INIT_LIST_HEAD(&filter->entry); |
| 8237 | list_add_tail(&filter->entry, filters); |
| 8238 | |
| 8239 | return filter; |
| 8240 | } |
| 8241 | |
| 8242 | static void free_filters_list(struct list_head *filters) |
| 8243 | { |
| 8244 | struct perf_addr_filter *filter, *iter; |
| 8245 | |
| 8246 | list_for_each_entry_safe(filter, iter, filters, entry) { |
| 8247 | if (filter->inode) |
| 8248 | iput(filter->inode); |
| 8249 | list_del(&filter->entry); |
| 8250 | kfree(filter); |
| 8251 | } |
| 8252 | } |
| 8253 | |
| 8254 | /* |
| 8255 | * Free existing address filters and optionally install new ones |
| 8256 | */ |
| 8257 | static void perf_addr_filters_splice(struct perf_event *event, |
| 8258 | struct list_head *head) |
| 8259 | { |
| 8260 | unsigned long flags; |
| 8261 | LIST_HEAD(list); |
| 8262 | |
| 8263 | if (!has_addr_filter(event)) |
| 8264 | return; |
| 8265 | |
| 8266 | /* don't bother with children, they don't have their own filters */ |
| 8267 | if (event->parent) |
| 8268 | return; |
| 8269 | |
| 8270 | raw_spin_lock_irqsave(&event->addr_filters.lock, flags); |
| 8271 | |
| 8272 | list_splice_init(&event->addr_filters.list, &list); |
| 8273 | if (head) |
| 8274 | list_splice(head, &event->addr_filters.list); |
| 8275 | |
| 8276 | raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags); |
| 8277 | |
| 8278 | free_filters_list(&list); |
| 8279 | } |
| 8280 | |
| 8281 | /* |
| 8282 | * Scan through mm's vmas and see if one of them matches the |
| 8283 | * @filter; if so, adjust filter's address range. |
| 8284 | * Called with mm::mmap_sem down for reading. |
| 8285 | */ |
| 8286 | static unsigned long perf_addr_filter_apply(struct perf_addr_filter *filter, |
| 8287 | struct mm_struct *mm) |
| 8288 | { |
| 8289 | struct vm_area_struct *vma; |
| 8290 | |
| 8291 | for (vma = mm->mmap; vma; vma = vma->vm_next) { |
| 8292 | struct file *file = vma->vm_file; |
| 8293 | unsigned long off = vma->vm_pgoff << PAGE_SHIFT; |
| 8294 | unsigned long vma_size = vma->vm_end - vma->vm_start; |
| 8295 | |
| 8296 | if (!file) |
| 8297 | continue; |
| 8298 | |
| 8299 | if (!perf_addr_filter_match(filter, file, off, vma_size)) |
| 8300 | continue; |
| 8301 | |
| 8302 | return vma->vm_start; |
| 8303 | } |
| 8304 | |
| 8305 | return 0; |
| 8306 | } |
| 8307 | |
| 8308 | /* |
| 8309 | * Update event's address range filters based on the |
| 8310 | * task's existing mappings, if any. |
| 8311 | */ |
| 8312 | static void perf_event_addr_filters_apply(struct perf_event *event) |
| 8313 | { |
| 8314 | struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); |
| 8315 | struct task_struct *task = READ_ONCE(event->ctx->task); |
| 8316 | struct perf_addr_filter *filter; |
| 8317 | struct mm_struct *mm = NULL; |
| 8318 | unsigned int count = 0; |
| 8319 | unsigned long flags; |
| 8320 | |
| 8321 | /* |
| 8322 | * We may observe TASK_TOMBSTONE, which means that the event tear-down |
| 8323 | * will stop on the parent's child_mutex that our caller is also holding |
| 8324 | */ |
| 8325 | if (task == TASK_TOMBSTONE) |
| 8326 | return; |
| 8327 | |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8328 | if (!ifh->nr_file_filters) |
| 8329 | return; |
| 8330 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8331 | mm = get_task_mm(event->ctx->task); |
| 8332 | if (!mm) |
| 8333 | goto restart; |
| 8334 | |
| 8335 | down_read(&mm->mmap_sem); |
| 8336 | |
| 8337 | raw_spin_lock_irqsave(&ifh->lock, flags); |
| 8338 | list_for_each_entry(filter, &ifh->list, entry) { |
| 8339 | event->addr_filters_offs[count] = 0; |
| 8340 | |
Mathieu Poirier | 99f5bc9 | 2016-07-18 10:43:07 -0600 | [diff] [blame] | 8341 | /* |
| 8342 | * Adjust base offset if the filter is associated to a binary |
| 8343 | * that needs to be mapped: |
| 8344 | */ |
| 8345 | if (filter->inode) |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8346 | event->addr_filters_offs[count] = |
| 8347 | perf_addr_filter_apply(filter, mm); |
| 8348 | |
| 8349 | count++; |
| 8350 | } |
| 8351 | |
| 8352 | event->addr_filters_gen++; |
| 8353 | raw_spin_unlock_irqrestore(&ifh->lock, flags); |
| 8354 | |
| 8355 | up_read(&mm->mmap_sem); |
| 8356 | |
| 8357 | mmput(mm); |
| 8358 | |
| 8359 | restart: |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 8360 | perf_event_stop(event, 1); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8361 | } |
| 8362 | |
| 8363 | /* |
| 8364 | * Address range filtering: limiting the data to certain |
| 8365 | * instruction address ranges. Filters are ioctl()ed to us from |
| 8366 | * userspace as ascii strings. |
| 8367 | * |
| 8368 | * Filter string format: |
| 8369 | * |
| 8370 | * ACTION RANGE_SPEC |
| 8371 | * where ACTION is one of the |
| 8372 | * * "filter": limit the trace to this region |
| 8373 | * * "start": start tracing from this address |
| 8374 | * * "stop": stop tracing at this address/region; |
| 8375 | * RANGE_SPEC is |
| 8376 | * * for kernel addresses: <start address>[/<size>] |
| 8377 | * * for object files: <start address>[/<size>]@</path/to/object/file> |
| 8378 | * |
| 8379 | * if <size> is not specified, the range is treated as a single address. |
| 8380 | */ |
| 8381 | enum { |
Alexander Shishkin | e96271f | 2016-11-18 13:38:43 +0200 | [diff] [blame] | 8382 | IF_ACT_NONE = -1, |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8383 | IF_ACT_FILTER, |
| 8384 | IF_ACT_START, |
| 8385 | IF_ACT_STOP, |
| 8386 | IF_SRC_FILE, |
| 8387 | IF_SRC_KERNEL, |
| 8388 | IF_SRC_FILEADDR, |
| 8389 | IF_SRC_KERNELADDR, |
| 8390 | }; |
| 8391 | |
| 8392 | enum { |
| 8393 | IF_STATE_ACTION = 0, |
| 8394 | IF_STATE_SOURCE, |
| 8395 | IF_STATE_END, |
| 8396 | }; |
| 8397 | |
| 8398 | static const match_table_t if_tokens = { |
| 8399 | { IF_ACT_FILTER, "filter" }, |
| 8400 | { IF_ACT_START, "start" }, |
| 8401 | { IF_ACT_STOP, "stop" }, |
| 8402 | { IF_SRC_FILE, "%u/%u@%s" }, |
| 8403 | { IF_SRC_KERNEL, "%u/%u" }, |
| 8404 | { IF_SRC_FILEADDR, "%u@%s" }, |
| 8405 | { IF_SRC_KERNELADDR, "%u" }, |
Alexander Shishkin | e96271f | 2016-11-18 13:38:43 +0200 | [diff] [blame] | 8406 | { IF_ACT_NONE, NULL }, |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8407 | }; |
| 8408 | |
| 8409 | /* |
| 8410 | * Address filter string parser |
| 8411 | */ |
| 8412 | static int |
| 8413 | perf_event_parse_addr_filter(struct perf_event *event, char *fstr, |
| 8414 | struct list_head *filters) |
| 8415 | { |
| 8416 | struct perf_addr_filter *filter = NULL; |
| 8417 | char *start, *orig, *filename = NULL; |
| 8418 | struct path path; |
| 8419 | substring_t args[MAX_OPT_ARGS]; |
| 8420 | int state = IF_STATE_ACTION, token; |
| 8421 | unsigned int kernel = 0; |
| 8422 | int ret = -EINVAL; |
| 8423 | |
| 8424 | orig = fstr = kstrdup(fstr, GFP_KERNEL); |
| 8425 | if (!fstr) |
| 8426 | return -ENOMEM; |
| 8427 | |
| 8428 | while ((start = strsep(&fstr, " ,\n")) != NULL) { |
| 8429 | ret = -EINVAL; |
| 8430 | |
| 8431 | if (!*start) |
| 8432 | continue; |
| 8433 | |
| 8434 | /* filter definition begins */ |
| 8435 | if (state == IF_STATE_ACTION) { |
| 8436 | filter = perf_addr_filter_new(event, filters); |
| 8437 | if (!filter) |
| 8438 | goto fail; |
| 8439 | } |
| 8440 | |
| 8441 | token = match_token(start, if_tokens, args); |
| 8442 | switch (token) { |
| 8443 | case IF_ACT_FILTER: |
| 8444 | case IF_ACT_START: |
| 8445 | filter->filter = 1; |
| 8446 | |
| 8447 | case IF_ACT_STOP: |
| 8448 | if (state != IF_STATE_ACTION) |
| 8449 | goto fail; |
| 8450 | |
| 8451 | state = IF_STATE_SOURCE; |
| 8452 | break; |
| 8453 | |
| 8454 | case IF_SRC_KERNELADDR: |
| 8455 | case IF_SRC_KERNEL: |
| 8456 | kernel = 1; |
| 8457 | |
| 8458 | case IF_SRC_FILEADDR: |
| 8459 | case IF_SRC_FILE: |
| 8460 | if (state != IF_STATE_SOURCE) |
| 8461 | goto fail; |
| 8462 | |
| 8463 | if (token == IF_SRC_FILE || token == IF_SRC_KERNEL) |
| 8464 | filter->range = 1; |
| 8465 | |
| 8466 | *args[0].to = 0; |
| 8467 | ret = kstrtoul(args[0].from, 0, &filter->offset); |
| 8468 | if (ret) |
| 8469 | goto fail; |
| 8470 | |
| 8471 | if (filter->range) { |
| 8472 | *args[1].to = 0; |
| 8473 | ret = kstrtoul(args[1].from, 0, &filter->size); |
| 8474 | if (ret) |
| 8475 | goto fail; |
| 8476 | } |
| 8477 | |
Mathieu Poirier | 4059ffd | 2016-07-18 10:43:05 -0600 | [diff] [blame] | 8478 | if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) { |
| 8479 | int fpos = filter->range ? 2 : 1; |
| 8480 | |
| 8481 | filename = match_strdup(&args[fpos]); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8482 | if (!filename) { |
| 8483 | ret = -ENOMEM; |
| 8484 | goto fail; |
| 8485 | } |
| 8486 | } |
| 8487 | |
| 8488 | state = IF_STATE_END; |
| 8489 | break; |
| 8490 | |
| 8491 | default: |
| 8492 | goto fail; |
| 8493 | } |
| 8494 | |
| 8495 | /* |
| 8496 | * Filter definition is fully parsed, validate and install it. |
| 8497 | * Make sure that it doesn't contradict itself or the event's |
| 8498 | * attribute. |
| 8499 | */ |
| 8500 | if (state == IF_STATE_END) { |
Alexander Shishkin | 9ccbfbb | 2017-01-26 11:40:56 +0200 | [diff] [blame] | 8501 | ret = -EINVAL; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8502 | if (kernel && event->attr.exclude_kernel) |
| 8503 | goto fail; |
| 8504 | |
| 8505 | if (!kernel) { |
| 8506 | if (!filename) |
| 8507 | goto fail; |
| 8508 | |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8509 | /* |
| 8510 | * For now, we only support file-based filters |
| 8511 | * in per-task events; doing so for CPU-wide |
| 8512 | * events requires additional context switching |
| 8513 | * trickery, since same object code will be |
| 8514 | * mapped at different virtual addresses in |
| 8515 | * different processes. |
| 8516 | */ |
| 8517 | ret = -EOPNOTSUPP; |
| 8518 | if (!event->ctx->task) |
| 8519 | goto fail_free_name; |
| 8520 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8521 | /* look up the path and grab its inode */ |
| 8522 | ret = kern_path(filename, LOOKUP_FOLLOW, &path); |
| 8523 | if (ret) |
| 8524 | goto fail_free_name; |
| 8525 | |
| 8526 | filter->inode = igrab(d_inode(path.dentry)); |
| 8527 | path_put(&path); |
| 8528 | kfree(filename); |
| 8529 | filename = NULL; |
| 8530 | |
| 8531 | ret = -EINVAL; |
| 8532 | if (!filter->inode || |
| 8533 | !S_ISREG(filter->inode->i_mode)) |
| 8534 | /* free_filters_list() will iput() */ |
| 8535 | goto fail; |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8536 | |
| 8537 | event->addr_filters.nr_file_filters++; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8538 | } |
| 8539 | |
| 8540 | /* ready to consume more filters */ |
| 8541 | state = IF_STATE_ACTION; |
| 8542 | filter = NULL; |
| 8543 | } |
| 8544 | } |
| 8545 | |
| 8546 | if (state != IF_STATE_ACTION) |
| 8547 | goto fail; |
| 8548 | |
| 8549 | kfree(orig); |
| 8550 | |
| 8551 | return 0; |
| 8552 | |
| 8553 | fail_free_name: |
| 8554 | kfree(filename); |
| 8555 | fail: |
| 8556 | free_filters_list(filters); |
| 8557 | kfree(orig); |
| 8558 | |
| 8559 | return ret; |
| 8560 | } |
| 8561 | |
| 8562 | static int |
| 8563 | perf_event_set_addr_filter(struct perf_event *event, char *filter_str) |
| 8564 | { |
| 8565 | LIST_HEAD(filters); |
| 8566 | int ret; |
| 8567 | |
| 8568 | /* |
| 8569 | * Since this is called in perf_ioctl() path, we're already holding |
| 8570 | * ctx::mutex. |
| 8571 | */ |
| 8572 | lockdep_assert_held(&event->ctx->mutex); |
| 8573 | |
| 8574 | if (WARN_ON_ONCE(event->parent)) |
| 8575 | return -EINVAL; |
| 8576 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8577 | ret = perf_event_parse_addr_filter(event, filter_str, &filters); |
| 8578 | if (ret) |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8579 | goto fail_clear_files; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8580 | |
| 8581 | ret = event->pmu->addr_filters_validate(&filters); |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8582 | if (ret) |
| 8583 | goto fail_free_filters; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8584 | |
| 8585 | /* remove existing filters, if any */ |
| 8586 | perf_addr_filters_splice(event, &filters); |
| 8587 | |
| 8588 | /* install new filters */ |
| 8589 | perf_event_for_each_child(event, perf_event_addr_filters_apply); |
| 8590 | |
| 8591 | return ret; |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8592 | |
| 8593 | fail_free_filters: |
| 8594 | free_filters_list(&filters); |
| 8595 | |
| 8596 | fail_clear_files: |
| 8597 | event->addr_filters.nr_file_filters = 0; |
| 8598 | |
| 8599 | return ret; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8600 | } |
| 8601 | |
Alexander Shishkin | c796bbb | 2016-04-27 18:44:42 +0300 | [diff] [blame] | 8602 | static int perf_event_set_filter(struct perf_event *event, void __user *arg) |
| 8603 | { |
| 8604 | char *filter_str; |
| 8605 | int ret = -EINVAL; |
| 8606 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8607 | if ((event->attr.type != PERF_TYPE_TRACEPOINT || |
| 8608 | !IS_ENABLED(CONFIG_EVENT_TRACING)) && |
| 8609 | !has_addr_filter(event)) |
Alexander Shishkin | c796bbb | 2016-04-27 18:44:42 +0300 | [diff] [blame] | 8610 | return -EINVAL; |
| 8611 | |
| 8612 | filter_str = strndup_user(arg, PAGE_SIZE); |
| 8613 | if (IS_ERR(filter_str)) |
| 8614 | return PTR_ERR(filter_str); |
| 8615 | |
| 8616 | if (IS_ENABLED(CONFIG_EVENT_TRACING) && |
| 8617 | event->attr.type == PERF_TYPE_TRACEPOINT) |
| 8618 | ret = ftrace_profile_set_filter(event, event->attr.config, |
| 8619 | filter_str); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8620 | else if (has_addr_filter(event)) |
| 8621 | ret = perf_event_set_addr_filter(event, filter_str); |
Alexander Shishkin | c796bbb | 2016-04-27 18:44:42 +0300 | [diff] [blame] | 8622 | |
| 8623 | kfree(filter_str); |
| 8624 | return ret; |
| 8625 | } |
| 8626 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8627 | /* |
| 8628 | * hrtimer based swevent callback |
| 8629 | */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8630 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8631 | static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8632 | { |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8633 | enum hrtimer_restart ret = HRTIMER_RESTART; |
| 8634 | struct perf_sample_data data; |
| 8635 | struct pt_regs *regs; |
| 8636 | struct perf_event *event; |
| 8637 | u64 period; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8638 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8639 | event = container_of(hrtimer, struct perf_event, hw.hrtimer); |
Peter Zijlstra | ba3dd36 | 2011-02-15 12:41:46 +0100 | [diff] [blame] | 8640 | |
| 8641 | if (event->state != PERF_EVENT_STATE_ACTIVE) |
| 8642 | return HRTIMER_NORESTART; |
| 8643 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8644 | event->pmu->read(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8645 | |
Robert Richter | fd0d000 | 2012-04-02 20:19:08 +0200 | [diff] [blame] | 8646 | perf_sample_data_init(&data, 0, event->hw.last_period); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8647 | regs = get_irq_regs(); |
| 8648 | |
| 8649 | if (regs && !perf_exclude_event(event, regs)) { |
Paul E. McKenney | 77aeeeb | 2011-11-10 16:02:52 -0800 | [diff] [blame] | 8650 | if (!(event->attr.exclude_idle && is_idle_task(current))) |
Robert Richter | 33b07b8 | 2012-04-05 18:24:43 +0200 | [diff] [blame] | 8651 | if (__perf_event_overflow(event, 1, &data, regs)) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8652 | ret = HRTIMER_NORESTART; |
| 8653 | } |
| 8654 | |
| 8655 | period = max_t(u64, 10000, event->hw.sample_period); |
| 8656 | hrtimer_forward_now(hrtimer, ns_to_ktime(period)); |
| 8657 | |
| 8658 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8659 | } |
| 8660 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8661 | static void perf_swevent_start_hrtimer(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8662 | { |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8663 | struct hw_perf_event *hwc = &event->hw; |
Franck Bui-Huu | 5d508e8 | 2010-11-23 16:21:45 +0100 | [diff] [blame] | 8664 | s64 period; |
| 8665 | |
| 8666 | if (!is_sampling_event(event)) |
| 8667 | return; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8668 | |
Franck Bui-Huu | 5d508e8 | 2010-11-23 16:21:45 +0100 | [diff] [blame] | 8669 | period = local64_read(&hwc->period_left); |
| 8670 | if (period) { |
| 8671 | if (period < 0) |
| 8672 | period = 10000; |
Peter Zijlstra | fa407f3 | 2010-06-24 12:35:12 +0200 | [diff] [blame] | 8673 | |
Franck Bui-Huu | 5d508e8 | 2010-11-23 16:21:45 +0100 | [diff] [blame] | 8674 | local64_set(&hwc->period_left, 0); |
| 8675 | } else { |
| 8676 | period = max_t(u64, 10000, hwc->sample_period); |
| 8677 | } |
Thomas Gleixner | 3497d20 | 2015-04-14 21:09:03 +0000 | [diff] [blame] | 8678 | hrtimer_start(&hwc->hrtimer, ns_to_ktime(period), |
| 8679 | HRTIMER_MODE_REL_PINNED); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8680 | } |
| 8681 | |
| 8682 | static void perf_swevent_cancel_hrtimer(struct perf_event *event) |
| 8683 | { |
| 8684 | struct hw_perf_event *hwc = &event->hw; |
| 8685 | |
Franck Bui-Huu | 6c7e550 | 2010-11-23 16:21:43 +0100 | [diff] [blame] | 8686 | if (is_sampling_event(event)) { |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8687 | ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer); |
Peter Zijlstra | fa407f3 | 2010-06-24 12:35:12 +0200 | [diff] [blame] | 8688 | local64_set(&hwc->period_left, ktime_to_ns(remaining)); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8689 | |
| 8690 | hrtimer_cancel(&hwc->hrtimer); |
| 8691 | } |
| 8692 | } |
| 8693 | |
Peter Zijlstra | ba3dd36 | 2011-02-15 12:41:46 +0100 | [diff] [blame] | 8694 | static void perf_swevent_init_hrtimer(struct perf_event *event) |
| 8695 | { |
| 8696 | struct hw_perf_event *hwc = &event->hw; |
| 8697 | |
| 8698 | if (!is_sampling_event(event)) |
| 8699 | return; |
| 8700 | |
| 8701 | hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 8702 | hwc->hrtimer.function = perf_swevent_hrtimer; |
| 8703 | |
| 8704 | /* |
| 8705 | * Since hrtimers have a fixed rate, we can do a static freq->period |
| 8706 | * mapping and avoid the whole period adjust feedback stuff. |
| 8707 | */ |
| 8708 | if (event->attr.freq) { |
| 8709 | long freq = event->attr.sample_freq; |
| 8710 | |
| 8711 | event->attr.sample_period = NSEC_PER_SEC / freq; |
| 8712 | hwc->sample_period = event->attr.sample_period; |
| 8713 | local64_set(&hwc->period_left, hwc->sample_period); |
Namhyung Kim | 778141e | 2013-03-18 11:41:46 +0900 | [diff] [blame] | 8714 | hwc->last_period = hwc->sample_period; |
Peter Zijlstra | ba3dd36 | 2011-02-15 12:41:46 +0100 | [diff] [blame] | 8715 | event->attr.freq = 0; |
| 8716 | } |
| 8717 | } |
| 8718 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8719 | /* |
| 8720 | * Software event: cpu wall time clock |
| 8721 | */ |
| 8722 | |
| 8723 | static void cpu_clock_event_update(struct perf_event *event) |
| 8724 | { |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8725 | s64 prev; |
| 8726 | u64 now; |
| 8727 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8728 | now = local_clock(); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8729 | prev = local64_xchg(&event->hw.prev_count, now); |
| 8730 | local64_add(now - prev, &event->count); |
| 8731 | } |
| 8732 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8733 | static void cpu_clock_event_start(struct perf_event *event, int flags) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8734 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8735 | local64_set(&event->hw.prev_count, local_clock()); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8736 | perf_swevent_start_hrtimer(event); |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8737 | } |
| 8738 | |
| 8739 | static void cpu_clock_event_stop(struct perf_event *event, int flags) |
| 8740 | { |
| 8741 | perf_swevent_cancel_hrtimer(event); |
| 8742 | cpu_clock_event_update(event); |
| 8743 | } |
| 8744 | |
| 8745 | static int cpu_clock_event_add(struct perf_event *event, int flags) |
| 8746 | { |
| 8747 | if (flags & PERF_EF_START) |
| 8748 | cpu_clock_event_start(event, flags); |
Shaohua Li | 6a694a6 | 2015-02-05 15:55:32 -0800 | [diff] [blame] | 8749 | perf_event_update_userpage(event); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8750 | |
| 8751 | return 0; |
| 8752 | } |
| 8753 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8754 | static void cpu_clock_event_del(struct perf_event *event, int flags) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8755 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8756 | cpu_clock_event_stop(event, flags); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8757 | } |
| 8758 | |
| 8759 | static void cpu_clock_event_read(struct perf_event *event) |
| 8760 | { |
| 8761 | cpu_clock_event_update(event); |
| 8762 | } |
| 8763 | |
| 8764 | static int cpu_clock_event_init(struct perf_event *event) |
| 8765 | { |
| 8766 | if (event->attr.type != PERF_TYPE_SOFTWARE) |
| 8767 | return -ENOENT; |
| 8768 | |
| 8769 | if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK) |
| 8770 | return -ENOENT; |
| 8771 | |
Stephane Eranian | 2481c5f | 2012-02-09 23:20:59 +0100 | [diff] [blame] | 8772 | /* |
| 8773 | * no branch sampling for software events |
| 8774 | */ |
| 8775 | if (has_branch_stack(event)) |
| 8776 | return -EOPNOTSUPP; |
| 8777 | |
Peter Zijlstra | ba3dd36 | 2011-02-15 12:41:46 +0100 | [diff] [blame] | 8778 | perf_swevent_init_hrtimer(event); |
| 8779 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8780 | return 0; |
| 8781 | } |
| 8782 | |
| 8783 | static struct pmu perf_cpu_clock = { |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 8784 | .task_ctx_nr = perf_sw_context, |
| 8785 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 8786 | .capabilities = PERF_PMU_CAP_NO_NMI, |
| 8787 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8788 | .event_init = cpu_clock_event_init, |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8789 | .add = cpu_clock_event_add, |
| 8790 | .del = cpu_clock_event_del, |
| 8791 | .start = cpu_clock_event_start, |
| 8792 | .stop = cpu_clock_event_stop, |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8793 | .read = cpu_clock_event_read, |
| 8794 | }; |
| 8795 | |
| 8796 | /* |
| 8797 | * Software event: task time clock |
| 8798 | */ |
| 8799 | |
| 8800 | static void task_clock_event_update(struct perf_event *event, u64 now) |
| 8801 | { |
| 8802 | u64 prev; |
| 8803 | s64 delta; |
| 8804 | |
| 8805 | prev = local64_xchg(&event->hw.prev_count, now); |
| 8806 | delta = now - prev; |
| 8807 | local64_add(delta, &event->count); |
| 8808 | } |
| 8809 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8810 | static void task_clock_event_start(struct perf_event *event, int flags) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8811 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8812 | local64_set(&event->hw.prev_count, event->ctx->time); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8813 | perf_swevent_start_hrtimer(event); |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8814 | } |
| 8815 | |
| 8816 | static void task_clock_event_stop(struct perf_event *event, int flags) |
| 8817 | { |
| 8818 | perf_swevent_cancel_hrtimer(event); |
| 8819 | task_clock_event_update(event, event->ctx->time); |
| 8820 | } |
| 8821 | |
| 8822 | static int task_clock_event_add(struct perf_event *event, int flags) |
| 8823 | { |
| 8824 | if (flags & PERF_EF_START) |
| 8825 | task_clock_event_start(event, flags); |
Shaohua Li | 6a694a6 | 2015-02-05 15:55:32 -0800 | [diff] [blame] | 8826 | perf_event_update_userpage(event); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8827 | |
| 8828 | return 0; |
| 8829 | } |
| 8830 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8831 | static void task_clock_event_del(struct perf_event *event, int flags) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8832 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8833 | task_clock_event_stop(event, PERF_EF_UPDATE); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8834 | } |
| 8835 | |
| 8836 | static void task_clock_event_read(struct perf_event *event) |
| 8837 | { |
Peter Zijlstra | 768a06e | 2011-02-22 16:52:24 +0100 | [diff] [blame] | 8838 | u64 now = perf_clock(); |
| 8839 | u64 delta = now - event->ctx->timestamp; |
| 8840 | u64 time = event->ctx->time + delta; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8841 | |
| 8842 | task_clock_event_update(event, time); |
| 8843 | } |
| 8844 | |
| 8845 | static int task_clock_event_init(struct perf_event *event) |
| 8846 | { |
| 8847 | if (event->attr.type != PERF_TYPE_SOFTWARE) |
| 8848 | return -ENOENT; |
| 8849 | |
| 8850 | if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK) |
| 8851 | return -ENOENT; |
| 8852 | |
Stephane Eranian | 2481c5f | 2012-02-09 23:20:59 +0100 | [diff] [blame] | 8853 | /* |
| 8854 | * no branch sampling for software events |
| 8855 | */ |
| 8856 | if (has_branch_stack(event)) |
| 8857 | return -EOPNOTSUPP; |
| 8858 | |
Peter Zijlstra | ba3dd36 | 2011-02-15 12:41:46 +0100 | [diff] [blame] | 8859 | perf_swevent_init_hrtimer(event); |
| 8860 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8861 | return 0; |
| 8862 | } |
| 8863 | |
| 8864 | static struct pmu perf_task_clock = { |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 8865 | .task_ctx_nr = perf_sw_context, |
| 8866 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 8867 | .capabilities = PERF_PMU_CAP_NO_NMI, |
| 8868 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8869 | .event_init = task_clock_event_init, |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8870 | .add = task_clock_event_add, |
| 8871 | .del = task_clock_event_del, |
| 8872 | .start = task_clock_event_start, |
| 8873 | .stop = task_clock_event_stop, |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8874 | .read = task_clock_event_read, |
| 8875 | }; |
| 8876 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8877 | static void perf_pmu_nop_void(struct pmu *pmu) |
| 8878 | { |
| 8879 | } |
| 8880 | |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 8881 | static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags) |
| 8882 | { |
| 8883 | } |
| 8884 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8885 | static int perf_pmu_nop_int(struct pmu *pmu) |
| 8886 | { |
| 8887 | return 0; |
| 8888 | } |
| 8889 | |
Geliang Tang | 18ab2cd | 2015-09-27 23:25:50 +0800 | [diff] [blame] | 8890 | static DEFINE_PER_CPU(unsigned int, nop_txn_flags); |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 8891 | |
| 8892 | static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags) |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8893 | { |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 8894 | __this_cpu_write(nop_txn_flags, flags); |
| 8895 | |
| 8896 | if (flags & ~PERF_PMU_TXN_ADD) |
| 8897 | return; |
| 8898 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8899 | perf_pmu_disable(pmu); |
| 8900 | } |
| 8901 | |
| 8902 | static int perf_pmu_commit_txn(struct pmu *pmu) |
| 8903 | { |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 8904 | unsigned int flags = __this_cpu_read(nop_txn_flags); |
| 8905 | |
| 8906 | __this_cpu_write(nop_txn_flags, 0); |
| 8907 | |
| 8908 | if (flags & ~PERF_PMU_TXN_ADD) |
| 8909 | return 0; |
| 8910 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8911 | perf_pmu_enable(pmu); |
| 8912 | return 0; |
| 8913 | } |
| 8914 | |
| 8915 | static void perf_pmu_cancel_txn(struct pmu *pmu) |
| 8916 | { |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 8917 | unsigned int flags = __this_cpu_read(nop_txn_flags); |
| 8918 | |
| 8919 | __this_cpu_write(nop_txn_flags, 0); |
| 8920 | |
| 8921 | if (flags & ~PERF_PMU_TXN_ADD) |
| 8922 | return; |
| 8923 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8924 | perf_pmu_enable(pmu); |
| 8925 | } |
| 8926 | |
Peter Zijlstra | 35edc2a | 2011-11-20 20:36:02 +0100 | [diff] [blame] | 8927 | static int perf_event_idx_default(struct perf_event *event) |
| 8928 | { |
Peter Zijlstra | c719f56 | 2014-10-21 11:10:21 +0200 | [diff] [blame] | 8929 | return 0; |
Peter Zijlstra | 35edc2a | 2011-11-20 20:36:02 +0100 | [diff] [blame] | 8930 | } |
| 8931 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 8932 | /* |
| 8933 | * Ensures all contexts with the same task_ctx_nr have the same |
| 8934 | * pmu_cpu_context too. |
| 8935 | */ |
Mark Rutland | 9e31704 | 2014-02-10 17:44:18 +0000 | [diff] [blame] | 8936 | static struct perf_cpu_context __percpu *find_pmu_context(int ctxn) |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 8937 | { |
| 8938 | struct pmu *pmu; |
| 8939 | |
| 8940 | if (ctxn < 0) |
| 8941 | return NULL; |
| 8942 | |
| 8943 | list_for_each_entry(pmu, &pmus, entry) { |
| 8944 | if (pmu->task_ctx_nr == ctxn) |
| 8945 | return pmu->pmu_cpu_context; |
| 8946 | } |
| 8947 | |
| 8948 | return NULL; |
| 8949 | } |
| 8950 | |
Peter Zijlstra | 5167695 | 2010-12-07 14:18:20 +0100 | [diff] [blame] | 8951 | static void free_pmu_context(struct pmu *pmu) |
| 8952 | { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 8953 | mutex_lock(&pmus_lock); |
Peter Zijlstra | 5167695 | 2010-12-07 14:18:20 +0100 | [diff] [blame] | 8954 | free_percpu(pmu->pmu_cpu_context); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 8955 | mutex_unlock(&pmus_lock); |
| 8956 | } |
Alexander Shishkin | 6e855cd | 2016-04-27 18:44:48 +0300 | [diff] [blame] | 8957 | |
| 8958 | /* |
| 8959 | * Let userspace know that this PMU supports address range filtering: |
| 8960 | */ |
| 8961 | static ssize_t nr_addr_filters_show(struct device *dev, |
| 8962 | struct device_attribute *attr, |
| 8963 | char *page) |
| 8964 | { |
| 8965 | struct pmu *pmu = dev_get_drvdata(dev); |
| 8966 | |
| 8967 | return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters); |
| 8968 | } |
| 8969 | DEVICE_ATTR_RO(nr_addr_filters); |
| 8970 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 8971 | static struct idr pmu_idr; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 8972 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 8973 | static ssize_t |
| 8974 | type_show(struct device *dev, struct device_attribute *attr, char *page) |
| 8975 | { |
| 8976 | struct pmu *pmu = dev_get_drvdata(dev); |
| 8977 | |
| 8978 | return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type); |
| 8979 | } |
Greg Kroah-Hartman | 90826ca | 2013-08-23 14:24:40 -0700 | [diff] [blame] | 8980 | static DEVICE_ATTR_RO(type); |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 8981 | |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 8982 | static ssize_t |
| 8983 | perf_event_mux_interval_ms_show(struct device *dev, |
| 8984 | struct device_attribute *attr, |
| 8985 | char *page) |
| 8986 | { |
| 8987 | struct pmu *pmu = dev_get_drvdata(dev); |
| 8988 | |
| 8989 | return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms); |
| 8990 | } |
| 8991 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 8992 | static DEFINE_MUTEX(mux_interval_mutex); |
| 8993 | |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 8994 | static ssize_t |
| 8995 | perf_event_mux_interval_ms_store(struct device *dev, |
| 8996 | struct device_attribute *attr, |
| 8997 | const char *buf, size_t count) |
| 8998 | { |
| 8999 | struct pmu *pmu = dev_get_drvdata(dev); |
| 9000 | int timer, cpu, ret; |
| 9001 | |
| 9002 | ret = kstrtoint(buf, 0, &timer); |
| 9003 | if (ret) |
| 9004 | return ret; |
| 9005 | |
| 9006 | if (timer < 1) |
| 9007 | return -EINVAL; |
| 9008 | |
| 9009 | /* same value, noting to do */ |
| 9010 | if (timer == pmu->hrtimer_interval_ms) |
| 9011 | return count; |
| 9012 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 9013 | mutex_lock(&mux_interval_mutex); |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 9014 | pmu->hrtimer_interval_ms = timer; |
| 9015 | |
| 9016 | /* update all cpuctx for this PMU */ |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 9017 | cpus_read_lock(); |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 9018 | for_each_online_cpu(cpu) { |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 9019 | struct perf_cpu_context *cpuctx; |
| 9020 | cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); |
| 9021 | cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer); |
| 9022 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 9023 | cpu_function_call(cpu, |
| 9024 | (remote_function_f)perf_mux_hrtimer_restart, cpuctx); |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 9025 | } |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 9026 | cpus_read_unlock(); |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 9027 | mutex_unlock(&mux_interval_mutex); |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 9028 | |
| 9029 | return count; |
| 9030 | } |
Greg Kroah-Hartman | 90826ca | 2013-08-23 14:24:40 -0700 | [diff] [blame] | 9031 | static DEVICE_ATTR_RW(perf_event_mux_interval_ms); |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 9032 | |
Greg Kroah-Hartman | 90826ca | 2013-08-23 14:24:40 -0700 | [diff] [blame] | 9033 | static struct attribute *pmu_dev_attrs[] = { |
| 9034 | &dev_attr_type.attr, |
| 9035 | &dev_attr_perf_event_mux_interval_ms.attr, |
| 9036 | NULL, |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9037 | }; |
Greg Kroah-Hartman | 90826ca | 2013-08-23 14:24:40 -0700 | [diff] [blame] | 9038 | ATTRIBUTE_GROUPS(pmu_dev); |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9039 | |
| 9040 | static int pmu_bus_running; |
| 9041 | static struct bus_type pmu_bus = { |
| 9042 | .name = "event_source", |
Greg Kroah-Hartman | 90826ca | 2013-08-23 14:24:40 -0700 | [diff] [blame] | 9043 | .dev_groups = pmu_dev_groups, |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9044 | }; |
| 9045 | |
| 9046 | static void pmu_dev_release(struct device *dev) |
| 9047 | { |
| 9048 | kfree(dev); |
| 9049 | } |
| 9050 | |
| 9051 | static int pmu_dev_alloc(struct pmu *pmu) |
| 9052 | { |
| 9053 | int ret = -ENOMEM; |
| 9054 | |
| 9055 | pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL); |
| 9056 | if (!pmu->dev) |
| 9057 | goto out; |
| 9058 | |
Peter Zijlstra | 0c9d42e | 2011-11-20 23:30:47 +0100 | [diff] [blame] | 9059 | pmu->dev->groups = pmu->attr_groups; |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9060 | device_initialize(pmu->dev); |
| 9061 | ret = dev_set_name(pmu->dev, "%s", pmu->name); |
| 9062 | if (ret) |
| 9063 | goto free_dev; |
| 9064 | |
| 9065 | dev_set_drvdata(pmu->dev, pmu); |
| 9066 | pmu->dev->bus = &pmu_bus; |
| 9067 | pmu->dev->release = pmu_dev_release; |
| 9068 | ret = device_add(pmu->dev); |
| 9069 | if (ret) |
| 9070 | goto free_dev; |
| 9071 | |
Alexander Shishkin | 6e855cd | 2016-04-27 18:44:48 +0300 | [diff] [blame] | 9072 | /* For PMUs with address filters, throw in an extra attribute: */ |
| 9073 | if (pmu->nr_addr_filters) |
| 9074 | ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters); |
| 9075 | |
| 9076 | if (ret) |
| 9077 | goto del_dev; |
| 9078 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9079 | out: |
| 9080 | return ret; |
| 9081 | |
Alexander Shishkin | 6e855cd | 2016-04-27 18:44:48 +0300 | [diff] [blame] | 9082 | del_dev: |
| 9083 | device_del(pmu->dev); |
| 9084 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9085 | free_dev: |
| 9086 | put_device(pmu->dev); |
| 9087 | goto out; |
| 9088 | } |
| 9089 | |
Peter Zijlstra | 547e9fd | 2011-01-19 12:51:39 +0100 | [diff] [blame] | 9090 | static struct lock_class_key cpuctx_mutex; |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 9091 | static struct lock_class_key cpuctx_lock; |
Peter Zijlstra | 547e9fd | 2011-01-19 12:51:39 +0100 | [diff] [blame] | 9092 | |
Mischa Jonker | 03d8e80 | 2013-06-04 11:45:48 +0200 | [diff] [blame] | 9093 | int perf_pmu_register(struct pmu *pmu, const char *name, int type) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9094 | { |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9095 | int cpu, ret; |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 9096 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9097 | mutex_lock(&pmus_lock); |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 9098 | ret = -ENOMEM; |
| 9099 | pmu->pmu_disable_count = alloc_percpu(int); |
| 9100 | if (!pmu->pmu_disable_count) |
| 9101 | goto unlock; |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 9102 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9103 | pmu->type = -1; |
| 9104 | if (!name) |
| 9105 | goto skip_type; |
| 9106 | pmu->name = name; |
| 9107 | |
| 9108 | if (type < 0) { |
Tejun Heo | 0e9c3be | 2013-02-27 17:04:55 -0800 | [diff] [blame] | 9109 | type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL); |
| 9110 | if (type < 0) { |
| 9111 | ret = type; |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9112 | goto free_pdc; |
| 9113 | } |
| 9114 | } |
| 9115 | pmu->type = type; |
| 9116 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9117 | if (pmu_bus_running) { |
| 9118 | ret = pmu_dev_alloc(pmu); |
| 9119 | if (ret) |
| 9120 | goto free_idr; |
| 9121 | } |
| 9122 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9123 | skip_type: |
Peter Zijlstra | 2665784 | 2016-03-22 22:09:18 +0100 | [diff] [blame] | 9124 | if (pmu->task_ctx_nr == perf_hw_context) { |
| 9125 | static int hw_context_taken = 0; |
| 9126 | |
Mark Rutland | 5101ef2 | 2016-04-26 11:33:46 +0100 | [diff] [blame] | 9127 | /* |
| 9128 | * Other than systems with heterogeneous CPUs, it never makes |
| 9129 | * sense for two PMUs to share perf_hw_context. PMUs which are |
| 9130 | * uncore must use perf_invalid_context. |
| 9131 | */ |
| 9132 | if (WARN_ON_ONCE(hw_context_taken && |
| 9133 | !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS))) |
Peter Zijlstra | 2665784 | 2016-03-22 22:09:18 +0100 | [diff] [blame] | 9134 | pmu->task_ctx_nr = perf_invalid_context; |
| 9135 | |
| 9136 | hw_context_taken = 1; |
| 9137 | } |
| 9138 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 9139 | pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr); |
| 9140 | if (pmu->pmu_cpu_context) |
| 9141 | goto got_cpu_context; |
| 9142 | |
Wei Yongjun | c481420 | 2013-04-12 11:05:54 +0800 | [diff] [blame] | 9143 | ret = -ENOMEM; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9144 | pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context); |
| 9145 | if (!pmu->pmu_cpu_context) |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9146 | goto free_dev; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9147 | |
| 9148 | for_each_possible_cpu(cpu) { |
| 9149 | struct perf_cpu_context *cpuctx; |
| 9150 | |
| 9151 | cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 9152 | __perf_event_init_context(&cpuctx->ctx); |
Peter Zijlstra | 547e9fd | 2011-01-19 12:51:39 +0100 | [diff] [blame] | 9153 | lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex); |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 9154 | lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock); |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9155 | cpuctx->ctx.pmu = pmu; |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 9156 | cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask); |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 9157 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 9158 | __perf_mux_hrtimer_init(cpuctx, cpu); |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9159 | } |
| 9160 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 9161 | got_cpu_context: |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 9162 | if (!pmu->start_txn) { |
| 9163 | if (pmu->pmu_enable) { |
| 9164 | /* |
| 9165 | * If we have pmu_enable/pmu_disable calls, install |
| 9166 | * transaction stubs that use that to try and batch |
| 9167 | * hardware accesses. |
| 9168 | */ |
| 9169 | pmu->start_txn = perf_pmu_start_txn; |
| 9170 | pmu->commit_txn = perf_pmu_commit_txn; |
| 9171 | pmu->cancel_txn = perf_pmu_cancel_txn; |
| 9172 | } else { |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 9173 | pmu->start_txn = perf_pmu_nop_txn; |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 9174 | pmu->commit_txn = perf_pmu_nop_int; |
| 9175 | pmu->cancel_txn = perf_pmu_nop_void; |
| 9176 | } |
| 9177 | } |
| 9178 | |
| 9179 | if (!pmu->pmu_enable) { |
| 9180 | pmu->pmu_enable = perf_pmu_nop_void; |
| 9181 | pmu->pmu_disable = perf_pmu_nop_void; |
| 9182 | } |
| 9183 | |
Peter Zijlstra | 35edc2a | 2011-11-20 20:36:02 +0100 | [diff] [blame] | 9184 | if (!pmu->event_idx) |
| 9185 | pmu->event_idx = perf_event_idx_default; |
| 9186 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9187 | list_add_rcu(&pmu->entry, &pmus); |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 9188 | atomic_set(&pmu->exclusive_cnt, 0); |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 9189 | ret = 0; |
| 9190 | unlock: |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9191 | mutex_unlock(&pmus_lock); |
| 9192 | |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 9193 | return ret; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9194 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9195 | free_dev: |
| 9196 | device_del(pmu->dev); |
| 9197 | put_device(pmu->dev); |
| 9198 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9199 | free_idr: |
| 9200 | if (pmu->type >= PERF_TYPE_MAX) |
| 9201 | idr_remove(&pmu_idr, pmu->type); |
| 9202 | |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9203 | free_pdc: |
| 9204 | free_percpu(pmu->pmu_disable_count); |
| 9205 | goto unlock; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9206 | } |
Yan, Zheng | c464c76 | 2014-03-18 16:56:41 +0800 | [diff] [blame] | 9207 | EXPORT_SYMBOL_GPL(perf_pmu_register); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9208 | |
| 9209 | void perf_pmu_unregister(struct pmu *pmu) |
| 9210 | { |
Jiri Olsa | 0933840 | 2016-10-20 13:10:11 +0200 | [diff] [blame] | 9211 | int remove_device; |
| 9212 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9213 | mutex_lock(&pmus_lock); |
Jiri Olsa | 0933840 | 2016-10-20 13:10:11 +0200 | [diff] [blame] | 9214 | remove_device = pmu_bus_running; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9215 | list_del_rcu(&pmu->entry); |
| 9216 | mutex_unlock(&pmus_lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9217 | |
| 9218 | /* |
Peter Zijlstra | cde8e88 | 2010-09-13 11:06:55 +0200 | [diff] [blame] | 9219 | * We dereference the pmu list under both SRCU and regular RCU, so |
| 9220 | * synchronize against both of those. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9221 | */ |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9222 | synchronize_srcu(&pmus_srcu); |
Peter Zijlstra | cde8e88 | 2010-09-13 11:06:55 +0200 | [diff] [blame] | 9223 | synchronize_rcu(); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9224 | |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 9225 | free_percpu(pmu->pmu_disable_count); |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9226 | if (pmu->type >= PERF_TYPE_MAX) |
| 9227 | idr_remove(&pmu_idr, pmu->type); |
Jiri Olsa | 0933840 | 2016-10-20 13:10:11 +0200 | [diff] [blame] | 9228 | if (remove_device) { |
| 9229 | if (pmu->nr_addr_filters) |
| 9230 | device_remove_file(pmu->dev, &dev_attr_nr_addr_filters); |
| 9231 | device_del(pmu->dev); |
| 9232 | put_device(pmu->dev); |
| 9233 | } |
Peter Zijlstra | 5167695 | 2010-12-07 14:18:20 +0100 | [diff] [blame] | 9234 | free_pmu_context(pmu); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9235 | } |
Yan, Zheng | c464c76 | 2014-03-18 16:56:41 +0800 | [diff] [blame] | 9236 | EXPORT_SYMBOL_GPL(perf_pmu_unregister); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9237 | |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9238 | static int perf_try_init_event(struct pmu *pmu, struct perf_event *event) |
| 9239 | { |
Peter Zijlstra | ccd41c8 | 2015-02-25 15:56:04 +0100 | [diff] [blame] | 9240 | struct perf_event_context *ctx = NULL; |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9241 | int ret; |
| 9242 | |
| 9243 | if (!try_module_get(pmu->module)) |
| 9244 | return -ENODEV; |
Peter Zijlstra | ccd41c8 | 2015-02-25 15:56:04 +0100 | [diff] [blame] | 9245 | |
| 9246 | if (event->group_leader != event) { |
Peter Zijlstra | 8b10c5e | 2015-05-01 16:08:46 +0200 | [diff] [blame] | 9247 | /* |
| 9248 | * This ctx->mutex can nest when we're called through |
| 9249 | * inheritance. See the perf_event_ctx_lock_nested() comment. |
| 9250 | */ |
| 9251 | ctx = perf_event_ctx_lock_nested(event->group_leader, |
| 9252 | SINGLE_DEPTH_NESTING); |
Peter Zijlstra | ccd41c8 | 2015-02-25 15:56:04 +0100 | [diff] [blame] | 9253 | BUG_ON(!ctx); |
| 9254 | } |
| 9255 | |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9256 | event->pmu = pmu; |
| 9257 | ret = pmu->event_init(event); |
Peter Zijlstra | ccd41c8 | 2015-02-25 15:56:04 +0100 | [diff] [blame] | 9258 | |
| 9259 | if (ctx) |
| 9260 | perf_event_ctx_unlock(event->group_leader, ctx); |
| 9261 | |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9262 | if (ret) |
| 9263 | module_put(pmu->module); |
| 9264 | |
| 9265 | return ret; |
| 9266 | } |
| 9267 | |
Geliang Tang | 18ab2cd | 2015-09-27 23:25:50 +0800 | [diff] [blame] | 9268 | static struct pmu *perf_init_event(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9269 | { |
Dan Carpenter | 85c617a | 2017-05-22 12:03:49 +0300 | [diff] [blame] | 9270 | struct pmu *pmu; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9271 | int idx; |
Lin Ming | 940c5b2 | 2011-02-27 21:13:31 +0800 | [diff] [blame] | 9272 | int ret; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 9273 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9274 | idx = srcu_read_lock(&pmus_srcu); |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9275 | |
Kan Liang | 4099931 | 2017-01-18 08:21:01 -0500 | [diff] [blame] | 9276 | /* Try parent's PMU first: */ |
| 9277 | if (event->parent && event->parent->pmu) { |
| 9278 | pmu = event->parent->pmu; |
| 9279 | ret = perf_try_init_event(pmu, event); |
| 9280 | if (!ret) |
| 9281 | goto unlock; |
| 9282 | } |
| 9283 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9284 | rcu_read_lock(); |
| 9285 | pmu = idr_find(&pmu_idr, event->attr.type); |
| 9286 | rcu_read_unlock(); |
Lin Ming | 940c5b2 | 2011-02-27 21:13:31 +0800 | [diff] [blame] | 9287 | if (pmu) { |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9288 | ret = perf_try_init_event(pmu, event); |
Lin Ming | 940c5b2 | 2011-02-27 21:13:31 +0800 | [diff] [blame] | 9289 | if (ret) |
| 9290 | pmu = ERR_PTR(ret); |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9291 | goto unlock; |
Lin Ming | 940c5b2 | 2011-02-27 21:13:31 +0800 | [diff] [blame] | 9292 | } |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9293 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9294 | list_for_each_entry_rcu(pmu, &pmus, entry) { |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9295 | ret = perf_try_init_event(pmu, event); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9296 | if (!ret) |
Peter Zijlstra | e5f4d33 | 2010-09-10 17:38:06 +0200 | [diff] [blame] | 9297 | goto unlock; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 9298 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9299 | if (ret != -ENOENT) { |
| 9300 | pmu = ERR_PTR(ret); |
Peter Zijlstra | e5f4d33 | 2010-09-10 17:38:06 +0200 | [diff] [blame] | 9301 | goto unlock; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9302 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9303 | } |
Peter Zijlstra | e5f4d33 | 2010-09-10 17:38:06 +0200 | [diff] [blame] | 9304 | pmu = ERR_PTR(-ENOENT); |
| 9305 | unlock: |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9306 | srcu_read_unlock(&pmus_srcu, idx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9307 | |
| 9308 | return pmu; |
| 9309 | } |
| 9310 | |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 9311 | static void attach_sb_event(struct perf_event *event) |
| 9312 | { |
| 9313 | struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu); |
| 9314 | |
| 9315 | raw_spin_lock(&pel->lock); |
| 9316 | list_add_rcu(&event->sb_list, &pel->list); |
| 9317 | raw_spin_unlock(&pel->lock); |
| 9318 | } |
| 9319 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 9320 | /* |
| 9321 | * We keep a list of all !task (and therefore per-cpu) events |
| 9322 | * that need to receive side-band records. |
| 9323 | * |
| 9324 | * This avoids having to scan all the various PMU per-cpu contexts |
| 9325 | * looking for them. |
| 9326 | */ |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 9327 | static void account_pmu_sb_event(struct perf_event *event) |
| 9328 | { |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 9329 | if (is_sb_event(event)) |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 9330 | attach_sb_event(event); |
| 9331 | } |
| 9332 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9333 | static void account_event_cpu(struct perf_event *event, int cpu) |
| 9334 | { |
| 9335 | if (event->parent) |
| 9336 | return; |
| 9337 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9338 | if (is_cgroup_event(event)) |
| 9339 | atomic_inc(&per_cpu(perf_cgroup_events, cpu)); |
| 9340 | } |
| 9341 | |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 9342 | /* Freq events need the tick to stay alive (see perf_event_task_tick). */ |
| 9343 | static void account_freq_event_nohz(void) |
| 9344 | { |
| 9345 | #ifdef CONFIG_NO_HZ_FULL |
| 9346 | /* Lock so we don't race with concurrent unaccount */ |
| 9347 | spin_lock(&nr_freq_lock); |
| 9348 | if (atomic_inc_return(&nr_freq_events) == 1) |
| 9349 | tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS); |
| 9350 | spin_unlock(&nr_freq_lock); |
| 9351 | #endif |
| 9352 | } |
| 9353 | |
| 9354 | static void account_freq_event(void) |
| 9355 | { |
| 9356 | if (tick_nohz_full_enabled()) |
| 9357 | account_freq_event_nohz(); |
| 9358 | else |
| 9359 | atomic_inc(&nr_freq_events); |
| 9360 | } |
| 9361 | |
| 9362 | |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9363 | static void account_event(struct perf_event *event) |
| 9364 | { |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 9365 | bool inc = false; |
| 9366 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9367 | if (event->parent) |
| 9368 | return; |
| 9369 | |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9370 | if (event->attach_state & PERF_ATTACH_TASK) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 9371 | inc = true; |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9372 | if (event->attr.mmap || event->attr.mmap_data) |
| 9373 | atomic_inc(&nr_mmap_events); |
| 9374 | if (event->attr.comm) |
| 9375 | atomic_inc(&nr_comm_events); |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 9376 | if (event->attr.namespaces) |
| 9377 | atomic_inc(&nr_namespaces_events); |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9378 | if (event->attr.task) |
| 9379 | atomic_inc(&nr_task_events); |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 9380 | if (event->attr.freq) |
| 9381 | account_freq_event(); |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 9382 | if (event->attr.context_switch) { |
| 9383 | atomic_inc(&nr_switch_events); |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 9384 | inc = true; |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 9385 | } |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9386 | if (has_branch_stack(event)) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 9387 | inc = true; |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9388 | if (is_cgroup_event(event)) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 9389 | inc = true; |
| 9390 | |
Peter Zijlstra | 9107c89 | 2016-02-24 18:45:45 +0100 | [diff] [blame] | 9391 | if (inc) { |
| 9392 | if (atomic_inc_not_zero(&perf_sched_count)) |
| 9393 | goto enabled; |
| 9394 | |
| 9395 | mutex_lock(&perf_sched_mutex); |
| 9396 | if (!atomic_read(&perf_sched_count)) { |
| 9397 | static_branch_enable(&perf_sched_events); |
| 9398 | /* |
| 9399 | * Guarantee that all CPUs observe they key change and |
| 9400 | * call the perf scheduling hooks before proceeding to |
| 9401 | * install events that need them. |
| 9402 | */ |
| 9403 | synchronize_sched(); |
| 9404 | } |
| 9405 | /* |
| 9406 | * Now that we have waited for the sync_sched(), allow further |
| 9407 | * increments to by-pass the mutex. |
| 9408 | */ |
| 9409 | atomic_inc(&perf_sched_count); |
| 9410 | mutex_unlock(&perf_sched_mutex); |
| 9411 | } |
| 9412 | enabled: |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9413 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9414 | account_event_cpu(event, event->cpu); |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 9415 | |
| 9416 | account_pmu_sb_event(event); |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9417 | } |
| 9418 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9419 | /* |
| 9420 | * Allocate and initialize a event structure |
| 9421 | */ |
| 9422 | static struct perf_event * |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 9423 | perf_event_alloc(struct perf_event_attr *attr, int cpu, |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 9424 | struct task_struct *task, |
| 9425 | struct perf_event *group_leader, |
| 9426 | struct perf_event *parent_event, |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 9427 | perf_overflow_handler_t overflow_handler, |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 9428 | void *context, int cgroup_fd) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9429 | { |
Peter Zijlstra | 51b0fe3 | 2010-06-11 13:35:57 +0200 | [diff] [blame] | 9430 | struct pmu *pmu; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9431 | struct perf_event *event; |
| 9432 | struct hw_perf_event *hwc; |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9433 | long err = -EINVAL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9434 | |
Oleg Nesterov | 66832eb | 2011-01-18 17:10:32 +0100 | [diff] [blame] | 9435 | if ((unsigned)cpu >= nr_cpu_ids) { |
| 9436 | if (!task || cpu != -1) |
| 9437 | return ERR_PTR(-EINVAL); |
| 9438 | } |
| 9439 | |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 9440 | event = kzalloc(sizeof(*event), GFP_KERNEL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9441 | if (!event) |
| 9442 | return ERR_PTR(-ENOMEM); |
| 9443 | |
| 9444 | /* |
| 9445 | * Single events are their own group leaders, with an |
| 9446 | * empty sibling list: |
| 9447 | */ |
| 9448 | if (!group_leader) |
| 9449 | group_leader = event; |
| 9450 | |
| 9451 | mutex_init(&event->child_mutex); |
| 9452 | INIT_LIST_HEAD(&event->child_list); |
| 9453 | |
| 9454 | INIT_LIST_HEAD(&event->group_entry); |
| 9455 | INIT_LIST_HEAD(&event->event_entry); |
| 9456 | INIT_LIST_HEAD(&event->sibling_list); |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 9457 | INIT_LIST_HEAD(&event->rb_entry); |
Stephane Eranian | 71ad88e | 2013-11-12 17:58:48 +0100 | [diff] [blame] | 9458 | INIT_LIST_HEAD(&event->active_entry); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9459 | INIT_LIST_HEAD(&event->addr_filters.list); |
Stephane Eranian | f3ae75d | 2014-01-08 11:15:52 +0100 | [diff] [blame] | 9460 | INIT_HLIST_NODE(&event->hlist_entry); |
| 9461 | |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 9462 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9463 | init_waitqueue_head(&event->waitq); |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 9464 | init_irq_work(&event->pending, perf_pending_event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9465 | |
| 9466 | mutex_init(&event->mmap_mutex); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9467 | raw_spin_lock_init(&event->addr_filters.lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9468 | |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 9469 | atomic_long_set(&event->refcount, 1); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9470 | event->cpu = cpu; |
| 9471 | event->attr = *attr; |
| 9472 | event->group_leader = group_leader; |
| 9473 | event->pmu = NULL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9474 | event->oncpu = -1; |
| 9475 | |
| 9476 | event->parent = parent_event; |
| 9477 | |
Eric W. Biederman | 17cf22c | 2010-03-02 14:51:53 -0800 | [diff] [blame] | 9478 | event->ns = get_pid_ns(task_active_pid_ns(current)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9479 | event->id = atomic64_inc_return(&perf_event_id); |
| 9480 | |
| 9481 | event->state = PERF_EVENT_STATE_INACTIVE; |
| 9482 | |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 9483 | if (task) { |
| 9484 | event->attach_state = PERF_ATTACH_TASK; |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 9485 | /* |
Peter Zijlstra | 50f16a8 | 2015-03-05 22:10:19 +0100 | [diff] [blame] | 9486 | * XXX pmu::event_init needs to know what task to account to |
| 9487 | * and we cannot use the ctx information because we need the |
| 9488 | * pmu before we get a ctx. |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 9489 | */ |
Peter Zijlstra | 50f16a8 | 2015-03-05 22:10:19 +0100 | [diff] [blame] | 9490 | event->hw.target = task; |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 9491 | } |
| 9492 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 9493 | event->clock = &local_clock; |
| 9494 | if (parent_event) |
| 9495 | event->clock = parent_event->clock; |
| 9496 | |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 9497 | if (!overflow_handler && parent_event) { |
Frederic Weisbecker | b326e95 | 2009-12-05 09:44:31 +0100 | [diff] [blame] | 9498 | overflow_handler = parent_event->overflow_handler; |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 9499 | context = parent_event->overflow_handler_context; |
Arnd Bergmann | f1e4ba5 | 2016-09-06 15:10:22 +0200 | [diff] [blame] | 9500 | #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING) |
Alexei Starovoitov | aa6a5f3 | 2016-09-01 18:37:24 -0700 | [diff] [blame] | 9501 | if (overflow_handler == bpf_overflow_handler) { |
| 9502 | struct bpf_prog *prog = bpf_prog_inc(parent_event->prog); |
| 9503 | |
| 9504 | if (IS_ERR(prog)) { |
| 9505 | err = PTR_ERR(prog); |
| 9506 | goto err_ns; |
| 9507 | } |
| 9508 | event->prog = prog; |
| 9509 | event->orig_overflow_handler = |
| 9510 | parent_event->orig_overflow_handler; |
| 9511 | } |
| 9512 | #endif |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 9513 | } |
Oleg Nesterov | 66832eb | 2011-01-18 17:10:32 +0100 | [diff] [blame] | 9514 | |
Wang Nan | 1879445 | 2016-03-28 06:41:30 +0000 | [diff] [blame] | 9515 | if (overflow_handler) { |
| 9516 | event->overflow_handler = overflow_handler; |
| 9517 | event->overflow_handler_context = context; |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 9518 | } else if (is_write_backward(event)){ |
| 9519 | event->overflow_handler = perf_event_output_backward; |
| 9520 | event->overflow_handler_context = NULL; |
Wang Nan | 1879445 | 2016-03-28 06:41:30 +0000 | [diff] [blame] | 9521 | } else { |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 9522 | event->overflow_handler = perf_event_output_forward; |
Wang Nan | 1879445 | 2016-03-28 06:41:30 +0000 | [diff] [blame] | 9523 | event->overflow_handler_context = NULL; |
| 9524 | } |
Frederic Weisbecker | 97eaf53 | 2009-10-18 15:33:50 +0200 | [diff] [blame] | 9525 | |
Jiri Olsa | 0231bb5 | 2013-02-01 11:23:45 +0100 | [diff] [blame] | 9526 | perf_event__state_init(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9527 | |
| 9528 | pmu = NULL; |
| 9529 | |
| 9530 | hwc = &event->hw; |
| 9531 | hwc->sample_period = attr->sample_period; |
| 9532 | if (attr->freq && attr->sample_freq) |
| 9533 | hwc->sample_period = 1; |
| 9534 | hwc->last_period = hwc->sample_period; |
| 9535 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 9536 | local64_set(&hwc->period_left, hwc->sample_period); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9537 | |
| 9538 | /* |
Peter Zijlstra | ba5213a | 2017-05-30 11:45:12 +0200 | [diff] [blame] | 9539 | * We currently do not support PERF_SAMPLE_READ on inherited events. |
| 9540 | * See perf_output_read(). |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9541 | */ |
Peter Zijlstra | ba5213a | 2017-05-30 11:45:12 +0200 | [diff] [blame] | 9542 | if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ)) |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9543 | goto err_ns; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9544 | |
Yan, Zheng | a46a230 | 2014-11-04 21:56:06 -0500 | [diff] [blame] | 9545 | if (!has_branch_stack(event)) |
| 9546 | event->attr.branch_sample_type = 0; |
| 9547 | |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 9548 | if (cgroup_fd != -1) { |
| 9549 | err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader); |
| 9550 | if (err) |
| 9551 | goto err_ns; |
| 9552 | } |
| 9553 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9554 | pmu = perf_init_event(event); |
Dan Carpenter | 85c617a | 2017-05-22 12:03:49 +0300 | [diff] [blame] | 9555 | if (IS_ERR(pmu)) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9556 | err = PTR_ERR(pmu); |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9557 | goto err_ns; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9558 | } |
| 9559 | |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 9560 | err = exclusive_event_init(event); |
| 9561 | if (err) |
| 9562 | goto err_pmu; |
| 9563 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9564 | if (has_addr_filter(event)) { |
| 9565 | event->addr_filters_offs = kcalloc(pmu->nr_addr_filters, |
| 9566 | sizeof(unsigned long), |
| 9567 | GFP_KERNEL); |
Dan Carpenter | 36cc2b9 | 2017-05-22 12:04:18 +0300 | [diff] [blame] | 9568 | if (!event->addr_filters_offs) { |
| 9569 | err = -ENOMEM; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9570 | goto err_per_task; |
Dan Carpenter | 36cc2b9 | 2017-05-22 12:04:18 +0300 | [diff] [blame] | 9571 | } |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9572 | |
| 9573 | /* force hw sync on the address filters */ |
| 9574 | event->addr_filters_gen = 1; |
| 9575 | } |
| 9576 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9577 | if (!event->parent) { |
Frederic Weisbecker | 927c7a9 | 2010-07-01 16:20:36 +0200 | [diff] [blame] | 9578 | if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) { |
Arnaldo Carvalho de Melo | 97c79a3 | 2016-04-28 13:16:33 -0300 | [diff] [blame] | 9579 | err = get_callchain_buffers(attr->sample_max_stack); |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9580 | if (err) |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9581 | goto err_addr_filters; |
Stephane Eranian | d010b33 | 2012-02-09 23:21:00 +0100 | [diff] [blame] | 9582 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9583 | } |
| 9584 | |
Alexander Shishkin | 927a557 | 2016-03-02 13:24:14 +0200 | [diff] [blame] | 9585 | /* symmetric to unaccount_event() in _free_event() */ |
| 9586 | account_event(event); |
| 9587 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9588 | return event; |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9589 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9590 | err_addr_filters: |
| 9591 | kfree(event->addr_filters_offs); |
| 9592 | |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 9593 | err_per_task: |
| 9594 | exclusive_event_destroy(event); |
| 9595 | |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9596 | err_pmu: |
| 9597 | if (event->destroy) |
| 9598 | event->destroy(event); |
Yan, Zheng | c464c76 | 2014-03-18 16:56:41 +0800 | [diff] [blame] | 9599 | module_put(pmu->module); |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9600 | err_ns: |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 9601 | if (is_cgroup_event(event)) |
| 9602 | perf_detach_cgroup(event); |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9603 | if (event->ns) |
| 9604 | put_pid_ns(event->ns); |
| 9605 | kfree(event); |
| 9606 | |
| 9607 | return ERR_PTR(err); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9608 | } |
| 9609 | |
| 9610 | static int perf_copy_attr(struct perf_event_attr __user *uattr, |
| 9611 | struct perf_event_attr *attr) |
| 9612 | { |
| 9613 | u32 size; |
| 9614 | int ret; |
| 9615 | |
| 9616 | if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0)) |
| 9617 | return -EFAULT; |
| 9618 | |
| 9619 | /* |
| 9620 | * zero the full structure, so that a short copy will be nice. |
| 9621 | */ |
| 9622 | memset(attr, 0, sizeof(*attr)); |
| 9623 | |
| 9624 | ret = get_user(size, &uattr->size); |
| 9625 | if (ret) |
| 9626 | return ret; |
| 9627 | |
| 9628 | if (size > PAGE_SIZE) /* silly large */ |
| 9629 | goto err_size; |
| 9630 | |
| 9631 | if (!size) /* abi compat */ |
| 9632 | size = PERF_ATTR_SIZE_VER0; |
| 9633 | |
| 9634 | if (size < PERF_ATTR_SIZE_VER0) |
| 9635 | goto err_size; |
| 9636 | |
| 9637 | /* |
| 9638 | * If we're handed a bigger struct than we know of, |
| 9639 | * ensure all the unknown bits are 0 - i.e. new |
| 9640 | * user-space does not rely on any kernel feature |
| 9641 | * extensions we dont know about yet. |
| 9642 | */ |
| 9643 | if (size > sizeof(*attr)) { |
| 9644 | unsigned char __user *addr; |
| 9645 | unsigned char __user *end; |
| 9646 | unsigned char val; |
| 9647 | |
| 9648 | addr = (void __user *)uattr + sizeof(*attr); |
| 9649 | end = (void __user *)uattr + size; |
| 9650 | |
| 9651 | for (; addr < end; addr++) { |
| 9652 | ret = get_user(val, addr); |
| 9653 | if (ret) |
| 9654 | return ret; |
| 9655 | if (val) |
| 9656 | goto err_size; |
| 9657 | } |
| 9658 | size = sizeof(*attr); |
| 9659 | } |
| 9660 | |
| 9661 | ret = copy_from_user(attr, uattr, size); |
| 9662 | if (ret) |
| 9663 | return -EFAULT; |
| 9664 | |
Meng Xu | f12f42a | 2017-08-23 17:07:50 -0400 | [diff] [blame] | 9665 | attr->size = size; |
| 9666 | |
Mahesh Salgaonkar | cd75764 | 2010-01-30 10:25:18 +0530 | [diff] [blame] | 9667 | if (attr->__reserved_1) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9668 | return -EINVAL; |
| 9669 | |
| 9670 | if (attr->sample_type & ~(PERF_SAMPLE_MAX-1)) |
| 9671 | return -EINVAL; |
| 9672 | |
| 9673 | if (attr->read_format & ~(PERF_FORMAT_MAX-1)) |
| 9674 | return -EINVAL; |
| 9675 | |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 9676 | if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) { |
| 9677 | u64 mask = attr->branch_sample_type; |
| 9678 | |
| 9679 | /* only using defined bits */ |
| 9680 | if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1)) |
| 9681 | return -EINVAL; |
| 9682 | |
| 9683 | /* at least one branch bit must be set */ |
| 9684 | if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL)) |
| 9685 | return -EINVAL; |
| 9686 | |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 9687 | /* propagate priv level, when not set for branch */ |
| 9688 | if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) { |
| 9689 | |
| 9690 | /* exclude_kernel checked on syscall entry */ |
| 9691 | if (!attr->exclude_kernel) |
| 9692 | mask |= PERF_SAMPLE_BRANCH_KERNEL; |
| 9693 | |
| 9694 | if (!attr->exclude_user) |
| 9695 | mask |= PERF_SAMPLE_BRANCH_USER; |
| 9696 | |
| 9697 | if (!attr->exclude_hv) |
| 9698 | mask |= PERF_SAMPLE_BRANCH_HV; |
| 9699 | /* |
| 9700 | * adjust user setting (for HW filter setup) |
| 9701 | */ |
| 9702 | attr->branch_sample_type = mask; |
| 9703 | } |
Stephane Eranian | e712209 | 2013-06-06 11:02:04 +0200 | [diff] [blame] | 9704 | /* privileged levels capture (kernel, hv): check permissions */ |
| 9705 | if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM) |
Stephane Eranian | 2b923c8 | 2013-05-21 12:53:37 +0200 | [diff] [blame] | 9706 | && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN)) |
| 9707 | return -EACCES; |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 9708 | } |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 9709 | |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 9710 | if (attr->sample_type & PERF_SAMPLE_REGS_USER) { |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 9711 | ret = perf_reg_validate(attr->sample_regs_user); |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 9712 | if (ret) |
| 9713 | return ret; |
| 9714 | } |
| 9715 | |
| 9716 | if (attr->sample_type & PERF_SAMPLE_STACK_USER) { |
| 9717 | if (!arch_perf_have_user_stack_dump()) |
| 9718 | return -ENOSYS; |
| 9719 | |
| 9720 | /* |
| 9721 | * We have __u32 type for the size, but so far |
| 9722 | * we can only use __u16 as maximum due to the |
| 9723 | * __u16 sample size limit. |
| 9724 | */ |
| 9725 | if (attr->sample_stack_user >= USHRT_MAX) |
| 9726 | ret = -EINVAL; |
| 9727 | else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64))) |
| 9728 | ret = -EINVAL; |
| 9729 | } |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 9730 | |
Stephane Eranian | 60e2364 | 2014-09-24 13:48:37 +0200 | [diff] [blame] | 9731 | if (attr->sample_type & PERF_SAMPLE_REGS_INTR) |
| 9732 | ret = perf_reg_validate(attr->sample_regs_intr); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9733 | out: |
| 9734 | return ret; |
| 9735 | |
| 9736 | err_size: |
| 9737 | put_user(sizeof(*attr), &uattr->size); |
| 9738 | ret = -E2BIG; |
| 9739 | goto out; |
| 9740 | } |
| 9741 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9742 | static int |
| 9743 | perf_event_set_output(struct perf_event *event, struct perf_event *output_event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9744 | { |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 9745 | struct ring_buffer *rb = NULL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9746 | int ret = -EINVAL; |
| 9747 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9748 | if (!output_event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9749 | goto set; |
| 9750 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9751 | /* don't allow circular references */ |
| 9752 | if (event == output_event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9753 | goto out; |
| 9754 | |
Peter Zijlstra | 0f13930 | 2010-05-20 14:35:15 +0200 | [diff] [blame] | 9755 | /* |
| 9756 | * Don't allow cross-cpu buffers |
| 9757 | */ |
| 9758 | if (output_event->cpu != event->cpu) |
| 9759 | goto out; |
| 9760 | |
| 9761 | /* |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 9762 | * If its not a per-cpu rb, it must be the same task. |
Peter Zijlstra | 0f13930 | 2010-05-20 14:35:15 +0200 | [diff] [blame] | 9763 | */ |
| 9764 | if (output_event->cpu == -1 && output_event->ctx != event->ctx) |
| 9765 | goto out; |
| 9766 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 9767 | /* |
| 9768 | * Mixing clocks in the same buffer is trouble you don't need. |
| 9769 | */ |
| 9770 | if (output_event->clock != event->clock) |
| 9771 | goto out; |
| 9772 | |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 9773 | /* |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 9774 | * Either writing ring buffer from beginning or from end. |
| 9775 | * Mixing is not allowed. |
| 9776 | */ |
| 9777 | if (is_write_backward(output_event) != is_write_backward(event)) |
| 9778 | goto out; |
| 9779 | |
| 9780 | /* |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 9781 | * If both events generate aux data, they must be on the same PMU |
| 9782 | */ |
| 9783 | if (has_aux(event) && has_aux(output_event) && |
| 9784 | event->pmu != output_event->pmu) |
| 9785 | goto out; |
| 9786 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9787 | set: |
| 9788 | mutex_lock(&event->mmap_mutex); |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9789 | /* Can't redirect output if we've got an active mmap() */ |
| 9790 | if (atomic_read(&event->mmap_count)) |
| 9791 | goto unlock; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9792 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9793 | if (output_event) { |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 9794 | /* get the rb we want to redirect to */ |
| 9795 | rb = ring_buffer_get(output_event); |
| 9796 | if (!rb) |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9797 | goto unlock; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9798 | } |
| 9799 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 9800 | ring_buffer_attach(event, rb); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 9801 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9802 | ret = 0; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9803 | unlock: |
| 9804 | mutex_unlock(&event->mmap_mutex); |
| 9805 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9806 | out: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9807 | return ret; |
| 9808 | } |
| 9809 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 9810 | static void mutex_lock_double(struct mutex *a, struct mutex *b) |
| 9811 | { |
| 9812 | if (b < a) |
| 9813 | swap(a, b); |
| 9814 | |
| 9815 | mutex_lock(a); |
| 9816 | mutex_lock_nested(b, SINGLE_DEPTH_NESTING); |
| 9817 | } |
| 9818 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 9819 | static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id) |
| 9820 | { |
| 9821 | bool nmi_safe = false; |
| 9822 | |
| 9823 | switch (clk_id) { |
| 9824 | case CLOCK_MONOTONIC: |
| 9825 | event->clock = &ktime_get_mono_fast_ns; |
| 9826 | nmi_safe = true; |
| 9827 | break; |
| 9828 | |
| 9829 | case CLOCK_MONOTONIC_RAW: |
| 9830 | event->clock = &ktime_get_raw_fast_ns; |
| 9831 | nmi_safe = true; |
| 9832 | break; |
| 9833 | |
| 9834 | case CLOCK_REALTIME: |
| 9835 | event->clock = &ktime_get_real_ns; |
| 9836 | break; |
| 9837 | |
| 9838 | case CLOCK_BOOTTIME: |
| 9839 | event->clock = &ktime_get_boot_ns; |
| 9840 | break; |
| 9841 | |
| 9842 | case CLOCK_TAI: |
| 9843 | event->clock = &ktime_get_tai_ns; |
| 9844 | break; |
| 9845 | |
| 9846 | default: |
| 9847 | return -EINVAL; |
| 9848 | } |
| 9849 | |
| 9850 | if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI)) |
| 9851 | return -EINVAL; |
| 9852 | |
| 9853 | return 0; |
| 9854 | } |
| 9855 | |
Peter Zijlstra | 321027c | 2017-01-11 21:09:50 +0100 | [diff] [blame] | 9856 | /* |
| 9857 | * Variation on perf_event_ctx_lock_nested(), except we take two context |
| 9858 | * mutexes. |
| 9859 | */ |
| 9860 | static struct perf_event_context * |
| 9861 | __perf_event_ctx_lock_double(struct perf_event *group_leader, |
| 9862 | struct perf_event_context *ctx) |
| 9863 | { |
| 9864 | struct perf_event_context *gctx; |
| 9865 | |
| 9866 | again: |
| 9867 | rcu_read_lock(); |
| 9868 | gctx = READ_ONCE(group_leader->ctx); |
| 9869 | if (!atomic_inc_not_zero(&gctx->refcount)) { |
| 9870 | rcu_read_unlock(); |
| 9871 | goto again; |
| 9872 | } |
| 9873 | rcu_read_unlock(); |
| 9874 | |
| 9875 | mutex_lock_double(&gctx->mutex, &ctx->mutex); |
| 9876 | |
| 9877 | if (group_leader->ctx != gctx) { |
| 9878 | mutex_unlock(&ctx->mutex); |
| 9879 | mutex_unlock(&gctx->mutex); |
| 9880 | put_ctx(gctx); |
| 9881 | goto again; |
| 9882 | } |
| 9883 | |
| 9884 | return gctx; |
| 9885 | } |
| 9886 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9887 | /** |
| 9888 | * sys_perf_event_open - open a performance event, associate it to a task/cpu |
| 9889 | * |
| 9890 | * @attr_uptr: event_id type attributes for monitoring/sampling |
| 9891 | * @pid: target pid |
| 9892 | * @cpu: target cpu |
| 9893 | * @group_fd: group leader event fd |
| 9894 | */ |
| 9895 | SYSCALL_DEFINE5(perf_event_open, |
| 9896 | struct perf_event_attr __user *, attr_uptr, |
| 9897 | pid_t, pid, int, cpu, int, group_fd, unsigned long, flags) |
| 9898 | { |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 9899 | struct perf_event *group_leader = NULL, *output_event = NULL; |
| 9900 | struct perf_event *event, *sibling; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9901 | struct perf_event_attr attr; |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 9902 | struct perf_event_context *ctx, *uninitialized_var(gctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9903 | struct file *event_file = NULL; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 9904 | struct fd group = {NULL, 0}; |
Matt Helsley | 38a81da | 2010-09-13 13:01:20 -0700 | [diff] [blame] | 9905 | struct task_struct *task = NULL; |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 9906 | struct pmu *pmu; |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 9907 | int event_fd; |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 9908 | int move_group = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9909 | int err; |
Yann Droneaud | a21b0b3 | 2014-01-05 21:36:33 +0100 | [diff] [blame] | 9910 | int f_flags = O_RDWR; |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 9911 | int cgroup_fd = -1; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9912 | |
| 9913 | /* for future expandability... */ |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 9914 | if (flags & ~PERF_FLAG_ALL) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9915 | return -EINVAL; |
| 9916 | |
| 9917 | err = perf_copy_attr(attr_uptr, &attr); |
| 9918 | if (err) |
| 9919 | return err; |
| 9920 | |
| 9921 | if (!attr.exclude_kernel) { |
| 9922 | if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN)) |
| 9923 | return -EACCES; |
| 9924 | } |
| 9925 | |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 9926 | if (attr.namespaces) { |
| 9927 | if (!capable(CAP_SYS_ADMIN)) |
| 9928 | return -EACCES; |
| 9929 | } |
| 9930 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9931 | if (attr.freq) { |
| 9932 | if (attr.sample_freq > sysctl_perf_event_sample_rate) |
| 9933 | return -EINVAL; |
Peter Zijlstra | 0819b2e | 2014-05-15 20:23:48 +0200 | [diff] [blame] | 9934 | } else { |
| 9935 | if (attr.sample_period & (1ULL << 63)) |
| 9936 | return -EINVAL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9937 | } |
| 9938 | |
Kan Liang | fc7ce9c | 2017-08-28 20:52:49 -0400 | [diff] [blame] | 9939 | /* Only privileged users can get physical addresses */ |
| 9940 | if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR) && |
| 9941 | perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN)) |
| 9942 | return -EACCES; |
| 9943 | |
Arnaldo Carvalho de Melo | 97c79a3 | 2016-04-28 13:16:33 -0300 | [diff] [blame] | 9944 | if (!attr.sample_max_stack) |
| 9945 | attr.sample_max_stack = sysctl_perf_event_max_stack; |
| 9946 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 9947 | /* |
| 9948 | * In cgroup mode, the pid argument is used to pass the fd |
| 9949 | * opened to the cgroup directory in cgroupfs. The cpu argument |
| 9950 | * designates the cpu on which to monitor threads from that |
| 9951 | * cgroup. |
| 9952 | */ |
| 9953 | if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1)) |
| 9954 | return -EINVAL; |
| 9955 | |
Yann Droneaud | a21b0b3 | 2014-01-05 21:36:33 +0100 | [diff] [blame] | 9956 | if (flags & PERF_FLAG_FD_CLOEXEC) |
| 9957 | f_flags |= O_CLOEXEC; |
| 9958 | |
| 9959 | event_fd = get_unused_fd_flags(f_flags); |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 9960 | if (event_fd < 0) |
| 9961 | return event_fd; |
| 9962 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9963 | if (group_fd != -1) { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 9964 | err = perf_fget_light(group_fd, &group); |
| 9965 | if (err) |
Stephane Eranian | d14b12d | 2010-09-17 11:28:47 +0200 | [diff] [blame] | 9966 | goto err_fd; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 9967 | group_leader = group.file->private_data; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9968 | if (flags & PERF_FLAG_FD_OUTPUT) |
| 9969 | output_event = group_leader; |
| 9970 | if (flags & PERF_FLAG_FD_NO_GROUP) |
| 9971 | group_leader = NULL; |
| 9972 | } |
| 9973 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 9974 | if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) { |
Peter Zijlstra | c6be5a5 | 2010-10-14 16:59:46 +0200 | [diff] [blame] | 9975 | task = find_lively_task_by_vpid(pid); |
| 9976 | if (IS_ERR(task)) { |
| 9977 | err = PTR_ERR(task); |
| 9978 | goto err_group_fd; |
| 9979 | } |
| 9980 | } |
| 9981 | |
Peter Zijlstra | 1f4ee50 | 2014-05-06 09:59:34 +0200 | [diff] [blame] | 9982 | if (task && group_leader && |
| 9983 | group_leader->attr.inherit != attr.inherit) { |
| 9984 | err = -EINVAL; |
| 9985 | goto err_task; |
| 9986 | } |
| 9987 | |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 9988 | if (task) { |
| 9989 | err = mutex_lock_interruptible(&task->signal->cred_guard_mutex); |
| 9990 | if (err) |
Alexander Levin | e5aeee5 | 2017-06-03 03:39:13 +0000 | [diff] [blame] | 9991 | goto err_task; |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 9992 | |
| 9993 | /* |
| 9994 | * Reuse ptrace permission checks for now. |
| 9995 | * |
| 9996 | * We must hold cred_guard_mutex across this and any potential |
| 9997 | * perf_install_in_context() call for this new event to |
| 9998 | * serialize against exec() altering our credentials (and the |
| 9999 | * perf_event_exit_task() that could imply). |
| 10000 | */ |
| 10001 | err = -EACCES; |
| 10002 | if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) |
| 10003 | goto err_cred; |
| 10004 | } |
| 10005 | |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 10006 | if (flags & PERF_FLAG_PID_CGROUP) |
| 10007 | cgroup_fd = pid; |
| 10008 | |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 10009 | event = perf_event_alloc(&attr, cpu, task, group_leader, NULL, |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 10010 | NULL, NULL, cgroup_fd); |
Stephane Eranian | d14b12d | 2010-09-17 11:28:47 +0200 | [diff] [blame] | 10011 | if (IS_ERR(event)) { |
| 10012 | err = PTR_ERR(event); |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 10013 | goto err_cred; |
Stephane Eranian | d14b12d | 2010-09-17 11:28:47 +0200 | [diff] [blame] | 10014 | } |
| 10015 | |
Vince Weaver | 53b2533 | 2014-05-16 17:12:12 -0400 | [diff] [blame] | 10016 | if (is_sampling_event(event)) { |
| 10017 | if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) { |
Vineet Gupta | a139655 | 2016-05-09 15:07:40 +0530 | [diff] [blame] | 10018 | err = -EOPNOTSUPP; |
Vince Weaver | 53b2533 | 2014-05-16 17:12:12 -0400 | [diff] [blame] | 10019 | goto err_alloc; |
| 10020 | } |
| 10021 | } |
| 10022 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10023 | /* |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 10024 | * Special case software events and allow them to be part of |
| 10025 | * any hardware group. |
| 10026 | */ |
| 10027 | pmu = event->pmu; |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10028 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 10029 | if (attr.use_clockid) { |
| 10030 | err = perf_event_set_clock(event, attr.clockid); |
| 10031 | if (err) |
| 10032 | goto err_alloc; |
| 10033 | } |
| 10034 | |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 10035 | if (pmu->task_ctx_nr == perf_sw_context) |
| 10036 | event->event_caps |= PERF_EV_CAP_SOFTWARE; |
| 10037 | |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10038 | if (group_leader && |
| 10039 | (is_software_event(event) != is_software_event(group_leader))) { |
| 10040 | if (is_software_event(event)) { |
| 10041 | /* |
| 10042 | * If event and group_leader are not both a software |
| 10043 | * event, and event is, then group leader is not. |
| 10044 | * |
| 10045 | * Allow the addition of software events to !software |
| 10046 | * groups, this is safe because software events never |
| 10047 | * fail to schedule. |
| 10048 | */ |
| 10049 | pmu = group_leader->pmu; |
| 10050 | } else if (is_software_event(group_leader) && |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 10051 | (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) { |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10052 | /* |
| 10053 | * In case the group is a pure software group, and we |
| 10054 | * try to add a hardware event, move the whole group to |
| 10055 | * the hardware context. |
| 10056 | */ |
| 10057 | move_group = 1; |
| 10058 | } |
| 10059 | } |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 10060 | |
| 10061 | /* |
| 10062 | * Get the target context (task or percpu): |
| 10063 | */ |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 10064 | ctx = find_get_context(pmu, task, event); |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 10065 | if (IS_ERR(ctx)) { |
| 10066 | err = PTR_ERR(ctx); |
Peter Zijlstra | c6be5a5 | 2010-10-14 16:59:46 +0200 | [diff] [blame] | 10067 | goto err_alloc; |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 10068 | } |
| 10069 | |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 10070 | if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) { |
| 10071 | err = -EBUSY; |
| 10072 | goto err_context; |
| 10073 | } |
| 10074 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10075 | /* |
| 10076 | * Look up the group leader (we will attach this event to it): |
| 10077 | */ |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 10078 | if (group_leader) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10079 | err = -EINVAL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10080 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10081 | /* |
| 10082 | * Do not allow a recursive hierarchy (this new sibling |
| 10083 | * becoming part of another group-sibling): |
| 10084 | */ |
| 10085 | if (group_leader->group_leader != group_leader) |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10086 | goto err_context; |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 10087 | |
| 10088 | /* All events in a group should have the same clock */ |
| 10089 | if (group_leader->clock != event->clock) |
| 10090 | goto err_context; |
| 10091 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10092 | /* |
Mark Rutland | 64aee2a | 2017-06-22 15:41:38 +0100 | [diff] [blame] | 10093 | * Make sure we're both events for the same CPU; |
| 10094 | * grouping events for different CPUs is broken; since |
| 10095 | * you can never concurrently schedule them anyhow. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10096 | */ |
Mark Rutland | 64aee2a | 2017-06-22 15:41:38 +0100 | [diff] [blame] | 10097 | if (group_leader->cpu != event->cpu) |
| 10098 | goto err_context; |
Peter Zijlstra | c3c87e7 | 2015-01-23 11:19:48 +0100 | [diff] [blame] | 10099 | |
Mark Rutland | 64aee2a | 2017-06-22 15:41:38 +0100 | [diff] [blame] | 10100 | /* |
| 10101 | * Make sure we're both on the same task, or both |
| 10102 | * per-CPU events. |
| 10103 | */ |
| 10104 | if (group_leader->ctx->task != ctx->task) |
| 10105 | goto err_context; |
| 10106 | |
| 10107 | /* |
| 10108 | * Do not allow to attach to a group in a different task |
| 10109 | * or CPU context. If we're moving SW events, we'll fix |
| 10110 | * this up later, so allow that. |
| 10111 | */ |
| 10112 | if (!move_group && group_leader->ctx != ctx) |
| 10113 | goto err_context; |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10114 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10115 | /* |
| 10116 | * Only a group leader can be exclusive or pinned |
| 10117 | */ |
| 10118 | if (attr.exclusive || attr.pinned) |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10119 | goto err_context; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 10120 | } |
| 10121 | |
| 10122 | if (output_event) { |
| 10123 | err = perf_event_set_output(event, output_event); |
| 10124 | if (err) |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10125 | goto err_context; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 10126 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10127 | |
Yann Droneaud | a21b0b3 | 2014-01-05 21:36:33 +0100 | [diff] [blame] | 10128 | event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, |
| 10129 | f_flags); |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 10130 | if (IS_ERR(event_file)) { |
| 10131 | err = PTR_ERR(event_file); |
Alexander Shishkin | 201c2f8 | 2016-03-21 10:02:42 +0200 | [diff] [blame] | 10132 | event_file = NULL; |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10133 | goto err_context; |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 10134 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10135 | |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10136 | if (move_group) { |
Peter Zijlstra | 321027c | 2017-01-11 21:09:50 +0100 | [diff] [blame] | 10137 | gctx = __perf_event_ctx_lock_double(group_leader, ctx); |
| 10138 | |
Peter Zijlstra | 84c4e62 | 2016-02-24 18:45:40 +0100 | [diff] [blame] | 10139 | if (gctx->task == TASK_TOMBSTONE) { |
| 10140 | err = -ESRCH; |
| 10141 | goto err_locked; |
| 10142 | } |
Peter Zijlstra | 321027c | 2017-01-11 21:09:50 +0100 | [diff] [blame] | 10143 | |
| 10144 | /* |
| 10145 | * Check if we raced against another sys_perf_event_open() call |
| 10146 | * moving the software group underneath us. |
| 10147 | */ |
| 10148 | if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) { |
| 10149 | /* |
| 10150 | * If someone moved the group out from under us, check |
| 10151 | * if this new event wound up on the same ctx, if so |
| 10152 | * its the regular !move_group case, otherwise fail. |
| 10153 | */ |
| 10154 | if (gctx != ctx) { |
| 10155 | err = -EINVAL; |
| 10156 | goto err_locked; |
| 10157 | } else { |
| 10158 | perf_event_ctx_unlock(group_leader, gctx); |
| 10159 | move_group = 0; |
| 10160 | } |
| 10161 | } |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10162 | } else { |
| 10163 | mutex_lock(&ctx->mutex); |
| 10164 | } |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10165 | |
Peter Zijlstra | 84c4e62 | 2016-02-24 18:45:40 +0100 | [diff] [blame] | 10166 | if (ctx->task == TASK_TOMBSTONE) { |
| 10167 | err = -ESRCH; |
| 10168 | goto err_locked; |
| 10169 | } |
| 10170 | |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10171 | if (!perf_event_validate_size(event)) { |
| 10172 | err = -E2BIG; |
| 10173 | goto err_locked; |
| 10174 | } |
| 10175 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 10176 | if (!task) { |
| 10177 | /* |
| 10178 | * Check if the @cpu we're creating an event for is online. |
| 10179 | * |
| 10180 | * We use the perf_cpu_context::ctx::mutex to serialize against |
| 10181 | * the hotplug notifiers. See perf_event_{init,exit}_cpu(). |
| 10182 | */ |
| 10183 | struct perf_cpu_context *cpuctx = |
| 10184 | container_of(ctx, struct perf_cpu_context, ctx); |
| 10185 | |
| 10186 | if (!cpuctx->online) { |
| 10187 | err = -ENODEV; |
| 10188 | goto err_locked; |
| 10189 | } |
| 10190 | } |
| 10191 | |
| 10192 | |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10193 | /* |
| 10194 | * Must be under the same ctx::mutex as perf_install_in_context(), |
| 10195 | * because we need to serialize with concurrent event creation. |
| 10196 | */ |
| 10197 | if (!exclusive_event_installable(event, ctx)) { |
| 10198 | /* exclusive and group stuff are assumed mutually exclusive */ |
| 10199 | WARN_ON_ONCE(move_group); |
| 10200 | |
| 10201 | err = -EBUSY; |
| 10202 | goto err_locked; |
| 10203 | } |
| 10204 | |
| 10205 | WARN_ON_ONCE(ctx->parent_ctx); |
| 10206 | |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 10207 | /* |
| 10208 | * This is the point on no return; we cannot fail hereafter. This is |
| 10209 | * where we start modifying current state. |
| 10210 | */ |
| 10211 | |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10212 | if (move_group) { |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10213 | /* |
| 10214 | * See perf_event_ctx_lock() for comments on the details |
| 10215 | * of swizzling perf_event::ctx. |
| 10216 | */ |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 10217 | perf_remove_from_context(group_leader, 0); |
Peter Zijlstra | 279b516 | 2017-02-16 10:28:37 +0100 | [diff] [blame] | 10218 | put_ctx(gctx); |
Jiri Olsa | 0231bb5 | 2013-02-01 11:23:45 +0100 | [diff] [blame] | 10219 | |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10220 | list_for_each_entry(sibling, &group_leader->sibling_list, |
| 10221 | group_entry) { |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 10222 | perf_remove_from_context(sibling, 0); |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10223 | put_ctx(gctx); |
| 10224 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10225 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10226 | /* |
| 10227 | * Wait for everybody to stop referencing the events through |
| 10228 | * the old lists, before installing it on new lists. |
| 10229 | */ |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10230 | synchronize_rcu(); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10231 | |
Peter Zijlstra (Intel) | 8f95b43 | 2015-01-27 11:53:12 +0100 | [diff] [blame] | 10232 | /* |
| 10233 | * Install the group siblings before the group leader. |
| 10234 | * |
| 10235 | * Because a group leader will try and install the entire group |
| 10236 | * (through the sibling list, which is still in-tact), we can |
| 10237 | * end up with siblings installed in the wrong context. |
| 10238 | * |
| 10239 | * By installing siblings first we NO-OP because they're not |
| 10240 | * reachable through the group lists. |
| 10241 | */ |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10242 | list_for_each_entry(sibling, &group_leader->sibling_list, |
| 10243 | group_entry) { |
Peter Zijlstra (Intel) | 8f95b43 | 2015-01-27 11:53:12 +0100 | [diff] [blame] | 10244 | perf_event__state_init(sibling); |
Jiri Olsa | 9fc81d8 | 2014-12-10 21:23:51 +0100 | [diff] [blame] | 10245 | perf_install_in_context(ctx, sibling, sibling->cpu); |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10246 | get_ctx(ctx); |
| 10247 | } |
Peter Zijlstra (Intel) | 8f95b43 | 2015-01-27 11:53:12 +0100 | [diff] [blame] | 10248 | |
| 10249 | /* |
| 10250 | * Removing from the context ends up with disabled |
| 10251 | * event. What we want here is event in the initial |
| 10252 | * startup state, ready to be add into new context. |
| 10253 | */ |
| 10254 | perf_event__state_init(group_leader); |
| 10255 | perf_install_in_context(ctx, group_leader, group_leader->cpu); |
| 10256 | get_ctx(ctx); |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10257 | } |
| 10258 | |
Peter Zijlstra | f73e22a | 2015-09-09 20:48:22 +0200 | [diff] [blame] | 10259 | /* |
| 10260 | * Precalculate sample_data sizes; do while holding ctx::mutex such |
| 10261 | * that we're serialized against further additions and before |
| 10262 | * perf_install_in_context() which is the point the event is active and |
| 10263 | * can use these values. |
| 10264 | */ |
| 10265 | perf_event__header_size(event); |
| 10266 | perf_event__id_header_size(event); |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 10267 | |
Peter Zijlstra | 78cd2c7 | 2016-01-25 14:08:45 +0100 | [diff] [blame] | 10268 | event->owner = current; |
| 10269 | |
Yan, Zheng | e2d37cd | 2012-06-15 14:31:32 +0800 | [diff] [blame] | 10270 | perf_install_in_context(ctx, event, event->cpu); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 10271 | perf_unpin_context(ctx); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10272 | |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10273 | if (move_group) |
Peter Zijlstra | 321027c | 2017-01-11 21:09:50 +0100 | [diff] [blame] | 10274 | perf_event_ctx_unlock(group_leader, gctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10275 | mutex_unlock(&ctx->mutex); |
| 10276 | |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 10277 | if (task) { |
| 10278 | mutex_unlock(&task->signal->cred_guard_mutex); |
| 10279 | put_task_struct(task); |
| 10280 | } |
| 10281 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10282 | mutex_lock(¤t->perf_event_mutex); |
| 10283 | list_add_tail(&event->owner_entry, ¤t->perf_event_list); |
| 10284 | mutex_unlock(¤t->perf_event_mutex); |
| 10285 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 10286 | /* |
| 10287 | * Drop the reference on the group_event after placing the |
| 10288 | * new event on the sibling_list. This ensures destruction |
| 10289 | * of the group leader will find the pointer to itself in |
| 10290 | * perf_group_detach(). |
| 10291 | */ |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 10292 | fdput(group); |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 10293 | fd_install(event_fd, event_file); |
| 10294 | return event_fd; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10295 | |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10296 | err_locked: |
| 10297 | if (move_group) |
Peter Zijlstra | 321027c | 2017-01-11 21:09:50 +0100 | [diff] [blame] | 10298 | perf_event_ctx_unlock(group_leader, gctx); |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10299 | mutex_unlock(&ctx->mutex); |
| 10300 | /* err_file: */ |
| 10301 | fput(event_file); |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10302 | err_context: |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 10303 | perf_unpin_context(ctx); |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 10304 | put_ctx(ctx); |
Peter Zijlstra | c6be5a5 | 2010-10-14 16:59:46 +0200 | [diff] [blame] | 10305 | err_alloc: |
Peter Zijlstra | 1300562 | 2016-02-24 18:45:41 +0100 | [diff] [blame] | 10306 | /* |
| 10307 | * If event_file is set, the fput() above will have called ->release() |
| 10308 | * and that will take care of freeing the event. |
| 10309 | */ |
| 10310 | if (!event_file) |
| 10311 | free_event(event); |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 10312 | err_cred: |
| 10313 | if (task) |
| 10314 | mutex_unlock(&task->signal->cred_guard_mutex); |
Peter Zijlstra | 1f4ee50 | 2014-05-06 09:59:34 +0200 | [diff] [blame] | 10315 | err_task: |
Peter Zijlstra | e7d0bc0 | 2010-10-14 16:54:51 +0200 | [diff] [blame] | 10316 | if (task) |
| 10317 | put_task_struct(task); |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 10318 | err_group_fd: |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 10319 | fdput(group); |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 10320 | err_fd: |
| 10321 | put_unused_fd(event_fd); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10322 | return err; |
| 10323 | } |
| 10324 | |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10325 | /** |
| 10326 | * perf_event_create_kernel_counter |
| 10327 | * |
| 10328 | * @attr: attributes of the counter to create |
| 10329 | * @cpu: cpu in which the counter is bound |
Matt Helsley | 38a81da | 2010-09-13 13:01:20 -0700 | [diff] [blame] | 10330 | * @task: task to profile (NULL for percpu) |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10331 | */ |
| 10332 | struct perf_event * |
| 10333 | perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu, |
Matt Helsley | 38a81da | 2010-09-13 13:01:20 -0700 | [diff] [blame] | 10334 | struct task_struct *task, |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 10335 | perf_overflow_handler_t overflow_handler, |
| 10336 | void *context) |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10337 | { |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10338 | struct perf_event_context *ctx; |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10339 | struct perf_event *event; |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10340 | int err; |
| 10341 | |
| 10342 | /* |
| 10343 | * Get the target context (task or percpu): |
| 10344 | */ |
| 10345 | |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 10346 | event = perf_event_alloc(attr, cpu, task, NULL, NULL, |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 10347 | overflow_handler, context, -1); |
Frederic Weisbecker | c6567f6 | 2009-11-26 05:35:41 +0100 | [diff] [blame] | 10348 | if (IS_ERR(event)) { |
| 10349 | err = PTR_ERR(event); |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10350 | goto err; |
| 10351 | } |
| 10352 | |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 10353 | /* Mark owner so we could distinguish it from user events. */ |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10354 | event->owner = TASK_TOMBSTONE; |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 10355 | |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 10356 | ctx = find_get_context(event->pmu, task, event); |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10357 | if (IS_ERR(ctx)) { |
| 10358 | err = PTR_ERR(ctx); |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10359 | goto err_free; |
Frederic Weisbecker | c6567f6 | 2009-11-26 05:35:41 +0100 | [diff] [blame] | 10360 | } |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10361 | |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10362 | WARN_ON_ONCE(ctx->parent_ctx); |
| 10363 | mutex_lock(&ctx->mutex); |
Peter Zijlstra | 84c4e62 | 2016-02-24 18:45:40 +0100 | [diff] [blame] | 10364 | if (ctx->task == TASK_TOMBSTONE) { |
| 10365 | err = -ESRCH; |
| 10366 | goto err_unlock; |
| 10367 | } |
| 10368 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 10369 | if (!task) { |
| 10370 | /* |
| 10371 | * Check if the @cpu we're creating an event for is online. |
| 10372 | * |
| 10373 | * We use the perf_cpu_context::ctx::mutex to serialize against |
| 10374 | * the hotplug notifiers. See perf_event_{init,exit}_cpu(). |
| 10375 | */ |
| 10376 | struct perf_cpu_context *cpuctx = |
| 10377 | container_of(ctx, struct perf_cpu_context, ctx); |
| 10378 | if (!cpuctx->online) { |
| 10379 | err = -ENODEV; |
| 10380 | goto err_unlock; |
| 10381 | } |
| 10382 | } |
| 10383 | |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 10384 | if (!exclusive_event_installable(event, ctx)) { |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 10385 | err = -EBUSY; |
Peter Zijlstra | 84c4e62 | 2016-02-24 18:45:40 +0100 | [diff] [blame] | 10386 | goto err_unlock; |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 10387 | } |
| 10388 | |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10389 | perf_install_in_context(ctx, event, cpu); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 10390 | perf_unpin_context(ctx); |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10391 | mutex_unlock(&ctx->mutex); |
| 10392 | |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10393 | return event; |
| 10394 | |
Peter Zijlstra | 84c4e62 | 2016-02-24 18:45:40 +0100 | [diff] [blame] | 10395 | err_unlock: |
| 10396 | mutex_unlock(&ctx->mutex); |
| 10397 | perf_unpin_context(ctx); |
| 10398 | put_ctx(ctx); |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10399 | err_free: |
| 10400 | free_event(event); |
| 10401 | err: |
Frederic Weisbecker | c6567f6 | 2009-11-26 05:35:41 +0100 | [diff] [blame] | 10402 | return ERR_PTR(err); |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10403 | } |
| 10404 | EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter); |
| 10405 | |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10406 | void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu) |
| 10407 | { |
| 10408 | struct perf_event_context *src_ctx; |
| 10409 | struct perf_event_context *dst_ctx; |
| 10410 | struct perf_event *event, *tmp; |
| 10411 | LIST_HEAD(events); |
| 10412 | |
| 10413 | src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx; |
| 10414 | dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx; |
| 10415 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10416 | /* |
| 10417 | * See perf_event_ctx_lock() for comments on the details |
| 10418 | * of swizzling perf_event::ctx. |
| 10419 | */ |
| 10420 | mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10421 | list_for_each_entry_safe(event, tmp, &src_ctx->event_list, |
| 10422 | event_entry) { |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 10423 | perf_remove_from_context(event, 0); |
Frederic Weisbecker | 9a545de | 2013-07-23 02:31:03 +0200 | [diff] [blame] | 10424 | unaccount_event_cpu(event, src_cpu); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10425 | put_ctx(src_ctx); |
Peter Zijlstra | 9886167 | 2013-10-03 16:02:23 +0200 | [diff] [blame] | 10426 | list_add(&event->migrate_entry, &events); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10427 | } |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10428 | |
Peter Zijlstra (Intel) | 8f95b43 | 2015-01-27 11:53:12 +0100 | [diff] [blame] | 10429 | /* |
| 10430 | * Wait for the events to quiesce before re-instating them. |
| 10431 | */ |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10432 | synchronize_rcu(); |
| 10433 | |
Peter Zijlstra (Intel) | 8f95b43 | 2015-01-27 11:53:12 +0100 | [diff] [blame] | 10434 | /* |
| 10435 | * Re-instate events in 2 passes. |
| 10436 | * |
| 10437 | * Skip over group leaders and only install siblings on this first |
| 10438 | * pass, siblings will not get enabled without a leader, however a |
| 10439 | * leader will enable its siblings, even if those are still on the old |
| 10440 | * context. |
| 10441 | */ |
| 10442 | list_for_each_entry_safe(event, tmp, &events, migrate_entry) { |
| 10443 | if (event->group_leader == event) |
| 10444 | continue; |
| 10445 | |
| 10446 | list_del(&event->migrate_entry); |
| 10447 | if (event->state >= PERF_EVENT_STATE_OFF) |
| 10448 | event->state = PERF_EVENT_STATE_INACTIVE; |
| 10449 | account_event_cpu(event, dst_cpu); |
| 10450 | perf_install_in_context(dst_ctx, event, dst_cpu); |
| 10451 | get_ctx(dst_ctx); |
| 10452 | } |
| 10453 | |
| 10454 | /* |
| 10455 | * Once all the siblings are setup properly, install the group leaders |
| 10456 | * to make it go. |
| 10457 | */ |
Peter Zijlstra | 9886167 | 2013-10-03 16:02:23 +0200 | [diff] [blame] | 10458 | list_for_each_entry_safe(event, tmp, &events, migrate_entry) { |
| 10459 | list_del(&event->migrate_entry); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10460 | if (event->state >= PERF_EVENT_STATE_OFF) |
| 10461 | event->state = PERF_EVENT_STATE_INACTIVE; |
Frederic Weisbecker | 9a545de | 2013-07-23 02:31:03 +0200 | [diff] [blame] | 10462 | account_event_cpu(event, dst_cpu); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10463 | perf_install_in_context(dst_ctx, event, dst_cpu); |
| 10464 | get_ctx(dst_ctx); |
| 10465 | } |
| 10466 | mutex_unlock(&dst_ctx->mutex); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10467 | mutex_unlock(&src_ctx->mutex); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10468 | } |
| 10469 | EXPORT_SYMBOL_GPL(perf_pmu_migrate_context); |
| 10470 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10471 | static void sync_child_event(struct perf_event *child_event, |
| 10472 | struct task_struct *child) |
| 10473 | { |
| 10474 | struct perf_event *parent_event = child_event->parent; |
| 10475 | u64 child_val; |
| 10476 | |
| 10477 | if (child_event->attr.inherit_stat) |
| 10478 | perf_event_read_event(child_event, child); |
| 10479 | |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 10480 | child_val = perf_event_count(child_event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10481 | |
| 10482 | /* |
| 10483 | * Add back the child's count to the parent's count: |
| 10484 | */ |
Peter Zijlstra | a6e6dea | 2010-05-21 14:27:58 +0200 | [diff] [blame] | 10485 | atomic64_add(child_val, &parent_event->child_count); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10486 | atomic64_add(child_event->total_time_enabled, |
| 10487 | &parent_event->child_total_time_enabled); |
| 10488 | atomic64_add(child_event->total_time_running, |
| 10489 | &parent_event->child_total_time_running); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10490 | } |
| 10491 | |
| 10492 | static void |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10493 | perf_event_exit_event(struct perf_event *child_event, |
| 10494 | struct perf_event_context *child_ctx, |
| 10495 | struct task_struct *child) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10496 | { |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10497 | struct perf_event *parent_event = child_event->parent; |
| 10498 | |
Peter Zijlstra | 1903d50 | 2014-07-15 17:27:27 +0200 | [diff] [blame] | 10499 | /* |
| 10500 | * Do not destroy the 'original' grouping; because of the context |
| 10501 | * switch optimization the original events could've ended up in a |
| 10502 | * random child task. |
| 10503 | * |
| 10504 | * If we were to destroy the original group, all group related |
| 10505 | * operations would cease to function properly after this random |
| 10506 | * child dies. |
| 10507 | * |
| 10508 | * Do destroy all inherited groups, we don't care about those |
| 10509 | * and being thorough is better. |
| 10510 | */ |
Peter Zijlstra | 32132a3 | 2016-01-11 15:40:59 +0100 | [diff] [blame] | 10511 | raw_spin_lock_irq(&child_ctx->lock); |
| 10512 | WARN_ON_ONCE(child_ctx->is_active); |
| 10513 | |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10514 | if (parent_event) |
Peter Zijlstra | 32132a3 | 2016-01-11 15:40:59 +0100 | [diff] [blame] | 10515 | perf_group_detach(child_event); |
| 10516 | list_del_event(child_event, child_ctx); |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 10517 | child_event->state = PERF_EVENT_STATE_EXIT; /* is_event_hup() */ |
Peter Zijlstra | 32132a3 | 2016-01-11 15:40:59 +0100 | [diff] [blame] | 10518 | raw_spin_unlock_irq(&child_ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10519 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10520 | /* |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10521 | * Parent events are governed by their filedesc, retain them. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10522 | */ |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10523 | if (!parent_event) { |
Jiri Olsa | 179033b | 2014-08-07 11:48:26 -0400 | [diff] [blame] | 10524 | perf_event_wakeup(child_event); |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10525 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10526 | } |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10527 | /* |
| 10528 | * Child events can be cleaned up. |
| 10529 | */ |
| 10530 | |
| 10531 | sync_child_event(child_event, child); |
| 10532 | |
| 10533 | /* |
| 10534 | * Remove this event from the parent's list |
| 10535 | */ |
| 10536 | WARN_ON_ONCE(parent_event->ctx->parent_ctx); |
| 10537 | mutex_lock(&parent_event->child_mutex); |
| 10538 | list_del_init(&child_event->child_list); |
| 10539 | mutex_unlock(&parent_event->child_mutex); |
| 10540 | |
| 10541 | /* |
| 10542 | * Kick perf_poll() for is_event_hup(). |
| 10543 | */ |
| 10544 | perf_event_wakeup(parent_event); |
| 10545 | free_event(child_event); |
| 10546 | put_event(parent_event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10547 | } |
| 10548 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10549 | static void perf_event_exit_task_context(struct task_struct *child, int ctxn) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10550 | { |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 10551 | struct perf_event_context *child_ctx, *clone_ctx = NULL; |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10552 | struct perf_event *child_event, *next; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10553 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10554 | WARN_ON_ONCE(child != current); |
| 10555 | |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10556 | child_ctx = perf_pin_task_context(child, ctxn); |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10557 | if (!child_ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10558 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10559 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10560 | /* |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10561 | * In order to reduce the amount of tricky in ctx tear-down, we hold |
| 10562 | * ctx::mutex over the entire thing. This serializes against almost |
| 10563 | * everything that wants to access the ctx. |
| 10564 | * |
| 10565 | * The exception is sys_perf_event_open() / |
| 10566 | * perf_event_create_kernel_count() which does find_get_context() |
| 10567 | * without ctx::mutex (it cannot because of the move_group double mutex |
| 10568 | * lock thing). See the comments in perf_install_in_context(). |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10569 | */ |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10570 | mutex_lock(&child_ctx->mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10571 | |
| 10572 | /* |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10573 | * In a single ctx::lock section, de-schedule the events and detach the |
| 10574 | * context from the task such that we cannot ever get it scheduled back |
| 10575 | * in. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10576 | */ |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10577 | raw_spin_lock_irq(&child_ctx->lock); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 10578 | task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx, EVENT_ALL); |
Peter Zijlstra | 4a1c0f2 | 2014-06-23 16:12:42 +0200 | [diff] [blame] | 10579 | |
| 10580 | /* |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10581 | * Now that the context is inactive, destroy the task <-> ctx relation |
| 10582 | * and mark the context dead. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10583 | */ |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10584 | RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL); |
| 10585 | put_ctx(child_ctx); /* cannot be last */ |
| 10586 | WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE); |
| 10587 | put_task_struct(current); /* cannot be last */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10588 | |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 10589 | clone_ctx = unclone_ctx(child_ctx); |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10590 | raw_spin_unlock_irq(&child_ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10591 | |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 10592 | if (clone_ctx) |
| 10593 | put_ctx(clone_ctx); |
Peter Zijlstra | 4a1c0f2 | 2014-06-23 16:12:42 +0200 | [diff] [blame] | 10594 | |
| 10595 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10596 | * Report the task dead after unscheduling the events so that we |
| 10597 | * won't get any samples after PERF_RECORD_EXIT. We can however still |
| 10598 | * get a few PERF_RECORD_READ events. |
| 10599 | */ |
| 10600 | perf_event_task(child, child_ctx, 0); |
| 10601 | |
Peter Zijlstra | ebf905f | 2014-05-29 19:00:24 +0200 | [diff] [blame] | 10602 | list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry) |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10603 | perf_event_exit_event(child_event, child_ctx, child); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10604 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10605 | mutex_unlock(&child_ctx->mutex); |
| 10606 | |
| 10607 | put_ctx(child_ctx); |
| 10608 | } |
| 10609 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10610 | /* |
| 10611 | * When a child task exits, feed back event values to parent events. |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 10612 | * |
| 10613 | * Can be called with cred_guard_mutex held when called from |
| 10614 | * install_exec_creds(). |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10615 | */ |
| 10616 | void perf_event_exit_task(struct task_struct *child) |
| 10617 | { |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 10618 | struct perf_event *event, *tmp; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10619 | int ctxn; |
| 10620 | |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 10621 | mutex_lock(&child->perf_event_mutex); |
| 10622 | list_for_each_entry_safe(event, tmp, &child->perf_event_list, |
| 10623 | owner_entry) { |
| 10624 | list_del_init(&event->owner_entry); |
| 10625 | |
| 10626 | /* |
| 10627 | * Ensure the list deletion is visible before we clear |
| 10628 | * the owner, closes a race against perf_release() where |
| 10629 | * we need to serialize on the owner->perf_event_mutex. |
| 10630 | */ |
Peter Zijlstra | f47c02c | 2016-01-26 12:30:14 +0100 | [diff] [blame] | 10631 | smp_store_release(&event->owner, NULL); |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 10632 | } |
| 10633 | mutex_unlock(&child->perf_event_mutex); |
| 10634 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10635 | for_each_task_context_nr(ctxn) |
| 10636 | perf_event_exit_task_context(child, ctxn); |
Jiri Olsa | 4e93ad6 | 2015-11-04 16:00:05 +0100 | [diff] [blame] | 10637 | |
| 10638 | /* |
| 10639 | * The perf_event_exit_task_context calls perf_event_task |
| 10640 | * with child's task_ctx, which generates EXIT events for |
| 10641 | * child contexts and sets child->perf_event_ctxp[] to NULL. |
| 10642 | * At this point we need to send EXIT events to cpu contexts. |
| 10643 | */ |
| 10644 | perf_event_task(child, NULL, 0); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10645 | } |
| 10646 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10647 | static void perf_free_event(struct perf_event *event, |
| 10648 | struct perf_event_context *ctx) |
| 10649 | { |
| 10650 | struct perf_event *parent = event->parent; |
| 10651 | |
| 10652 | if (WARN_ON_ONCE(!parent)) |
| 10653 | return; |
| 10654 | |
| 10655 | mutex_lock(&parent->child_mutex); |
| 10656 | list_del_init(&event->child_list); |
| 10657 | mutex_unlock(&parent->child_mutex); |
| 10658 | |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 10659 | put_event(parent); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10660 | |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 10661 | raw_spin_lock_irq(&ctx->lock); |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 10662 | perf_group_detach(event); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10663 | list_del_event(event, ctx); |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 10664 | raw_spin_unlock_irq(&ctx->lock); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10665 | free_event(event); |
| 10666 | } |
| 10667 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10668 | /* |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 10669 | * Free an unexposed, unused context as created by inheritance by |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10670 | * perf_event_init_task below, used by fork() in case of fail. |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 10671 | * |
| 10672 | * Not all locks are strictly required, but take them anyway to be nice and |
| 10673 | * help out with the lockdep assertions. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10674 | */ |
| 10675 | void perf_event_free_task(struct task_struct *task) |
| 10676 | { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10677 | struct perf_event_context *ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10678 | struct perf_event *event, *tmp; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10679 | int ctxn; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10680 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10681 | for_each_task_context_nr(ctxn) { |
| 10682 | ctx = task->perf_event_ctxp[ctxn]; |
| 10683 | if (!ctx) |
| 10684 | continue; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10685 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10686 | mutex_lock(&ctx->mutex); |
Peter Zijlstra | e552a83 | 2017-03-16 13:47:48 +0100 | [diff] [blame] | 10687 | raw_spin_lock_irq(&ctx->lock); |
| 10688 | /* |
| 10689 | * Destroy the task <-> ctx relation and mark the context dead. |
| 10690 | * |
| 10691 | * This is important because even though the task hasn't been |
| 10692 | * exposed yet the context has been (through child_list). |
| 10693 | */ |
| 10694 | RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL); |
| 10695 | WRITE_ONCE(ctx->task, TASK_TOMBSTONE); |
| 10696 | put_task_struct(task); /* cannot be last */ |
| 10697 | raw_spin_unlock_irq(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10698 | |
Peter Zijlstra | 15121c7 | 2017-03-16 13:47:50 +0100 | [diff] [blame] | 10699 | list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry) |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10700 | perf_free_event(event, ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10701 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10702 | mutex_unlock(&ctx->mutex); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10703 | put_ctx(ctx); |
| 10704 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10705 | } |
| 10706 | |
Peter Zijlstra | 4e231c7 | 2010-09-09 21:01:59 +0200 | [diff] [blame] | 10707 | void perf_event_delayed_put(struct task_struct *task) |
| 10708 | { |
| 10709 | int ctxn; |
| 10710 | |
| 10711 | for_each_task_context_nr(ctxn) |
| 10712 | WARN_ON_ONCE(task->perf_event_ctxp[ctxn]); |
| 10713 | } |
| 10714 | |
Alexei Starovoitov | e03e7ee | 2016-01-25 20:59:49 -0800 | [diff] [blame] | 10715 | struct file *perf_event_get(unsigned int fd) |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 10716 | { |
Alexei Starovoitov | e03e7ee | 2016-01-25 20:59:49 -0800 | [diff] [blame] | 10717 | struct file *file; |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 10718 | |
Alexei Starovoitov | e03e7ee | 2016-01-25 20:59:49 -0800 | [diff] [blame] | 10719 | file = fget_raw(fd); |
| 10720 | if (!file) |
| 10721 | return ERR_PTR(-EBADF); |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 10722 | |
Alexei Starovoitov | e03e7ee | 2016-01-25 20:59:49 -0800 | [diff] [blame] | 10723 | if (file->f_op != &perf_fops) { |
| 10724 | fput(file); |
| 10725 | return ERR_PTR(-EBADF); |
| 10726 | } |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 10727 | |
Alexei Starovoitov | e03e7ee | 2016-01-25 20:59:49 -0800 | [diff] [blame] | 10728 | return file; |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 10729 | } |
| 10730 | |
| 10731 | const struct perf_event_attr *perf_event_attrs(struct perf_event *event) |
| 10732 | { |
| 10733 | if (!event) |
| 10734 | return ERR_PTR(-EINVAL); |
| 10735 | |
| 10736 | return &event->attr; |
| 10737 | } |
| 10738 | |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10739 | /* |
Peter Zijlstra | d8a8cfc | 2017-03-16 13:47:51 +0100 | [diff] [blame] | 10740 | * Inherit a event from parent task to child task. |
| 10741 | * |
| 10742 | * Returns: |
| 10743 | * - valid pointer on success |
| 10744 | * - NULL for orphaned events |
| 10745 | * - IS_ERR() on error |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10746 | */ |
| 10747 | static struct perf_event * |
| 10748 | inherit_event(struct perf_event *parent_event, |
| 10749 | struct task_struct *parent, |
| 10750 | struct perf_event_context *parent_ctx, |
| 10751 | struct task_struct *child, |
| 10752 | struct perf_event *group_leader, |
| 10753 | struct perf_event_context *child_ctx) |
| 10754 | { |
Jiri Olsa | 1929def | 2014-09-12 13:18:27 +0200 | [diff] [blame] | 10755 | enum perf_event_active_state parent_state = parent_event->state; |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10756 | struct perf_event *child_event; |
Peter Zijlstra | cee010e | 2010-09-10 12:51:54 +0200 | [diff] [blame] | 10757 | unsigned long flags; |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10758 | |
| 10759 | /* |
| 10760 | * Instead of creating recursive hierarchies of events, |
| 10761 | * we link inherited events back to the original parent, |
| 10762 | * which has a filp for sure, which we use as the reference |
| 10763 | * count: |
| 10764 | */ |
| 10765 | if (parent_event->parent) |
| 10766 | parent_event = parent_event->parent; |
| 10767 | |
| 10768 | child_event = perf_event_alloc(&parent_event->attr, |
| 10769 | parent_event->cpu, |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 10770 | child, |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10771 | group_leader, parent_event, |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 10772 | NULL, NULL, -1); |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10773 | if (IS_ERR(child_event)) |
| 10774 | return child_event; |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 10775 | |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 10776 | /* |
| 10777 | * is_orphaned_event() and list_add_tail(&parent_event->child_list) |
| 10778 | * must be under the same lock in order to serialize against |
| 10779 | * perf_event_release_kernel(), such that either we must observe |
| 10780 | * is_orphaned_event() or they will observe us on the child_list. |
| 10781 | */ |
| 10782 | mutex_lock(&parent_event->child_mutex); |
Jiri Olsa | fadfe7b | 2014-08-01 14:33:02 +0200 | [diff] [blame] | 10783 | if (is_orphaned_event(parent_event) || |
| 10784 | !atomic_long_inc_not_zero(&parent_event->refcount)) { |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 10785 | mutex_unlock(&parent_event->child_mutex); |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 10786 | free_event(child_event); |
| 10787 | return NULL; |
| 10788 | } |
| 10789 | |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10790 | get_ctx(child_ctx); |
| 10791 | |
| 10792 | /* |
| 10793 | * Make the child state follow the state of the parent event, |
| 10794 | * not its attr.disabled bit. We hold the parent's mutex, |
| 10795 | * so we won't race with perf_event_{en, dis}able_family. |
| 10796 | */ |
Jiri Olsa | 1929def | 2014-09-12 13:18:27 +0200 | [diff] [blame] | 10797 | if (parent_state >= PERF_EVENT_STATE_INACTIVE) |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10798 | child_event->state = PERF_EVENT_STATE_INACTIVE; |
| 10799 | else |
| 10800 | child_event->state = PERF_EVENT_STATE_OFF; |
| 10801 | |
| 10802 | if (parent_event->attr.freq) { |
| 10803 | u64 sample_period = parent_event->hw.sample_period; |
| 10804 | struct hw_perf_event *hwc = &child_event->hw; |
| 10805 | |
| 10806 | hwc->sample_period = sample_period; |
| 10807 | hwc->last_period = sample_period; |
| 10808 | |
| 10809 | local64_set(&hwc->period_left, sample_period); |
| 10810 | } |
| 10811 | |
| 10812 | child_event->ctx = child_ctx; |
| 10813 | child_event->overflow_handler = parent_event->overflow_handler; |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 10814 | child_event->overflow_handler_context |
| 10815 | = parent_event->overflow_handler_context; |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10816 | |
| 10817 | /* |
Thomas Gleixner | 614b678 | 2010-12-03 16:24:32 -0200 | [diff] [blame] | 10818 | * Precalculate sample_data sizes |
| 10819 | */ |
| 10820 | perf_event__header_size(child_event); |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 10821 | perf_event__id_header_size(child_event); |
Thomas Gleixner | 614b678 | 2010-12-03 16:24:32 -0200 | [diff] [blame] | 10822 | |
| 10823 | /* |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10824 | * Link it up in the child's context: |
| 10825 | */ |
Peter Zijlstra | cee010e | 2010-09-10 12:51:54 +0200 | [diff] [blame] | 10826 | raw_spin_lock_irqsave(&child_ctx->lock, flags); |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10827 | add_event_to_ctx(child_event, child_ctx); |
Peter Zijlstra | cee010e | 2010-09-10 12:51:54 +0200 | [diff] [blame] | 10828 | raw_spin_unlock_irqrestore(&child_ctx->lock, flags); |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10829 | |
| 10830 | /* |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10831 | * Link this into the parent event's child list |
| 10832 | */ |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10833 | list_add_tail(&child_event->child_list, &parent_event->child_list); |
| 10834 | mutex_unlock(&parent_event->child_mutex); |
| 10835 | |
| 10836 | return child_event; |
| 10837 | } |
| 10838 | |
Peter Zijlstra | d8a8cfc | 2017-03-16 13:47:51 +0100 | [diff] [blame] | 10839 | /* |
| 10840 | * Inherits an event group. |
| 10841 | * |
| 10842 | * This will quietly suppress orphaned events; !inherit_event() is not an error. |
| 10843 | * This matches with perf_event_release_kernel() removing all child events. |
| 10844 | * |
| 10845 | * Returns: |
| 10846 | * - 0 on success |
| 10847 | * - <0 on error |
| 10848 | */ |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10849 | static int inherit_group(struct perf_event *parent_event, |
| 10850 | struct task_struct *parent, |
| 10851 | struct perf_event_context *parent_ctx, |
| 10852 | struct task_struct *child, |
| 10853 | struct perf_event_context *child_ctx) |
| 10854 | { |
| 10855 | struct perf_event *leader; |
| 10856 | struct perf_event *sub; |
| 10857 | struct perf_event *child_ctr; |
| 10858 | |
| 10859 | leader = inherit_event(parent_event, parent, parent_ctx, |
| 10860 | child, NULL, child_ctx); |
| 10861 | if (IS_ERR(leader)) |
| 10862 | return PTR_ERR(leader); |
Peter Zijlstra | d8a8cfc | 2017-03-16 13:47:51 +0100 | [diff] [blame] | 10863 | /* |
| 10864 | * @leader can be NULL here because of is_orphaned_event(). In this |
| 10865 | * case inherit_event() will create individual events, similar to what |
| 10866 | * perf_group_detach() would do anyway. |
| 10867 | */ |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10868 | list_for_each_entry(sub, &parent_event->sibling_list, group_entry) { |
| 10869 | child_ctr = inherit_event(sub, parent, parent_ctx, |
| 10870 | child, leader, child_ctx); |
| 10871 | if (IS_ERR(child_ctr)) |
| 10872 | return PTR_ERR(child_ctr); |
| 10873 | } |
| 10874 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10875 | } |
| 10876 | |
Peter Zijlstra | d8a8cfc | 2017-03-16 13:47:51 +0100 | [diff] [blame] | 10877 | /* |
| 10878 | * Creates the child task context and tries to inherit the event-group. |
| 10879 | * |
| 10880 | * Clears @inherited_all on !attr.inherited or error. Note that we'll leave |
| 10881 | * inherited_all set when we 'fail' to inherit an orphaned event; this is |
| 10882 | * consistent with perf_event_release_kernel() removing all child events. |
| 10883 | * |
| 10884 | * Returns: |
| 10885 | * - 0 on success |
| 10886 | * - <0 on error |
| 10887 | */ |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10888 | static int |
| 10889 | inherit_task_group(struct perf_event *event, struct task_struct *parent, |
| 10890 | struct perf_event_context *parent_ctx, |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10891 | struct task_struct *child, int ctxn, |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10892 | int *inherited_all) |
| 10893 | { |
| 10894 | int ret; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10895 | struct perf_event_context *child_ctx; |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10896 | |
| 10897 | if (!event->attr.inherit) { |
| 10898 | *inherited_all = 0; |
| 10899 | return 0; |
| 10900 | } |
| 10901 | |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 10902 | child_ctx = child->perf_event_ctxp[ctxn]; |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10903 | if (!child_ctx) { |
| 10904 | /* |
| 10905 | * This is executed from the parent task context, so |
| 10906 | * inherit events that have been marked for cloning. |
| 10907 | * First allocate and initialize a context for the |
| 10908 | * child. |
| 10909 | */ |
Jiri Olsa | 734df5a | 2013-07-09 17:44:10 +0200 | [diff] [blame] | 10910 | child_ctx = alloc_perf_context(parent_ctx->pmu, child); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10911 | if (!child_ctx) |
| 10912 | return -ENOMEM; |
| 10913 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10914 | child->perf_event_ctxp[ctxn] = child_ctx; |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10915 | } |
| 10916 | |
| 10917 | ret = inherit_group(event, parent, parent_ctx, |
| 10918 | child, child_ctx); |
| 10919 | |
| 10920 | if (ret) |
| 10921 | *inherited_all = 0; |
| 10922 | |
| 10923 | return ret; |
| 10924 | } |
| 10925 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10926 | /* |
| 10927 | * Initialize the perf_event context in task_struct |
| 10928 | */ |
Jiri Olsa | 985c8dc | 2014-06-24 10:20:24 +0200 | [diff] [blame] | 10929 | static int perf_event_init_context(struct task_struct *child, int ctxn) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10930 | { |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10931 | struct perf_event_context *child_ctx, *parent_ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10932 | struct perf_event_context *cloned_ctx; |
| 10933 | struct perf_event *event; |
| 10934 | struct task_struct *parent = current; |
| 10935 | int inherited_all = 1; |
Thomas Gleixner | dddd337 | 2010-11-24 10:05:55 +0100 | [diff] [blame] | 10936 | unsigned long flags; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10937 | int ret = 0; |
| 10938 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10939 | if (likely(!parent->perf_event_ctxp[ctxn])) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10940 | return 0; |
| 10941 | |
| 10942 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10943 | * If the parent's context is a clone, pin it so it won't get |
| 10944 | * swapped under us. |
| 10945 | */ |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10946 | parent_ctx = perf_pin_task_context(parent, ctxn); |
Peter Zijlstra | ffb4ef2 | 2014-05-05 19:12:20 +0200 | [diff] [blame] | 10947 | if (!parent_ctx) |
| 10948 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10949 | |
| 10950 | /* |
| 10951 | * No need to check if parent_ctx != NULL here; since we saw |
| 10952 | * it non-NULL earlier, the only reason for it to become NULL |
| 10953 | * is if we exit, and since we're currently in the middle of |
| 10954 | * a fork we can't be exiting at the same time. |
| 10955 | */ |
| 10956 | |
| 10957 | /* |
| 10958 | * Lock the parent list. No need to lock the child - not PID |
| 10959 | * hashed yet and not running, so nobody can access it. |
| 10960 | */ |
| 10961 | mutex_lock(&parent_ctx->mutex); |
| 10962 | |
| 10963 | /* |
| 10964 | * We dont have to disable NMIs - we are only looking at |
| 10965 | * the list, not manipulating it: |
| 10966 | */ |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10967 | list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10968 | ret = inherit_task_group(event, parent, parent_ctx, |
| 10969 | child, ctxn, &inherited_all); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10970 | if (ret) |
Peter Zijlstra | e7cc486 | 2017-03-16 13:47:49 +0100 | [diff] [blame] | 10971 | goto out_unlock; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10972 | } |
| 10973 | |
Thomas Gleixner | dddd337 | 2010-11-24 10:05:55 +0100 | [diff] [blame] | 10974 | /* |
| 10975 | * We can't hold ctx->lock when iterating the ->flexible_group list due |
| 10976 | * to allocations, but we need to prevent rotation because |
| 10977 | * rotate_ctx() will change the list from interrupt context. |
| 10978 | */ |
| 10979 | raw_spin_lock_irqsave(&parent_ctx->lock, flags); |
| 10980 | parent_ctx->rotate_disable = 1; |
| 10981 | raw_spin_unlock_irqrestore(&parent_ctx->lock, flags); |
| 10982 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10983 | list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10984 | ret = inherit_task_group(event, parent, parent_ctx, |
| 10985 | child, ctxn, &inherited_all); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10986 | if (ret) |
Peter Zijlstra | e7cc486 | 2017-03-16 13:47:49 +0100 | [diff] [blame] | 10987 | goto out_unlock; |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10988 | } |
| 10989 | |
Thomas Gleixner | dddd337 | 2010-11-24 10:05:55 +0100 | [diff] [blame] | 10990 | raw_spin_lock_irqsave(&parent_ctx->lock, flags); |
| 10991 | parent_ctx->rotate_disable = 0; |
Thomas Gleixner | dddd337 | 2010-11-24 10:05:55 +0100 | [diff] [blame] | 10992 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10993 | child_ctx = child->perf_event_ctxp[ctxn]; |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10994 | |
Peter Zijlstra | 05cbaa2 | 2009-12-30 16:00:35 +0100 | [diff] [blame] | 10995 | if (child_ctx && inherited_all) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10996 | /* |
| 10997 | * Mark the child context as a clone of the parent |
| 10998 | * context, or of whatever the parent is a clone of. |
Peter Zijlstra | c5ed514 | 2011-01-17 13:45:37 +0100 | [diff] [blame] | 10999 | * |
| 11000 | * Note that if the parent is a clone, the holding of |
| 11001 | * parent_ctx->lock avoids it from being uncloned. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11002 | */ |
Peter Zijlstra | c5ed514 | 2011-01-17 13:45:37 +0100 | [diff] [blame] | 11003 | cloned_ctx = parent_ctx->parent_ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11004 | if (cloned_ctx) { |
| 11005 | child_ctx->parent_ctx = cloned_ctx; |
| 11006 | child_ctx->parent_gen = parent_ctx->parent_gen; |
| 11007 | } else { |
| 11008 | child_ctx->parent_ctx = parent_ctx; |
| 11009 | child_ctx->parent_gen = parent_ctx->generation; |
| 11010 | } |
| 11011 | get_ctx(child_ctx->parent_ctx); |
| 11012 | } |
| 11013 | |
Peter Zijlstra | c5ed514 | 2011-01-17 13:45:37 +0100 | [diff] [blame] | 11014 | raw_spin_unlock_irqrestore(&parent_ctx->lock, flags); |
Peter Zijlstra | e7cc486 | 2017-03-16 13:47:49 +0100 | [diff] [blame] | 11015 | out_unlock: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11016 | mutex_unlock(&parent_ctx->mutex); |
| 11017 | |
| 11018 | perf_unpin_context(parent_ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 11019 | put_ctx(parent_ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11020 | |
| 11021 | return ret; |
| 11022 | } |
| 11023 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 11024 | /* |
| 11025 | * Initialize the perf_event context in task_struct |
| 11026 | */ |
| 11027 | int perf_event_init_task(struct task_struct *child) |
| 11028 | { |
| 11029 | int ctxn, ret; |
| 11030 | |
Oleg Nesterov | 8550d7c | 2011-01-19 19:22:28 +0100 | [diff] [blame] | 11031 | memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp)); |
| 11032 | mutex_init(&child->perf_event_mutex); |
| 11033 | INIT_LIST_HEAD(&child->perf_event_list); |
| 11034 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 11035 | for_each_task_context_nr(ctxn) { |
| 11036 | ret = perf_event_init_context(child, ctxn); |
Peter Zijlstra | 6c72e350 | 2014-10-02 16:17:02 -0700 | [diff] [blame] | 11037 | if (ret) { |
| 11038 | perf_event_free_task(child); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 11039 | return ret; |
Peter Zijlstra | 6c72e350 | 2014-10-02 16:17:02 -0700 | [diff] [blame] | 11040 | } |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 11041 | } |
| 11042 | |
| 11043 | return 0; |
| 11044 | } |
| 11045 | |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 11046 | static void __init perf_event_init_all_cpus(void) |
| 11047 | { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 11048 | struct swevent_htable *swhash; |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 11049 | int cpu; |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 11050 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11051 | zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL); |
| 11052 | |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 11053 | for_each_possible_cpu(cpu) { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 11054 | swhash = &per_cpu(swevent_htable, cpu); |
| 11055 | mutex_init(&swhash->hlist_mutex); |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 11056 | INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu)); |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 11057 | |
| 11058 | INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu)); |
| 11059 | raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu)); |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 11060 | |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 11061 | #ifdef CONFIG_CGROUP_PERF |
| 11062 | INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu)); |
| 11063 | #endif |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 11064 | INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu)); |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 11065 | } |
| 11066 | } |
| 11067 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11068 | void perf_swevent_init_cpu(unsigned int cpu) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11069 | { |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11070 | struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11071 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 11072 | mutex_lock(&swhash->hlist_mutex); |
Thomas Gleixner | 059fcd8 | 2016-02-09 20:11:34 +0000 | [diff] [blame] | 11073 | if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) { |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 11074 | struct swevent_hlist *hlist; |
| 11075 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 11076 | hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu)); |
| 11077 | WARN_ON(!hlist); |
| 11078 | rcu_assign_pointer(swhash->swevent_hlist, hlist); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 11079 | } |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 11080 | mutex_unlock(&swhash->hlist_mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11081 | } |
| 11082 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 11083 | #if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11084 | static void __perf_event_exit_context(void *__info) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11085 | { |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11086 | struct perf_event_context *ctx = __info; |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 11087 | struct perf_cpu_context *cpuctx = __get_cpu_context(ctx); |
| 11088 | struct perf_event *event; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11089 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 11090 | raw_spin_lock(&ctx->lock); |
| 11091 | list_for_each_entry(event, &ctx->event_list, event_entry) |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 11092 | __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP); |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 11093 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11094 | } |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11095 | |
| 11096 | static void perf_event_exit_cpu_context(int cpu) |
| 11097 | { |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11098 | struct perf_cpu_context *cpuctx; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11099 | struct perf_event_context *ctx; |
| 11100 | struct pmu *pmu; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11101 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11102 | mutex_lock(&pmus_lock); |
| 11103 | list_for_each_entry(pmu, &pmus, entry) { |
| 11104 | cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); |
| 11105 | ctx = &cpuctx->ctx; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11106 | |
| 11107 | mutex_lock(&ctx->mutex); |
| 11108 | smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1); |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11109 | cpuctx->online = 0; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11110 | mutex_unlock(&ctx->mutex); |
| 11111 | } |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11112 | cpumask_clear_cpu(cpu, perf_online_mask); |
| 11113 | mutex_unlock(&pmus_lock); |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11114 | } |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 11115 | #else |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11116 | |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 11117 | static void perf_event_exit_cpu_context(int cpu) { } |
| 11118 | |
| 11119 | #endif |
| 11120 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11121 | int perf_event_init_cpu(unsigned int cpu) |
| 11122 | { |
| 11123 | struct perf_cpu_context *cpuctx; |
| 11124 | struct perf_event_context *ctx; |
| 11125 | struct pmu *pmu; |
| 11126 | |
| 11127 | perf_swevent_init_cpu(cpu); |
| 11128 | |
| 11129 | mutex_lock(&pmus_lock); |
| 11130 | cpumask_set_cpu(cpu, perf_online_mask); |
| 11131 | list_for_each_entry(pmu, &pmus, entry) { |
| 11132 | cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); |
| 11133 | ctx = &cpuctx->ctx; |
| 11134 | |
| 11135 | mutex_lock(&ctx->mutex); |
| 11136 | cpuctx->online = 1; |
| 11137 | mutex_unlock(&ctx->mutex); |
| 11138 | } |
| 11139 | mutex_unlock(&pmus_lock); |
| 11140 | |
| 11141 | return 0; |
| 11142 | } |
| 11143 | |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 11144 | int perf_event_exit_cpu(unsigned int cpu) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11145 | { |
Peter Zijlstra | e3703f8 | 2014-02-24 12:06:12 +0100 | [diff] [blame] | 11146 | perf_event_exit_cpu_context(cpu); |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 11147 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11148 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11149 | |
Peter Zijlstra | c277443 | 2010-12-08 15:29:02 +0100 | [diff] [blame] | 11150 | static int |
| 11151 | perf_reboot(struct notifier_block *notifier, unsigned long val, void *v) |
| 11152 | { |
| 11153 | int cpu; |
| 11154 | |
| 11155 | for_each_online_cpu(cpu) |
| 11156 | perf_event_exit_cpu(cpu); |
| 11157 | |
| 11158 | return NOTIFY_OK; |
| 11159 | } |
| 11160 | |
| 11161 | /* |
| 11162 | * Run the perf reboot notifier at the very last possible moment so that |
| 11163 | * the generic watchdog code runs as long as possible. |
| 11164 | */ |
| 11165 | static struct notifier_block perf_reboot_notifier = { |
| 11166 | .notifier_call = perf_reboot, |
| 11167 | .priority = INT_MIN, |
| 11168 | }; |
| 11169 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11170 | void __init perf_event_init(void) |
| 11171 | { |
Jason Wessel | 3c502e7 | 2010-11-04 17:33:01 -0500 | [diff] [blame] | 11172 | int ret; |
| 11173 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 11174 | idr_init(&pmu_idr); |
| 11175 | |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 11176 | perf_event_init_all_cpus(); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 11177 | init_srcu_struct(&pmus_srcu); |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 11178 | perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE); |
| 11179 | perf_pmu_register(&perf_cpu_clock, NULL, -1); |
| 11180 | perf_pmu_register(&perf_task_clock, NULL, -1); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 11181 | perf_tp_register(); |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 11182 | perf_event_init_cpu(smp_processor_id()); |
Peter Zijlstra | c277443 | 2010-12-08 15:29:02 +0100 | [diff] [blame] | 11183 | register_reboot_notifier(&perf_reboot_notifier); |
Jason Wessel | 3c502e7 | 2010-11-04 17:33:01 -0500 | [diff] [blame] | 11184 | |
| 11185 | ret = init_hw_breakpoint(); |
| 11186 | WARN(ret, "hw_breakpoint initialization failed with: %d", ret); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 11187 | |
Jiri Olsa | b01c3a0 | 2012-03-23 15:41:20 +0100 | [diff] [blame] | 11188 | /* |
| 11189 | * Build time assertion that we keep the data_head at the intended |
| 11190 | * location. IOW, validation we got the __reserved[] size right. |
| 11191 | */ |
| 11192 | BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head)) |
| 11193 | != 1024); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11194 | } |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 11195 | |
Cody P Schafer | fd979c0 | 2015-01-30 13:45:57 -0800 | [diff] [blame] | 11196 | ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr, |
| 11197 | char *page) |
| 11198 | { |
| 11199 | struct perf_pmu_events_attr *pmu_attr = |
| 11200 | container_of(attr, struct perf_pmu_events_attr, attr); |
| 11201 | |
| 11202 | if (pmu_attr->event_str) |
| 11203 | return sprintf(page, "%s\n", pmu_attr->event_str); |
| 11204 | |
| 11205 | return 0; |
| 11206 | } |
Thomas Gleixner | 675965b | 2016-02-22 22:19:27 +0000 | [diff] [blame] | 11207 | EXPORT_SYMBOL_GPL(perf_event_sysfs_show); |
Cody P Schafer | fd979c0 | 2015-01-30 13:45:57 -0800 | [diff] [blame] | 11208 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 11209 | static int __init perf_event_sysfs_init(void) |
| 11210 | { |
| 11211 | struct pmu *pmu; |
| 11212 | int ret; |
| 11213 | |
| 11214 | mutex_lock(&pmus_lock); |
| 11215 | |
| 11216 | ret = bus_register(&pmu_bus); |
| 11217 | if (ret) |
| 11218 | goto unlock; |
| 11219 | |
| 11220 | list_for_each_entry(pmu, &pmus, entry) { |
| 11221 | if (!pmu->name || pmu->type < 0) |
| 11222 | continue; |
| 11223 | |
| 11224 | ret = pmu_dev_alloc(pmu); |
| 11225 | WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret); |
| 11226 | } |
| 11227 | pmu_bus_running = 1; |
| 11228 | ret = 0; |
| 11229 | |
| 11230 | unlock: |
| 11231 | mutex_unlock(&pmus_lock); |
| 11232 | |
| 11233 | return ret; |
| 11234 | } |
| 11235 | device_initcall(perf_event_sysfs_init); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11236 | |
| 11237 | #ifdef CONFIG_CGROUP_PERF |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 11238 | static struct cgroup_subsys_state * |
| 11239 | perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11240 | { |
| 11241 | struct perf_cgroup *jc; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11242 | |
Li Zefan | 1b15d05 | 2011-03-03 14:26:06 +0800 | [diff] [blame] | 11243 | jc = kzalloc(sizeof(*jc), GFP_KERNEL); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11244 | if (!jc) |
| 11245 | return ERR_PTR(-ENOMEM); |
| 11246 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11247 | jc->info = alloc_percpu(struct perf_cgroup_info); |
| 11248 | if (!jc->info) { |
| 11249 | kfree(jc); |
| 11250 | return ERR_PTR(-ENOMEM); |
| 11251 | } |
| 11252 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11253 | return &jc->css; |
| 11254 | } |
| 11255 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 11256 | static void perf_cgroup_css_free(struct cgroup_subsys_state *css) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11257 | { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 11258 | struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css); |
| 11259 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11260 | free_percpu(jc->info); |
| 11261 | kfree(jc); |
| 11262 | } |
| 11263 | |
| 11264 | static int __perf_cgroup_move(void *info) |
| 11265 | { |
| 11266 | struct task_struct *task = info; |
Stephane Eranian | ddaaf4e | 2015-11-12 11:00:03 +0100 | [diff] [blame] | 11267 | rcu_read_lock(); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11268 | perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN); |
Stephane Eranian | ddaaf4e | 2015-11-12 11:00:03 +0100 | [diff] [blame] | 11269 | rcu_read_unlock(); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11270 | return 0; |
| 11271 | } |
| 11272 | |
Tejun Heo | 1f7dd3e5 | 2015-12-03 10:18:21 -0500 | [diff] [blame] | 11273 | static void perf_cgroup_attach(struct cgroup_taskset *tset) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11274 | { |
Tejun Heo | bb9d97b | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 11275 | struct task_struct *task; |
Tejun Heo | 1f7dd3e5 | 2015-12-03 10:18:21 -0500 | [diff] [blame] | 11276 | struct cgroup_subsys_state *css; |
Tejun Heo | bb9d97b | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 11277 | |
Tejun Heo | 1f7dd3e5 | 2015-12-03 10:18:21 -0500 | [diff] [blame] | 11278 | cgroup_taskset_for_each(task, css, tset) |
Tejun Heo | bb9d97b | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 11279 | task_function_call(task, __perf_cgroup_move, task); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11280 | } |
| 11281 | |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 11282 | struct cgroup_subsys perf_event_cgrp_subsys = { |
Tejun Heo | 92fb974 | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 11283 | .css_alloc = perf_cgroup_css_alloc, |
| 11284 | .css_free = perf_cgroup_css_free, |
Tejun Heo | bb9d97b | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 11285 | .attach = perf_cgroup_attach, |
Tejun Heo | 968ebff | 2017-01-29 14:35:20 -0500 | [diff] [blame] | 11286 | /* |
| 11287 | * Implicitly enable on dfl hierarchy so that perf events can |
| 11288 | * always be filtered by cgroup2 path as long as perf_event |
| 11289 | * controller is not mounted on a legacy hierarchy. |
| 11290 | */ |
| 11291 | .implicit_on_dfl = true, |
Tejun Heo | 8cfd814 | 2017-07-21 11:14:51 -0400 | [diff] [blame] | 11292 | .threaded = true, |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11293 | }; |
| 11294 | #endif /* CONFIG_CGROUP_PERF */ |