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 | |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1252 | static u32 perf_event_pid(struct perf_event *event, struct task_struct *p) |
| 1253 | { |
| 1254 | /* |
| 1255 | * only top level events have the pid namespace they were created in |
| 1256 | */ |
| 1257 | if (event->parent) |
| 1258 | event = event->parent; |
| 1259 | |
| 1260 | return task_tgid_nr_ns(p, event->ns); |
| 1261 | } |
| 1262 | |
| 1263 | static u32 perf_event_tid(struct perf_event *event, struct task_struct *p) |
| 1264 | { |
| 1265 | /* |
| 1266 | * only top level events have the pid namespace they were created in |
| 1267 | */ |
| 1268 | if (event->parent) |
| 1269 | event = event->parent; |
| 1270 | |
| 1271 | return task_pid_nr_ns(p, event->ns); |
| 1272 | } |
| 1273 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1274 | /* |
| 1275 | * If we inherit events we want to return the parent event id |
| 1276 | * to userspace. |
| 1277 | */ |
| 1278 | static u64 primary_event_id(struct perf_event *event) |
| 1279 | { |
| 1280 | u64 id = event->id; |
| 1281 | |
| 1282 | if (event->parent) |
| 1283 | id = event->parent->id; |
| 1284 | |
| 1285 | return id; |
| 1286 | } |
| 1287 | |
| 1288 | /* |
| 1289 | * Get the perf_event_context for a task and lock it. |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 1290 | * |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1291 | * This has to cope with with the fact that until it is locked, |
| 1292 | * the context could get moved to another task. |
| 1293 | */ |
| 1294 | static struct perf_event_context * |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 1295 | 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] | 1296 | { |
| 1297 | struct perf_event_context *ctx; |
| 1298 | |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 1299 | retry: |
Peter Zijlstra | 058ebd0 | 2013-07-12 11:08:33 +0200 | [diff] [blame] | 1300 | /* |
| 1301 | * One of the few rules of preemptible RCU is that one cannot do |
| 1302 | * rcu_read_unlock() while holding a scheduler (or nested) lock when |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1303 | * part of the read side critical section was irqs-enabled -- see |
Peter Zijlstra | 058ebd0 | 2013-07-12 11:08:33 +0200 | [diff] [blame] | 1304 | * rcu_read_unlock_special(). |
| 1305 | * |
| 1306 | * 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] | 1307 | * side critical section has interrupts disabled. |
Peter Zijlstra | 058ebd0 | 2013-07-12 11:08:33 +0200 | [diff] [blame] | 1308 | */ |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1309 | local_irq_save(*flags); |
Peter Zijlstra | 058ebd0 | 2013-07-12 11:08:33 +0200 | [diff] [blame] | 1310 | rcu_read_lock(); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 1311 | ctx = rcu_dereference(task->perf_event_ctxp[ctxn]); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1312 | if (ctx) { |
| 1313 | /* |
| 1314 | * If this context is a clone of another, it might |
| 1315 | * get swapped for another underneath us by |
| 1316 | * perf_event_task_sched_out, though the |
| 1317 | * rcu_read_lock() protects us from any context |
| 1318 | * getting freed. Lock the context and check if it |
| 1319 | * got swapped before we could get the lock, and retry |
| 1320 | * if so. If we locked the right context, then it |
| 1321 | * can't get swapped on us any more. |
| 1322 | */ |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1323 | raw_spin_lock(&ctx->lock); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 1324 | if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) { |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1325 | raw_spin_unlock(&ctx->lock); |
Peter Zijlstra | 058ebd0 | 2013-07-12 11:08:33 +0200 | [diff] [blame] | 1326 | rcu_read_unlock(); |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1327 | local_irq_restore(*flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1328 | goto retry; |
| 1329 | } |
| 1330 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 1331 | if (ctx->task == TASK_TOMBSTONE || |
| 1332 | !atomic_inc_not_zero(&ctx->refcount)) { |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1333 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1334 | ctx = NULL; |
Peter Zijlstra | 828b6f0 | 2016-01-27 21:59:04 +0100 | [diff] [blame] | 1335 | } else { |
| 1336 | WARN_ON_ONCE(ctx->task != task); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1337 | } |
| 1338 | } |
| 1339 | rcu_read_unlock(); |
Paul E. McKenney | 2fd5907 | 2015-11-04 05:48:38 -0800 | [diff] [blame] | 1340 | if (!ctx) |
| 1341 | local_irq_restore(*flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1342 | return ctx; |
| 1343 | } |
| 1344 | |
| 1345 | /* |
| 1346 | * Get the context for a task and increment its pin_count so it |
| 1347 | * can't get swapped to another task. This also increments its |
| 1348 | * reference count so that the context can't get freed. |
| 1349 | */ |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 1350 | static struct perf_event_context * |
| 1351 | perf_pin_task_context(struct task_struct *task, int ctxn) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1352 | { |
| 1353 | struct perf_event_context *ctx; |
| 1354 | unsigned long flags; |
| 1355 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 1356 | ctx = perf_lock_task_context(task, ctxn, &flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1357 | if (ctx) { |
| 1358 | ++ctx->pin_count; |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1359 | raw_spin_unlock_irqrestore(&ctx->lock, flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1360 | } |
| 1361 | return ctx; |
| 1362 | } |
| 1363 | |
| 1364 | static void perf_unpin_context(struct perf_event_context *ctx) |
| 1365 | { |
| 1366 | unsigned long flags; |
| 1367 | |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1368 | raw_spin_lock_irqsave(&ctx->lock, flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1369 | --ctx->pin_count; |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1370 | raw_spin_unlock_irqrestore(&ctx->lock, flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1371 | } |
| 1372 | |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1373 | /* |
| 1374 | * Update the record of the current time in a context. |
| 1375 | */ |
| 1376 | static void update_context_time(struct perf_event_context *ctx) |
| 1377 | { |
| 1378 | u64 now = perf_clock(); |
| 1379 | |
| 1380 | ctx->time += now - ctx->timestamp; |
| 1381 | ctx->timestamp = now; |
| 1382 | } |
| 1383 | |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 1384 | static u64 perf_event_time(struct perf_event *event) |
| 1385 | { |
| 1386 | struct perf_event_context *ctx = event->ctx; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1387 | |
| 1388 | if (is_cgroup_event(event)) |
| 1389 | return perf_cgroup_event_time(event); |
| 1390 | |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 1391 | return ctx ? ctx->time : 0; |
| 1392 | } |
| 1393 | |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1394 | /* |
| 1395 | * Update the total_time_enabled and total_time_running fields for a event. |
| 1396 | */ |
| 1397 | static void update_event_times(struct perf_event *event) |
| 1398 | { |
| 1399 | struct perf_event_context *ctx = event->ctx; |
| 1400 | u64 run_end; |
| 1401 | |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 1402 | lockdep_assert_held(&ctx->lock); |
| 1403 | |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1404 | if (event->state < PERF_EVENT_STATE_INACTIVE || |
| 1405 | event->group_leader->state < PERF_EVENT_STATE_INACTIVE) |
| 1406 | return; |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 1407 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1408 | /* |
| 1409 | * in cgroup mode, time_enabled represents |
| 1410 | * the time the event was enabled AND active |
| 1411 | * tasks were in the monitored cgroup. This is |
| 1412 | * independent of the activity of the context as |
| 1413 | * there may be a mix of cgroup and non-cgroup events. |
| 1414 | * |
| 1415 | * That is why we treat cgroup events differently |
| 1416 | * here. |
| 1417 | */ |
| 1418 | if (is_cgroup_event(event)) |
Namhyung Kim | 46cd6a7f | 2012-01-20 10:12:46 +0900 | [diff] [blame] | 1419 | run_end = perf_cgroup_event_time(event); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1420 | else if (ctx->is_active) |
| 1421 | run_end = ctx->time; |
Peter Zijlstra | acd1d7c | 2009-11-23 15:00:36 +0100 | [diff] [blame] | 1422 | else |
| 1423 | run_end = event->tstamp_stopped; |
| 1424 | |
| 1425 | event->total_time_enabled = run_end - event->tstamp_enabled; |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1426 | |
| 1427 | if (event->state == PERF_EVENT_STATE_INACTIVE) |
| 1428 | run_end = event->tstamp_stopped; |
| 1429 | else |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 1430 | run_end = perf_event_time(event); |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1431 | |
| 1432 | event->total_time_running = run_end - event->tstamp_running; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1433 | |
Peter Zijlstra | f67218c | 2009-11-23 11:37:27 +0100 | [diff] [blame] | 1434 | } |
| 1435 | |
Peter Zijlstra | 96c21a4 | 2010-05-11 16:19:10 +0200 | [diff] [blame] | 1436 | /* |
| 1437 | * Update total_time_enabled and total_time_running for all events in a group. |
| 1438 | */ |
| 1439 | static void update_group_times(struct perf_event *leader) |
| 1440 | { |
| 1441 | struct perf_event *event; |
| 1442 | |
| 1443 | update_event_times(leader); |
| 1444 | list_for_each_entry(event, &leader->sibling_list, group_entry) |
| 1445 | update_event_times(event); |
| 1446 | } |
| 1447 | |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 1448 | static enum event_type_t get_event_type(struct perf_event *event) |
| 1449 | { |
| 1450 | struct perf_event_context *ctx = event->ctx; |
| 1451 | enum event_type_t event_type; |
| 1452 | |
| 1453 | lockdep_assert_held(&ctx->lock); |
| 1454 | |
Alexander Shishkin | 3bda69c | 2017-07-18 14:08:34 +0300 | [diff] [blame] | 1455 | /* |
| 1456 | * It's 'group type', really, because if our group leader is |
| 1457 | * pinned, so are we. |
| 1458 | */ |
| 1459 | if (event->group_leader != event) |
| 1460 | event = event->group_leader; |
| 1461 | |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 1462 | event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE; |
| 1463 | if (!ctx->task) |
| 1464 | event_type |= EVENT_CPU; |
| 1465 | |
| 1466 | return event_type; |
| 1467 | } |
| 1468 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 1469 | static struct list_head * |
| 1470 | ctx_group_list(struct perf_event *event, struct perf_event_context *ctx) |
| 1471 | { |
| 1472 | if (event->attr.pinned) |
| 1473 | return &ctx->pinned_groups; |
| 1474 | else |
| 1475 | return &ctx->flexible_groups; |
| 1476 | } |
| 1477 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1478 | /* |
| 1479 | * Add a event from the lists for its context. |
| 1480 | * Must be called with ctx->mutex and ctx->lock held. |
| 1481 | */ |
| 1482 | static void |
| 1483 | list_add_event(struct perf_event *event, struct perf_event_context *ctx) |
| 1484 | { |
Peter Zijlstra | c994d61 | 2016-01-08 09:20:23 +0100 | [diff] [blame] | 1485 | lockdep_assert_held(&ctx->lock); |
| 1486 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1487 | WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT); |
| 1488 | event->attach_state |= PERF_ATTACH_CONTEXT; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1489 | |
| 1490 | /* |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1491 | * If we're a stand alone event or group leader, we go to the context |
| 1492 | * list, group events are kept attached to the group so that |
| 1493 | * perf_group_detach can, at all times, locate all siblings. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1494 | */ |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1495 | if (event->group_leader == event) { |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 1496 | struct list_head *list; |
| 1497 | |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 1498 | event->group_caps = event->event_caps; |
Frederic Weisbecker | d6f962b | 2010-01-10 01:25:51 +0100 | [diff] [blame] | 1499 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 1500 | list = ctx_group_list(event, ctx); |
| 1501 | list_add_tail(&event->group_entry, list); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1502 | } |
| 1503 | |
David Carrillo-Cisneros | db4a835 | 2016-08-02 00:48:12 -0700 | [diff] [blame] | 1504 | list_update_cgroup_event(event, ctx, true); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1505 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1506 | list_add_rcu(&event->event_entry, &ctx->event_list); |
| 1507 | ctx->nr_events++; |
| 1508 | if (event->attr.inherit_stat) |
| 1509 | ctx->nr_stat++; |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 1510 | |
| 1511 | ctx->generation++; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1512 | } |
| 1513 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1514 | /* |
Jiri Olsa | 0231bb5 | 2013-02-01 11:23:45 +0100 | [diff] [blame] | 1515 | * Initialize event state based on the perf_event_attr::disabled. |
| 1516 | */ |
| 1517 | static inline void perf_event__state_init(struct perf_event *event) |
| 1518 | { |
| 1519 | event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF : |
| 1520 | PERF_EVENT_STATE_INACTIVE; |
| 1521 | } |
| 1522 | |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 1523 | 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] | 1524 | { |
| 1525 | int entry = sizeof(u64); /* value */ |
| 1526 | int size = 0; |
| 1527 | int nr = 1; |
| 1528 | |
| 1529 | if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) |
| 1530 | size += sizeof(u64); |
| 1531 | |
| 1532 | if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) |
| 1533 | size += sizeof(u64); |
| 1534 | |
| 1535 | if (event->attr.read_format & PERF_FORMAT_ID) |
| 1536 | entry += sizeof(u64); |
| 1537 | |
| 1538 | if (event->attr.read_format & PERF_FORMAT_GROUP) { |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 1539 | nr += nr_siblings; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1540 | size += sizeof(u64); |
| 1541 | } |
| 1542 | |
| 1543 | size += entry * nr; |
| 1544 | event->read_size = size; |
| 1545 | } |
| 1546 | |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 1547 | 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] | 1548 | { |
| 1549 | struct perf_sample_data *data; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1550 | u16 size = 0; |
| 1551 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1552 | if (sample_type & PERF_SAMPLE_IP) |
| 1553 | size += sizeof(data->ip); |
| 1554 | |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1555 | if (sample_type & PERF_SAMPLE_ADDR) |
| 1556 | size += sizeof(data->addr); |
| 1557 | |
| 1558 | if (sample_type & PERF_SAMPLE_PERIOD) |
| 1559 | size += sizeof(data->period); |
| 1560 | |
Andi Kleen | c3feedf | 2013-01-24 16:10:28 +0100 | [diff] [blame] | 1561 | if (sample_type & PERF_SAMPLE_WEIGHT) |
| 1562 | size += sizeof(data->weight); |
| 1563 | |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1564 | if (sample_type & PERF_SAMPLE_READ) |
| 1565 | size += event->read_size; |
| 1566 | |
Stephane Eranian | d6be9ad | 2013-01-24 16:10:31 +0100 | [diff] [blame] | 1567 | if (sample_type & PERF_SAMPLE_DATA_SRC) |
| 1568 | size += sizeof(data->data_src.val); |
| 1569 | |
Andi Kleen | fdfbbd0 | 2013-09-20 07:40:39 -0700 | [diff] [blame] | 1570 | if (sample_type & PERF_SAMPLE_TRANSACTION) |
| 1571 | size += sizeof(data->txn); |
| 1572 | |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1573 | event->header_size = size; |
| 1574 | } |
| 1575 | |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 1576 | /* |
| 1577 | * Called at perf_event creation and when events are attached/detached from a |
| 1578 | * group. |
| 1579 | */ |
| 1580 | static void perf_event__header_size(struct perf_event *event) |
| 1581 | { |
| 1582 | __perf_event_read_size(event, |
| 1583 | event->group_leader->nr_siblings); |
| 1584 | __perf_event_header_size(event, event->attr.sample_type); |
| 1585 | } |
| 1586 | |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1587 | static void perf_event__id_header_size(struct perf_event *event) |
| 1588 | { |
| 1589 | struct perf_sample_data *data; |
| 1590 | u64 sample_type = event->attr.sample_type; |
| 1591 | u16 size = 0; |
| 1592 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1593 | if (sample_type & PERF_SAMPLE_TID) |
| 1594 | size += sizeof(data->tid_entry); |
| 1595 | |
| 1596 | if (sample_type & PERF_SAMPLE_TIME) |
| 1597 | size += sizeof(data->time); |
| 1598 | |
Adrian Hunter | ff3d527 | 2013-08-27 11:23:07 +0300 | [diff] [blame] | 1599 | if (sample_type & PERF_SAMPLE_IDENTIFIER) |
| 1600 | size += sizeof(data->id); |
| 1601 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1602 | if (sample_type & PERF_SAMPLE_ID) |
| 1603 | size += sizeof(data->id); |
| 1604 | |
| 1605 | if (sample_type & PERF_SAMPLE_STREAM_ID) |
| 1606 | size += sizeof(data->stream_id); |
| 1607 | |
| 1608 | if (sample_type & PERF_SAMPLE_CPU) |
| 1609 | size += sizeof(data->cpu_entry); |
| 1610 | |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 1611 | event->id_header_size = size; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1612 | } |
| 1613 | |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 1614 | static bool perf_event_validate_size(struct perf_event *event) |
| 1615 | { |
| 1616 | /* |
| 1617 | * The values computed here will be over-written when we actually |
| 1618 | * attach the event. |
| 1619 | */ |
| 1620 | __perf_event_read_size(event, event->group_leader->nr_siblings + 1); |
| 1621 | __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ); |
| 1622 | perf_event__id_header_size(event); |
| 1623 | |
| 1624 | /* |
| 1625 | * Sum the lot; should not exceed the 64k limit we have on records. |
| 1626 | * Conservative limit to allow for callchains and other variable fields. |
| 1627 | */ |
| 1628 | if (event->read_size + event->header_size + |
| 1629 | event->id_header_size + sizeof(struct perf_event_header) >= 16*1024) |
| 1630 | return false; |
| 1631 | |
| 1632 | return true; |
| 1633 | } |
| 1634 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1635 | static void perf_group_attach(struct perf_event *event) |
| 1636 | { |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1637 | struct perf_event *group_leader = event->group_leader, *pos; |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1638 | |
Peter Zijlstra | a76a82a | 2017-01-26 16:39:55 +0100 | [diff] [blame] | 1639 | lockdep_assert_held(&event->ctx->lock); |
| 1640 | |
Peter Zijlstra | 74c3337 | 2010-10-15 11:40:29 +0200 | [diff] [blame] | 1641 | /* |
| 1642 | * We can have double attach due to group movement in perf_event_open. |
| 1643 | */ |
| 1644 | if (event->attach_state & PERF_ATTACH_GROUP) |
| 1645 | return; |
| 1646 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1647 | event->attach_state |= PERF_ATTACH_GROUP; |
| 1648 | |
| 1649 | if (group_leader == event) |
| 1650 | return; |
| 1651 | |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 1652 | WARN_ON_ONCE(group_leader->ctx != event->ctx); |
| 1653 | |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 1654 | group_leader->group_caps &= event->event_caps; |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1655 | |
| 1656 | list_add_tail(&event->group_entry, &group_leader->sibling_list); |
| 1657 | group_leader->nr_siblings++; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1658 | |
| 1659 | perf_event__header_size(group_leader); |
| 1660 | |
| 1661 | list_for_each_entry(pos, &group_leader->sibling_list, group_entry) |
| 1662 | perf_event__header_size(pos); |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1663 | } |
| 1664 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1665 | /* |
| 1666 | * Remove a event from the lists for its context. |
| 1667 | * Must be called with ctx->mutex and ctx->lock held. |
| 1668 | */ |
| 1669 | static void |
| 1670 | list_del_event(struct perf_event *event, struct perf_event_context *ctx) |
| 1671 | { |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 1672 | WARN_ON_ONCE(event->ctx != ctx); |
| 1673 | lockdep_assert_held(&ctx->lock); |
| 1674 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1675 | /* |
| 1676 | * We can have double detach due to exit/hot-unplug + close. |
| 1677 | */ |
| 1678 | if (!(event->attach_state & PERF_ATTACH_CONTEXT)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1679 | return; |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1680 | |
| 1681 | event->attach_state &= ~PERF_ATTACH_CONTEXT; |
| 1682 | |
David Carrillo-Cisneros | db4a835 | 2016-08-02 00:48:12 -0700 | [diff] [blame] | 1683 | list_update_cgroup_event(event, ctx, false); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1684 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1685 | ctx->nr_events--; |
| 1686 | if (event->attr.inherit_stat) |
| 1687 | ctx->nr_stat--; |
| 1688 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1689 | list_del_rcu(&event->event_entry); |
| 1690 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1691 | if (event->group_leader == event) |
| 1692 | list_del_init(&event->group_entry); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1693 | |
Peter Zijlstra | 96c21a4 | 2010-05-11 16:19:10 +0200 | [diff] [blame] | 1694 | update_group_times(event); |
Stephane Eranian | b2e74a2 | 2009-11-26 09:24:30 -0800 | [diff] [blame] | 1695 | |
| 1696 | /* |
| 1697 | * If event was in error state, then keep it |
| 1698 | * that way, otherwise bogus counts will be |
| 1699 | * returned on read(). The only way to get out |
| 1700 | * of error state is by explicit re-enabling |
| 1701 | * of the event |
| 1702 | */ |
| 1703 | if (event->state > PERF_EVENT_STATE_OFF) |
| 1704 | event->state = PERF_EVENT_STATE_OFF; |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 1705 | |
| 1706 | ctx->generation++; |
Peter Zijlstra | 050735b | 2010-05-11 11:51:53 +0200 | [diff] [blame] | 1707 | } |
| 1708 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1709 | static void perf_group_detach(struct perf_event *event) |
Peter Zijlstra | 050735b | 2010-05-11 11:51:53 +0200 | [diff] [blame] | 1710 | { |
| 1711 | struct perf_event *sibling, *tmp; |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1712 | struct list_head *list = NULL; |
| 1713 | |
Peter Zijlstra | a76a82a | 2017-01-26 16:39:55 +0100 | [diff] [blame] | 1714 | lockdep_assert_held(&event->ctx->lock); |
| 1715 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1716 | /* |
| 1717 | * We can have double detach due to exit/hot-unplug + close. |
| 1718 | */ |
| 1719 | if (!(event->attach_state & PERF_ATTACH_GROUP)) |
| 1720 | return; |
| 1721 | |
| 1722 | event->attach_state &= ~PERF_ATTACH_GROUP; |
| 1723 | |
| 1724 | /* |
| 1725 | * If this is a sibling, remove it from its group. |
| 1726 | */ |
| 1727 | if (event->group_leader != event) { |
| 1728 | list_del_init(&event->group_entry); |
| 1729 | event->group_leader->nr_siblings--; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1730 | goto out; |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1731 | } |
| 1732 | |
| 1733 | if (!list_empty(&event->group_entry)) |
| 1734 | list = &event->group_entry; |
Peter Zijlstra | 2e2af50 | 2009-11-23 11:37:25 +0100 | [diff] [blame] | 1735 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1736 | /* |
| 1737 | * If this was a group event with sibling events then |
| 1738 | * upgrade the siblings to singleton events by adding them |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1739 | * to whatever list we are on. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1740 | */ |
| 1741 | list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) { |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 1742 | if (list) |
| 1743 | list_move_tail(&sibling->group_entry, list); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1744 | sibling->group_leader = sibling; |
Frederic Weisbecker | d6f962b | 2010-01-10 01:25:51 +0100 | [diff] [blame] | 1745 | |
| 1746 | /* Inherit group flags from the previous leader */ |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 1747 | sibling->group_caps = event->group_caps; |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 1748 | |
| 1749 | WARN_ON_ONCE(sibling->ctx != event->ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1750 | } |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 1751 | |
| 1752 | out: |
| 1753 | perf_event__header_size(event->group_leader); |
| 1754 | |
| 1755 | list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry) |
| 1756 | perf_event__header_size(tmp); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1757 | } |
| 1758 | |
Jiri Olsa | fadfe7b | 2014-08-01 14:33:02 +0200 | [diff] [blame] | 1759 | static bool is_orphaned_event(struct perf_event *event) |
| 1760 | { |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 1761 | return event->state == PERF_EVENT_STATE_DEAD; |
Jiri Olsa | fadfe7b | 2014-08-01 14:33:02 +0200 | [diff] [blame] | 1762 | } |
| 1763 | |
Mark Rutland | 2c81a64 | 2016-06-14 16:10:41 +0100 | [diff] [blame] | 1764 | static inline int __pmu_filter_match(struct perf_event *event) |
Mark Rutland | 66eb579 | 2015-05-13 17:12:23 +0100 | [diff] [blame] | 1765 | { |
| 1766 | struct pmu *pmu = event->pmu; |
| 1767 | return pmu->filter_match ? pmu->filter_match(event) : 1; |
| 1768 | } |
| 1769 | |
Mark Rutland | 2c81a64 | 2016-06-14 16:10:41 +0100 | [diff] [blame] | 1770 | /* |
| 1771 | * Check whether we should attempt to schedule an event group based on |
| 1772 | * PMU-specific filtering. An event group can consist of HW and SW events, |
| 1773 | * potentially with a SW leader, so we must check all the filters, to |
| 1774 | * determine whether a group is schedulable: |
| 1775 | */ |
| 1776 | static inline int pmu_filter_match(struct perf_event *event) |
| 1777 | { |
| 1778 | struct perf_event *child; |
| 1779 | |
| 1780 | if (!__pmu_filter_match(event)) |
| 1781 | return 0; |
| 1782 | |
| 1783 | list_for_each_entry(child, &event->sibling_list, group_entry) { |
| 1784 | if (!__pmu_filter_match(child)) |
| 1785 | return 0; |
| 1786 | } |
| 1787 | |
| 1788 | return 1; |
| 1789 | } |
| 1790 | |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1791 | static inline int |
| 1792 | event_filter_match(struct perf_event *event) |
| 1793 | { |
Peter Zijlstra | 0b8f1e2 | 2016-08-04 14:37:24 +0200 | [diff] [blame] | 1794 | return (event->cpu == -1 || event->cpu == smp_processor_id()) && |
| 1795 | perf_cgroup_match(event) && pmu_filter_match(event); |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1796 | } |
| 1797 | |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 1798 | static void |
| 1799 | event_sched_out(struct perf_event *event, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1800 | struct perf_cpu_context *cpuctx, |
| 1801 | struct perf_event_context *ctx) |
| 1802 | { |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 1803 | u64 tstamp = perf_event_time(event); |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1804 | u64 delta; |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 1805 | |
| 1806 | WARN_ON_ONCE(event->ctx != ctx); |
| 1807 | lockdep_assert_held(&ctx->lock); |
| 1808 | |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1809 | /* |
| 1810 | * An event which could not be activated because of |
| 1811 | * filter mismatch still needs to have its timings |
| 1812 | * maintained, otherwise bogus information is return |
| 1813 | * via read() for time_enabled, time_running: |
| 1814 | */ |
Peter Zijlstra | 0b8f1e2 | 2016-08-04 14:37:24 +0200 | [diff] [blame] | 1815 | if (event->state == PERF_EVENT_STATE_INACTIVE && |
| 1816 | !event_filter_match(event)) { |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 1817 | delta = tstamp - event->tstamp_stopped; |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1818 | event->tstamp_running += delta; |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 1819 | event->tstamp_stopped = tstamp; |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1820 | } |
| 1821 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1822 | if (event->state != PERF_EVENT_STATE_ACTIVE) |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 1823 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1824 | |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 1825 | perf_pmu_disable(event->pmu); |
| 1826 | |
Peter Zijlstra | 28a967c | 2016-02-24 18:45:46 +0100 | [diff] [blame] | 1827 | event->tstamp_stopped = tstamp; |
| 1828 | event->pmu->del(event, 0); |
| 1829 | event->oncpu = -1; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1830 | event->state = PERF_EVENT_STATE_INACTIVE; |
| 1831 | if (event->pending_disable) { |
| 1832 | event->pending_disable = 0; |
| 1833 | event->state = PERF_EVENT_STATE_OFF; |
| 1834 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1835 | |
| 1836 | if (!is_software_event(event)) |
| 1837 | cpuctx->active_oncpu--; |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 1838 | if (!--ctx->nr_active) |
| 1839 | perf_event_ctx_deactivate(ctx); |
Peter Zijlstra | 0f5a260 | 2011-11-16 14:38:16 +0100 | [diff] [blame] | 1840 | if (event->attr.freq && event->attr.sample_freq) |
| 1841 | ctx->nr_freq--; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1842 | if (event->attr.exclusive || !cpuctx->active_oncpu) |
| 1843 | cpuctx->exclusive = 0; |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 1844 | |
| 1845 | perf_pmu_enable(event->pmu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1846 | } |
| 1847 | |
| 1848 | static void |
| 1849 | group_sched_out(struct perf_event *group_event, |
| 1850 | struct perf_cpu_context *cpuctx, |
| 1851 | struct perf_event_context *ctx) |
| 1852 | { |
| 1853 | struct perf_event *event; |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1854 | int state = group_event->state; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1855 | |
Mark Rutland | 3f005e7 | 2016-07-26 18:12:21 +0100 | [diff] [blame] | 1856 | perf_pmu_disable(ctx->pmu); |
| 1857 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1858 | event_sched_out(group_event, cpuctx, ctx); |
| 1859 | |
| 1860 | /* |
| 1861 | * Schedule out siblings (if any): |
| 1862 | */ |
| 1863 | list_for_each_entry(event, &group_event->sibling_list, group_entry) |
| 1864 | event_sched_out(event, cpuctx, ctx); |
| 1865 | |
Mark Rutland | 3f005e7 | 2016-07-26 18:12:21 +0100 | [diff] [blame] | 1866 | perf_pmu_enable(ctx->pmu); |
| 1867 | |
Stephane Eranian | fa66f07 | 2010-08-26 16:40:01 +0200 | [diff] [blame] | 1868 | if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1869 | cpuctx->exclusive = 0; |
| 1870 | } |
| 1871 | |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 1872 | #define DETACH_GROUP 0x01UL |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 1873 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1874 | /* |
| 1875 | * Cross CPU call to remove a performance event |
| 1876 | * |
| 1877 | * We disable the event on the hardware level first. After that we |
| 1878 | * remove it from the context list. |
| 1879 | */ |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 1880 | static void |
| 1881 | __perf_remove_from_context(struct perf_event *event, |
| 1882 | struct perf_cpu_context *cpuctx, |
| 1883 | struct perf_event_context *ctx, |
| 1884 | void *info) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1885 | { |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 1886 | unsigned long flags = (unsigned long)info; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1887 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1888 | event_sched_out(event, cpuctx, ctx); |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 1889 | if (flags & DETACH_GROUP) |
Peter Zijlstra | 46ce0fe | 2014-05-02 16:56:01 +0200 | [diff] [blame] | 1890 | perf_group_detach(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1891 | list_del_event(event, ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 1892 | |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 1893 | if (!ctx->nr_events && ctx->is_active) { |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 1894 | ctx->is_active = 0; |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 1895 | if (ctx->task) { |
| 1896 | WARN_ON_ONCE(cpuctx->task_ctx != ctx); |
| 1897 | cpuctx->task_ctx = NULL; |
| 1898 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1899 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1900 | } |
| 1901 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1902 | /* |
| 1903 | * Remove the event from a task's (or a CPU's) list of events. |
| 1904 | * |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1905 | * If event->ctx is a cloned context, callers must make sure that |
| 1906 | * every task struct that event->ctx->task could possibly point to |
| 1907 | * remains valid. This is OK when called from perf_release since |
| 1908 | * that only calls us on the top-level context, which can't be a clone. |
| 1909 | * When called from perf_event_exit_task, it's OK because the |
| 1910 | * context has been detached from its task. |
| 1911 | */ |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 1912 | 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] | 1913 | { |
Peter Zijlstra | a76a82a | 2017-01-26 16:39:55 +0100 | [diff] [blame] | 1914 | struct perf_event_context *ctx = event->ctx; |
| 1915 | |
| 1916 | lockdep_assert_held(&ctx->mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1917 | |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 1918 | event_function_call(event, __perf_remove_from_context, (void *)flags); |
Peter Zijlstra | a76a82a | 2017-01-26 16:39:55 +0100 | [diff] [blame] | 1919 | |
| 1920 | /* |
| 1921 | * The above event_function_call() can NO-OP when it hits |
| 1922 | * TASK_TOMBSTONE. In that case we must already have been detached |
| 1923 | * from the context (by perf_event_exit_event()) but the grouping |
| 1924 | * might still be in-tact. |
| 1925 | */ |
| 1926 | WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT); |
| 1927 | if ((flags & DETACH_GROUP) && |
| 1928 | (event->attach_state & PERF_ATTACH_GROUP)) { |
| 1929 | /* |
| 1930 | * Since in that case we cannot possibly be scheduled, simply |
| 1931 | * detach now. |
| 1932 | */ |
| 1933 | raw_spin_lock_irq(&ctx->lock); |
| 1934 | perf_group_detach(event); |
| 1935 | raw_spin_unlock_irq(&ctx->lock); |
| 1936 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1937 | } |
| 1938 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1939 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1940 | * Cross CPU call to disable a performance event |
| 1941 | */ |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 1942 | static void __perf_event_disable(struct perf_event *event, |
| 1943 | struct perf_cpu_context *cpuctx, |
| 1944 | struct perf_event_context *ctx, |
| 1945 | void *info) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1946 | { |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 1947 | if (event->state < PERF_EVENT_STATE_INACTIVE) |
| 1948 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1949 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 1950 | update_context_time(ctx); |
| 1951 | update_cgrp_time_from_event(event); |
| 1952 | update_group_times(event); |
| 1953 | if (event == event->group_leader) |
| 1954 | group_sched_out(event, cpuctx, ctx); |
| 1955 | else |
| 1956 | event_sched_out(event, cpuctx, ctx); |
| 1957 | event->state = PERF_EVENT_STATE_OFF; |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 1958 | } |
| 1959 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1960 | /* |
| 1961 | * Disable a event. |
| 1962 | * |
| 1963 | * If event->ctx is a cloned context, callers must make sure that |
| 1964 | * every task struct that event->ctx->task could possibly point to |
| 1965 | * remains valid. This condition is satisifed when called through |
| 1966 | * perf_event_for_each_child or perf_event_for_each because they |
| 1967 | * hold the top-level event's child_mutex, so any descendant that |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 1968 | * goes to exit will block in perf_event_exit_event(). |
| 1969 | * |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1970 | * When called from perf_pending_event it's OK because event->ctx |
| 1971 | * is the current context on this CPU and preemption is disabled, |
| 1972 | * hence we can't get into perf_event_task_sched_out for this context. |
| 1973 | */ |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 1974 | static void _perf_event_disable(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1975 | { |
| 1976 | struct perf_event_context *ctx = event->ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1977 | |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1978 | raw_spin_lock_irq(&ctx->lock); |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 1979 | if (event->state <= PERF_EVENT_STATE_OFF) { |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1980 | raw_spin_unlock_irq(&ctx->lock); |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 1981 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1982 | } |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 1983 | raw_spin_unlock_irq(&ctx->lock); |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 1984 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 1985 | event_function_call(event, __perf_event_disable, NULL); |
| 1986 | } |
| 1987 | |
| 1988 | void perf_event_disable_local(struct perf_event *event) |
| 1989 | { |
| 1990 | event_function_local(event, __perf_event_disable, NULL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1991 | } |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 1992 | |
| 1993 | /* |
| 1994 | * Strictly speaking kernel users cannot create groups and therefore this |
| 1995 | * interface does not need the perf_event_ctx_lock() magic. |
| 1996 | */ |
| 1997 | void perf_event_disable(struct perf_event *event) |
| 1998 | { |
| 1999 | struct perf_event_context *ctx; |
| 2000 | |
| 2001 | ctx = perf_event_ctx_lock(event); |
| 2002 | _perf_event_disable(event); |
| 2003 | perf_event_ctx_unlock(event, ctx); |
| 2004 | } |
Robert Richter | dcfce4a | 2011-10-11 17:11:08 +0200 | [diff] [blame] | 2005 | EXPORT_SYMBOL_GPL(perf_event_disable); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2006 | |
Jiri Olsa | 5aab90c | 2016-10-26 11:48:24 +0200 | [diff] [blame] | 2007 | void perf_event_disable_inatomic(struct perf_event *event) |
| 2008 | { |
| 2009 | event->pending_disable = 1; |
| 2010 | irq_work_queue(&event->pending); |
| 2011 | } |
| 2012 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 2013 | static void perf_set_shadow_time(struct perf_event *event, |
| 2014 | struct perf_event_context *ctx, |
| 2015 | u64 tstamp) |
| 2016 | { |
| 2017 | /* |
| 2018 | * use the correct time source for the time snapshot |
| 2019 | * |
| 2020 | * We could get by without this by leveraging the |
| 2021 | * fact that to get to this function, the caller |
| 2022 | * has most likely already called update_context_time() |
| 2023 | * and update_cgrp_time_xx() and thus both timestamp |
| 2024 | * are identical (or very close). Given that tstamp is, |
| 2025 | * already adjusted for cgroup, we could say that: |
| 2026 | * tstamp - ctx->timestamp |
| 2027 | * is equivalent to |
| 2028 | * tstamp - cgrp->timestamp. |
| 2029 | * |
| 2030 | * Then, in perf_output_read(), the calculation would |
| 2031 | * work with no changes because: |
| 2032 | * - event is guaranteed scheduled in |
| 2033 | * - no scheduled out in between |
| 2034 | * - thus the timestamp would be the same |
| 2035 | * |
| 2036 | * But this is a bit hairy. |
| 2037 | * |
| 2038 | * So instead, we have an explicit cgroup call to remain |
| 2039 | * within the time time source all along. We believe it |
| 2040 | * is cleaner and simpler to understand. |
| 2041 | */ |
| 2042 | if (is_cgroup_event(event)) |
| 2043 | perf_cgroup_set_shadow_time(event, tstamp); |
| 2044 | else |
| 2045 | event->shadow_ctx_time = tstamp - ctx->timestamp; |
| 2046 | } |
| 2047 | |
Peter Zijlstra | 4fe757d | 2011-02-15 22:26:07 +0100 | [diff] [blame] | 2048 | #define MAX_INTERRUPTS (~0ULL) |
| 2049 | |
| 2050 | static void perf_log_throttle(struct perf_event *event, int enable); |
Alexander Shishkin | ec0d772 | 2015-01-14 14:18:23 +0200 | [diff] [blame] | 2051 | static void perf_log_itrace_start(struct perf_event *event); |
Peter Zijlstra | 4fe757d | 2011-02-15 22:26:07 +0100 | [diff] [blame] | 2052 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2053 | static int |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2054 | event_sched_in(struct perf_event *event, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2055 | struct perf_cpu_context *cpuctx, |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 2056 | struct perf_event_context *ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2057 | { |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 2058 | u64 tstamp = perf_event_time(event); |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 2059 | int ret = 0; |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 2060 | |
Peter Zijlstra | 6334241 | 2014-05-05 11:49:16 +0200 | [diff] [blame] | 2061 | lockdep_assert_held(&ctx->lock); |
| 2062 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2063 | if (event->state <= PERF_EVENT_STATE_OFF) |
| 2064 | return 0; |
| 2065 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 2066 | WRITE_ONCE(event->oncpu, smp_processor_id()); |
| 2067 | /* |
| 2068 | * Order event::oncpu write to happen before the ACTIVE state |
| 2069 | * is visible. |
| 2070 | */ |
| 2071 | smp_wmb(); |
| 2072 | WRITE_ONCE(event->state, PERF_EVENT_STATE_ACTIVE); |
Peter Zijlstra | 4fe757d | 2011-02-15 22:26:07 +0100 | [diff] [blame] | 2073 | |
| 2074 | /* |
| 2075 | * Unthrottle events, since we scheduled we might have missed several |
| 2076 | * ticks already, also for a heavily scheduling task there is little |
| 2077 | * guarantee it'll get a tick in a timely manner. |
| 2078 | */ |
| 2079 | if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) { |
| 2080 | perf_log_throttle(event, 1); |
| 2081 | event->hw.interrupts = 0; |
| 2082 | } |
| 2083 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2084 | /* |
| 2085 | * The new state must be visible before we turn it on in the hardware: |
| 2086 | */ |
| 2087 | smp_wmb(); |
| 2088 | |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 2089 | perf_pmu_disable(event->pmu); |
| 2090 | |
Shaohua Li | 72f669c | 2015-02-05 15:55:31 -0800 | [diff] [blame] | 2091 | perf_set_shadow_time(event, ctx, tstamp); |
| 2092 | |
Alexander Shishkin | ec0d772 | 2015-01-14 14:18:23 +0200 | [diff] [blame] | 2093 | perf_log_itrace_start(event); |
| 2094 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 2095 | if (event->pmu->add(event, PERF_EF_START)) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2096 | event->state = PERF_EVENT_STATE_INACTIVE; |
| 2097 | event->oncpu = -1; |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 2098 | ret = -EAGAIN; |
| 2099 | goto out; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2100 | } |
| 2101 | |
Peter Zijlstra | 00a2916 | 2015-07-27 10:35:07 +0200 | [diff] [blame] | 2102 | event->tstamp_running += tstamp - event->tstamp_stopped; |
| 2103 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2104 | if (!is_software_event(event)) |
| 2105 | cpuctx->active_oncpu++; |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 2106 | if (!ctx->nr_active++) |
| 2107 | perf_event_ctx_activate(ctx); |
Peter Zijlstra | 0f5a260 | 2011-11-16 14:38:16 +0100 | [diff] [blame] | 2108 | if (event->attr.freq && event->attr.sample_freq) |
| 2109 | ctx->nr_freq++; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2110 | |
| 2111 | if (event->attr.exclusive) |
| 2112 | cpuctx->exclusive = 1; |
| 2113 | |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 2114 | out: |
| 2115 | perf_pmu_enable(event->pmu); |
| 2116 | |
| 2117 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2118 | } |
| 2119 | |
| 2120 | static int |
| 2121 | group_sched_in(struct perf_event *group_event, |
| 2122 | struct perf_cpu_context *cpuctx, |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 2123 | struct perf_event_context *ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2124 | { |
Lin Ming | 6bde9b6 | 2010-04-23 13:56:00 +0800 | [diff] [blame] | 2125 | struct perf_event *event, *partial_group = NULL; |
Peter Zijlstra | 4a23459 | 2014-02-24 12:43:31 +0100 | [diff] [blame] | 2126 | struct pmu *pmu = ctx->pmu; |
Stephane Eranian | d7842da | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2127 | u64 now = ctx->time; |
| 2128 | bool simulate = false; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2129 | |
| 2130 | if (group_event->state == PERF_EVENT_STATE_OFF) |
| 2131 | return 0; |
| 2132 | |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 2133 | pmu->start_txn(pmu, PERF_PMU_TXN_ADD); |
Lin Ming | 6bde9b6 | 2010-04-23 13:56:00 +0800 | [diff] [blame] | 2134 | |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2135 | if (event_sched_in(group_event, cpuctx, ctx)) { |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 2136 | pmu->cancel_txn(pmu); |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 2137 | perf_mux_hrtimer_restart(cpuctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2138 | return -EAGAIN; |
Stephane Eranian | 90151c35 | 2010-05-25 16:23:10 +0200 | [diff] [blame] | 2139 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2140 | |
| 2141 | /* |
| 2142 | * Schedule in siblings as one group (if any): |
| 2143 | */ |
| 2144 | list_for_each_entry(event, &group_event->sibling_list, group_entry) { |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2145 | if (event_sched_in(event, cpuctx, ctx)) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2146 | partial_group = event; |
| 2147 | goto group_error; |
| 2148 | } |
| 2149 | } |
| 2150 | |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2151 | if (!pmu->commit_txn(pmu)) |
Paul Mackerras | 6e85158 | 2010-05-08 20:58:00 +1000 | [diff] [blame] | 2152 | return 0; |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2153 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2154 | group_error: |
| 2155 | /* |
| 2156 | * Groups can be scheduled in as one unit only, so undo any |
| 2157 | * partial group before returning: |
Stephane Eranian | d7842da | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2158 | * The events up to the failed event are scheduled out normally, |
| 2159 | * tstamp_stopped will be updated. |
| 2160 | * |
| 2161 | * The failed events and the remaining siblings need to have |
| 2162 | * their timings updated as if they had gone thru event_sched_in() |
| 2163 | * and event_sched_out(). This is required to get consistent timings |
| 2164 | * across the group. This also takes care of the case where the group |
| 2165 | * could never be scheduled by ensuring tstamp_stopped is set to mark |
| 2166 | * the time the event was actually stopped, such that time delta |
| 2167 | * calculation in update_event_times() is correct. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2168 | */ |
| 2169 | list_for_each_entry(event, &group_event->sibling_list, group_entry) { |
| 2170 | if (event == partial_group) |
Stephane Eranian | d7842da | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2171 | simulate = true; |
| 2172 | |
| 2173 | if (simulate) { |
| 2174 | event->tstamp_running += now - event->tstamp_stopped; |
| 2175 | event->tstamp_stopped = now; |
| 2176 | } else { |
| 2177 | event_sched_out(event, cpuctx, ctx); |
| 2178 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2179 | } |
Stephane Eranian | 9ffcfa6 | 2010-10-20 15:25:01 +0200 | [diff] [blame] | 2180 | event_sched_out(group_event, cpuctx, ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2181 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 2182 | pmu->cancel_txn(pmu); |
Stephane Eranian | 90151c35 | 2010-05-25 16:23:10 +0200 | [diff] [blame] | 2183 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 2184 | perf_mux_hrtimer_restart(cpuctx); |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 2185 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2186 | return -EAGAIN; |
| 2187 | } |
| 2188 | |
| 2189 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2190 | * Work out whether we can put this event group on the CPU now. |
| 2191 | */ |
| 2192 | static int group_can_go_on(struct perf_event *event, |
| 2193 | struct perf_cpu_context *cpuctx, |
| 2194 | int can_add_hw) |
| 2195 | { |
| 2196 | /* |
| 2197 | * Groups consisting entirely of software events can always go on. |
| 2198 | */ |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 2199 | if (event->group_caps & PERF_EV_CAP_SOFTWARE) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2200 | return 1; |
| 2201 | /* |
| 2202 | * If an exclusive group is already on, no other hardware |
| 2203 | * events can go on. |
| 2204 | */ |
| 2205 | if (cpuctx->exclusive) |
| 2206 | return 0; |
| 2207 | /* |
| 2208 | * If this group is exclusive and there are already |
| 2209 | * events on the CPU, it can't go on. |
| 2210 | */ |
| 2211 | if (event->attr.exclusive && cpuctx->active_oncpu) |
| 2212 | return 0; |
| 2213 | /* |
| 2214 | * Otherwise, try to add it if all previous groups were able |
| 2215 | * to go on. |
| 2216 | */ |
| 2217 | return can_add_hw; |
| 2218 | } |
| 2219 | |
Peter Zijlstra | 9b231d9 | 2017-08-03 15:42:09 +0200 | [diff] [blame^] | 2220 | /* |
| 2221 | * Complement to update_event_times(). This computes the tstamp_* values to |
| 2222 | * continue 'enabled' state from @now, and effectively discards the time |
| 2223 | * between the prior tstamp_stopped and now (as we were in the OFF state, or |
| 2224 | * just switched (context) time base). |
| 2225 | * |
| 2226 | * This further assumes '@event->state == INACTIVE' (we just came from OFF) and |
| 2227 | * cannot have been scheduled in yet. And going into INACTIVE state means |
| 2228 | * '@event->tstamp_stopped = @now'. |
| 2229 | * |
| 2230 | * Thus given the rules of update_event_times(): |
| 2231 | * |
| 2232 | * total_time_enabled = tstamp_stopped - tstamp_enabled |
| 2233 | * total_time_running = tstamp_stopped - tstamp_running |
| 2234 | * |
| 2235 | * We can insert 'tstamp_stopped == now' and reverse them to compute new |
| 2236 | * tstamp_* values. |
| 2237 | */ |
| 2238 | static void __perf_event_enable_time(struct perf_event *event, u64 now) |
| 2239 | { |
| 2240 | WARN_ON_ONCE(event->state != PERF_EVENT_STATE_INACTIVE); |
| 2241 | |
| 2242 | event->tstamp_stopped = now; |
| 2243 | event->tstamp_enabled = now - event->total_time_enabled; |
| 2244 | event->tstamp_running = now - event->total_time_running; |
| 2245 | } |
| 2246 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2247 | static void add_event_to_ctx(struct perf_event *event, |
| 2248 | struct perf_event_context *ctx) |
| 2249 | { |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 2250 | u64 tstamp = perf_event_time(event); |
| 2251 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2252 | list_add_event(event, ctx); |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 2253 | perf_group_attach(event); |
Peter Zijlstra | 9b231d9 | 2017-08-03 15:42:09 +0200 | [diff] [blame^] | 2254 | /* |
| 2255 | * We can be called with event->state == STATE_OFF when we create with |
| 2256 | * .disabled = 1. In that case the IOC_ENABLE will call this function. |
| 2257 | */ |
| 2258 | if (event->state == PERF_EVENT_STATE_INACTIVE) |
| 2259 | __perf_event_enable_time(event, tstamp); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2260 | } |
| 2261 | |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2262 | static void ctx_sched_out(struct perf_event_context *ctx, |
| 2263 | struct perf_cpu_context *cpuctx, |
| 2264 | enum event_type_t event_type); |
Peter Zijlstra | 2c29ef0 | 2011-04-09 21:17:44 +0200 | [diff] [blame] | 2265 | static void |
| 2266 | ctx_sched_in(struct perf_event_context *ctx, |
| 2267 | struct perf_cpu_context *cpuctx, |
| 2268 | enum event_type_t event_type, |
| 2269 | struct task_struct *task); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2270 | |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2271 | static void task_ctx_sched_out(struct perf_cpu_context *cpuctx, |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2272 | struct perf_event_context *ctx, |
| 2273 | enum event_type_t event_type) |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2274 | { |
| 2275 | if (!cpuctx->task_ctx) |
| 2276 | return; |
| 2277 | |
| 2278 | if (WARN_ON_ONCE(ctx != cpuctx->task_ctx)) |
| 2279 | return; |
| 2280 | |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2281 | ctx_sched_out(ctx, cpuctx, event_type); |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2282 | } |
| 2283 | |
Peter Zijlstra | dce5855 | 2011-04-09 21:17:46 +0200 | [diff] [blame] | 2284 | static void perf_event_sched_in(struct perf_cpu_context *cpuctx, |
| 2285 | struct perf_event_context *ctx, |
| 2286 | struct task_struct *task) |
| 2287 | { |
| 2288 | cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task); |
| 2289 | if (ctx) |
| 2290 | ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task); |
| 2291 | cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task); |
| 2292 | if (ctx) |
| 2293 | ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task); |
| 2294 | } |
| 2295 | |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2296 | /* |
| 2297 | * We want to maintain the following priority of scheduling: |
| 2298 | * - CPU pinned (EVENT_CPU | EVENT_PINNED) |
| 2299 | * - task pinned (EVENT_PINNED) |
| 2300 | * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE) |
| 2301 | * - task flexible (EVENT_FLEXIBLE). |
| 2302 | * |
| 2303 | * In order to avoid unscheduling and scheduling back in everything every |
| 2304 | * time an event is added, only do it for the groups of equal priority and |
| 2305 | * below. |
| 2306 | * |
| 2307 | * This can be called after a batch operation on task events, in which case |
| 2308 | * event_type is a bit mask of the types of events involved. For CPU events, |
| 2309 | * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE. |
| 2310 | */ |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 2311 | static void ctx_resched(struct perf_cpu_context *cpuctx, |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2312 | struct perf_event_context *task_ctx, |
| 2313 | enum event_type_t event_type) |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 2314 | { |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2315 | enum event_type_t ctx_event_type = event_type & EVENT_ALL; |
| 2316 | bool cpu_event = !!(event_type & EVENT_CPU); |
| 2317 | |
| 2318 | /* |
| 2319 | * If pinned groups are involved, flexible groups also need to be |
| 2320 | * scheduled out. |
| 2321 | */ |
| 2322 | if (event_type & EVENT_PINNED) |
| 2323 | event_type |= EVENT_FLEXIBLE; |
| 2324 | |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 2325 | perf_pmu_disable(cpuctx->ctx.pmu); |
| 2326 | if (task_ctx) |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2327 | task_ctx_sched_out(cpuctx, task_ctx, event_type); |
| 2328 | |
| 2329 | /* |
| 2330 | * Decide which cpu ctx groups to schedule out based on the types |
| 2331 | * of events that caused rescheduling: |
| 2332 | * - EVENT_CPU: schedule out corresponding groups; |
| 2333 | * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups; |
| 2334 | * - otherwise, do nothing more. |
| 2335 | */ |
| 2336 | if (cpu_event) |
| 2337 | cpu_ctx_sched_out(cpuctx, ctx_event_type); |
| 2338 | else if (ctx_event_type & EVENT_PINNED) |
| 2339 | cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE); |
| 2340 | |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 2341 | perf_event_sched_in(cpuctx, task_ctx, current); |
| 2342 | perf_pmu_enable(cpuctx->ctx.pmu); |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 2343 | } |
| 2344 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2345 | /* |
| 2346 | * Cross CPU call to install and enable a performance event |
| 2347 | * |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2348 | * Very similar to remote_function() + event_function() but cannot assume that |
| 2349 | * things like ctx->is_active and cpuctx->task_ctx are set. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2350 | */ |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2351 | static int __perf_install_in_context(void *info) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2352 | { |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2353 | struct perf_event *event = info; |
| 2354 | struct perf_event_context *ctx = event->ctx; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 2355 | struct perf_cpu_context *cpuctx = __get_cpu_context(ctx); |
Peter Zijlstra | 2c29ef0 | 2011-04-09 21:17:44 +0200 | [diff] [blame] | 2356 | struct perf_event_context *task_ctx = cpuctx->task_ctx; |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2357 | bool reprogram = true; |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2358 | int ret = 0; |
Peter Zijlstra | 2c29ef0 | 2011-04-09 21:17:44 +0200 | [diff] [blame] | 2359 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2360 | raw_spin_lock(&cpuctx->ctx.lock); |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 2361 | if (ctx->task) { |
Peter Zijlstra | b58f6b0 | 2011-06-07 00:23:28 +0200 | [diff] [blame] | 2362 | raw_spin_lock(&ctx->lock); |
| 2363 | task_ctx = ctx; |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2364 | |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2365 | reprogram = (ctx->task == current); |
| 2366 | |
| 2367 | /* |
| 2368 | * If the task is running, it must be running on this CPU, |
| 2369 | * otherwise we cannot reprogram things. |
| 2370 | * |
| 2371 | * If its not running, we don't care, ctx->lock will |
| 2372 | * serialize against it becoming runnable. |
| 2373 | */ |
| 2374 | if (task_curr(ctx->task) && !reprogram) { |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2375 | ret = -ESRCH; |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2376 | goto unlock; |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2377 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2378 | |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2379 | WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx); |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2380 | } else if (task_ctx) { |
| 2381 | raw_spin_lock(&task_ctx->lock); |
Peter Zijlstra | b58f6b0 | 2011-06-07 00:23:28 +0200 | [diff] [blame] | 2382 | } |
| 2383 | |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2384 | if (reprogram) { |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2385 | ctx_sched_out(ctx, cpuctx, EVENT_TIME); |
| 2386 | add_event_to_ctx(event, ctx); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2387 | ctx_resched(cpuctx, task_ctx, get_event_type(event)); |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2388 | } else { |
| 2389 | add_event_to_ctx(event, ctx); |
| 2390 | } |
| 2391 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2392 | unlock: |
Peter Zijlstra | 2c29ef0 | 2011-04-09 21:17:44 +0200 | [diff] [blame] | 2393 | perf_ctx_unlock(cpuctx, task_ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2394 | |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2395 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2396 | } |
| 2397 | |
| 2398 | /* |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2399 | * Attach a performance event to a context. |
| 2400 | * |
| 2401 | * Very similar to event_function_call, see comment there. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2402 | */ |
| 2403 | static void |
| 2404 | perf_install_in_context(struct perf_event_context *ctx, |
| 2405 | struct perf_event *event, |
| 2406 | int cpu) |
| 2407 | { |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2408 | struct task_struct *task = READ_ONCE(ctx->task); |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 2409 | |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2410 | lockdep_assert_held(&ctx->mutex); |
| 2411 | |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 2412 | if (event->cpu != -1) |
| 2413 | event->cpu = cpu; |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 2414 | |
Peter Zijlstra | 0b8f1e2 | 2016-08-04 14:37:24 +0200 | [diff] [blame] | 2415 | /* |
| 2416 | * Ensures that if we can observe event->ctx, both the event and ctx |
| 2417 | * will be 'complete'. See perf_iterate_sb_cpu(). |
| 2418 | */ |
| 2419 | smp_store_release(&event->ctx, ctx); |
| 2420 | |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2421 | if (!task) { |
| 2422 | cpu_function_call(cpu, __perf_install_in_context, event); |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2423 | return; |
| 2424 | } |
Peter Zijlstra | 6f932e5 | 2016-02-24 18:45:43 +0100 | [diff] [blame] | 2425 | |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2426 | /* |
| 2427 | * Should not happen, we validate the ctx is still alive before calling. |
| 2428 | */ |
| 2429 | if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) |
| 2430 | return; |
| 2431 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2432 | /* |
| 2433 | * Installing events is tricky because we cannot rely on ctx->is_active |
| 2434 | * 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] | 2435 | * |
| 2436 | * Instead we use task_curr(), which tells us if the task is running. |
| 2437 | * However, since we use task_curr() outside of rq::lock, we can race |
| 2438 | * against the actual state. This means the result can be wrong. |
| 2439 | * |
| 2440 | * If we get a false positive, we retry, this is harmless. |
| 2441 | * |
| 2442 | * If we get a false negative, things are complicated. If we are after |
| 2443 | * perf_event_context_sched_in() ctx::lock will serialize us, and the |
| 2444 | * value must be correct. If we're before, it doesn't matter since |
| 2445 | * perf_event_context_sched_in() will program the counter. |
| 2446 | * |
| 2447 | * However, this hinges on the remote context switch having observed |
| 2448 | * our task->perf_event_ctxp[] store, such that it will in fact take |
| 2449 | * ctx::lock in perf_event_context_sched_in(). |
| 2450 | * |
| 2451 | * We do this by task_function_call(), if the IPI fails to hit the task |
| 2452 | * we know any future context switch of task must see the |
| 2453 | * perf_event_ctpx[] store. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2454 | */ |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2455 | |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2456 | /* |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2457 | * This smp_mb() orders the task->perf_event_ctxp[] store with the |
| 2458 | * task_cpu() load, such that if the IPI then does not find the task |
| 2459 | * running, a future context switch of that task must observe the |
| 2460 | * store. |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2461 | */ |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2462 | smp_mb(); |
| 2463 | again: |
| 2464 | if (!task_function_call(task, __perf_install_in_context, event)) |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2465 | return; |
| 2466 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2467 | raw_spin_lock_irq(&ctx->lock); |
| 2468 | task = ctx->task; |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2469 | if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) { |
| 2470 | /* |
| 2471 | * Cannot happen because we already checked above (which also |
| 2472 | * cannot happen), and we hold ctx->mutex, which serializes us |
| 2473 | * against perf_event_exit_task_context(). |
| 2474 | */ |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 2475 | raw_spin_unlock_irq(&ctx->lock); |
| 2476 | return; |
| 2477 | } |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2478 | /* |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2479 | * If the task is not running, ctx->lock will avoid it becoming so, |
| 2480 | * thus we can safely install the event. |
Peter Zijlstra | a096309 | 2016-02-24 18:45:50 +0100 | [diff] [blame] | 2481 | */ |
Peter Zijlstra | 63cae12 | 2016-12-09 14:59:00 +0100 | [diff] [blame] | 2482 | if (task_curr(task)) { |
| 2483 | raw_spin_unlock_irq(&ctx->lock); |
| 2484 | goto again; |
| 2485 | } |
| 2486 | add_event_to_ctx(event, ctx); |
| 2487 | raw_spin_unlock_irq(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2488 | } |
| 2489 | |
| 2490 | /* |
| 2491 | * Put a event into inactive state and update time fields. |
| 2492 | * Enabling the leader of a group effectively enables all |
| 2493 | * the group members that aren't explicitly disabled, so we |
| 2494 | * have to update their ->tstamp_enabled also. |
| 2495 | * Note: this works for group members as well as group leaders |
| 2496 | * since the non-leader members' sibling_lists will be empty. |
| 2497 | */ |
Peter Zijlstra | 1d9b482 | 2011-11-23 12:34:20 +0100 | [diff] [blame] | 2498 | static void __perf_event_mark_enabled(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2499 | { |
| 2500 | struct perf_event *sub; |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 2501 | u64 tstamp = perf_event_time(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2502 | |
| 2503 | event->state = PERF_EVENT_STATE_INACTIVE; |
Peter Zijlstra | 9b231d9 | 2017-08-03 15:42:09 +0200 | [diff] [blame^] | 2504 | __perf_event_enable_time(event, tstamp); |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 2505 | list_for_each_entry(sub, &event->sibling_list, group_entry) { |
Peter Zijlstra | 9b231d9 | 2017-08-03 15:42:09 +0200 | [diff] [blame^] | 2506 | /* XXX should not be > INACTIVE if event isn't */ |
Stephane Eranian | 4158755 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 2507 | if (sub->state >= PERF_EVENT_STATE_INACTIVE) |
Peter Zijlstra | 9b231d9 | 2017-08-03 15:42:09 +0200 | [diff] [blame^] | 2508 | __perf_event_enable_time(sub, tstamp); |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 2509 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2510 | } |
| 2511 | |
| 2512 | /* |
| 2513 | * Cross CPU call to enable a performance event |
| 2514 | */ |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2515 | static void __perf_event_enable(struct perf_event *event, |
| 2516 | struct perf_cpu_context *cpuctx, |
| 2517 | struct perf_event_context *ctx, |
| 2518 | void *info) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2519 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2520 | struct perf_event *leader = event->group_leader; |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2521 | struct perf_event_context *task_ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2522 | |
Peter Zijlstra | 6e801e01 | 2016-01-26 12:17:08 +0100 | [diff] [blame] | 2523 | if (event->state >= PERF_EVENT_STATE_INACTIVE || |
| 2524 | event->state <= PERF_EVENT_STATE_ERROR) |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2525 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2526 | |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2527 | if (ctx->is_active) |
| 2528 | ctx_sched_out(ctx, cpuctx, EVENT_TIME); |
| 2529 | |
Peter Zijlstra | 1d9b482 | 2011-11-23 12:34:20 +0100 | [diff] [blame] | 2530 | __perf_event_mark_enabled(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2531 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2532 | if (!ctx->is_active) |
| 2533 | return; |
| 2534 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 2535 | if (!event_filter_match(event)) { |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2536 | if (is_cgroup_event(event)) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 2537 | perf_cgroup_defer_enabled(event); |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2538 | ctx_sched_in(ctx, cpuctx, EVENT_TIME, current); |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2539 | return; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 2540 | } |
Peter Zijlstra | f4c4176 | 2009-12-16 17:55:54 +0100 | [diff] [blame] | 2541 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2542 | /* |
| 2543 | * If the event is in a group and isn't the group leader, |
| 2544 | * then don't put it on unless the group is on. |
| 2545 | */ |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2546 | if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) { |
| 2547 | ctx_sched_in(ctx, cpuctx, EVENT_TIME, current); |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2548 | return; |
Peter Zijlstra | bd2afa4 | 2016-02-24 18:45:49 +0100 | [diff] [blame] | 2549 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2550 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2551 | task_ctx = cpuctx->task_ctx; |
| 2552 | if (ctx->task) |
| 2553 | WARN_ON_ONCE(task_ctx != ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2554 | |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2555 | ctx_resched(cpuctx, task_ctx, get_event_type(event)); |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 2556 | } |
| 2557 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2558 | /* |
| 2559 | * Enable a event. |
| 2560 | * |
| 2561 | * If event->ctx is a cloned context, callers must make sure that |
| 2562 | * every task struct that event->ctx->task could possibly point to |
| 2563 | * remains valid. This condition is satisfied when called through |
| 2564 | * perf_event_for_each_child or perf_event_for_each as described |
| 2565 | * for perf_event_disable. |
| 2566 | */ |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 2567 | static void _perf_event_enable(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2568 | { |
| 2569 | struct perf_event_context *ctx = event->ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2570 | |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 2571 | raw_spin_lock_irq(&ctx->lock); |
Peter Zijlstra | 6e801e01 | 2016-01-26 12:17:08 +0100 | [diff] [blame] | 2572 | if (event->state >= PERF_EVENT_STATE_INACTIVE || |
| 2573 | event->state < PERF_EVENT_STATE_ERROR) { |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 2574 | raw_spin_unlock_irq(&ctx->lock); |
| 2575 | return; |
| 2576 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2577 | |
| 2578 | /* |
| 2579 | * If the event is in error state, clear that first. |
Peter Zijlstra | 7b64801 | 2015-12-03 18:35:21 +0100 | [diff] [blame] | 2580 | * |
| 2581 | * That way, if we see the event in error state below, we know that it |
| 2582 | * has gone back into error state, as distinct from the task having |
| 2583 | * been scheduled away before the cross-call arrived. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2584 | */ |
| 2585 | if (event->state == PERF_EVENT_STATE_ERROR) |
| 2586 | event->state = PERF_EVENT_STATE_OFF; |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 2587 | raw_spin_unlock_irq(&ctx->lock); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2588 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 2589 | event_function_call(event, __perf_event_enable, NULL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2590 | } |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 2591 | |
| 2592 | /* |
| 2593 | * See perf_event_disable(); |
| 2594 | */ |
| 2595 | void perf_event_enable(struct perf_event *event) |
| 2596 | { |
| 2597 | struct perf_event_context *ctx; |
| 2598 | |
| 2599 | ctx = perf_event_ctx_lock(event); |
| 2600 | _perf_event_enable(event); |
| 2601 | perf_event_ctx_unlock(event, ctx); |
| 2602 | } |
Robert Richter | dcfce4a | 2011-10-11 17:11:08 +0200 | [diff] [blame] | 2603 | EXPORT_SYMBOL_GPL(perf_event_enable); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2604 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2605 | struct stop_event_data { |
| 2606 | struct perf_event *event; |
| 2607 | unsigned int restart; |
| 2608 | }; |
| 2609 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 2610 | static int __perf_event_stop(void *info) |
| 2611 | { |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2612 | struct stop_event_data *sd = info; |
| 2613 | struct perf_event *event = sd->event; |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 2614 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2615 | /* if it's already INACTIVE, do nothing */ |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 2616 | if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE) |
| 2617 | return 0; |
| 2618 | |
| 2619 | /* matches smp_wmb() in event_sched_in() */ |
| 2620 | smp_rmb(); |
| 2621 | |
| 2622 | /* |
| 2623 | * There is a window with interrupts enabled before we get here, |
| 2624 | * so we need to check again lest we try to stop another CPU's event. |
| 2625 | */ |
| 2626 | if (READ_ONCE(event->oncpu) != smp_processor_id()) |
| 2627 | return -EAGAIN; |
| 2628 | |
| 2629 | event->pmu->stop(event, PERF_EF_UPDATE); |
| 2630 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2631 | /* |
| 2632 | * May race with the actual stop (through perf_pmu_output_stop()), |
| 2633 | * but it is only used for events with AUX ring buffer, and such |
| 2634 | * events will refuse to restart because of rb::aux_mmap_count==0, |
| 2635 | * see comments in perf_aux_output_begin(). |
| 2636 | * |
| 2637 | * Since this is happening on a event-local CPU, no trace is lost |
| 2638 | * while restarting. |
| 2639 | */ |
| 2640 | if (sd->restart) |
Will Deacon | c9bbdd4 | 2016-08-15 11:42:45 +0100 | [diff] [blame] | 2641 | event->pmu->start(event, 0); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2642 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 2643 | return 0; |
| 2644 | } |
| 2645 | |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 2646 | static int perf_event_stop(struct perf_event *event, int restart) |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2647 | { |
| 2648 | struct stop_event_data sd = { |
| 2649 | .event = event, |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 2650 | .restart = restart, |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 2651 | }; |
| 2652 | int ret = 0; |
| 2653 | |
| 2654 | do { |
| 2655 | if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE) |
| 2656 | return 0; |
| 2657 | |
| 2658 | /* matches smp_wmb() in event_sched_in() */ |
| 2659 | smp_rmb(); |
| 2660 | |
| 2661 | /* |
| 2662 | * We only want to restart ACTIVE events, so if the event goes |
| 2663 | * inactive here (event->oncpu==-1), there's nothing more to do; |
| 2664 | * fall through with ret==-ENXIO. |
| 2665 | */ |
| 2666 | ret = cpu_function_call(READ_ONCE(event->oncpu), |
| 2667 | __perf_event_stop, &sd); |
| 2668 | } while (ret == -EAGAIN); |
| 2669 | |
| 2670 | return ret; |
| 2671 | } |
| 2672 | |
| 2673 | /* |
| 2674 | * In order to contain the amount of racy and tricky in the address filter |
| 2675 | * configuration management, it is a two part process: |
| 2676 | * |
| 2677 | * (p1) when userspace mappings change as a result of (1) or (2) or (3) below, |
| 2678 | * we update the addresses of corresponding vmas in |
| 2679 | * event::addr_filters_offs array and bump the event::addr_filters_gen; |
| 2680 | * (p2) when an event is scheduled in (pmu::add), it calls |
| 2681 | * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync() |
| 2682 | * if the generation has changed since the previous call. |
| 2683 | * |
| 2684 | * If (p1) happens while the event is active, we restart it to force (p2). |
| 2685 | * |
| 2686 | * (1) perf_addr_filters_apply(): adjusting filters' offsets based on |
| 2687 | * pre-existing mappings, called once when new filters arrive via SET_FILTER |
| 2688 | * ioctl; |
| 2689 | * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly |
| 2690 | * registered mapping, called for every new mmap(), with mm::mmap_sem down |
| 2691 | * for reading; |
| 2692 | * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process |
| 2693 | * of exec. |
| 2694 | */ |
| 2695 | void perf_event_addr_filters_sync(struct perf_event *event) |
| 2696 | { |
| 2697 | struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); |
| 2698 | |
| 2699 | if (!has_addr_filter(event)) |
| 2700 | return; |
| 2701 | |
| 2702 | raw_spin_lock(&ifh->lock); |
| 2703 | if (event->addr_filters_gen != event->hw.addr_filters_gen) { |
| 2704 | event->pmu->addr_filters_sync(event); |
| 2705 | event->hw.addr_filters_gen = event->addr_filters_gen; |
| 2706 | } |
| 2707 | raw_spin_unlock(&ifh->lock); |
| 2708 | } |
| 2709 | EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync); |
| 2710 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 2711 | static int _perf_event_refresh(struct perf_event *event, int refresh) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2712 | { |
| 2713 | /* |
| 2714 | * not supported on inherited events |
| 2715 | */ |
Franck Bui-Huu | 2e939d1 | 2010-11-23 16:21:44 +0100 | [diff] [blame] | 2716 | if (event->attr.inherit || !is_sampling_event(event)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2717 | return -EINVAL; |
| 2718 | |
| 2719 | atomic_add(refresh, &event->event_limit); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 2720 | _perf_event_enable(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2721 | |
| 2722 | return 0; |
| 2723 | } |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 2724 | |
| 2725 | /* |
| 2726 | * See perf_event_disable() |
| 2727 | */ |
| 2728 | int perf_event_refresh(struct perf_event *event, int refresh) |
| 2729 | { |
| 2730 | struct perf_event_context *ctx; |
| 2731 | int ret; |
| 2732 | |
| 2733 | ctx = perf_event_ctx_lock(event); |
| 2734 | ret = _perf_event_refresh(event, refresh); |
| 2735 | perf_event_ctx_unlock(event, ctx); |
| 2736 | |
| 2737 | return ret; |
| 2738 | } |
Avi Kivity | 26ca5c1 | 2011-06-29 18:42:37 +0300 | [diff] [blame] | 2739 | EXPORT_SYMBOL_GPL(perf_event_refresh); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2740 | |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 2741 | static void ctx_sched_out(struct perf_event_context *ctx, |
| 2742 | struct perf_cpu_context *cpuctx, |
| 2743 | enum event_type_t event_type) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2744 | { |
Peter Zijlstra | db24d33 | 2011-04-09 21:17:45 +0200 | [diff] [blame] | 2745 | int is_active = ctx->is_active; |
Peter Zijlstra | c994d61 | 2016-01-08 09:20:23 +0100 | [diff] [blame] | 2746 | struct perf_event *event; |
| 2747 | |
| 2748 | lockdep_assert_held(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2749 | |
Peter Zijlstra | 39a4364 | 2016-01-11 12:46:35 +0100 | [diff] [blame] | 2750 | if (likely(!ctx->nr_events)) { |
| 2751 | /* |
| 2752 | * See __perf_remove_from_context(). |
| 2753 | */ |
| 2754 | WARN_ON_ONCE(ctx->is_active); |
| 2755 | if (ctx->task) |
| 2756 | WARN_ON_ONCE(cpuctx->task_ctx); |
| 2757 | return; |
| 2758 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2759 | |
Peter Zijlstra | db24d33 | 2011-04-09 21:17:45 +0200 | [diff] [blame] | 2760 | ctx->is_active &= ~event_type; |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 2761 | if (!(ctx->is_active & EVENT_ALL)) |
| 2762 | ctx->is_active = 0; |
| 2763 | |
Peter Zijlstra | 63e30d3 | 2016-01-08 11:39:10 +0100 | [diff] [blame] | 2764 | if (ctx->task) { |
| 2765 | WARN_ON_ONCE(cpuctx->task_ctx != ctx); |
| 2766 | if (!ctx->is_active) |
| 2767 | cpuctx->task_ctx = NULL; |
| 2768 | } |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 2769 | |
Peter Zijlstra | 8fdc653 | 2016-03-29 09:26:44 +0200 | [diff] [blame] | 2770 | /* |
| 2771 | * Always update time if it was set; not only when it changes. |
| 2772 | * Otherwise we can 'forget' to update time for any but the last |
| 2773 | * context we sched out. For example: |
| 2774 | * |
| 2775 | * ctx_sched_out(.event_type = EVENT_FLEXIBLE) |
| 2776 | * ctx_sched_out(.event_type = EVENT_PINNED) |
| 2777 | * |
| 2778 | * would only update time for the pinned events. |
| 2779 | */ |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 2780 | if (is_active & EVENT_TIME) { |
| 2781 | /* update (and stop) ctx time */ |
| 2782 | update_context_time(ctx); |
| 2783 | update_cgrp_time_from_cpuctx(cpuctx); |
| 2784 | } |
| 2785 | |
Peter Zijlstra | 8fdc653 | 2016-03-29 09:26:44 +0200 | [diff] [blame] | 2786 | is_active ^= ctx->is_active; /* changed bits */ |
| 2787 | |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 2788 | if (!ctx->nr_active || !(is_active & EVENT_ALL)) |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 2789 | return; |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 2790 | |
Peter Zijlstra | 075e0b0 | 2011-04-09 21:17:40 +0200 | [diff] [blame] | 2791 | perf_pmu_disable(ctx->pmu); |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 2792 | if (is_active & EVENT_PINNED) { |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 2793 | list_for_each_entry(event, &ctx->pinned_groups, group_entry) |
| 2794 | group_sched_out(event, cpuctx, ctx); |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 2795 | } |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 2796 | |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 2797 | if (is_active & EVENT_FLEXIBLE) { |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 2798 | list_for_each_entry(event, &ctx->flexible_groups, group_entry) |
Xiao Guangrong | 8c9ed8e | 2009-09-25 13:51:17 +0800 | [diff] [blame] | 2799 | group_sched_out(event, cpuctx, ctx); |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 2800 | } |
Peter Zijlstra | 1b9a644 | 2010-09-07 18:32:22 +0200 | [diff] [blame] | 2801 | perf_pmu_enable(ctx->pmu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2802 | } |
| 2803 | |
| 2804 | /* |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2805 | * Test whether two contexts are equivalent, i.e. whether they have both been |
| 2806 | * cloned from the same version of the same context. |
| 2807 | * |
| 2808 | * Equivalence is measured using a generation number in the context that is |
| 2809 | * incremented on each modification to it; see unclone_ctx(), list_add_event() |
| 2810 | * and list_del_event(). |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2811 | */ |
| 2812 | static int context_equiv(struct perf_event_context *ctx1, |
| 2813 | struct perf_event_context *ctx2) |
| 2814 | { |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 2815 | lockdep_assert_held(&ctx1->lock); |
| 2816 | lockdep_assert_held(&ctx2->lock); |
| 2817 | |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2818 | /* Pinning disables the swap optimization */ |
| 2819 | if (ctx1->pin_count || ctx2->pin_count) |
| 2820 | return 0; |
| 2821 | |
| 2822 | /* If ctx1 is the parent of ctx2 */ |
| 2823 | if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen) |
| 2824 | return 1; |
| 2825 | |
| 2826 | /* If ctx2 is the parent of ctx1 */ |
| 2827 | if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation) |
| 2828 | return 1; |
| 2829 | |
| 2830 | /* |
| 2831 | * If ctx1 and ctx2 have the same parent; we flatten the parent |
| 2832 | * hierarchy, see perf_event_init_context(). |
| 2833 | */ |
| 2834 | if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx && |
| 2835 | ctx1->parent_gen == ctx2->parent_gen) |
| 2836 | return 1; |
| 2837 | |
| 2838 | /* Unmatched */ |
| 2839 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2840 | } |
| 2841 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2842 | static void __perf_event_sync_stat(struct perf_event *event, |
| 2843 | struct perf_event *next_event) |
| 2844 | { |
| 2845 | u64 value; |
| 2846 | |
| 2847 | if (!event->attr.inherit_stat) |
| 2848 | return; |
| 2849 | |
| 2850 | /* |
| 2851 | * Update the event value, we cannot use perf_event_read() |
| 2852 | * because we're in the middle of a context switch and have IRQs |
| 2853 | * disabled, which upsets smp_call_function_single(), however |
| 2854 | * we know the event must be on the current CPU, therefore we |
| 2855 | * don't need to use it. |
| 2856 | */ |
| 2857 | switch (event->state) { |
| 2858 | case PERF_EVENT_STATE_ACTIVE: |
Peter Zijlstra | 3dbebf1 | 2009-11-20 22:19:52 +0100 | [diff] [blame] | 2859 | event->pmu->read(event); |
| 2860 | /* fall-through */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2861 | |
| 2862 | case PERF_EVENT_STATE_INACTIVE: |
| 2863 | update_event_times(event); |
| 2864 | break; |
| 2865 | |
| 2866 | default: |
| 2867 | break; |
| 2868 | } |
| 2869 | |
| 2870 | /* |
| 2871 | * In order to keep per-task stats reliable we need to flip the event |
| 2872 | * values when we flip the contexts. |
| 2873 | */ |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 2874 | value = local64_read(&next_event->count); |
| 2875 | value = local64_xchg(&event->count, value); |
| 2876 | local64_set(&next_event->count, value); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2877 | |
| 2878 | swap(event->total_time_enabled, next_event->total_time_enabled); |
| 2879 | swap(event->total_time_running, next_event->total_time_running); |
| 2880 | |
| 2881 | /* |
| 2882 | * Since we swizzled the values, update the user visible data too. |
| 2883 | */ |
| 2884 | perf_event_update_userpage(event); |
| 2885 | perf_event_update_userpage(next_event); |
| 2886 | } |
| 2887 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2888 | static void perf_event_sync_stat(struct perf_event_context *ctx, |
| 2889 | struct perf_event_context *next_ctx) |
| 2890 | { |
| 2891 | struct perf_event *event, *next_event; |
| 2892 | |
| 2893 | if (!ctx->nr_stat) |
| 2894 | return; |
| 2895 | |
Peter Zijlstra | 02ffdbc | 2009-11-20 22:19:50 +0100 | [diff] [blame] | 2896 | update_context_time(ctx); |
| 2897 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2898 | event = list_first_entry(&ctx->event_list, |
| 2899 | struct perf_event, event_entry); |
| 2900 | |
| 2901 | next_event = list_first_entry(&next_ctx->event_list, |
| 2902 | struct perf_event, event_entry); |
| 2903 | |
| 2904 | while (&event->event_entry != &ctx->event_list && |
| 2905 | &next_event->event_entry != &next_ctx->event_list) { |
| 2906 | |
| 2907 | __perf_event_sync_stat(event, next_event); |
| 2908 | |
| 2909 | event = list_next_entry(event, event_entry); |
| 2910 | next_event = list_next_entry(next_event, event_entry); |
| 2911 | } |
| 2912 | } |
| 2913 | |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 2914 | static void perf_event_context_sched_out(struct task_struct *task, int ctxn, |
| 2915 | struct task_struct *next) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2916 | { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 2917 | struct perf_event_context *ctx = task->perf_event_ctxp[ctxn]; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2918 | struct perf_event_context *next_ctx; |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2919 | struct perf_event_context *parent, *next_parent; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 2920 | struct perf_cpu_context *cpuctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2921 | int do_switch = 1; |
| 2922 | |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 2923 | if (likely(!ctx)) |
| 2924 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2925 | |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 2926 | cpuctx = __get_cpu_context(ctx); |
| 2927 | if (!cpuctx->task_ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2928 | return; |
| 2929 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2930 | rcu_read_lock(); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 2931 | next_ctx = next->perf_event_ctxp[ctxn]; |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2932 | if (!next_ctx) |
| 2933 | goto unlock; |
| 2934 | |
| 2935 | parent = rcu_dereference(ctx->parent_ctx); |
| 2936 | next_parent = rcu_dereference(next_ctx->parent_ctx); |
| 2937 | |
| 2938 | /* If neither context have a parent context; they cannot be clones. */ |
Jiri Olsa | 802c8a6 | 2014-09-12 13:18:28 +0200 | [diff] [blame] | 2939 | if (!parent && !next_parent) |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2940 | goto unlock; |
| 2941 | |
| 2942 | if (next_parent == ctx || next_ctx == parent || next_parent == parent) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2943 | /* |
| 2944 | * Looks like the two contexts are clones, so we might be |
| 2945 | * able to optimize the context switch. We lock both |
| 2946 | * contexts and check that they are clones under the |
| 2947 | * lock (including re-checking that neither has been |
| 2948 | * uncloned in the meantime). It doesn't matter which |
| 2949 | * order we take the locks because no other cpu could |
| 2950 | * be trying to lock both of these tasks. |
| 2951 | */ |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 2952 | raw_spin_lock(&ctx->lock); |
| 2953 | raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2954 | if (context_equiv(ctx, next_ctx)) { |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2955 | WRITE_ONCE(ctx->task, next); |
| 2956 | WRITE_ONCE(next_ctx->task, task); |
Yan, Zheng | 5a158c3 | 2014-11-04 21:56:02 -0500 | [diff] [blame] | 2957 | |
| 2958 | swap(ctx->task_ctx_data, next_ctx->task_ctx_data); |
| 2959 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 2960 | /* |
| 2961 | * RCU_INIT_POINTER here is safe because we've not |
| 2962 | * modified the ctx and the above modification of |
| 2963 | * ctx->task and ctx->task_ctx_data are immaterial |
| 2964 | * since those values are always verified under |
| 2965 | * ctx->lock which we're now holding. |
| 2966 | */ |
| 2967 | RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], next_ctx); |
| 2968 | RCU_INIT_POINTER(next->perf_event_ctxp[ctxn], ctx); |
| 2969 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2970 | do_switch = 0; |
| 2971 | |
| 2972 | perf_event_sync_stat(ctx, next_ctx); |
| 2973 | } |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 2974 | raw_spin_unlock(&next_ctx->lock); |
| 2975 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2976 | } |
Peter Zijlstra | 5a3126d | 2013-10-07 17:12:48 +0200 | [diff] [blame] | 2977 | unlock: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2978 | rcu_read_unlock(); |
| 2979 | |
| 2980 | if (do_switch) { |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 2981 | raw_spin_lock(&ctx->lock); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 2982 | task_ctx_sched_out(cpuctx, ctx, EVENT_ALL); |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 2983 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 2984 | } |
| 2985 | } |
| 2986 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 2987 | static DEFINE_PER_CPU(struct list_head, sched_cb_list); |
| 2988 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 2989 | void perf_sched_cb_dec(struct pmu *pmu) |
| 2990 | { |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 2991 | struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context); |
| 2992 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 2993 | this_cpu_dec(perf_sched_cb_usages); |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 2994 | |
| 2995 | if (!--cpuctx->sched_cb_usage) |
| 2996 | list_del(&cpuctx->sched_cb_entry); |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 2997 | } |
| 2998 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 2999 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3000 | void perf_sched_cb_inc(struct pmu *pmu) |
| 3001 | { |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3002 | struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context); |
| 3003 | |
| 3004 | if (!cpuctx->sched_cb_usage++) |
| 3005 | list_add(&cpuctx->sched_cb_entry, this_cpu_ptr(&sched_cb_list)); |
| 3006 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3007 | this_cpu_inc(perf_sched_cb_usages); |
| 3008 | } |
| 3009 | |
| 3010 | /* |
| 3011 | * This function provides the context switch callback to the lower code |
| 3012 | * layer. It is invoked ONLY when the context switch callback is enabled. |
Peter Zijlstra | 09e61b4f | 2016-07-06 18:02:43 +0200 | [diff] [blame] | 3013 | * |
| 3014 | * This callback is relevant even to per-cpu events; for example multi event |
| 3015 | * PEBS requires this to provide PID/TID information. This requires we flush |
| 3016 | * all queued PEBS records before we context switch to a new task. |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3017 | */ |
| 3018 | static void perf_pmu_sched_task(struct task_struct *prev, |
| 3019 | struct task_struct *next, |
| 3020 | bool sched_in) |
| 3021 | { |
| 3022 | struct perf_cpu_context *cpuctx; |
| 3023 | struct pmu *pmu; |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3024 | |
| 3025 | if (prev == next) |
| 3026 | return; |
| 3027 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3028 | 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] | 3029 | pmu = cpuctx->ctx.pmu; /* software PMUs will not have sched_task */ |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3030 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3031 | if (WARN_ON_ONCE(!pmu->sched_task)) |
| 3032 | continue; |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3033 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3034 | perf_ctx_lock(cpuctx, cpuctx->task_ctx); |
| 3035 | perf_pmu_disable(pmu); |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3036 | |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 3037 | pmu->sched_task(cpuctx->task_ctx, sched_in); |
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 | perf_pmu_enable(pmu); |
| 3040 | perf_ctx_unlock(cpuctx, cpuctx->task_ctx); |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3041 | } |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3042 | } |
| 3043 | |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 3044 | static void perf_event_switch(struct task_struct *task, |
| 3045 | struct task_struct *next_prev, bool sched_in); |
| 3046 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3047 | #define for_each_task_context_nr(ctxn) \ |
| 3048 | for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++) |
| 3049 | |
| 3050 | /* |
| 3051 | * Called from scheduler to remove the events of the current task, |
| 3052 | * with interrupts disabled. |
| 3053 | * |
| 3054 | * We stop each event and update the event value in event->count. |
| 3055 | * |
| 3056 | * This does not protect us against NMI, but disable() |
| 3057 | * sets the disabled bit in the control field of event _before_ |
| 3058 | * accessing the event control register. If a NMI hits, then it will |
| 3059 | * not restart the event. |
| 3060 | */ |
Jiri Olsa | ab0cce5 | 2012-05-23 13:13:02 +0200 | [diff] [blame] | 3061 | void __perf_event_task_sched_out(struct task_struct *task, |
| 3062 | struct task_struct *next) |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3063 | { |
| 3064 | int ctxn; |
| 3065 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3066 | if (__this_cpu_read(perf_sched_cb_usages)) |
| 3067 | perf_pmu_sched_task(task, next, false); |
| 3068 | |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 3069 | if (atomic_read(&nr_switch_events)) |
| 3070 | perf_event_switch(task, next, false); |
| 3071 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3072 | for_each_task_context_nr(ctxn) |
| 3073 | perf_event_context_sched_out(task, ctxn, next); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3074 | |
| 3075 | /* |
| 3076 | * if cgroup events exist on this CPU, then we need |
| 3077 | * to check if we have to switch out PMU state. |
| 3078 | * cgroup event are system-wide mode only |
| 3079 | */ |
Christoph Lameter | 4a32fea | 2014-08-17 12:30:27 -0500 | [diff] [blame] | 3080 | if (atomic_read(this_cpu_ptr(&perf_cgroup_events))) |
Stephane Eranian | a8d757e | 2011-08-25 15:58:03 +0200 | [diff] [blame] | 3081 | perf_cgroup_sched_out(task, next); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3082 | } |
| 3083 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3084 | /* |
| 3085 | * Called with IRQs disabled |
| 3086 | */ |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3087 | static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx, |
| 3088 | enum event_type_t event_type) |
| 3089 | { |
| 3090 | ctx_sched_out(&cpuctx->ctx, cpuctx, event_type); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3091 | } |
| 3092 | |
| 3093 | static void |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3094 | ctx_pinned_sched_in(struct perf_event_context *ctx, |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3095 | struct perf_cpu_context *cpuctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3096 | { |
| 3097 | struct perf_event *event; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3098 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 3099 | list_for_each_entry(event, &ctx->pinned_groups, group_entry) { |
| 3100 | if (event->state <= PERF_EVENT_STATE_OFF) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3101 | continue; |
Stephane Eranian | 5632ab1 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 3102 | if (!event_filter_match(event)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3103 | continue; |
| 3104 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3105 | /* may need to reset tstamp_enabled */ |
| 3106 | if (is_cgroup_event(event)) |
| 3107 | perf_cgroup_mark_enabled(event, ctx); |
| 3108 | |
Xiao Guangrong | 8c9ed8e | 2009-09-25 13:51:17 +0800 | [diff] [blame] | 3109 | if (group_can_go_on(event, cpuctx, 1)) |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3110 | group_sched_in(event, cpuctx, ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3111 | |
| 3112 | /* |
| 3113 | * If this pinned group hasn't been scheduled, |
| 3114 | * put it in error state. |
| 3115 | */ |
| 3116 | if (event->state == PERF_EVENT_STATE_INACTIVE) { |
| 3117 | update_group_times(event); |
| 3118 | event->state = PERF_EVENT_STATE_ERROR; |
| 3119 | } |
| 3120 | } |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3121 | } |
| 3122 | |
| 3123 | static void |
| 3124 | ctx_flexible_sched_in(struct perf_event_context *ctx, |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3125 | struct perf_cpu_context *cpuctx) |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3126 | { |
| 3127 | struct perf_event *event; |
| 3128 | int can_add_hw = 1; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3129 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 3130 | list_for_each_entry(event, &ctx->flexible_groups, group_entry) { |
| 3131 | /* Ignore events in OFF or ERROR state */ |
| 3132 | if (event->state <= PERF_EVENT_STATE_OFF) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3133 | continue; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3134 | /* |
| 3135 | * Listen to the 'cpu' scheduling filter constraint |
| 3136 | * of events: |
| 3137 | */ |
Stephane Eranian | 5632ab1 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 3138 | if (!event_filter_match(event)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3139 | continue; |
| 3140 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3141 | /* may need to reset tstamp_enabled */ |
| 3142 | if (is_cgroup_event(event)) |
| 3143 | perf_cgroup_mark_enabled(event, ctx); |
| 3144 | |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 3145 | if (group_can_go_on(event, cpuctx, can_add_hw)) { |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3146 | if (group_sched_in(event, cpuctx, ctx)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3147 | can_add_hw = 0; |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 3148 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3149 | } |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3150 | } |
| 3151 | |
| 3152 | static void |
| 3153 | ctx_sched_in(struct perf_event_context *ctx, |
| 3154 | struct perf_cpu_context *cpuctx, |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3155 | enum event_type_t event_type, |
| 3156 | struct task_struct *task) |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3157 | { |
Peter Zijlstra | db24d33 | 2011-04-09 21:17:45 +0200 | [diff] [blame] | 3158 | int is_active = ctx->is_active; |
Peter Zijlstra | c994d61 | 2016-01-08 09:20:23 +0100 | [diff] [blame] | 3159 | u64 now; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3160 | |
Peter Zijlstra | c994d61 | 2016-01-08 09:20:23 +0100 | [diff] [blame] | 3161 | lockdep_assert_held(&ctx->lock); |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3162 | |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3163 | if (likely(!ctx->nr_events)) |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 3164 | return; |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3165 | |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 3166 | ctx->is_active |= (event_type | EVENT_TIME); |
Peter Zijlstra | 63e30d3 | 2016-01-08 11:39:10 +0100 | [diff] [blame] | 3167 | if (ctx->task) { |
| 3168 | if (!is_active) |
| 3169 | cpuctx->task_ctx = ctx; |
| 3170 | else |
| 3171 | WARN_ON_ONCE(cpuctx->task_ctx != ctx); |
| 3172 | } |
| 3173 | |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 3174 | is_active ^= ctx->is_active; /* changed bits */ |
| 3175 | |
| 3176 | if (is_active & EVENT_TIME) { |
| 3177 | /* start ctx time */ |
| 3178 | now = perf_clock(); |
| 3179 | ctx->timestamp = now; |
| 3180 | perf_cgroup_set_timestamp(task, ctx); |
| 3181 | } |
| 3182 | |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3183 | /* |
| 3184 | * First go through the list and put on any pinned groups |
| 3185 | * in order to give them the best chance of going on. |
| 3186 | */ |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 3187 | if (is_active & EVENT_PINNED) |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3188 | ctx_pinned_sched_in(ctx, cpuctx); |
Frederic Weisbecker | 5b0311e | 2010-01-17 11:59:13 +0100 | [diff] [blame] | 3189 | |
| 3190 | /* Then walk through the lower prio flexible groups */ |
Peter Zijlstra | 3cbaa59 | 2016-02-24 18:45:47 +0100 | [diff] [blame] | 3191 | if (is_active & EVENT_FLEXIBLE) |
Peter Zijlstra | 6e37738 | 2010-02-11 13:21:58 +0100 | [diff] [blame] | 3192 | ctx_flexible_sched_in(ctx, cpuctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3193 | } |
| 3194 | |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3195 | static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx, |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3196 | enum event_type_t event_type, |
| 3197 | struct task_struct *task) |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3198 | { |
| 3199 | struct perf_event_context *ctx = &cpuctx->ctx; |
| 3200 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3201 | ctx_sched_in(ctx, cpuctx, event_type, task); |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3202 | } |
| 3203 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3204 | static void perf_event_context_sched_in(struct perf_event_context *ctx, |
| 3205 | struct task_struct *task) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3206 | { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3207 | struct perf_cpu_context *cpuctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3208 | |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 3209 | cpuctx = __get_cpu_context(ctx); |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3210 | if (cpuctx->task_ctx == ctx) |
| 3211 | return; |
| 3212 | |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 3213 | perf_ctx_lock(cpuctx, ctx); |
Peter Zijlstra | 1b9a644 | 2010-09-07 18:32:22 +0200 | [diff] [blame] | 3214 | perf_pmu_disable(ctx->pmu); |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3215 | /* |
| 3216 | * We want to keep the following priority order: |
| 3217 | * cpu pinned (that don't need to move), task pinned, |
| 3218 | * cpu flexible, task flexible. |
Alexander Shishkin | fe45baf | 2017-01-19 18:43:29 +0200 | [diff] [blame] | 3219 | * |
| 3220 | * However, if task's ctx is not carrying any pinned |
| 3221 | * events, no need to flip the cpuctx's events around. |
Frederic Weisbecker | 329c0e0 | 2010-01-17 12:56:05 +0100 | [diff] [blame] | 3222 | */ |
Alexander Shishkin | fe45baf | 2017-01-19 18:43:29 +0200 | [diff] [blame] | 3223 | if (!list_empty(&ctx->pinned_groups)) |
| 3224 | cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE); |
Peter Zijlstra | 63e30d3 | 2016-01-08 11:39:10 +0100 | [diff] [blame] | 3225 | perf_event_sched_in(cpuctx, ctx, task); |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 3226 | perf_pmu_enable(ctx->pmu); |
| 3227 | perf_ctx_unlock(cpuctx, ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3228 | } |
| 3229 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3230 | /* |
| 3231 | * Called from scheduler to add the events of the current task |
| 3232 | * with interrupts disabled. |
| 3233 | * |
| 3234 | * We restore the event value and then enable it. |
| 3235 | * |
| 3236 | * This does not protect us against NMI, but enable() |
| 3237 | * sets the enabled bit in the control field of event _before_ |
| 3238 | * accessing the event control register. If a NMI hits, then it will |
| 3239 | * keep the event running. |
| 3240 | */ |
Jiri Olsa | ab0cce5 | 2012-05-23 13:13:02 +0200 | [diff] [blame] | 3241 | void __perf_event_task_sched_in(struct task_struct *prev, |
| 3242 | struct task_struct *task) |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3243 | { |
| 3244 | struct perf_event_context *ctx; |
| 3245 | int ctxn; |
| 3246 | |
Peter Zijlstra | 7e41d17 | 2016-01-08 09:21:40 +0100 | [diff] [blame] | 3247 | /* |
| 3248 | * If cgroup events exist on this CPU, then we need to check if we have |
| 3249 | * to switch in PMU state; cgroup event are system-wide mode only. |
| 3250 | * |
| 3251 | * Since cgroup events are CPU events, we must schedule these in before |
| 3252 | * we schedule in the task events. |
| 3253 | */ |
| 3254 | if (atomic_read(this_cpu_ptr(&perf_cgroup_events))) |
| 3255 | perf_cgroup_sched_in(prev, task); |
| 3256 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3257 | for_each_task_context_nr(ctxn) { |
| 3258 | ctx = task->perf_event_ctxp[ctxn]; |
| 3259 | if (likely(!ctx)) |
| 3260 | continue; |
| 3261 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3262 | perf_event_context_sched_in(ctx, task); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3263 | } |
Stephane Eranian | d010b33 | 2012-02-09 23:21:00 +0100 | [diff] [blame] | 3264 | |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 3265 | if (atomic_read(&nr_switch_events)) |
| 3266 | perf_event_switch(task, prev, true); |
| 3267 | |
Yan, Zheng | ba53250 | 2014-11-04 21:55:58 -0500 | [diff] [blame] | 3268 | if (__this_cpu_read(perf_sched_cb_usages)) |
| 3269 | perf_pmu_sched_task(prev, task, true); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3270 | } |
| 3271 | |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3272 | static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count) |
| 3273 | { |
| 3274 | u64 frequency = event->attr.sample_freq; |
| 3275 | u64 sec = NSEC_PER_SEC; |
| 3276 | u64 divisor, dividend; |
| 3277 | |
| 3278 | int count_fls, nsec_fls, frequency_fls, sec_fls; |
| 3279 | |
| 3280 | count_fls = fls64(count); |
| 3281 | nsec_fls = fls64(nsec); |
| 3282 | frequency_fls = fls64(frequency); |
| 3283 | sec_fls = 30; |
| 3284 | |
| 3285 | /* |
| 3286 | * We got @count in @nsec, with a target of sample_freq HZ |
| 3287 | * the target period becomes: |
| 3288 | * |
| 3289 | * @count * 10^9 |
| 3290 | * period = ------------------- |
| 3291 | * @nsec * sample_freq |
| 3292 | * |
| 3293 | */ |
| 3294 | |
| 3295 | /* |
| 3296 | * Reduce accuracy by one bit such that @a and @b converge |
| 3297 | * to a similar magnitude. |
| 3298 | */ |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3299 | #define REDUCE_FLS(a, b) \ |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3300 | do { \ |
| 3301 | if (a##_fls > b##_fls) { \ |
| 3302 | a >>= 1; \ |
| 3303 | a##_fls--; \ |
| 3304 | } else { \ |
| 3305 | b >>= 1; \ |
| 3306 | b##_fls--; \ |
| 3307 | } \ |
| 3308 | } while (0) |
| 3309 | |
| 3310 | /* |
| 3311 | * Reduce accuracy until either term fits in a u64, then proceed with |
| 3312 | * the other, so that finally we can do a u64/u64 division. |
| 3313 | */ |
| 3314 | while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) { |
| 3315 | REDUCE_FLS(nsec, frequency); |
| 3316 | REDUCE_FLS(sec, count); |
| 3317 | } |
| 3318 | |
| 3319 | if (count_fls + sec_fls > 64) { |
| 3320 | divisor = nsec * frequency; |
| 3321 | |
| 3322 | while (count_fls + sec_fls > 64) { |
| 3323 | REDUCE_FLS(count, sec); |
| 3324 | divisor >>= 1; |
| 3325 | } |
| 3326 | |
| 3327 | dividend = count * sec; |
| 3328 | } else { |
| 3329 | dividend = count * sec; |
| 3330 | |
| 3331 | while (nsec_fls + frequency_fls > 64) { |
| 3332 | REDUCE_FLS(nsec, frequency); |
| 3333 | dividend >>= 1; |
| 3334 | } |
| 3335 | |
| 3336 | divisor = nsec * frequency; |
| 3337 | } |
| 3338 | |
Peter Zijlstra | f6ab91ad | 2010-06-04 15:18:01 +0200 | [diff] [blame] | 3339 | if (!divisor) |
| 3340 | return dividend; |
| 3341 | |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3342 | return div64_u64(dividend, divisor); |
| 3343 | } |
| 3344 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3345 | static DEFINE_PER_CPU(int, perf_throttled_count); |
| 3346 | static DEFINE_PER_CPU(u64, perf_throttled_seq); |
| 3347 | |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3348 | 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] | 3349 | { |
| 3350 | struct hw_perf_event *hwc = &event->hw; |
Peter Zijlstra | f6ab91ad | 2010-06-04 15:18:01 +0200 | [diff] [blame] | 3351 | s64 period, sample_period; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3352 | s64 delta; |
| 3353 | |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3354 | period = perf_calculate_period(event, nsec, count); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3355 | |
| 3356 | delta = (s64)(period - hwc->sample_period); |
| 3357 | delta = (delta + 7) / 8; /* low pass filter */ |
| 3358 | |
| 3359 | sample_period = hwc->sample_period + delta; |
| 3360 | |
| 3361 | if (!sample_period) |
| 3362 | sample_period = 1; |
| 3363 | |
| 3364 | hwc->sample_period = sample_period; |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3365 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 3366 | if (local64_read(&hwc->period_left) > 8*sample_period) { |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3367 | if (disable) |
| 3368 | event->pmu->stop(event, PERF_EF_UPDATE); |
| 3369 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 3370 | local64_set(&hwc->period_left, 0); |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3371 | |
| 3372 | if (disable) |
| 3373 | event->pmu->start(event, PERF_EF_RELOAD); |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3374 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3375 | } |
| 3376 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3377 | /* |
| 3378 | * combine freq adjustment with unthrottling to avoid two passes over the |
| 3379 | * events. At the same time, make sure, having freq events does not change |
| 3380 | * the rate of unthrottling as that would introduce bias. |
| 3381 | */ |
| 3382 | static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx, |
| 3383 | int needs_unthr) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3384 | { |
| 3385 | struct perf_event *event; |
| 3386 | struct hw_perf_event *hwc; |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3387 | u64 now, period = TICK_NSEC; |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3388 | s64 delta; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3389 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3390 | /* |
| 3391 | * only need to iterate over all events iff: |
| 3392 | * - context have events in frequency mode (needs freq adjust) |
| 3393 | * - there are events to unthrottle on this cpu |
| 3394 | */ |
| 3395 | if (!(ctx->nr_freq || needs_unthr)) |
Peter Zijlstra | 0f5a260 | 2011-11-16 14:38:16 +0100 | [diff] [blame] | 3396 | return; |
| 3397 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3398 | raw_spin_lock(&ctx->lock); |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3399 | perf_pmu_disable(ctx->pmu); |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3400 | |
Paul Mackerras | 03541f8 | 2009-10-14 16:58:03 +1100 | [diff] [blame] | 3401 | list_for_each_entry_rcu(event, &ctx->event_list, event_entry) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3402 | if (event->state != PERF_EVENT_STATE_ACTIVE) |
| 3403 | continue; |
| 3404 | |
Stephane Eranian | 5632ab1 | 2011-01-03 18:20:01 +0200 | [diff] [blame] | 3405 | if (!event_filter_match(event)) |
Peter Zijlstra | 5d27c23 | 2009-12-17 13:16:32 +0100 | [diff] [blame] | 3406 | continue; |
| 3407 | |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 3408 | perf_pmu_disable(event->pmu); |
| 3409 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3410 | hwc = &event->hw; |
| 3411 | |
Jiri Olsa | ae23bff | 2013-08-24 16:45:54 +0200 | [diff] [blame] | 3412 | if (hwc->interrupts == MAX_INTERRUPTS) { |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3413 | hwc->interrupts = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3414 | perf_log_throttle(event, 1); |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 3415 | event->pmu->start(event, 0); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3416 | } |
| 3417 | |
| 3418 | if (!event->attr.freq || !event->attr.sample_freq) |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 3419 | goto next; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3420 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3421 | /* |
| 3422 | * stop the event and update event->count |
| 3423 | */ |
| 3424 | event->pmu->stop(event, PERF_EF_UPDATE); |
| 3425 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 3426 | now = local64_read(&event->count); |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3427 | delta = now - hwc->freq_count_stamp; |
| 3428 | hwc->freq_count_stamp = now; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3429 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3430 | /* |
| 3431 | * restart the event |
| 3432 | * reload only if value has changed |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3433 | * we have stopped the event so tell that |
| 3434 | * to perf_adjust_period() to avoid stopping it |
| 3435 | * twice. |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3436 | */ |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 3437 | if (delta > 0) |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3438 | perf_adjust_period(event, period, delta, false); |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3439 | |
| 3440 | event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0); |
Alexander Shishkin | 4437727 | 2013-12-16 14:17:36 +0200 | [diff] [blame] | 3441 | next: |
| 3442 | perf_pmu_enable(event->pmu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3443 | } |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3444 | |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 3445 | perf_pmu_enable(ctx->pmu); |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3446 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3447 | } |
| 3448 | |
| 3449 | /* |
| 3450 | * Round-robin a context's events: |
| 3451 | */ |
| 3452 | static void rotate_ctx(struct perf_event_context *ctx) |
| 3453 | { |
Thomas Gleixner | dddd337 | 2010-11-24 10:05:55 +0100 | [diff] [blame] | 3454 | /* |
| 3455 | * Rotate the first entry last of non-pinned groups. Rotation might be |
| 3456 | * disabled by the inheritance code. |
| 3457 | */ |
| 3458 | if (!ctx->rotate_disable) |
| 3459 | list_rotate_left(&ctx->flexible_groups); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3460 | } |
| 3461 | |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 3462 | static int perf_rotate_context(struct perf_cpu_context *cpuctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3463 | { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3464 | struct perf_event_context *ctx = NULL; |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 3465 | int rotate = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3466 | |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 3467 | if (cpuctx->ctx.nr_events) { |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 3468 | if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active) |
| 3469 | rotate = 1; |
| 3470 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3471 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3472 | ctx = cpuctx->task_ctx; |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 3473 | if (ctx && ctx->nr_events) { |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 3474 | if (ctx->nr_events != ctx->nr_active) |
| 3475 | rotate = 1; |
| 3476 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3477 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3478 | if (!rotate) |
Peter Zijlstra | 0f5a260 | 2011-11-16 14:38:16 +0100 | [diff] [blame] | 3479 | goto done; |
| 3480 | |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 3481 | perf_ctx_lock(cpuctx, cpuctx->task_ctx); |
Peter Zijlstra | 1b9a644 | 2010-09-07 18:32:22 +0200 | [diff] [blame] | 3482 | perf_pmu_disable(cpuctx->ctx.pmu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3483 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3484 | cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE); |
| 3485 | if (ctx) |
| 3486 | ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE); |
Peter Zijlstra | d4944a0 | 2010-03-08 13:51:20 +0100 | [diff] [blame] | 3487 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3488 | rotate_ctx(&cpuctx->ctx); |
| 3489 | if (ctx) |
| 3490 | rotate_ctx(ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3491 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3492 | perf_event_sched_in(cpuctx, ctx, current); |
Peter Zijlstra | 0f5a260 | 2011-11-16 14:38:16 +0100 | [diff] [blame] | 3493 | |
| 3494 | perf_pmu_enable(cpuctx->ctx.pmu); |
| 3495 | perf_ctx_unlock(cpuctx, cpuctx->task_ctx); |
Peter Zijlstra | b5ab4cd | 2010-09-06 16:32:21 +0200 | [diff] [blame] | 3496 | done: |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 3497 | |
| 3498 | return rotate; |
Peter Zijlstra | e9d2b06 | 2010-09-17 11:28:50 +0200 | [diff] [blame] | 3499 | } |
| 3500 | |
| 3501 | void perf_event_task_tick(void) |
| 3502 | { |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 3503 | struct list_head *head = this_cpu_ptr(&active_ctx_list); |
| 3504 | struct perf_event_context *ctx, *tmp; |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3505 | int throttled; |
Peter Zijlstra | e9d2b06 | 2010-09-17 11:28:50 +0200 | [diff] [blame] | 3506 | |
| 3507 | WARN_ON(!irqs_disabled()); |
| 3508 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3509 | __this_cpu_inc(perf_throttled_seq); |
| 3510 | throttled = __this_cpu_xchg(perf_throttled_count, 0); |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 3511 | tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS); |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3512 | |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 3513 | list_for_each_entry_safe(ctx, tmp, head, active_ctx_list) |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 3514 | perf_adjust_freq_unthr_context(ctx, throttled); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3515 | } |
| 3516 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 3517 | static int event_enable_on_exec(struct perf_event *event, |
| 3518 | struct perf_event_context *ctx) |
| 3519 | { |
| 3520 | if (!event->attr.enable_on_exec) |
| 3521 | return 0; |
| 3522 | |
| 3523 | event->attr.enable_on_exec = 0; |
| 3524 | if (event->state >= PERF_EVENT_STATE_INACTIVE) |
| 3525 | return 0; |
| 3526 | |
Peter Zijlstra | 1d9b482 | 2011-11-23 12:34:20 +0100 | [diff] [blame] | 3527 | __perf_event_mark_enabled(event); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 3528 | |
| 3529 | return 1; |
| 3530 | } |
| 3531 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3532 | /* |
| 3533 | * Enable all of a task's events that have been marked enable-on-exec. |
| 3534 | * This expects task == current. |
| 3535 | */ |
Peter Zijlstra | c127449 | 2015-12-10 20:57:40 +0100 | [diff] [blame] | 3536 | static void perf_event_enable_on_exec(int ctxn) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3537 | { |
Peter Zijlstra | c127449 | 2015-12-10 20:57:40 +0100 | [diff] [blame] | 3538 | struct perf_event_context *ctx, *clone_ctx = NULL; |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 3539 | enum event_type_t event_type = 0; |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3540 | struct perf_cpu_context *cpuctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3541 | struct perf_event *event; |
| 3542 | unsigned long flags; |
| 3543 | int enabled = 0; |
| 3544 | |
| 3545 | local_irq_save(flags); |
Peter Zijlstra | c127449 | 2015-12-10 20:57:40 +0100 | [diff] [blame] | 3546 | ctx = current->perf_event_ctxp[ctxn]; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3547 | if (!ctx || !ctx->nr_events) |
| 3548 | goto out; |
| 3549 | |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3550 | cpuctx = __get_cpu_context(ctx); |
| 3551 | perf_ctx_lock(cpuctx, ctx); |
Peter Zijlstra | 7fce250 | 2016-02-24 18:45:48 +0100 | [diff] [blame] | 3552 | ctx_sched_out(ctx, cpuctx, EVENT_TIME); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 3553 | list_for_each_entry(event, &ctx->event_list, event_entry) { |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3554 | enabled |= event_enable_on_exec(event, ctx); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 3555 | event_type |= get_event_type(event); |
| 3556 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3557 | |
| 3558 | /* |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3559 | * Unclone and reschedule this context if we enabled any event. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3560 | */ |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3561 | if (enabled) { |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 3562 | clone_ctx = unclone_ctx(ctx); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 3563 | ctx_resched(cpuctx, ctx, event_type); |
Peter Zijlstra | 7bbba0e | 2017-02-15 16:12:20 +0100 | [diff] [blame] | 3564 | } else { |
| 3565 | ctx_sched_in(ctx, cpuctx, EVENT_TIME, current); |
Peter Zijlstra | 3e34950 | 2016-01-08 10:01:18 +0100 | [diff] [blame] | 3566 | } |
| 3567 | perf_ctx_unlock(cpuctx, ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3568 | |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 3569 | out: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3570 | local_irq_restore(flags); |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 3571 | |
| 3572 | if (clone_ctx) |
| 3573 | put_ctx(clone_ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3574 | } |
| 3575 | |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3576 | struct perf_read_data { |
| 3577 | struct perf_event *event; |
| 3578 | bool group; |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 3579 | int ret; |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3580 | }; |
| 3581 | |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3582 | 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] | 3583 | { |
David Carrillo-Cisneros | d6a2f903 | 2016-08-17 13:55:06 -0700 | [diff] [blame] | 3584 | u16 local_pkg, event_pkg; |
| 3585 | |
| 3586 | if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) { |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3587 | int local_cpu = smp_processor_id(); |
| 3588 | |
| 3589 | event_pkg = topology_physical_package_id(event_cpu); |
| 3590 | local_pkg = topology_physical_package_id(local_cpu); |
David Carrillo-Cisneros | d6a2f903 | 2016-08-17 13:55:06 -0700 | [diff] [blame] | 3591 | |
| 3592 | if (event_pkg == local_pkg) |
| 3593 | return local_cpu; |
| 3594 | } |
| 3595 | |
| 3596 | return event_cpu; |
| 3597 | } |
| 3598 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3599 | /* |
| 3600 | * Cross CPU call to read the hardware event |
| 3601 | */ |
| 3602 | static void __perf_event_read(void *info) |
| 3603 | { |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3604 | struct perf_read_data *data = info; |
| 3605 | struct perf_event *sub, *event = data->event; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3606 | struct perf_event_context *ctx = event->ctx; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 3607 | struct perf_cpu_context *cpuctx = __get_cpu_context(ctx); |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3608 | struct pmu *pmu = event->pmu; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3609 | |
| 3610 | /* |
| 3611 | * If this is a task context, we need to check whether it is |
| 3612 | * the current task context of this cpu. If not it has been |
| 3613 | * scheduled out before the smp call arrived. In that case |
| 3614 | * event->count would have been updated to a recent sample |
| 3615 | * when the event was scheduled out. |
| 3616 | */ |
| 3617 | if (ctx->task && cpuctx->task_ctx != ctx) |
| 3618 | return; |
| 3619 | |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3620 | raw_spin_lock(&ctx->lock); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3621 | if (ctx->is_active) { |
Peter Zijlstra | 542e72f | 2011-01-26 15:38:35 +0100 | [diff] [blame] | 3622 | update_context_time(ctx); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3623 | update_cgrp_time_from_event(event); |
| 3624 | } |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3625 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3626 | update_event_times(event); |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3627 | if (event->state != PERF_EVENT_STATE_ACTIVE) |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3628 | goto unlock; |
| 3629 | |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3630 | if (!data->group) { |
| 3631 | pmu->read(event); |
| 3632 | data->ret = 0; |
| 3633 | goto unlock; |
| 3634 | } |
| 3635 | |
| 3636 | pmu->start_txn(pmu, PERF_PMU_TXN_READ); |
| 3637 | |
| 3638 | pmu->read(event); |
| 3639 | |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3640 | list_for_each_entry(sub, &event->sibling_list, group_entry) { |
| 3641 | update_event_times(sub); |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3642 | if (sub->state == PERF_EVENT_STATE_ACTIVE) { |
| 3643 | /* |
| 3644 | * Use sibling's PMU rather than @event's since |
| 3645 | * sibling could be on different (eg: software) PMU. |
| 3646 | */ |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3647 | sub->pmu->read(sub); |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3648 | } |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3649 | } |
Sukadev Bhattiprolu | 4a00c16 | 2015-09-03 20:07:51 -0700 | [diff] [blame] | 3650 | |
| 3651 | data->ret = pmu->commit_txn(pmu); |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3652 | |
| 3653 | unlock: |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3654 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3655 | } |
| 3656 | |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 3657 | static inline u64 perf_event_count(struct perf_event *event) |
| 3658 | { |
Matt Fleming | eacd3ec | 2015-01-23 18:45:41 +0000 | [diff] [blame] | 3659 | if (event->pmu->count) |
| 3660 | return event->pmu->count(event); |
| 3661 | |
| 3662 | return __perf_event_count(event); |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 3663 | } |
| 3664 | |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3665 | /* |
| 3666 | * NMI-safe method to read a local event, that is an event that |
| 3667 | * is: |
| 3668 | * - either for the current task, or for this CPU |
| 3669 | * - does not have inherit set, for inherited task events |
| 3670 | * will not be local and we cannot read them atomically |
| 3671 | * - must not have a pmu::count method |
| 3672 | */ |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3673 | int perf_event_read_local(struct perf_event *event, u64 *value) |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3674 | { |
| 3675 | unsigned long flags; |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3676 | int ret = 0; |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3677 | |
| 3678 | /* |
| 3679 | * Disabling interrupts avoids all counter scheduling (context |
| 3680 | * switches, timer based rotation and IPIs). |
| 3681 | */ |
| 3682 | local_irq_save(flags); |
| 3683 | |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3684 | /* |
| 3685 | * It must not be an event with inherit set, we cannot read |
| 3686 | * all child counters from atomic context. |
| 3687 | */ |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3688 | if (event->attr.inherit) { |
| 3689 | ret = -EOPNOTSUPP; |
| 3690 | goto out; |
| 3691 | } |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3692 | |
| 3693 | /* |
| 3694 | * It must not have a pmu::count method, those are not |
| 3695 | * NMI safe. |
| 3696 | */ |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3697 | if (event->pmu->count) { |
| 3698 | ret = -EOPNOTSUPP; |
| 3699 | goto out; |
| 3700 | } |
| 3701 | |
| 3702 | /* If this is a per-task event, it must be for current */ |
| 3703 | if ((event->attach_state & PERF_ATTACH_TASK) && |
| 3704 | event->hw.target != current) { |
| 3705 | ret = -EINVAL; |
| 3706 | goto out; |
| 3707 | } |
| 3708 | |
| 3709 | /* If this is a per-CPU event, it must be for this CPU */ |
| 3710 | if (!(event->attach_state & PERF_ATTACH_TASK) && |
| 3711 | event->cpu != smp_processor_id()) { |
| 3712 | ret = -EINVAL; |
| 3713 | goto out; |
| 3714 | } |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3715 | |
| 3716 | /* |
| 3717 | * If the event is currently on this CPU, its either a per-task event, |
| 3718 | * or local to this CPU. Furthermore it means its ACTIVE (otherwise |
| 3719 | * oncpu == -1). |
| 3720 | */ |
| 3721 | if (event->oncpu == smp_processor_id()) |
| 3722 | event->pmu->read(event); |
| 3723 | |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3724 | *value = local64_read(&event->count); |
| 3725 | out: |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3726 | local_irq_restore(flags); |
| 3727 | |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 3728 | return ret; |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 3729 | } |
| 3730 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 3731 | static int perf_event_read(struct perf_event *event, bool group) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3732 | { |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3733 | int event_cpu, ret = 0; |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 3734 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3735 | /* |
| 3736 | * If event is enabled and currently active on a CPU, update the |
| 3737 | * value in the event structure: |
| 3738 | */ |
| 3739 | if (event->state == PERF_EVENT_STATE_ACTIVE) { |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3740 | struct perf_read_data data = { |
| 3741 | .event = event, |
| 3742 | .group = group, |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 3743 | .ret = 0, |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3744 | }; |
David Carrillo-Cisneros | d6a2f903 | 2016-08-17 13:55:06 -0700 | [diff] [blame] | 3745 | |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3746 | event_cpu = READ_ONCE(event->oncpu); |
| 3747 | if ((unsigned)event_cpu >= nr_cpu_ids) |
| 3748 | return 0; |
| 3749 | |
| 3750 | preempt_disable(); |
| 3751 | event_cpu = __perf_event_read_cpu(event, event_cpu); |
David Carrillo-Cisneros | d6a2f903 | 2016-08-17 13:55:06 -0700 | [diff] [blame] | 3752 | |
Peter Zijlstra | 5876314 | 2016-08-30 10:15:03 +0200 | [diff] [blame] | 3753 | /* |
| 3754 | * Purposely ignore the smp_call_function_single() return |
| 3755 | * value. |
| 3756 | * |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3757 | * 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] | 3758 | * scheduled out and that will have updated the event count. |
| 3759 | * |
| 3760 | * Therefore, either way, we'll have an up-to-date event count |
| 3761 | * after this. |
| 3762 | */ |
Peter Zijlstra | 451d24d | 2017-01-31 11:27:10 +0100 | [diff] [blame] | 3763 | (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1); |
| 3764 | preempt_enable(); |
Peter Zijlstra | 5876314 | 2016-08-30 10:15:03 +0200 | [diff] [blame] | 3765 | ret = data.ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3766 | } else if (event->state == PERF_EVENT_STATE_INACTIVE) { |
Peter Zijlstra | 2b8988c | 2009-11-20 22:19:54 +0100 | [diff] [blame] | 3767 | struct perf_event_context *ctx = event->ctx; |
| 3768 | unsigned long flags; |
| 3769 | |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3770 | raw_spin_lock_irqsave(&ctx->lock, flags); |
Stephane Eranian | c530ccd | 2010-10-15 15:26:01 +0200 | [diff] [blame] | 3771 | /* |
| 3772 | * may read while context is not active |
| 3773 | * (e.g., thread is blocked), in that case |
| 3774 | * we cannot update context time |
| 3775 | */ |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3776 | if (ctx->is_active) { |
Stephane Eranian | c530ccd | 2010-10-15 15:26:01 +0200 | [diff] [blame] | 3777 | update_context_time(ctx); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 3778 | update_cgrp_time_from_event(event); |
| 3779 | } |
Peter Zijlstra | 0492d4c | 2015-09-03 20:07:48 -0700 | [diff] [blame] | 3780 | if (group) |
| 3781 | update_group_times(event); |
| 3782 | else |
| 3783 | update_event_times(event); |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3784 | raw_spin_unlock_irqrestore(&ctx->lock, flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3785 | } |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 3786 | |
| 3787 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3788 | } |
| 3789 | |
| 3790 | /* |
| 3791 | * Initialize the perf_event context in a task_struct: |
| 3792 | */ |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 3793 | static void __perf_event_init_context(struct perf_event_context *ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3794 | { |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3795 | raw_spin_lock_init(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3796 | mutex_init(&ctx->mutex); |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 3797 | INIT_LIST_HEAD(&ctx->active_ctx_list); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 3798 | INIT_LIST_HEAD(&ctx->pinned_groups); |
| 3799 | INIT_LIST_HEAD(&ctx->flexible_groups); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3800 | INIT_LIST_HEAD(&ctx->event_list); |
| 3801 | atomic_set(&ctx->refcount, 1); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3802 | } |
| 3803 | |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 3804 | static struct perf_event_context * |
| 3805 | alloc_perf_context(struct pmu *pmu, struct task_struct *task) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3806 | { |
| 3807 | struct perf_event_context *ctx; |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 3808 | |
| 3809 | ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL); |
| 3810 | if (!ctx) |
| 3811 | return NULL; |
| 3812 | |
| 3813 | __perf_event_init_context(ctx); |
| 3814 | if (task) { |
| 3815 | ctx->task = task; |
| 3816 | get_task_struct(task); |
| 3817 | } |
| 3818 | ctx->pmu = pmu; |
| 3819 | |
| 3820 | return ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3821 | } |
| 3822 | |
Matt Helsley | 2ebd4ff | 2010-09-13 13:01:19 -0700 | [diff] [blame] | 3823 | static struct task_struct * |
| 3824 | find_lively_task_by_vpid(pid_t vpid) |
| 3825 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3826 | struct task_struct *task; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3827 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3828 | rcu_read_lock(); |
Matt Helsley | 2ebd4ff | 2010-09-13 13:01:19 -0700 | [diff] [blame] | 3829 | if (!vpid) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3830 | task = current; |
| 3831 | else |
Matt Helsley | 2ebd4ff | 2010-09-13 13:01:19 -0700 | [diff] [blame] | 3832 | task = find_task_by_vpid(vpid); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3833 | if (task) |
| 3834 | get_task_struct(task); |
| 3835 | rcu_read_unlock(); |
| 3836 | |
| 3837 | if (!task) |
| 3838 | return ERR_PTR(-ESRCH); |
| 3839 | |
Matt Helsley | 2ebd4ff | 2010-09-13 13:01:19 -0700 | [diff] [blame] | 3840 | return task; |
Matt Helsley | 2ebd4ff | 2010-09-13 13:01:19 -0700 | [diff] [blame] | 3841 | } |
| 3842 | |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3843 | /* |
| 3844 | * Returns a matching context with refcount and pincount. |
| 3845 | */ |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 3846 | static struct perf_event_context * |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3847 | find_get_context(struct pmu *pmu, struct task_struct *task, |
| 3848 | struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3849 | { |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 3850 | struct perf_event_context *ctx, *clone_ctx = NULL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3851 | struct perf_cpu_context *cpuctx; |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3852 | void *task_ctx_data = NULL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3853 | unsigned long flags; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3854 | int ctxn, err; |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3855 | int cpu = event->cpu; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3856 | |
Oleg Nesterov | 22a4ec7 | 2011-01-18 17:10:08 +0100 | [diff] [blame] | 3857 | if (!task) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3858 | /* Must be root to operate on a CPU event: */ |
| 3859 | if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN)) |
| 3860 | return ERR_PTR(-EACCES); |
| 3861 | |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 3862 | cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3863 | ctx = &cpuctx->ctx; |
| 3864 | get_ctx(ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3865 | ++ctx->pin_count; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3866 | |
| 3867 | return ctx; |
| 3868 | } |
| 3869 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3870 | err = -EINVAL; |
| 3871 | ctxn = pmu->task_ctx_nr; |
| 3872 | if (ctxn < 0) |
| 3873 | goto errout; |
| 3874 | |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3875 | if (event->attach_state & PERF_ATTACH_TASK_DATA) { |
| 3876 | task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL); |
| 3877 | if (!task_ctx_data) { |
| 3878 | err = -ENOMEM; |
| 3879 | goto errout; |
| 3880 | } |
| 3881 | } |
| 3882 | |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 3883 | retry: |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 3884 | ctx = perf_lock_task_context(task, ctxn, &flags); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3885 | if (ctx) { |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 3886 | clone_ctx = unclone_ctx(ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3887 | ++ctx->pin_count; |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3888 | |
| 3889 | if (task_ctx_data && !ctx->task_ctx_data) { |
| 3890 | ctx->task_ctx_data = task_ctx_data; |
| 3891 | task_ctx_data = NULL; |
| 3892 | } |
Thomas Gleixner | e625cce1 | 2009-11-17 18:02:06 +0100 | [diff] [blame] | 3893 | raw_spin_unlock_irqrestore(&ctx->lock, flags); |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 3894 | |
| 3895 | if (clone_ctx) |
| 3896 | put_ctx(clone_ctx); |
Peter Zijlstra | 9137fb2 | 2011-04-09 21:17:41 +0200 | [diff] [blame] | 3897 | } else { |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 3898 | ctx = alloc_perf_context(pmu, task); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3899 | err = -ENOMEM; |
| 3900 | if (!ctx) |
| 3901 | goto errout; |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 3902 | |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3903 | if (task_ctx_data) { |
| 3904 | ctx->task_ctx_data = task_ctx_data; |
| 3905 | task_ctx_data = NULL; |
| 3906 | } |
| 3907 | |
Oleg Nesterov | dbe08d8 | 2011-01-19 19:22:07 +0100 | [diff] [blame] | 3908 | err = 0; |
| 3909 | mutex_lock(&task->perf_event_mutex); |
| 3910 | /* |
| 3911 | * If it has already passed perf_event_exit_task(). |
| 3912 | * we must see PF_EXITING, it takes this mutex too. |
| 3913 | */ |
| 3914 | if (task->flags & PF_EXITING) |
| 3915 | err = -ESRCH; |
| 3916 | else if (task->perf_event_ctxp[ctxn]) |
| 3917 | err = -EAGAIN; |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3918 | else { |
Peter Zijlstra | 9137fb2 | 2011-04-09 21:17:41 +0200 | [diff] [blame] | 3919 | get_ctx(ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3920 | ++ctx->pin_count; |
Oleg Nesterov | dbe08d8 | 2011-01-19 19:22:07 +0100 | [diff] [blame] | 3921 | rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3922 | } |
Oleg Nesterov | dbe08d8 | 2011-01-19 19:22:07 +0100 | [diff] [blame] | 3923 | mutex_unlock(&task->perf_event_mutex); |
| 3924 | |
| 3925 | if (unlikely(err)) { |
Peter Zijlstra | 9137fb2 | 2011-04-09 21:17:41 +0200 | [diff] [blame] | 3926 | put_ctx(ctx); |
Oleg Nesterov | dbe08d8 | 2011-01-19 19:22:07 +0100 | [diff] [blame] | 3927 | |
| 3928 | if (err == -EAGAIN) |
| 3929 | goto retry; |
| 3930 | goto errout; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3931 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3932 | } |
| 3933 | |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3934 | kfree(task_ctx_data); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3935 | return ctx; |
| 3936 | |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 3937 | errout: |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 3938 | kfree(task_ctx_data); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3939 | return ERR_PTR(err); |
| 3940 | } |
| 3941 | |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 3942 | static void perf_event_free_filter(struct perf_event *event); |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 3943 | static void perf_event_free_bpf_prog(struct perf_event *event); |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 3944 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3945 | static void free_event_rcu(struct rcu_head *head) |
| 3946 | { |
| 3947 | struct perf_event *event; |
| 3948 | |
| 3949 | event = container_of(head, struct perf_event, rcu_head); |
| 3950 | if (event->ns) |
| 3951 | put_pid_ns(event->ns); |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 3952 | perf_event_free_filter(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3953 | kfree(event); |
| 3954 | } |
| 3955 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 3956 | static void ring_buffer_attach(struct perf_event *event, |
| 3957 | struct ring_buffer *rb); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 3958 | |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3959 | static void detach_sb_event(struct perf_event *event) |
| 3960 | { |
| 3961 | struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu); |
| 3962 | |
| 3963 | raw_spin_lock(&pel->lock); |
| 3964 | list_del_rcu(&event->sb_list); |
| 3965 | raw_spin_unlock(&pel->lock); |
| 3966 | } |
| 3967 | |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 3968 | static bool is_sb_event(struct perf_event *event) |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3969 | { |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 3970 | struct perf_event_attr *attr = &event->attr; |
| 3971 | |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3972 | if (event->parent) |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 3973 | return false; |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3974 | |
| 3975 | if (event->attach_state & PERF_ATTACH_TASK) |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 3976 | return false; |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3977 | |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 3978 | if (attr->mmap || attr->mmap_data || attr->mmap2 || |
| 3979 | attr->comm || attr->comm_exec || |
| 3980 | attr->task || |
| 3981 | attr->context_switch) |
| 3982 | return true; |
| 3983 | return false; |
| 3984 | } |
| 3985 | |
| 3986 | static void unaccount_pmu_sb_event(struct perf_event *event) |
| 3987 | { |
| 3988 | if (is_sb_event(event)) |
| 3989 | detach_sb_event(event); |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 3990 | } |
| 3991 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 3992 | static void unaccount_event_cpu(struct perf_event *event, int cpu) |
| 3993 | { |
| 3994 | if (event->parent) |
| 3995 | return; |
| 3996 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 3997 | if (is_cgroup_event(event)) |
| 3998 | atomic_dec(&per_cpu(perf_cgroup_events, cpu)); |
| 3999 | } |
| 4000 | |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 4001 | #ifdef CONFIG_NO_HZ_FULL |
| 4002 | static DEFINE_SPINLOCK(nr_freq_lock); |
| 4003 | #endif |
| 4004 | |
| 4005 | static void unaccount_freq_event_nohz(void) |
| 4006 | { |
| 4007 | #ifdef CONFIG_NO_HZ_FULL |
| 4008 | spin_lock(&nr_freq_lock); |
| 4009 | if (atomic_dec_and_test(&nr_freq_events)) |
| 4010 | tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS); |
| 4011 | spin_unlock(&nr_freq_lock); |
| 4012 | #endif |
| 4013 | } |
| 4014 | |
| 4015 | static void unaccount_freq_event(void) |
| 4016 | { |
| 4017 | if (tick_nohz_full_enabled()) |
| 4018 | unaccount_freq_event_nohz(); |
| 4019 | else |
| 4020 | atomic_dec(&nr_freq_events); |
| 4021 | } |
| 4022 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4023 | static void unaccount_event(struct perf_event *event) |
| 4024 | { |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 4025 | bool dec = false; |
| 4026 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4027 | if (event->parent) |
| 4028 | return; |
| 4029 | |
| 4030 | if (event->attach_state & PERF_ATTACH_TASK) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 4031 | dec = true; |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4032 | if (event->attr.mmap || event->attr.mmap_data) |
| 4033 | atomic_dec(&nr_mmap_events); |
| 4034 | if (event->attr.comm) |
| 4035 | atomic_dec(&nr_comm_events); |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 4036 | if (event->attr.namespaces) |
| 4037 | atomic_dec(&nr_namespaces_events); |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4038 | if (event->attr.task) |
| 4039 | atomic_dec(&nr_task_events); |
Frederic Weisbecker | 948b26b | 2013-08-02 18:29:55 +0200 | [diff] [blame] | 4040 | if (event->attr.freq) |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 4041 | unaccount_freq_event(); |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 4042 | if (event->attr.context_switch) { |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 4043 | dec = true; |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 4044 | atomic_dec(&nr_switch_events); |
| 4045 | } |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4046 | if (is_cgroup_event(event)) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 4047 | dec = true; |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4048 | if (has_branch_stack(event)) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 4049 | dec = true; |
| 4050 | |
Peter Zijlstra | 9107c89 | 2016-02-24 18:45:45 +0100 | [diff] [blame] | 4051 | if (dec) { |
| 4052 | if (!atomic_add_unless(&perf_sched_count, -1, 1)) |
| 4053 | schedule_delayed_work(&perf_sched_work, HZ); |
| 4054 | } |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4055 | |
| 4056 | unaccount_event_cpu(event, event->cpu); |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 4057 | |
| 4058 | unaccount_pmu_sb_event(event); |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4059 | } |
| 4060 | |
Peter Zijlstra | 9107c89 | 2016-02-24 18:45:45 +0100 | [diff] [blame] | 4061 | static void perf_sched_delayed(struct work_struct *work) |
| 4062 | { |
| 4063 | mutex_lock(&perf_sched_mutex); |
| 4064 | if (atomic_dec_and_test(&perf_sched_count)) |
| 4065 | static_branch_disable(&perf_sched_events); |
| 4066 | mutex_unlock(&perf_sched_mutex); |
| 4067 | } |
| 4068 | |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 4069 | /* |
| 4070 | * The following implement mutual exclusion of events on "exclusive" pmus |
| 4071 | * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled |
| 4072 | * at a time, so we disallow creating events that might conflict, namely: |
| 4073 | * |
| 4074 | * 1) cpu-wide events in the presence of per-task events, |
| 4075 | * 2) per-task events in the presence of cpu-wide events, |
| 4076 | * 3) two matching events on the same context. |
| 4077 | * |
| 4078 | * 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] | 4079 | * _free_event()), the latter -- before the first perf_install_in_context(). |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 4080 | */ |
| 4081 | static int exclusive_event_init(struct perf_event *event) |
| 4082 | { |
| 4083 | struct pmu *pmu = event->pmu; |
| 4084 | |
| 4085 | if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE)) |
| 4086 | return 0; |
| 4087 | |
| 4088 | /* |
| 4089 | * Prevent co-existence of per-task and cpu-wide events on the |
| 4090 | * same exclusive pmu. |
| 4091 | * |
| 4092 | * Negative pmu::exclusive_cnt means there are cpu-wide |
| 4093 | * events on this "exclusive" pmu, positive means there are |
| 4094 | * per-task events. |
| 4095 | * |
| 4096 | * Since this is called in perf_event_alloc() path, event::ctx |
| 4097 | * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK |
| 4098 | * to mean "per-task event", because unlike other attach states it |
| 4099 | * never gets cleared. |
| 4100 | */ |
| 4101 | if (event->attach_state & PERF_ATTACH_TASK) { |
| 4102 | if (!atomic_inc_unless_negative(&pmu->exclusive_cnt)) |
| 4103 | return -EBUSY; |
| 4104 | } else { |
| 4105 | if (!atomic_dec_unless_positive(&pmu->exclusive_cnt)) |
| 4106 | return -EBUSY; |
| 4107 | } |
| 4108 | |
| 4109 | return 0; |
| 4110 | } |
| 4111 | |
| 4112 | static void exclusive_event_destroy(struct perf_event *event) |
| 4113 | { |
| 4114 | struct pmu *pmu = event->pmu; |
| 4115 | |
| 4116 | if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE)) |
| 4117 | return; |
| 4118 | |
| 4119 | /* see comment in exclusive_event_init() */ |
| 4120 | if (event->attach_state & PERF_ATTACH_TASK) |
| 4121 | atomic_dec(&pmu->exclusive_cnt); |
| 4122 | else |
| 4123 | atomic_inc(&pmu->exclusive_cnt); |
| 4124 | } |
| 4125 | |
| 4126 | static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2) |
| 4127 | { |
Alexander Shishkin | 3bf6215 | 2016-09-20 18:48:11 +0300 | [diff] [blame] | 4128 | if ((e1->pmu == e2->pmu) && |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 4129 | (e1->cpu == e2->cpu || |
| 4130 | e1->cpu == -1 || |
| 4131 | e2->cpu == -1)) |
| 4132 | return true; |
| 4133 | return false; |
| 4134 | } |
| 4135 | |
| 4136 | /* Called under the same ctx::mutex as perf_install_in_context() */ |
| 4137 | static bool exclusive_event_installable(struct perf_event *event, |
| 4138 | struct perf_event_context *ctx) |
| 4139 | { |
| 4140 | struct perf_event *iter_event; |
| 4141 | struct pmu *pmu = event->pmu; |
| 4142 | |
| 4143 | if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE)) |
| 4144 | return true; |
| 4145 | |
| 4146 | list_for_each_entry(iter_event, &ctx->event_list, event_entry) { |
| 4147 | if (exclusive_event_match(iter_event, event)) |
| 4148 | return false; |
| 4149 | } |
| 4150 | |
| 4151 | return true; |
| 4152 | } |
| 4153 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 4154 | static void perf_addr_filters_splice(struct perf_event *event, |
| 4155 | struct list_head *head); |
| 4156 | |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4157 | static void _free_event(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4158 | { |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 4159 | irq_work_sync(&event->pending); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4160 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 4161 | unaccount_event(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4162 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4163 | if (event->rb) { |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 4164 | /* |
| 4165 | * Can happen when we close an event with re-directed output. |
| 4166 | * |
| 4167 | * Since we have a 0 refcount, perf_mmap_close() will skip |
| 4168 | * over us; possibly making our ring_buffer_put() the last. |
| 4169 | */ |
| 4170 | mutex_lock(&event->mmap_mutex); |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 4171 | ring_buffer_attach(event, NULL); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 4172 | mutex_unlock(&event->mmap_mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4173 | } |
| 4174 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 4175 | if (is_cgroup_event(event)) |
| 4176 | perf_detach_cgroup(event); |
| 4177 | |
Peter Zijlstra | a0733e6 | 2016-01-26 12:14:40 +0100 | [diff] [blame] | 4178 | if (!event->parent) { |
| 4179 | if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) |
| 4180 | put_callchain_buffers(); |
| 4181 | } |
| 4182 | |
| 4183 | perf_event_free_bpf_prog(event); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 4184 | perf_addr_filters_splice(event, NULL); |
| 4185 | kfree(event->addr_filters_offs); |
Peter Zijlstra | a0733e6 | 2016-01-26 12:14:40 +0100 | [diff] [blame] | 4186 | |
| 4187 | if (event->destroy) |
| 4188 | event->destroy(event); |
| 4189 | |
| 4190 | if (event->ctx) |
| 4191 | put_ctx(event->ctx); |
| 4192 | |
Alexander Shishkin | 62a92c8 | 2016-06-07 15:44:15 +0300 | [diff] [blame] | 4193 | exclusive_event_destroy(event); |
| 4194 | module_put(event->pmu->module); |
Peter Zijlstra | a0733e6 | 2016-01-26 12:14:40 +0100 | [diff] [blame] | 4195 | |
| 4196 | call_rcu(&event->rcu_head, free_event_rcu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4197 | } |
| 4198 | |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4199 | /* |
| 4200 | * Used to free events which have a known refcount of 1, such as in error paths |
| 4201 | * where the event isn't exposed yet and inherited events. |
| 4202 | */ |
| 4203 | static void free_event(struct perf_event *event) |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 4204 | { |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4205 | if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1, |
| 4206 | "unexpected event refcount: %ld; ptr=%p\n", |
| 4207 | atomic_long_read(&event->refcount), event)) { |
| 4208 | /* leak to avoid use-after-free */ |
| 4209 | return; |
| 4210 | } |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 4211 | |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4212 | _free_event(event); |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 4213 | } |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 4214 | |
Peter Zijlstra | a66a305 | 2009-11-23 11:37:23 +0100 | [diff] [blame] | 4215 | /* |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 4216 | * Remove user event from the owner task. |
Peter Zijlstra | a66a305 | 2009-11-23 11:37:23 +0100 | [diff] [blame] | 4217 | */ |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 4218 | static void perf_remove_from_owner(struct perf_event *event) |
Peter Zijlstra | a66a305 | 2009-11-23 11:37:23 +0100 | [diff] [blame] | 4219 | { |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4220 | struct task_struct *owner; |
Peter Zijlstra | a66a305 | 2009-11-23 11:37:23 +0100 | [diff] [blame] | 4221 | |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4222 | rcu_read_lock(); |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4223 | /* |
Peter Zijlstra | f47c02c | 2016-01-26 12:30:14 +0100 | [diff] [blame] | 4224 | * Matches the smp_store_release() in perf_event_exit_task(). If we |
| 4225 | * observe !owner it means the list deletion is complete and we can |
| 4226 | * indeed free this event, otherwise we need to serialize on |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4227 | * owner->perf_event_mutex. |
| 4228 | */ |
Peter Zijlstra | f47c02c | 2016-01-26 12:30:14 +0100 | [diff] [blame] | 4229 | owner = lockless_dereference(event->owner); |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4230 | if (owner) { |
| 4231 | /* |
| 4232 | * Since delayed_put_task_struct() also drops the last |
| 4233 | * task reference we can safely take a new reference |
| 4234 | * while holding the rcu_read_lock(). |
| 4235 | */ |
| 4236 | get_task_struct(owner); |
| 4237 | } |
| 4238 | rcu_read_unlock(); |
| 4239 | |
| 4240 | if (owner) { |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4241 | /* |
| 4242 | * If we're here through perf_event_exit_task() we're already |
| 4243 | * holding ctx->mutex which would be an inversion wrt. the |
| 4244 | * normal lock order. |
| 4245 | * |
| 4246 | * However we can safely take this lock because its the child |
| 4247 | * ctx->mutex. |
| 4248 | */ |
| 4249 | mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING); |
| 4250 | |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4251 | /* |
| 4252 | * We have to re-check the event->owner field, if it is cleared |
| 4253 | * we raced with perf_event_exit_task(), acquiring the mutex |
| 4254 | * ensured they're done, and we can proceed with freeing the |
| 4255 | * event. |
| 4256 | */ |
Peter Zijlstra | f47c02c | 2016-01-26 12:30:14 +0100 | [diff] [blame] | 4257 | if (event->owner) { |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4258 | list_del_init(&event->owner_entry); |
Peter Zijlstra | f47c02c | 2016-01-26 12:30:14 +0100 | [diff] [blame] | 4259 | smp_store_release(&event->owner, NULL); |
| 4260 | } |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4261 | mutex_unlock(&owner->perf_event_mutex); |
| 4262 | put_task_struct(owner); |
| 4263 | } |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 4264 | } |
| 4265 | |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 4266 | static void put_event(struct perf_event *event) |
| 4267 | { |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 4268 | if (!atomic_long_dec_and_test(&event->refcount)) |
| 4269 | return; |
| 4270 | |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4271 | _free_event(event); |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 4272 | } |
| 4273 | |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4274 | /* |
| 4275 | * Kill an event dead; while event:refcount will preserve the event |
| 4276 | * object, it will not preserve its functionality. Once the last 'user' |
| 4277 | * gives up the object, we'll destroy the thing. |
| 4278 | */ |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4279 | int perf_event_release_kernel(struct perf_event *event) |
| 4280 | { |
Peter Zijlstra | a4f4bb6 | 2016-02-24 18:45:42 +0100 | [diff] [blame] | 4281 | struct perf_event_context *ctx = event->ctx; |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4282 | struct perf_event *child, *tmp; |
| 4283 | |
Peter Zijlstra | a4f4bb6 | 2016-02-24 18:45:42 +0100 | [diff] [blame] | 4284 | /* |
| 4285 | * If we got here through err_file: fput(event_file); we will not have |
| 4286 | * attached to a context yet. |
| 4287 | */ |
| 4288 | if (!ctx) { |
| 4289 | WARN_ON_ONCE(event->attach_state & |
| 4290 | (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP)); |
| 4291 | goto no_ctx; |
| 4292 | } |
| 4293 | |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4294 | if (!is_kernel_event(event)) |
| 4295 | perf_remove_from_owner(event); |
| 4296 | |
Peter Zijlstra | 5fa7c8e | 2016-01-26 15:25:15 +0100 | [diff] [blame] | 4297 | ctx = perf_event_ctx_lock(event); |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4298 | WARN_ON_ONCE(ctx->parent_ctx); |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 4299 | perf_remove_from_context(event, DETACH_GROUP); |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 4300 | |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 4301 | raw_spin_lock_irq(&ctx->lock); |
Peter Zijlstra | 60beda8 | 2016-01-26 14:55:02 +0100 | [diff] [blame] | 4302 | /* |
Peter Zijlstra | d8a8cfc | 2017-03-16 13:47:51 +0100 | [diff] [blame] | 4303 | * 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] | 4304 | * anymore. |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4305 | * |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 4306 | * Anybody acquiring event->child_mutex after the below loop _must_ |
| 4307 | * also see this, most importantly inherit_event() which will avoid |
| 4308 | * placing more children on the list. |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4309 | * |
| 4310 | * Thus this guarantees that we will in fact observe and kill _ALL_ |
| 4311 | * child events. |
Peter Zijlstra | 60beda8 | 2016-01-26 14:55:02 +0100 | [diff] [blame] | 4312 | */ |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 4313 | event->state = PERF_EVENT_STATE_DEAD; |
| 4314 | raw_spin_unlock_irq(&ctx->lock); |
| 4315 | |
| 4316 | perf_event_ctx_unlock(event, ctx); |
Peter Zijlstra | 60beda8 | 2016-01-26 14:55:02 +0100 | [diff] [blame] | 4317 | |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4318 | again: |
| 4319 | mutex_lock(&event->child_mutex); |
| 4320 | list_for_each_entry(child, &event->child_list, child_list) { |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 4321 | |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4322 | /* |
| 4323 | * Cannot change, child events are not migrated, see the |
| 4324 | * comment with perf_event_ctx_lock_nested(). |
| 4325 | */ |
| 4326 | ctx = lockless_dereference(child->ctx); |
| 4327 | /* |
| 4328 | * Since child_mutex nests inside ctx::mutex, we must jump |
| 4329 | * through hoops. We start by grabbing a reference on the ctx. |
| 4330 | * |
| 4331 | * Since the event cannot get freed while we hold the |
| 4332 | * child_mutex, the context must also exist and have a !0 |
| 4333 | * reference count. |
| 4334 | */ |
| 4335 | get_ctx(ctx); |
| 4336 | |
| 4337 | /* |
| 4338 | * Now that we have a ctx ref, we can drop child_mutex, and |
| 4339 | * acquire ctx::mutex without fear of it going away. Then we |
| 4340 | * can re-acquire child_mutex. |
| 4341 | */ |
| 4342 | mutex_unlock(&event->child_mutex); |
| 4343 | mutex_lock(&ctx->mutex); |
| 4344 | mutex_lock(&event->child_mutex); |
| 4345 | |
| 4346 | /* |
| 4347 | * Now that we hold ctx::mutex and child_mutex, revalidate our |
| 4348 | * state, if child is still the first entry, it didn't get freed |
| 4349 | * and we can continue doing so. |
| 4350 | */ |
| 4351 | tmp = list_first_entry_or_null(&event->child_list, |
| 4352 | struct perf_event, child_list); |
| 4353 | if (tmp == child) { |
| 4354 | perf_remove_from_context(child, DETACH_GROUP); |
| 4355 | list_del(&child->child_list); |
| 4356 | free_event(child); |
| 4357 | /* |
| 4358 | * This matches the refcount bump in inherit_event(); |
| 4359 | * this can't be the last reference. |
| 4360 | */ |
| 4361 | put_event(event); |
| 4362 | } |
| 4363 | |
| 4364 | mutex_unlock(&event->child_mutex); |
| 4365 | mutex_unlock(&ctx->mutex); |
| 4366 | put_ctx(ctx); |
| 4367 | goto again; |
| 4368 | } |
| 4369 | mutex_unlock(&event->child_mutex); |
| 4370 | |
Peter Zijlstra | a4f4bb6 | 2016-02-24 18:45:42 +0100 | [diff] [blame] | 4371 | no_ctx: |
| 4372 | put_event(event); /* Must be the 'last' reference */ |
Peter Zijlstra | 683ede4 | 2014-05-05 12:11:24 +0200 | [diff] [blame] | 4373 | return 0; |
| 4374 | } |
| 4375 | EXPORT_SYMBOL_GPL(perf_event_release_kernel); |
| 4376 | |
Peter Zijlstra | 8b10c5e | 2015-05-01 16:08:46 +0200 | [diff] [blame] | 4377 | /* |
| 4378 | * Called when the last reference to the file is gone. |
| 4379 | */ |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 4380 | static int perf_release(struct inode *inode, struct file *file) |
| 4381 | { |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 4382 | perf_event_release_kernel(file->private_data); |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 4383 | return 0; |
Peter Zijlstra | a66a305 | 2009-11-23 11:37:23 +0100 | [diff] [blame] | 4384 | } |
| 4385 | |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4386 | 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] | 4387 | { |
| 4388 | struct perf_event *child; |
| 4389 | u64 total = 0; |
| 4390 | |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4391 | *enabled = 0; |
| 4392 | *running = 0; |
| 4393 | |
Peter Zijlstra | 6f10581 | 2009-11-20 22:19:56 +0100 | [diff] [blame] | 4394 | mutex_lock(&event->child_mutex); |
Sukadev Bhattiprolu | 01add3e | 2015-09-03 20:07:46 -0700 | [diff] [blame] | 4395 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4396 | (void)perf_event_read(event, false); |
Sukadev Bhattiprolu | 01add3e | 2015-09-03 20:07:46 -0700 | [diff] [blame] | 4397 | total += perf_event_count(event); |
| 4398 | |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4399 | *enabled += event->total_time_enabled + |
| 4400 | atomic64_read(&event->child_total_time_enabled); |
| 4401 | *running += event->total_time_running + |
| 4402 | atomic64_read(&event->child_total_time_running); |
| 4403 | |
| 4404 | list_for_each_entry(child, &event->child_list, child_list) { |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4405 | (void)perf_event_read(child, false); |
Sukadev Bhattiprolu | 01add3e | 2015-09-03 20:07:46 -0700 | [diff] [blame] | 4406 | total += perf_event_count(child); |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4407 | *enabled += child->total_time_enabled; |
| 4408 | *running += child->total_time_running; |
| 4409 | } |
Peter Zijlstra | 6f10581 | 2009-11-20 22:19:56 +0100 | [diff] [blame] | 4410 | mutex_unlock(&event->child_mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4411 | |
| 4412 | return total; |
| 4413 | } |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 4414 | EXPORT_SYMBOL_GPL(perf_event_read_value); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4415 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4416 | static int __perf_read_group_add(struct perf_event *leader, |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4417 | u64 read_format, u64 *values) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4418 | { |
Jiri Olsa | 2aeb188 | 2017-07-20 16:14:55 +0200 | [diff] [blame] | 4419 | struct perf_event_context *ctx = leader->ctx; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4420 | struct perf_event *sub; |
Jiri Olsa | 2aeb188 | 2017-07-20 16:14:55 +0200 | [diff] [blame] | 4421 | unsigned long flags; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4422 | int n = 1; /* skip @nr */ |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4423 | int ret; |
Peter Zijlstra | abf4868 | 2009-11-20 22:19:49 +0100 | [diff] [blame] | 4424 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4425 | ret = perf_event_read(leader, true); |
| 4426 | if (ret) |
| 4427 | return ret; |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4428 | |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4429 | /* |
| 4430 | * Since we co-schedule groups, {enabled,running} times of siblings |
| 4431 | * will be identical to those of the leader, so we only publish one |
| 4432 | * set. |
| 4433 | */ |
| 4434 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) { |
| 4435 | values[n++] += leader->total_time_enabled + |
| 4436 | atomic64_read(&leader->child_total_time_enabled); |
| 4437 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4438 | |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4439 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) { |
| 4440 | values[n++] += leader->total_time_running + |
| 4441 | atomic64_read(&leader->child_total_time_running); |
| 4442 | } |
| 4443 | |
| 4444 | /* |
| 4445 | * Write {count,id} tuples for every sibling. |
| 4446 | */ |
| 4447 | values[n++] += perf_event_count(leader); |
Peter Zijlstra | abf4868 | 2009-11-20 22:19:49 +0100 | [diff] [blame] | 4448 | if (read_format & PERF_FORMAT_ID) |
| 4449 | values[n++] = primary_event_id(leader); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4450 | |
Jiri Olsa | 2aeb188 | 2017-07-20 16:14:55 +0200 | [diff] [blame] | 4451 | raw_spin_lock_irqsave(&ctx->lock, flags); |
| 4452 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4453 | list_for_each_entry(sub, &leader->sibling_list, group_entry) { |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4454 | values[n++] += perf_event_count(sub); |
Peter Zijlstra | abf4868 | 2009-11-20 22:19:49 +0100 | [diff] [blame] | 4455 | if (read_format & PERF_FORMAT_ID) |
| 4456 | values[n++] = primary_event_id(sub); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4457 | } |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4458 | |
Jiri Olsa | 2aeb188 | 2017-07-20 16:14:55 +0200 | [diff] [blame] | 4459 | raw_spin_unlock_irqrestore(&ctx->lock, flags); |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4460 | return 0; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4461 | } |
| 4462 | |
| 4463 | static int perf_read_group(struct perf_event *event, |
| 4464 | u64 read_format, char __user *buf) |
| 4465 | { |
| 4466 | struct perf_event *leader = event->group_leader, *child; |
| 4467 | struct perf_event_context *ctx = leader->ctx; |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4468 | int ret; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4469 | u64 *values; |
| 4470 | |
| 4471 | lockdep_assert_held(&ctx->mutex); |
| 4472 | |
| 4473 | values = kzalloc(event->read_size, GFP_KERNEL); |
| 4474 | if (!values) |
| 4475 | return -ENOMEM; |
| 4476 | |
| 4477 | values[0] = 1 + leader->nr_siblings; |
| 4478 | |
| 4479 | /* |
| 4480 | * By locking the child_mutex of the leader we effectively |
| 4481 | * lock the child list of all siblings.. XXX explain how. |
| 4482 | */ |
| 4483 | mutex_lock(&leader->child_mutex); |
| 4484 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4485 | ret = __perf_read_group_add(leader, read_format, values); |
| 4486 | if (ret) |
| 4487 | goto unlock; |
| 4488 | |
| 4489 | list_for_each_entry(child, &leader->child_list, child_list) { |
| 4490 | ret = __perf_read_group_add(child, read_format, values); |
| 4491 | if (ret) |
| 4492 | goto unlock; |
| 4493 | } |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4494 | |
| 4495 | mutex_unlock(&leader->child_mutex); |
| 4496 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4497 | ret = event->read_size; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4498 | if (copy_to_user(buf, values, event->read_size)) |
| 4499 | ret = -EFAULT; |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4500 | goto out; |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4501 | |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4502 | unlock: |
| 4503 | mutex_unlock(&leader->child_mutex); |
| 4504 | out: |
Peter Zijlstra | fa8c269 | 2015-09-03 20:07:49 -0700 | [diff] [blame] | 4505 | kfree(values); |
Peter Zijlstra | abf4868 | 2009-11-20 22:19:49 +0100 | [diff] [blame] | 4506 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4507 | } |
| 4508 | |
Peter Zijlstra (Intel) | b15f495 | 2015-09-03 20:07:47 -0700 | [diff] [blame] | 4509 | static int perf_read_one(struct perf_event *event, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4510 | u64 read_format, char __user *buf) |
| 4511 | { |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4512 | u64 enabled, running; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4513 | u64 values[4]; |
| 4514 | int n = 0; |
| 4515 | |
Peter Zijlstra | 59ed446 | 2009-11-20 22:19:55 +0100 | [diff] [blame] | 4516 | values[n++] = perf_event_read_value(event, &enabled, &running); |
| 4517 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) |
| 4518 | values[n++] = enabled; |
| 4519 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) |
| 4520 | values[n++] = running; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4521 | if (read_format & PERF_FORMAT_ID) |
| 4522 | values[n++] = primary_event_id(event); |
| 4523 | |
| 4524 | if (copy_to_user(buf, values, n * sizeof(u64))) |
| 4525 | return -EFAULT; |
| 4526 | |
| 4527 | return n * sizeof(u64); |
| 4528 | } |
| 4529 | |
Jiri Olsa | dc63398 | 2014-09-12 13:18:26 +0200 | [diff] [blame] | 4530 | static bool is_event_hup(struct perf_event *event) |
| 4531 | { |
| 4532 | bool no_children; |
| 4533 | |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 4534 | if (event->state > PERF_EVENT_STATE_EXIT) |
Jiri Olsa | dc63398 | 2014-09-12 13:18:26 +0200 | [diff] [blame] | 4535 | return false; |
| 4536 | |
| 4537 | mutex_lock(&event->child_mutex); |
| 4538 | no_children = list_empty(&event->child_list); |
| 4539 | mutex_unlock(&event->child_mutex); |
| 4540 | return no_children; |
| 4541 | } |
| 4542 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4543 | /* |
| 4544 | * Read the performance event - simple non blocking version for now |
| 4545 | */ |
| 4546 | static ssize_t |
Peter Zijlstra (Intel) | b15f495 | 2015-09-03 20:07:47 -0700 | [diff] [blame] | 4547 | __perf_read(struct perf_event *event, char __user *buf, size_t count) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4548 | { |
| 4549 | u64 read_format = event->attr.read_format; |
| 4550 | int ret; |
| 4551 | |
| 4552 | /* |
| 4553 | * Return end-of-file for a read on a event that is in |
| 4554 | * error state (i.e. because it was pinned but it couldn't be |
| 4555 | * scheduled on to the CPU at some point). |
| 4556 | */ |
| 4557 | if (event->state == PERF_EVENT_STATE_ERROR) |
| 4558 | return 0; |
| 4559 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 4560 | if (count < event->read_size) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4561 | return -ENOSPC; |
| 4562 | |
| 4563 | WARN_ON_ONCE(event->ctx->parent_ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4564 | if (read_format & PERF_FORMAT_GROUP) |
Peter Zijlstra (Intel) | b15f495 | 2015-09-03 20:07:47 -0700 | [diff] [blame] | 4565 | ret = perf_read_group(event, read_format, buf); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4566 | else |
Peter Zijlstra (Intel) | b15f495 | 2015-09-03 20:07:47 -0700 | [diff] [blame] | 4567 | ret = perf_read_one(event, read_format, buf); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4568 | |
| 4569 | return ret; |
| 4570 | } |
| 4571 | |
| 4572 | static ssize_t |
| 4573 | perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) |
| 4574 | { |
| 4575 | struct perf_event *event = file->private_data; |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4576 | struct perf_event_context *ctx; |
| 4577 | int ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4578 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4579 | ctx = perf_event_ctx_lock(event); |
Peter Zijlstra (Intel) | b15f495 | 2015-09-03 20:07:47 -0700 | [diff] [blame] | 4580 | ret = __perf_read(event, buf, count); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4581 | perf_event_ctx_unlock(event, ctx); |
| 4582 | |
| 4583 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4584 | } |
| 4585 | |
| 4586 | static unsigned int perf_poll(struct file *file, poll_table *wait) |
| 4587 | { |
| 4588 | struct perf_event *event = file->private_data; |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4589 | struct ring_buffer *rb; |
Jiri Olsa | 61b6768 | 2014-08-13 19:39:56 +0200 | [diff] [blame] | 4590 | unsigned int events = POLLHUP; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4591 | |
Sebastian Andrzej Siewior | e708d7a | 2014-08-04 15:31:08 +0200 | [diff] [blame] | 4592 | poll_wait(file, &event->waitq, wait); |
Jiri Olsa | 179033b | 2014-08-07 11:48:26 -0400 | [diff] [blame] | 4593 | |
Jiri Olsa | dc63398 | 2014-09-12 13:18:26 +0200 | [diff] [blame] | 4594 | if (is_event_hup(event)) |
Jiri Olsa | 179033b | 2014-08-07 11:48:26 -0400 | [diff] [blame] | 4595 | return events; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4596 | |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 4597 | /* |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 4598 | * Pin the event->rb by taking event->mmap_mutex; otherwise |
| 4599 | * 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] | 4600 | */ |
| 4601 | mutex_lock(&event->mmap_mutex); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 4602 | rb = event->rb; |
| 4603 | if (rb) |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4604 | events = atomic_xchg(&rb->poll, 0); |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 4605 | mutex_unlock(&event->mmap_mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4606 | return events; |
| 4607 | } |
| 4608 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4609 | static void _perf_event_reset(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4610 | { |
Sukadev Bhattiprolu | 7d88962 | 2015-09-03 20:07:50 -0700 | [diff] [blame] | 4611 | (void)perf_event_read(event, false); |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 4612 | local64_set(&event->count, 0); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4613 | perf_event_update_userpage(event); |
| 4614 | } |
| 4615 | |
| 4616 | /* |
| 4617 | * Holding the top-level event's child_mutex means that any |
| 4618 | * descendant process that has inherited this event will block |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 4619 | * 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] | 4620 | * task existence requirements of perf_event_enable/disable. |
| 4621 | */ |
| 4622 | static void perf_event_for_each_child(struct perf_event *event, |
| 4623 | void (*func)(struct perf_event *)) |
| 4624 | { |
| 4625 | struct perf_event *child; |
| 4626 | |
| 4627 | WARN_ON_ONCE(event->ctx->parent_ctx); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4628 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4629 | mutex_lock(&event->child_mutex); |
| 4630 | func(event); |
| 4631 | list_for_each_entry(child, &event->child_list, child_list) |
| 4632 | func(child); |
| 4633 | mutex_unlock(&event->child_mutex); |
| 4634 | } |
| 4635 | |
| 4636 | static void perf_event_for_each(struct perf_event *event, |
| 4637 | void (*func)(struct perf_event *)) |
| 4638 | { |
| 4639 | struct perf_event_context *ctx = event->ctx; |
| 4640 | struct perf_event *sibling; |
| 4641 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4642 | lockdep_assert_held(&ctx->mutex); |
| 4643 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4644 | event = event->group_leader; |
| 4645 | |
| 4646 | perf_event_for_each_child(event, func); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4647 | list_for_each_entry(sibling, &event->sibling_list, group_entry) |
Michael Ellerman | 724b6da | 2012-04-11 11:54:13 +1000 | [diff] [blame] | 4648 | perf_event_for_each_child(sibling, func); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4649 | } |
| 4650 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 4651 | static void __perf_event_period(struct perf_event *event, |
| 4652 | struct perf_cpu_context *cpuctx, |
| 4653 | struct perf_event_context *ctx, |
| 4654 | void *info) |
Peter Zijlstra | 0017960 | 2015-11-30 16:26:35 +0100 | [diff] [blame] | 4655 | { |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 4656 | u64 value = *((u64 *)info); |
Peter Zijlstra | c7999c6 | 2015-08-04 19:22:49 +0200 | [diff] [blame] | 4657 | bool active; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4658 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4659 | if (event->attr.freq) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4660 | event->attr.sample_freq = value; |
| 4661 | } else { |
| 4662 | event->attr.sample_period = value; |
| 4663 | event->hw.sample_period = value; |
| 4664 | } |
Peter Zijlstra | bad7192 | 2013-11-27 13:54:38 +0000 | [diff] [blame] | 4665 | |
| 4666 | active = (event->state == PERF_EVENT_STATE_ACTIVE); |
| 4667 | if (active) { |
| 4668 | perf_pmu_disable(ctx->pmu); |
Peter Zijlstra | 1e02cd4 | 2016-03-10 15:39:24 +0100 | [diff] [blame] | 4669 | /* |
| 4670 | * We could be throttled; unthrottle now to avoid the tick |
| 4671 | * trying to unthrottle while we already re-started the event. |
| 4672 | */ |
| 4673 | if (event->hw.interrupts == MAX_INTERRUPTS) { |
| 4674 | event->hw.interrupts = 0; |
| 4675 | perf_log_throttle(event, 1); |
| 4676 | } |
Peter Zijlstra | bad7192 | 2013-11-27 13:54:38 +0000 | [diff] [blame] | 4677 | event->pmu->stop(event, PERF_EF_UPDATE); |
| 4678 | } |
| 4679 | |
| 4680 | local64_set(&event->hw.period_left, 0); |
| 4681 | |
| 4682 | if (active) { |
| 4683 | event->pmu->start(event, PERF_EF_RELOAD); |
| 4684 | perf_pmu_enable(ctx->pmu); |
| 4685 | } |
Peter Zijlstra | c7999c6 | 2015-08-04 19:22:49 +0200 | [diff] [blame] | 4686 | } |
| 4687 | |
| 4688 | static int perf_event_period(struct perf_event *event, u64 __user *arg) |
| 4689 | { |
Peter Zijlstra | c7999c6 | 2015-08-04 19:22:49 +0200 | [diff] [blame] | 4690 | u64 value; |
| 4691 | |
| 4692 | if (!is_sampling_event(event)) |
| 4693 | return -EINVAL; |
| 4694 | |
| 4695 | if (copy_from_user(&value, arg, sizeof(value))) |
| 4696 | return -EFAULT; |
| 4697 | |
| 4698 | if (!value) |
| 4699 | return -EINVAL; |
| 4700 | |
| 4701 | if (event->attr.freq && value > sysctl_perf_event_sample_rate) |
| 4702 | return -EINVAL; |
| 4703 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 4704 | event_function_call(event, __perf_event_period, &value); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4705 | |
Peter Zijlstra | c7999c6 | 2015-08-04 19:22:49 +0200 | [diff] [blame] | 4706 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4707 | } |
| 4708 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4709 | static const struct file_operations perf_fops; |
| 4710 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 4711 | static inline int perf_fget_light(int fd, struct fd *p) |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4712 | { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 4713 | struct fd f = fdget(fd); |
| 4714 | if (!f.file) |
| 4715 | return -EBADF; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4716 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 4717 | if (f.file->f_op != &perf_fops) { |
| 4718 | fdput(f); |
| 4719 | return -EBADF; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4720 | } |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 4721 | *p = f; |
| 4722 | return 0; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4723 | } |
| 4724 | |
| 4725 | static int perf_event_set_output(struct perf_event *event, |
| 4726 | struct perf_event *output_event); |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 4727 | 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] | 4728 | 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] | 4729 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4730 | 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] | 4731 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4732 | void (*func)(struct perf_event *); |
| 4733 | u32 flags = arg; |
| 4734 | |
| 4735 | switch (cmd) { |
| 4736 | case PERF_EVENT_IOC_ENABLE: |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4737 | func = _perf_event_enable; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4738 | break; |
| 4739 | case PERF_EVENT_IOC_DISABLE: |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4740 | func = _perf_event_disable; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4741 | break; |
| 4742 | case PERF_EVENT_IOC_RESET: |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4743 | func = _perf_event_reset; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4744 | break; |
| 4745 | |
| 4746 | case PERF_EVENT_IOC_REFRESH: |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4747 | return _perf_event_refresh(event, arg); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4748 | |
| 4749 | case PERF_EVENT_IOC_PERIOD: |
| 4750 | return perf_event_period(event, (u64 __user *)arg); |
| 4751 | |
Jiri Olsa | cf4957f | 2012-10-24 13:37:58 +0200 | [diff] [blame] | 4752 | case PERF_EVENT_IOC_ID: |
| 4753 | { |
| 4754 | u64 id = primary_event_id(event); |
| 4755 | |
| 4756 | if (copy_to_user((void __user *)arg, &id, sizeof(id))) |
| 4757 | return -EFAULT; |
| 4758 | return 0; |
| 4759 | } |
| 4760 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4761 | case PERF_EVENT_IOC_SET_OUTPUT: |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4762 | { |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4763 | int ret; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4764 | if (arg != -1) { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 4765 | struct perf_event *output_event; |
| 4766 | struct fd output; |
| 4767 | ret = perf_fget_light(arg, &output); |
| 4768 | if (ret) |
| 4769 | return ret; |
| 4770 | output_event = output.file->private_data; |
| 4771 | ret = perf_event_set_output(event, output_event); |
| 4772 | fdput(output); |
| 4773 | } else { |
| 4774 | ret = perf_event_set_output(event, NULL); |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4775 | } |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 4776 | return ret; |
| 4777 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4778 | |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 4779 | case PERF_EVENT_IOC_SET_FILTER: |
| 4780 | return perf_event_set_filter(event, (void __user *)arg); |
| 4781 | |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 4782 | case PERF_EVENT_IOC_SET_BPF: |
| 4783 | return perf_event_set_bpf_prog(event, arg); |
| 4784 | |
Wang Nan | 86e7972 | 2016-03-28 06:41:29 +0000 | [diff] [blame] | 4785 | case PERF_EVENT_IOC_PAUSE_OUTPUT: { |
| 4786 | struct ring_buffer *rb; |
| 4787 | |
| 4788 | rcu_read_lock(); |
| 4789 | rb = rcu_dereference(event->rb); |
| 4790 | if (!rb || !rb->nr_pages) { |
| 4791 | rcu_read_unlock(); |
| 4792 | return -EINVAL; |
| 4793 | } |
| 4794 | rb_toggle_paused(rb, !!arg); |
| 4795 | rcu_read_unlock(); |
| 4796 | return 0; |
| 4797 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4798 | default: |
| 4799 | return -ENOTTY; |
| 4800 | } |
| 4801 | |
| 4802 | if (flags & PERF_IOC_FLAG_GROUP) |
| 4803 | perf_event_for_each(event, func); |
| 4804 | else |
| 4805 | perf_event_for_each_child(event, func); |
| 4806 | |
| 4807 | return 0; |
| 4808 | } |
| 4809 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4810 | static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 4811 | { |
| 4812 | struct perf_event *event = file->private_data; |
| 4813 | struct perf_event_context *ctx; |
| 4814 | long ret; |
| 4815 | |
| 4816 | ctx = perf_event_ctx_lock(event); |
| 4817 | ret = _perf_ioctl(event, cmd, arg); |
| 4818 | perf_event_ctx_unlock(event, ctx); |
| 4819 | |
| 4820 | return ret; |
| 4821 | } |
| 4822 | |
Pawel Moll | b3f2078 | 2014-06-13 16:03:32 +0100 | [diff] [blame] | 4823 | #ifdef CONFIG_COMPAT |
| 4824 | static long perf_compat_ioctl(struct file *file, unsigned int cmd, |
| 4825 | unsigned long arg) |
| 4826 | { |
| 4827 | switch (_IOC_NR(cmd)) { |
| 4828 | case _IOC_NR(PERF_EVENT_IOC_SET_FILTER): |
| 4829 | case _IOC_NR(PERF_EVENT_IOC_ID): |
| 4830 | /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */ |
| 4831 | if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) { |
| 4832 | cmd &= ~IOCSIZE_MASK; |
| 4833 | cmd |= sizeof(void *) << IOCSIZE_SHIFT; |
| 4834 | } |
| 4835 | break; |
| 4836 | } |
| 4837 | return perf_ioctl(file, cmd, arg); |
| 4838 | } |
| 4839 | #else |
| 4840 | # define perf_compat_ioctl NULL |
| 4841 | #endif |
| 4842 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4843 | int perf_event_task_enable(void) |
| 4844 | { |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4845 | struct perf_event_context *ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4846 | struct perf_event *event; |
| 4847 | |
| 4848 | mutex_lock(¤t->perf_event_mutex); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4849 | list_for_each_entry(event, ¤t->perf_event_list, owner_entry) { |
| 4850 | ctx = perf_event_ctx_lock(event); |
| 4851 | perf_event_for_each_child(event, _perf_event_enable); |
| 4852 | perf_event_ctx_unlock(event, ctx); |
| 4853 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4854 | mutex_unlock(¤t->perf_event_mutex); |
| 4855 | |
| 4856 | return 0; |
| 4857 | } |
| 4858 | |
| 4859 | int perf_event_task_disable(void) |
| 4860 | { |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4861 | struct perf_event_context *ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4862 | struct perf_event *event; |
| 4863 | |
| 4864 | mutex_lock(¤t->perf_event_mutex); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 4865 | list_for_each_entry(event, ¤t->perf_event_list, owner_entry) { |
| 4866 | ctx = perf_event_ctx_lock(event); |
| 4867 | perf_event_for_each_child(event, _perf_event_disable); |
| 4868 | perf_event_ctx_unlock(event, ctx); |
| 4869 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4870 | mutex_unlock(¤t->perf_event_mutex); |
| 4871 | |
| 4872 | return 0; |
| 4873 | } |
| 4874 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4875 | static int perf_event_index(struct perf_event *event) |
| 4876 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 4877 | if (event->hw.state & PERF_HES_STOPPED) |
| 4878 | return 0; |
| 4879 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4880 | if (event->state != PERF_EVENT_STATE_ACTIVE) |
| 4881 | return 0; |
| 4882 | |
Peter Zijlstra | 35edc2a | 2011-11-20 20:36:02 +0100 | [diff] [blame] | 4883 | return event->pmu->event_idx(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4884 | } |
| 4885 | |
Eric B Munson | c479429 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 4886 | static void calc_timer_values(struct perf_event *event, |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4887 | u64 *now, |
Eric B Munson | 7f310a5 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 4888 | u64 *enabled, |
| 4889 | u64 *running) |
Eric B Munson | c479429 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 4890 | { |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4891 | u64 ctx_time; |
Eric B Munson | c479429 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 4892 | |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4893 | *now = perf_clock(); |
| 4894 | ctx_time = event->shadow_ctx_time + *now; |
Eric B Munson | c479429 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 4895 | *enabled = ctx_time - event->tstamp_enabled; |
| 4896 | *running = ctx_time - event->tstamp_running; |
| 4897 | } |
| 4898 | |
Peter Zijlstra | fa731587 | 2013-09-19 10:16:42 +0200 | [diff] [blame] | 4899 | static void perf_event_init_userpage(struct perf_event *event) |
| 4900 | { |
| 4901 | struct perf_event_mmap_page *userpg; |
| 4902 | struct ring_buffer *rb; |
| 4903 | |
| 4904 | rcu_read_lock(); |
| 4905 | rb = rcu_dereference(event->rb); |
| 4906 | if (!rb) |
| 4907 | goto unlock; |
| 4908 | |
| 4909 | userpg = rb->user_page; |
| 4910 | |
| 4911 | /* Allow new userspace to detect that bit 0 is deprecated */ |
| 4912 | userpg->cap_bit0_is_deprecated = 1; |
| 4913 | userpg->size = offsetof(struct perf_event_mmap_page, __reserved); |
Alexander Shishkin | e8c6dea | 2015-01-14 14:18:10 +0200 | [diff] [blame] | 4914 | userpg->data_offset = PAGE_SIZE; |
| 4915 | userpg->data_size = perf_data_size(rb); |
Peter Zijlstra | fa731587 | 2013-09-19 10:16:42 +0200 | [diff] [blame] | 4916 | |
| 4917 | unlock: |
| 4918 | rcu_read_unlock(); |
| 4919 | } |
| 4920 | |
Andy Lutomirski | c1317ec | 2014-10-24 15:58:11 -0700 | [diff] [blame] | 4921 | void __weak arch_perf_update_userpage( |
| 4922 | struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now) |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4923 | { |
| 4924 | } |
| 4925 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4926 | /* |
| 4927 | * Callers need to ensure there can be no nesting of this function, otherwise |
| 4928 | * the seqlock logic goes bad. We can not serialize this because the arch |
| 4929 | * code calls this from NMI context. |
| 4930 | */ |
| 4931 | void perf_event_update_userpage(struct perf_event *event) |
| 4932 | { |
| 4933 | struct perf_event_mmap_page *userpg; |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4934 | struct ring_buffer *rb; |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4935 | u64 enabled, running, now; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4936 | |
| 4937 | rcu_read_lock(); |
Peter Zijlstra | 5ec4c59 | 2013-08-02 21:16:30 +0200 | [diff] [blame] | 4938 | rb = rcu_dereference(event->rb); |
| 4939 | if (!rb) |
| 4940 | goto unlock; |
| 4941 | |
Eric B Munson | 0d64120 | 2011-06-24 12:26:26 -0400 | [diff] [blame] | 4942 | /* |
| 4943 | * compute total_time_enabled, total_time_running |
| 4944 | * based on snapshot values taken when the event |
| 4945 | * was last scheduled in. |
| 4946 | * |
| 4947 | * we cannot simply called update_context_time() |
| 4948 | * because of locking issue as we can be called in |
| 4949 | * NMI context |
| 4950 | */ |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4951 | calc_timer_values(event, &now, &enabled, &running); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4952 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4953 | userpg = rb->user_page; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4954 | /* |
| 4955 | * Disable preemption so as to not let the corresponding user-space |
| 4956 | * spin too long if we get preempted. |
| 4957 | */ |
| 4958 | preempt_disable(); |
| 4959 | ++userpg->lock; |
| 4960 | barrier(); |
| 4961 | userpg->index = perf_event_index(event); |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 4962 | userpg->offset = perf_event_count(event); |
Peter Zijlstra | 365a403 | 2011-11-21 20:58:59 +0100 | [diff] [blame] | 4963 | if (userpg->index) |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 4964 | userpg->offset -= local64_read(&event->hw.prev_count); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4965 | |
Eric B Munson | 0d64120 | 2011-06-24 12:26:26 -0400 | [diff] [blame] | 4966 | userpg->time_enabled = enabled + |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4967 | atomic64_read(&event->child_total_time_enabled); |
| 4968 | |
Eric B Munson | 0d64120 | 2011-06-24 12:26:26 -0400 | [diff] [blame] | 4969 | userpg->time_running = running + |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4970 | atomic64_read(&event->child_total_time_running); |
| 4971 | |
Andy Lutomirski | c1317ec | 2014-10-24 15:58:11 -0700 | [diff] [blame] | 4972 | arch_perf_update_userpage(event, userpg, now); |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 4973 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 4974 | barrier(); |
| 4975 | ++userpg->lock; |
| 4976 | preempt_enable(); |
| 4977 | unlock: |
| 4978 | rcu_read_unlock(); |
| 4979 | } |
| 4980 | |
Dave Jiang | 11bac80 | 2017-02-24 14:56:41 -0800 | [diff] [blame] | 4981 | static int perf_mmap_fault(struct vm_fault *vmf) |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 4982 | { |
Dave Jiang | 11bac80 | 2017-02-24 14:56:41 -0800 | [diff] [blame] | 4983 | struct perf_event *event = vmf->vma->vm_file->private_data; |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4984 | struct ring_buffer *rb; |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 4985 | int ret = VM_FAULT_SIGBUS; |
| 4986 | |
| 4987 | if (vmf->flags & FAULT_FLAG_MKWRITE) { |
| 4988 | if (vmf->pgoff == 0) |
| 4989 | ret = 0; |
| 4990 | return ret; |
| 4991 | } |
| 4992 | |
| 4993 | rcu_read_lock(); |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 4994 | rb = rcu_dereference(event->rb); |
| 4995 | if (!rb) |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 4996 | goto unlock; |
| 4997 | |
| 4998 | if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE)) |
| 4999 | goto unlock; |
| 5000 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5001 | vmf->page = perf_mmap_to_page(rb, vmf->pgoff); |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 5002 | if (!vmf->page) |
| 5003 | goto unlock; |
| 5004 | |
| 5005 | get_page(vmf->page); |
Dave Jiang | 11bac80 | 2017-02-24 14:56:41 -0800 | [diff] [blame] | 5006 | vmf->page->mapping = vmf->vma->vm_file->f_mapping; |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 5007 | vmf->page->index = vmf->pgoff; |
| 5008 | |
| 5009 | ret = 0; |
| 5010 | unlock: |
| 5011 | rcu_read_unlock(); |
| 5012 | |
| 5013 | return ret; |
| 5014 | } |
| 5015 | |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5016 | static void ring_buffer_attach(struct perf_event *event, |
| 5017 | struct ring_buffer *rb) |
| 5018 | { |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5019 | struct ring_buffer *old_rb = NULL; |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5020 | unsigned long flags; |
| 5021 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5022 | if (event->rb) { |
| 5023 | /* |
| 5024 | * Should be impossible, we set this when removing |
| 5025 | * event->rb_entry and wait/clear when adding event->rb_entry. |
| 5026 | */ |
| 5027 | WARN_ON_ONCE(event->rcu_pending); |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5028 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5029 | old_rb = event->rb; |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5030 | spin_lock_irqsave(&old_rb->event_lock, flags); |
| 5031 | list_del_rcu(&event->rb_entry); |
| 5032 | spin_unlock_irqrestore(&old_rb->event_lock, flags); |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5033 | |
Oleg Nesterov | 2f993cf | 2015-05-30 22:04:25 +0200 | [diff] [blame] | 5034 | event->rcu_batches = get_state_synchronize_rcu(); |
| 5035 | event->rcu_pending = 1; |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5036 | } |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5037 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5038 | if (rb) { |
Oleg Nesterov | 2f993cf | 2015-05-30 22:04:25 +0200 | [diff] [blame] | 5039 | if (event->rcu_pending) { |
| 5040 | cond_synchronize_rcu(event->rcu_batches); |
| 5041 | event->rcu_pending = 0; |
| 5042 | } |
| 5043 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5044 | spin_lock_irqsave(&rb->event_lock, flags); |
| 5045 | list_add_rcu(&event->rb_entry, &rb->event_list); |
| 5046 | spin_unlock_irqrestore(&rb->event_lock, flags); |
| 5047 | } |
| 5048 | |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 5049 | /* |
| 5050 | * Avoid racing with perf_mmap_close(AUX): stop the event |
| 5051 | * before swizzling the event::rb pointer; if it's getting |
| 5052 | * unmapped, its aux_mmap_count will be 0 and it won't |
| 5053 | * restart. See the comment in __perf_pmu_output_stop(). |
| 5054 | * |
| 5055 | * Data will inevitably be lost when set_output is done in |
| 5056 | * mid-air, but then again, whoever does it like this is |
| 5057 | * not in for the data anyway. |
| 5058 | */ |
| 5059 | if (has_aux(event)) |
| 5060 | perf_event_stop(event, 0); |
| 5061 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5062 | rcu_assign_pointer(event->rb, rb); |
| 5063 | |
| 5064 | if (old_rb) { |
| 5065 | ring_buffer_put(old_rb); |
| 5066 | /* |
| 5067 | * Since we detached before setting the new rb, so that we |
| 5068 | * could attach the new rb, we could have missed a wakeup. |
| 5069 | * Provide it now. |
| 5070 | */ |
| 5071 | wake_up_all(&event->waitq); |
| 5072 | } |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5073 | } |
| 5074 | |
| 5075 | static void ring_buffer_wakeup(struct perf_event *event) |
| 5076 | { |
| 5077 | struct ring_buffer *rb; |
| 5078 | |
| 5079 | rcu_read_lock(); |
| 5080 | rb = rcu_dereference(event->rb); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5081 | if (rb) { |
| 5082 | list_for_each_entry_rcu(event, &rb->event_list, rb_entry) |
| 5083 | wake_up_all(&event->waitq); |
| 5084 | } |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5085 | rcu_read_unlock(); |
| 5086 | } |
| 5087 | |
Alexander Shishkin | fdc2670 | 2015-01-14 14:18:16 +0200 | [diff] [blame] | 5088 | struct ring_buffer *ring_buffer_get(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5089 | { |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5090 | struct ring_buffer *rb; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5091 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5092 | rcu_read_lock(); |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5093 | rb = rcu_dereference(event->rb); |
| 5094 | if (rb) { |
| 5095 | if (!atomic_inc_not_zero(&rb->refcount)) |
| 5096 | rb = NULL; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5097 | } |
| 5098 | rcu_read_unlock(); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5099 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5100 | return rb; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5101 | } |
| 5102 | |
Alexander Shishkin | fdc2670 | 2015-01-14 14:18:16 +0200 | [diff] [blame] | 5103 | void ring_buffer_put(struct ring_buffer *rb) |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5104 | { |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5105 | if (!atomic_dec_and_test(&rb->refcount)) |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5106 | return; |
| 5107 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5108 | WARN_ON_ONCE(!list_empty(&rb->event_list)); |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5109 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5110 | call_rcu(&rb->rcu_head, rb_free_rcu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5111 | } |
| 5112 | |
| 5113 | static void perf_mmap_open(struct vm_area_struct *vma) |
| 5114 | { |
| 5115 | struct perf_event *event = vma->vm_file->private_data; |
| 5116 | |
| 5117 | atomic_inc(&event->mmap_count); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5118 | atomic_inc(&event->rb->mmap_count); |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5119 | |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5120 | if (vma->vm_pgoff) |
| 5121 | atomic_inc(&event->rb->aux_mmap_count); |
| 5122 | |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5123 | if (event->pmu->event_mapped) |
Peter Zijlstra | bfe33492 | 2017-08-02 19:39:30 +0200 | [diff] [blame] | 5124 | event->pmu->event_mapped(event, vma->vm_mm); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5125 | } |
| 5126 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 5127 | static void perf_pmu_output_stop(struct perf_event *event); |
| 5128 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5129 | /* |
| 5130 | * A buffer can be mmap()ed multiple times; either directly through the same |
| 5131 | * event, or through other events by use of perf_event_set_output(). |
| 5132 | * |
| 5133 | * In order to undo the VM accounting done by perf_mmap() we need to destroy |
| 5134 | * the buffer here, where we still have a VM context. This means we need |
| 5135 | * to detach all events redirecting to us. |
| 5136 | */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5137 | static void perf_mmap_close(struct vm_area_struct *vma) |
| 5138 | { |
| 5139 | struct perf_event *event = vma->vm_file->private_data; |
| 5140 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5141 | struct ring_buffer *rb = ring_buffer_get(event); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5142 | struct user_struct *mmap_user = rb->mmap_user; |
| 5143 | int mmap_locked = rb->mmap_locked; |
| 5144 | unsigned long size = perf_data_size(rb); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5145 | |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5146 | if (event->pmu->event_unmapped) |
Peter Zijlstra | bfe33492 | 2017-08-02 19:39:30 +0200 | [diff] [blame] | 5147 | event->pmu->event_unmapped(event, vma->vm_mm); |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5148 | |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5149 | /* |
| 5150 | * rb->aux_mmap_count will always drop before rb->mmap_count and |
| 5151 | * event->mmap_count, so it is ok to use event->mmap_mutex to |
| 5152 | * serialize with perf_mmap here. |
| 5153 | */ |
| 5154 | if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff && |
| 5155 | atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) { |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 5156 | /* |
| 5157 | * Stop all AUX events that are writing to this buffer, |
| 5158 | * so that we can free its AUX pages and corresponding PMU |
| 5159 | * data. Note that after rb::aux_mmap_count dropped to zero, |
| 5160 | * they won't start any more (see perf_aux_output_begin()). |
| 5161 | */ |
| 5162 | perf_pmu_output_stop(event); |
| 5163 | |
| 5164 | /* now it's safe to free the pages */ |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5165 | atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm); |
| 5166 | vma->vm_mm->pinned_vm -= rb->aux_mmap_locked; |
| 5167 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 5168 | /* this has to be the last one */ |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5169 | rb_free_aux(rb); |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 5170 | WARN_ON_ONCE(atomic_read(&rb->aux_refcount)); |
| 5171 | |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5172 | mutex_unlock(&event->mmap_mutex); |
| 5173 | } |
| 5174 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5175 | atomic_dec(&rb->mmap_count); |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5176 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5177 | if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex)) |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5178 | goto out_put; |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5179 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5180 | ring_buffer_attach(event, NULL); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5181 | mutex_unlock(&event->mmap_mutex); |
| 5182 | |
| 5183 | /* 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] | 5184 | if (atomic_read(&rb->mmap_count)) |
| 5185 | goto out_put; |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5186 | |
| 5187 | /* |
| 5188 | * No other mmap()s, detach from all other events that might redirect |
| 5189 | * into the now unreachable buffer. Somewhat complicated by the |
| 5190 | * fact that rb::event_lock otherwise nests inside mmap_mutex. |
| 5191 | */ |
| 5192 | again: |
| 5193 | rcu_read_lock(); |
| 5194 | list_for_each_entry_rcu(event, &rb->event_list, rb_entry) { |
| 5195 | if (!atomic_long_inc_not_zero(&event->refcount)) { |
| 5196 | /* |
| 5197 | * This event is en-route to free_event() which will |
| 5198 | * detach it and remove it from the list. |
| 5199 | */ |
| 5200 | continue; |
| 5201 | } |
| 5202 | rcu_read_unlock(); |
| 5203 | |
| 5204 | mutex_lock(&event->mmap_mutex); |
| 5205 | /* |
| 5206 | * Check we didn't race with perf_event_set_output() which can |
| 5207 | * swizzle the rb from under us while we were waiting to |
| 5208 | * acquire mmap_mutex. |
| 5209 | * |
| 5210 | * If we find a different rb; ignore this event, a next |
| 5211 | * iteration will no longer find it on the list. We have to |
| 5212 | * still restart the iteration to make sure we're not now |
| 5213 | * iterating the wrong list. |
| 5214 | */ |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5215 | if (event->rb == rb) |
| 5216 | ring_buffer_attach(event, NULL); |
| 5217 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5218 | mutex_unlock(&event->mmap_mutex); |
| 5219 | put_event(event); |
| 5220 | |
| 5221 | /* |
| 5222 | * Restart the iteration; either we're on the wrong list or |
| 5223 | * destroyed its integrity by doing a deletion. |
| 5224 | */ |
| 5225 | goto again; |
| 5226 | } |
| 5227 | rcu_read_unlock(); |
| 5228 | |
| 5229 | /* |
| 5230 | * It could be there's still a few 0-ref events on the list; they'll |
| 5231 | * get cleaned up by free_event() -- they'll also still have their |
| 5232 | * ref on the rb and will free it whenever they are done with it. |
| 5233 | * |
| 5234 | * Aside from that, this buffer is 'fully' detached and unmapped, |
| 5235 | * undo the VM accounting. |
| 5236 | */ |
| 5237 | |
| 5238 | atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm); |
| 5239 | vma->vm_mm->pinned_vm -= mmap_locked; |
| 5240 | free_uid(mmap_user); |
| 5241 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 5242 | out_put: |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5243 | ring_buffer_put(rb); /* could be last */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5244 | } |
| 5245 | |
Alexey Dobriyan | f0f37e2f | 2009-09-27 22:29:37 +0400 | [diff] [blame] | 5246 | static const struct vm_operations_struct perf_mmap_vmops = { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5247 | .open = perf_mmap_open, |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5248 | .close = perf_mmap_close, /* non mergable */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5249 | .fault = perf_mmap_fault, |
| 5250 | .page_mkwrite = perf_mmap_fault, |
| 5251 | }; |
| 5252 | |
| 5253 | static int perf_mmap(struct file *file, struct vm_area_struct *vma) |
| 5254 | { |
| 5255 | struct perf_event *event = file->private_data; |
| 5256 | unsigned long user_locked, user_lock_limit; |
| 5257 | struct user_struct *user = current_user(); |
| 5258 | unsigned long locked, lock_limit; |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5259 | struct ring_buffer *rb = NULL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5260 | unsigned long vma_size; |
| 5261 | unsigned long nr_pages; |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5262 | long user_extra = 0, extra = 0; |
Peter Zijlstra | d57e34f | 2010-05-28 19:41:35 +0200 | [diff] [blame] | 5263 | int ret = 0, flags = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5264 | |
Peter Zijlstra | c792061 | 2010-05-18 10:33:24 +0200 | [diff] [blame] | 5265 | /* |
| 5266 | * Don't allow mmap() of inherited per-task counters. This would |
| 5267 | * create a performance issue due to all children writing to the |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5268 | * same rb. |
Peter Zijlstra | c792061 | 2010-05-18 10:33:24 +0200 | [diff] [blame] | 5269 | */ |
| 5270 | if (event->cpu == -1 && event->attr.inherit) |
| 5271 | return -EINVAL; |
| 5272 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5273 | if (!(vma->vm_flags & VM_SHARED)) |
| 5274 | return -EINVAL; |
| 5275 | |
| 5276 | vma_size = vma->vm_end - vma->vm_start; |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5277 | |
| 5278 | if (vma->vm_pgoff == 0) { |
| 5279 | nr_pages = (vma_size / PAGE_SIZE) - 1; |
| 5280 | } else { |
| 5281 | /* |
| 5282 | * AUX area mapping: if rb->aux_nr_pages != 0, it's already |
| 5283 | * mapped, all subsequent mappings should have the same size |
| 5284 | * and offset. Must be above the normal perf buffer. |
| 5285 | */ |
| 5286 | u64 aux_offset, aux_size; |
| 5287 | |
| 5288 | if (!event->rb) |
| 5289 | return -EINVAL; |
| 5290 | |
| 5291 | nr_pages = vma_size / PAGE_SIZE; |
| 5292 | |
| 5293 | mutex_lock(&event->mmap_mutex); |
| 5294 | ret = -EINVAL; |
| 5295 | |
| 5296 | rb = event->rb; |
| 5297 | if (!rb) |
| 5298 | goto aux_unlock; |
| 5299 | |
| 5300 | aux_offset = ACCESS_ONCE(rb->user_page->aux_offset); |
| 5301 | aux_size = ACCESS_ONCE(rb->user_page->aux_size); |
| 5302 | |
| 5303 | if (aux_offset < perf_data_size(rb) + PAGE_SIZE) |
| 5304 | goto aux_unlock; |
| 5305 | |
| 5306 | if (aux_offset != vma->vm_pgoff << PAGE_SHIFT) |
| 5307 | goto aux_unlock; |
| 5308 | |
| 5309 | /* already mapped with a different offset */ |
| 5310 | if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff) |
| 5311 | goto aux_unlock; |
| 5312 | |
| 5313 | if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE) |
| 5314 | goto aux_unlock; |
| 5315 | |
| 5316 | /* already mapped with a different size */ |
| 5317 | if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages) |
| 5318 | goto aux_unlock; |
| 5319 | |
| 5320 | if (!is_power_of_2(nr_pages)) |
| 5321 | goto aux_unlock; |
| 5322 | |
| 5323 | if (!atomic_inc_not_zero(&rb->mmap_count)) |
| 5324 | goto aux_unlock; |
| 5325 | |
| 5326 | if (rb_has_aux(rb)) { |
| 5327 | atomic_inc(&rb->aux_mmap_count); |
| 5328 | ret = 0; |
| 5329 | goto unlock; |
| 5330 | } |
| 5331 | |
| 5332 | atomic_set(&rb->aux_mmap_count, 1); |
| 5333 | user_extra = nr_pages; |
| 5334 | |
| 5335 | goto accounting; |
| 5336 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5337 | |
| 5338 | /* |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5339 | * 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] | 5340 | * can do bitmasks instead of modulo. |
| 5341 | */ |
Kan Liang | 2ed1131 | 2015-03-02 02:14:26 -0500 | [diff] [blame] | 5342 | if (nr_pages != 0 && !is_power_of_2(nr_pages)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5343 | return -EINVAL; |
| 5344 | |
| 5345 | if (vma_size != PAGE_SIZE * (1 + nr_pages)) |
| 5346 | return -EINVAL; |
| 5347 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5348 | WARN_ON_ONCE(event->ctx->parent_ctx); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5349 | again: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5350 | mutex_lock(&event->mmap_mutex); |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5351 | if (event->rb) { |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5352 | if (event->rb->nr_pages != nr_pages) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5353 | ret = -EINVAL; |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5354 | goto unlock; |
| 5355 | } |
| 5356 | |
| 5357 | if (!atomic_inc_not_zero(&event->rb->mmap_count)) { |
| 5358 | /* |
| 5359 | * Raced against perf_mmap_close() through |
| 5360 | * perf_event_set_output(). Try again, hope for better |
| 5361 | * luck. |
| 5362 | */ |
| 5363 | mutex_unlock(&event->mmap_mutex); |
| 5364 | goto again; |
| 5365 | } |
| 5366 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5367 | goto unlock; |
| 5368 | } |
| 5369 | |
| 5370 | user_extra = nr_pages + 1; |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5371 | |
| 5372 | accounting: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5373 | user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10); |
| 5374 | |
| 5375 | /* |
| 5376 | * Increase the limit linearly with more CPUs: |
| 5377 | */ |
| 5378 | user_lock_limit *= num_online_cpus(); |
| 5379 | |
| 5380 | user_locked = atomic_long_read(&user->locked_vm) + user_extra; |
| 5381 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5382 | if (user_locked > user_lock_limit) |
| 5383 | extra = user_locked - user_lock_limit; |
| 5384 | |
Jiri Slaby | 78d7d40 | 2010-03-05 13:42:54 -0800 | [diff] [blame] | 5385 | lock_limit = rlimit(RLIMIT_MEMLOCK); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5386 | lock_limit >>= PAGE_SHIFT; |
Christoph Lameter | bc3e53f | 2011-10-31 17:07:30 -0700 | [diff] [blame] | 5387 | locked = vma->vm_mm->pinned_vm + extra; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5388 | |
| 5389 | if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() && |
| 5390 | !capable(CAP_IPC_LOCK)) { |
| 5391 | ret = -EPERM; |
| 5392 | goto unlock; |
| 5393 | } |
| 5394 | |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5395 | WARN_ON(!rb && event->rb); |
Peter Zijlstra | 906010b | 2009-09-21 16:08:49 +0200 | [diff] [blame] | 5396 | |
Peter Zijlstra | d57e34f | 2010-05-28 19:41:35 +0200 | [diff] [blame] | 5397 | if (vma->vm_flags & VM_WRITE) |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5398 | flags |= RING_BUFFER_WRITABLE; |
Peter Zijlstra | d57e34f | 2010-05-28 19:41:35 +0200 | [diff] [blame] | 5399 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5400 | if (!rb) { |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5401 | rb = rb_alloc(nr_pages, |
| 5402 | event->attr.watermark ? event->attr.wakeup_watermark : 0, |
| 5403 | event->cpu, flags); |
| 5404 | |
| 5405 | if (!rb) { |
| 5406 | ret = -ENOMEM; |
| 5407 | goto unlock; |
| 5408 | } |
| 5409 | |
| 5410 | atomic_set(&rb->mmap_count, 1); |
| 5411 | rb->mmap_user = get_current_user(); |
| 5412 | rb->mmap_locked = extra; |
| 5413 | |
| 5414 | ring_buffer_attach(event, rb); |
| 5415 | |
| 5416 | perf_event_init_userpage(event); |
| 5417 | perf_event_update_userpage(event); |
| 5418 | } else { |
Alexander Shishkin | 1a59413 | 2015-01-14 14:18:18 +0200 | [diff] [blame] | 5419 | ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages, |
| 5420 | event->attr.aux_watermark, flags); |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5421 | if (!ret) |
| 5422 | rb->aux_mmap_locked = extra; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5423 | } |
Peter Zijlstra | 26cb63a | 2013-05-28 10:55:48 +0200 | [diff] [blame] | 5424 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5425 | unlock: |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5426 | if (!ret) { |
| 5427 | atomic_long_add(user_extra, &user->locked_vm); |
| 5428 | vma->vm_mm->pinned_vm += extra; |
| 5429 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 5430 | atomic_inc(&event->mmap_count); |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 5431 | } else if (rb) { |
| 5432 | atomic_dec(&rb->mmap_count); |
| 5433 | } |
| 5434 | aux_unlock: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5435 | mutex_unlock(&event->mmap_mutex); |
| 5436 | |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 5437 | /* |
| 5438 | * Since pinned accounting is per vm we cannot allow fork() to copy our |
| 5439 | * vma. |
| 5440 | */ |
Peter Zijlstra | 26cb63a | 2013-05-28 10:55:48 +0200 | [diff] [blame] | 5441 | vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5442 | vma->vm_ops = &perf_mmap_vmops; |
| 5443 | |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5444 | if (event->pmu->event_mapped) |
Peter Zijlstra | bfe33492 | 2017-08-02 19:39:30 +0200 | [diff] [blame] | 5445 | event->pmu->event_mapped(event, vma->vm_mm); |
Andy Lutomirski | 1e0fb9e | 2014-10-24 15:58:10 -0700 | [diff] [blame] | 5446 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5447 | return ret; |
| 5448 | } |
| 5449 | |
| 5450 | static int perf_fasync(int fd, struct file *filp, int on) |
| 5451 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 5452 | struct inode *inode = file_inode(filp); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5453 | struct perf_event *event = filp->private_data; |
| 5454 | int retval; |
| 5455 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 5456 | inode_lock(inode); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5457 | retval = fasync_helper(fd, filp, on, &event->fasync); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 5458 | inode_unlock(inode); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5459 | |
| 5460 | if (retval < 0) |
| 5461 | return retval; |
| 5462 | |
| 5463 | return 0; |
| 5464 | } |
| 5465 | |
| 5466 | static const struct file_operations perf_fops = { |
Arnd Bergmann | 3326c1c | 2010-03-23 19:09:33 +0100 | [diff] [blame] | 5467 | .llseek = no_llseek, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5468 | .release = perf_release, |
| 5469 | .read = perf_read, |
| 5470 | .poll = perf_poll, |
| 5471 | .unlocked_ioctl = perf_ioctl, |
Pawel Moll | b3f2078 | 2014-06-13 16:03:32 +0100 | [diff] [blame] | 5472 | .compat_ioctl = perf_compat_ioctl, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5473 | .mmap = perf_mmap, |
| 5474 | .fasync = perf_fasync, |
| 5475 | }; |
| 5476 | |
| 5477 | /* |
| 5478 | * Perf event wakeup |
| 5479 | * |
| 5480 | * If there's data, ensure we set the poll() state and publish everything |
| 5481 | * to user-space before waking everybody up. |
| 5482 | */ |
| 5483 | |
Peter Zijlstra | fed66e2cd | 2015-06-11 10:32:01 +0200 | [diff] [blame] | 5484 | static inline struct fasync_struct **perf_event_fasync(struct perf_event *event) |
| 5485 | { |
| 5486 | /* only the parent has fasync state */ |
| 5487 | if (event->parent) |
| 5488 | event = event->parent; |
| 5489 | return &event->fasync; |
| 5490 | } |
| 5491 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5492 | void perf_event_wakeup(struct perf_event *event) |
| 5493 | { |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 5494 | ring_buffer_wakeup(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5495 | |
| 5496 | if (event->pending_kill) { |
Peter Zijlstra | fed66e2cd | 2015-06-11 10:32:01 +0200 | [diff] [blame] | 5497 | kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5498 | event->pending_kill = 0; |
| 5499 | } |
| 5500 | } |
| 5501 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 5502 | static void perf_pending_event(struct irq_work *entry) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5503 | { |
| 5504 | struct perf_event *event = container_of(entry, |
| 5505 | struct perf_event, pending); |
Peter Zijlstra | d525211 | 2015-02-19 18:03:11 +0100 | [diff] [blame] | 5506 | int rctx; |
| 5507 | |
| 5508 | rctx = perf_swevent_get_recursion_context(); |
| 5509 | /* |
| 5510 | * If we 'fail' here, that's OK, it means recursion is already disabled |
| 5511 | * and we won't recurse 'further'. |
| 5512 | */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5513 | |
| 5514 | if (event->pending_disable) { |
| 5515 | event->pending_disable = 0; |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 5516 | perf_event_disable_local(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5517 | } |
| 5518 | |
| 5519 | if (event->pending_wakeup) { |
| 5520 | event->pending_wakeup = 0; |
| 5521 | perf_event_wakeup(event); |
| 5522 | } |
Peter Zijlstra | d525211 | 2015-02-19 18:03:11 +0100 | [diff] [blame] | 5523 | |
| 5524 | if (rctx >= 0) |
| 5525 | perf_swevent_put_recursion_context(rctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5526 | } |
| 5527 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5528 | /* |
Zhang, Yanmin | 39447b3 | 2010-04-19 13:32:41 +0800 | [diff] [blame] | 5529 | * We assume there is only KVM supporting the callbacks. |
| 5530 | * Later on, we might change it to a list if there is |
| 5531 | * another virtualization implementation supporting the callbacks. |
| 5532 | */ |
| 5533 | struct perf_guest_info_callbacks *perf_guest_cbs; |
| 5534 | |
| 5535 | int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs) |
| 5536 | { |
| 5537 | perf_guest_cbs = cbs; |
| 5538 | return 0; |
| 5539 | } |
| 5540 | EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks); |
| 5541 | |
| 5542 | int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs) |
| 5543 | { |
| 5544 | perf_guest_cbs = NULL; |
| 5545 | return 0; |
| 5546 | } |
| 5547 | EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks); |
| 5548 | |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5549 | static void |
| 5550 | perf_output_sample_regs(struct perf_output_handle *handle, |
| 5551 | struct pt_regs *regs, u64 mask) |
| 5552 | { |
| 5553 | int bit; |
Madhavan Srinivasan | 29dd328 | 2016-08-17 15:06:08 +0530 | [diff] [blame] | 5554 | DECLARE_BITMAP(_mask, 64); |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5555 | |
Madhavan Srinivasan | 29dd328 | 2016-08-17 15:06:08 +0530 | [diff] [blame] | 5556 | bitmap_from_u64(_mask, mask); |
| 5557 | for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) { |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5558 | u64 val; |
| 5559 | |
| 5560 | val = perf_reg_value(regs, bit); |
| 5561 | perf_output_put(handle, val); |
| 5562 | } |
| 5563 | } |
| 5564 | |
Stephane Eranian | 60e2364 | 2014-09-24 13:48:37 +0200 | [diff] [blame] | 5565 | static void perf_sample_regs_user(struct perf_regs *regs_user, |
Andy Lutomirski | 88a7c26 | 2015-01-04 10:36:19 -0800 | [diff] [blame] | 5566 | struct pt_regs *regs, |
| 5567 | struct pt_regs *regs_user_copy) |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5568 | { |
Andy Lutomirski | 88a7c26 | 2015-01-04 10:36:19 -0800 | [diff] [blame] | 5569 | if (user_mode(regs)) { |
| 5570 | regs_user->abi = perf_reg_abi(current); |
Peter Zijlstra | 2565711 | 2014-09-24 13:48:42 +0200 | [diff] [blame] | 5571 | regs_user->regs = regs; |
Andy Lutomirski | 88a7c26 | 2015-01-04 10:36:19 -0800 | [diff] [blame] | 5572 | } else if (current->mm) { |
| 5573 | perf_get_regs_user(regs_user, regs, regs_user_copy); |
Peter Zijlstra | 2565711 | 2014-09-24 13:48:42 +0200 | [diff] [blame] | 5574 | } else { |
| 5575 | regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE; |
| 5576 | regs_user->regs = NULL; |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5577 | } |
| 5578 | } |
| 5579 | |
Stephane Eranian | 60e2364 | 2014-09-24 13:48:37 +0200 | [diff] [blame] | 5580 | static void perf_sample_regs_intr(struct perf_regs *regs_intr, |
| 5581 | struct pt_regs *regs) |
| 5582 | { |
| 5583 | regs_intr->regs = regs; |
| 5584 | regs_intr->abi = perf_reg_abi(current); |
| 5585 | } |
| 5586 | |
| 5587 | |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 5588 | /* |
| 5589 | * Get remaining task size from user stack pointer. |
| 5590 | * |
| 5591 | * It'd be better to take stack vma map and limit this more |
| 5592 | * precisly, but there's no way to get it safely under interrupt, |
| 5593 | * so using TASK_SIZE as limit. |
| 5594 | */ |
| 5595 | static u64 perf_ustack_task_size(struct pt_regs *regs) |
| 5596 | { |
| 5597 | unsigned long addr = perf_user_stack_pointer(regs); |
| 5598 | |
| 5599 | if (!addr || addr >= TASK_SIZE) |
| 5600 | return 0; |
| 5601 | |
| 5602 | return TASK_SIZE - addr; |
| 5603 | } |
| 5604 | |
| 5605 | static u16 |
| 5606 | perf_sample_ustack_size(u16 stack_size, u16 header_size, |
| 5607 | struct pt_regs *regs) |
| 5608 | { |
| 5609 | u64 task_size; |
| 5610 | |
| 5611 | /* No regs, no stack pointer, no dump. */ |
| 5612 | if (!regs) |
| 5613 | return 0; |
| 5614 | |
| 5615 | /* |
| 5616 | * Check if we fit in with the requested stack size into the: |
| 5617 | * - TASK_SIZE |
| 5618 | * If we don't, we limit the size to the TASK_SIZE. |
| 5619 | * |
| 5620 | * - remaining sample size |
| 5621 | * If we don't, we customize the stack size to |
| 5622 | * fit in to the remaining sample size. |
| 5623 | */ |
| 5624 | |
| 5625 | task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs)); |
| 5626 | stack_size = min(stack_size, (u16) task_size); |
| 5627 | |
| 5628 | /* Current header size plus static size and dynamic size. */ |
| 5629 | header_size += 2 * sizeof(u64); |
| 5630 | |
| 5631 | /* Do we fit in with the current stack dump size? */ |
| 5632 | if ((u16) (header_size + stack_size) < header_size) { |
| 5633 | /* |
| 5634 | * If we overflow the maximum size for the sample, |
| 5635 | * we customize the stack dump size to fit in. |
| 5636 | */ |
| 5637 | stack_size = USHRT_MAX - header_size - sizeof(u64); |
| 5638 | stack_size = round_up(stack_size, sizeof(u64)); |
| 5639 | } |
| 5640 | |
| 5641 | return stack_size; |
| 5642 | } |
| 5643 | |
| 5644 | static void |
| 5645 | perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size, |
| 5646 | struct pt_regs *regs) |
| 5647 | { |
| 5648 | /* Case of a kernel thread, nothing to dump */ |
| 5649 | if (!regs) { |
| 5650 | u64 size = 0; |
| 5651 | perf_output_put(handle, size); |
| 5652 | } else { |
| 5653 | unsigned long sp; |
| 5654 | unsigned int rem; |
| 5655 | u64 dyn_size; |
| 5656 | |
| 5657 | /* |
| 5658 | * We dump: |
| 5659 | * static size |
| 5660 | * - the size requested by user or the best one we can fit |
| 5661 | * in to the sample max size |
| 5662 | * data |
| 5663 | * - user stack dump data |
| 5664 | * dynamic size |
| 5665 | * - the actual dumped size |
| 5666 | */ |
| 5667 | |
| 5668 | /* Static size. */ |
| 5669 | perf_output_put(handle, dump_size); |
| 5670 | |
| 5671 | /* Data. */ |
| 5672 | sp = perf_user_stack_pointer(regs); |
| 5673 | rem = __output_copy_user(handle, (void *) sp, dump_size); |
| 5674 | dyn_size = dump_size - rem; |
| 5675 | |
| 5676 | perf_output_skip(handle, rem); |
| 5677 | |
| 5678 | /* Dynamic size. */ |
| 5679 | perf_output_put(handle, dyn_size); |
| 5680 | } |
| 5681 | } |
| 5682 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 5683 | static void __perf_event_header__init_id(struct perf_event_header *header, |
| 5684 | struct perf_sample_data *data, |
| 5685 | struct perf_event *event) |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 5686 | { |
| 5687 | u64 sample_type = event->attr.sample_type; |
| 5688 | |
| 5689 | data->type = sample_type; |
| 5690 | header->size += event->id_header_size; |
| 5691 | |
| 5692 | if (sample_type & PERF_SAMPLE_TID) { |
| 5693 | /* namespace issues */ |
| 5694 | data->tid_entry.pid = perf_event_pid(event, current); |
| 5695 | data->tid_entry.tid = perf_event_tid(event, current); |
| 5696 | } |
| 5697 | |
| 5698 | if (sample_type & PERF_SAMPLE_TIME) |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 5699 | data->time = perf_event_clock(event); |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 5700 | |
Adrian Hunter | ff3d527 | 2013-08-27 11:23:07 +0300 | [diff] [blame] | 5701 | if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER)) |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 5702 | data->id = primary_event_id(event); |
| 5703 | |
| 5704 | if (sample_type & PERF_SAMPLE_STREAM_ID) |
| 5705 | data->stream_id = event->id; |
| 5706 | |
| 5707 | if (sample_type & PERF_SAMPLE_CPU) { |
| 5708 | data->cpu_entry.cpu = raw_smp_processor_id(); |
| 5709 | data->cpu_entry.reserved = 0; |
| 5710 | } |
| 5711 | } |
| 5712 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5713 | void perf_event_header__init_id(struct perf_event_header *header, |
| 5714 | struct perf_sample_data *data, |
| 5715 | struct perf_event *event) |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 5716 | { |
| 5717 | if (event->attr.sample_id_all) |
| 5718 | __perf_event_header__init_id(header, data, event); |
| 5719 | } |
| 5720 | |
| 5721 | static void __perf_event__output_id_sample(struct perf_output_handle *handle, |
| 5722 | struct perf_sample_data *data) |
| 5723 | { |
| 5724 | u64 sample_type = data->type; |
| 5725 | |
| 5726 | if (sample_type & PERF_SAMPLE_TID) |
| 5727 | perf_output_put(handle, data->tid_entry); |
| 5728 | |
| 5729 | if (sample_type & PERF_SAMPLE_TIME) |
| 5730 | perf_output_put(handle, data->time); |
| 5731 | |
| 5732 | if (sample_type & PERF_SAMPLE_ID) |
| 5733 | perf_output_put(handle, data->id); |
| 5734 | |
| 5735 | if (sample_type & PERF_SAMPLE_STREAM_ID) |
| 5736 | perf_output_put(handle, data->stream_id); |
| 5737 | |
| 5738 | if (sample_type & PERF_SAMPLE_CPU) |
| 5739 | perf_output_put(handle, data->cpu_entry); |
Adrian Hunter | ff3d527 | 2013-08-27 11:23:07 +0300 | [diff] [blame] | 5740 | |
| 5741 | if (sample_type & PERF_SAMPLE_IDENTIFIER) |
| 5742 | perf_output_put(handle, data->id); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 5743 | } |
| 5744 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5745 | void perf_event__output_id_sample(struct perf_event *event, |
| 5746 | struct perf_output_handle *handle, |
| 5747 | struct perf_sample_data *sample) |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 5748 | { |
| 5749 | if (event->attr.sample_id_all) |
| 5750 | __perf_event__output_id_sample(handle, sample); |
| 5751 | } |
| 5752 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5753 | static void perf_output_read_one(struct perf_output_handle *handle, |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5754 | struct perf_event *event, |
| 5755 | u64 enabled, u64 running) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5756 | { |
| 5757 | u64 read_format = event->attr.read_format; |
| 5758 | u64 values[4]; |
| 5759 | int n = 0; |
| 5760 | |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 5761 | values[n++] = perf_event_count(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5762 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) { |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5763 | values[n++] = enabled + |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5764 | atomic64_read(&event->child_total_time_enabled); |
| 5765 | } |
| 5766 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) { |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5767 | values[n++] = running + |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5768 | atomic64_read(&event->child_total_time_running); |
| 5769 | } |
| 5770 | if (read_format & PERF_FORMAT_ID) |
| 5771 | values[n++] = primary_event_id(event); |
| 5772 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5773 | __output_copy(handle, values, n * sizeof(u64)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5774 | } |
| 5775 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5776 | static void perf_output_read_group(struct perf_output_handle *handle, |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5777 | struct perf_event *event, |
| 5778 | u64 enabled, u64 running) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5779 | { |
| 5780 | struct perf_event *leader = event->group_leader, *sub; |
| 5781 | u64 read_format = event->attr.read_format; |
| 5782 | u64 values[5]; |
| 5783 | int n = 0; |
| 5784 | |
| 5785 | values[n++] = 1 + leader->nr_siblings; |
| 5786 | |
| 5787 | if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5788 | values[n++] = enabled; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5789 | |
| 5790 | if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5791 | values[n++] = running; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5792 | |
| 5793 | if (leader != event) |
| 5794 | leader->pmu->read(leader); |
| 5795 | |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 5796 | values[n++] = perf_event_count(leader); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5797 | if (read_format & PERF_FORMAT_ID) |
| 5798 | values[n++] = primary_event_id(leader); |
| 5799 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5800 | __output_copy(handle, values, n * sizeof(u64)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5801 | |
| 5802 | list_for_each_entry(sub, &leader->sibling_list, group_entry) { |
| 5803 | n = 0; |
| 5804 | |
Jiri Olsa | 6f5ab00 | 2012-10-15 20:13:45 +0200 | [diff] [blame] | 5805 | if ((sub != event) && |
| 5806 | (sub->state == PERF_EVENT_STATE_ACTIVE)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5807 | sub->pmu->read(sub); |
| 5808 | |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 5809 | values[n++] = perf_event_count(sub); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5810 | if (read_format & PERF_FORMAT_ID) |
| 5811 | values[n++] = primary_event_id(sub); |
| 5812 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5813 | __output_copy(handle, values, n * sizeof(u64)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5814 | } |
| 5815 | } |
| 5816 | |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5817 | #define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\ |
| 5818 | PERF_FORMAT_TOTAL_TIME_RUNNING) |
| 5819 | |
Peter Zijlstra | ba5213a | 2017-05-30 11:45:12 +0200 | [diff] [blame] | 5820 | /* |
| 5821 | * XXX PERF_SAMPLE_READ vs inherited events seems difficult. |
| 5822 | * |
| 5823 | * The problem is that its both hard and excessively expensive to iterate the |
| 5824 | * child list, not to mention that its impossible to IPI the children running |
| 5825 | * on another CPU, from interrupt/NMI context. |
| 5826 | */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5827 | static void perf_output_read(struct perf_output_handle *handle, |
| 5828 | struct perf_event *event) |
| 5829 | { |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 5830 | u64 enabled = 0, running = 0, now; |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5831 | u64 read_format = event->attr.read_format; |
| 5832 | |
| 5833 | /* |
| 5834 | * compute total_time_enabled, total_time_running |
| 5835 | * based on snapshot values taken when the event |
| 5836 | * was last scheduled in. |
| 5837 | * |
| 5838 | * we cannot simply called update_context_time() |
| 5839 | * because of locking issue as we are called in |
| 5840 | * NMI context |
| 5841 | */ |
Eric B Munson | c479429 | 2011-06-23 16:34:38 -0400 | [diff] [blame] | 5842 | if (read_format & PERF_FORMAT_TOTAL_TIMES) |
Peter Zijlstra | e3f3541 | 2011-11-21 11:43:53 +0100 | [diff] [blame] | 5843 | calc_timer_values(event, &now, &enabled, &running); |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5844 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5845 | if (event->attr.read_format & PERF_FORMAT_GROUP) |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5846 | perf_output_read_group(handle, event, enabled, running); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5847 | else |
Stephane Eranian | eed0152 | 2010-10-26 16:08:01 +0200 | [diff] [blame] | 5848 | perf_output_read_one(handle, event, enabled, running); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5849 | } |
| 5850 | |
| 5851 | void perf_output_sample(struct perf_output_handle *handle, |
| 5852 | struct perf_event_header *header, |
| 5853 | struct perf_sample_data *data, |
| 5854 | struct perf_event *event) |
| 5855 | { |
| 5856 | u64 sample_type = data->type; |
| 5857 | |
| 5858 | perf_output_put(handle, *header); |
| 5859 | |
Adrian Hunter | ff3d527 | 2013-08-27 11:23:07 +0300 | [diff] [blame] | 5860 | if (sample_type & PERF_SAMPLE_IDENTIFIER) |
| 5861 | perf_output_put(handle, data->id); |
| 5862 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5863 | if (sample_type & PERF_SAMPLE_IP) |
| 5864 | perf_output_put(handle, data->ip); |
| 5865 | |
| 5866 | if (sample_type & PERF_SAMPLE_TID) |
| 5867 | perf_output_put(handle, data->tid_entry); |
| 5868 | |
| 5869 | if (sample_type & PERF_SAMPLE_TIME) |
| 5870 | perf_output_put(handle, data->time); |
| 5871 | |
| 5872 | if (sample_type & PERF_SAMPLE_ADDR) |
| 5873 | perf_output_put(handle, data->addr); |
| 5874 | |
| 5875 | if (sample_type & PERF_SAMPLE_ID) |
| 5876 | perf_output_put(handle, data->id); |
| 5877 | |
| 5878 | if (sample_type & PERF_SAMPLE_STREAM_ID) |
| 5879 | perf_output_put(handle, data->stream_id); |
| 5880 | |
| 5881 | if (sample_type & PERF_SAMPLE_CPU) |
| 5882 | perf_output_put(handle, data->cpu_entry); |
| 5883 | |
| 5884 | if (sample_type & PERF_SAMPLE_PERIOD) |
| 5885 | perf_output_put(handle, data->period); |
| 5886 | |
| 5887 | if (sample_type & PERF_SAMPLE_READ) |
| 5888 | perf_output_read(handle, event); |
| 5889 | |
| 5890 | if (sample_type & PERF_SAMPLE_CALLCHAIN) { |
| 5891 | if (data->callchain) { |
| 5892 | int size = 1; |
| 5893 | |
| 5894 | if (data->callchain) |
| 5895 | size += data->callchain->nr; |
| 5896 | |
| 5897 | size *= sizeof(u64); |
| 5898 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 5899 | __output_copy(handle, data->callchain, size); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5900 | } else { |
| 5901 | u64 nr = 0; |
| 5902 | perf_output_put(handle, nr); |
| 5903 | } |
| 5904 | } |
| 5905 | |
| 5906 | if (sample_type & PERF_SAMPLE_RAW) { |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 5907 | struct perf_raw_record *raw = data->raw; |
Alexei Starovoitov | fa128e6 | 2015-10-20 20:02:33 -0700 | [diff] [blame] | 5908 | |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 5909 | if (raw) { |
| 5910 | struct perf_raw_frag *frag = &raw->frag; |
| 5911 | |
| 5912 | perf_output_put(handle, raw->size); |
| 5913 | do { |
| 5914 | if (frag->copy) { |
| 5915 | __output_custom(handle, frag->copy, |
| 5916 | frag->data, frag->size); |
| 5917 | } else { |
| 5918 | __output_copy(handle, frag->data, |
| 5919 | frag->size); |
| 5920 | } |
| 5921 | if (perf_raw_frag_last(frag)) |
| 5922 | break; |
| 5923 | frag = frag->next; |
| 5924 | } while (1); |
| 5925 | if (frag->pad) |
| 5926 | __output_skip(handle, NULL, frag->pad); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 5927 | } else { |
| 5928 | struct { |
| 5929 | u32 size; |
| 5930 | u32 data; |
| 5931 | } raw = { |
| 5932 | .size = sizeof(u32), |
| 5933 | .data = 0, |
| 5934 | }; |
| 5935 | perf_output_put(handle, raw); |
| 5936 | } |
| 5937 | } |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 5938 | |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 5939 | if (sample_type & PERF_SAMPLE_BRANCH_STACK) { |
| 5940 | if (data->br_stack) { |
| 5941 | size_t size; |
| 5942 | |
| 5943 | size = data->br_stack->nr |
| 5944 | * sizeof(struct perf_branch_entry); |
| 5945 | |
| 5946 | perf_output_put(handle, data->br_stack->nr); |
| 5947 | perf_output_copy(handle, data->br_stack->entries, size); |
| 5948 | } else { |
| 5949 | /* |
| 5950 | * we always store at least the value of nr |
| 5951 | */ |
| 5952 | u64 nr = 0; |
| 5953 | perf_output_put(handle, nr); |
| 5954 | } |
| 5955 | } |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 5956 | |
| 5957 | if (sample_type & PERF_SAMPLE_REGS_USER) { |
| 5958 | u64 abi = data->regs_user.abi; |
| 5959 | |
| 5960 | /* |
| 5961 | * If there are no regs to dump, notice it through |
| 5962 | * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE). |
| 5963 | */ |
| 5964 | perf_output_put(handle, abi); |
| 5965 | |
| 5966 | if (abi) { |
| 5967 | u64 mask = event->attr.sample_regs_user; |
| 5968 | perf_output_sample_regs(handle, |
| 5969 | data->regs_user.regs, |
| 5970 | mask); |
| 5971 | } |
| 5972 | } |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 5973 | |
Peter Zijlstra | a5cdd40 | 2013-07-16 17:09:07 +0200 | [diff] [blame] | 5974 | if (sample_type & PERF_SAMPLE_STACK_USER) { |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 5975 | perf_output_sample_ustack(handle, |
| 5976 | data->stack_user_size, |
| 5977 | data->regs_user.regs); |
Peter Zijlstra | a5cdd40 | 2013-07-16 17:09:07 +0200 | [diff] [blame] | 5978 | } |
Andi Kleen | c3feedf | 2013-01-24 16:10:28 +0100 | [diff] [blame] | 5979 | |
| 5980 | if (sample_type & PERF_SAMPLE_WEIGHT) |
| 5981 | perf_output_put(handle, data->weight); |
Stephane Eranian | d6be9ad | 2013-01-24 16:10:31 +0100 | [diff] [blame] | 5982 | |
| 5983 | if (sample_type & PERF_SAMPLE_DATA_SRC) |
| 5984 | perf_output_put(handle, data->data_src.val); |
Peter Zijlstra | a5cdd40 | 2013-07-16 17:09:07 +0200 | [diff] [blame] | 5985 | |
Andi Kleen | fdfbbd0 | 2013-09-20 07:40:39 -0700 | [diff] [blame] | 5986 | if (sample_type & PERF_SAMPLE_TRANSACTION) |
| 5987 | perf_output_put(handle, data->txn); |
| 5988 | |
Stephane Eranian | 60e2364 | 2014-09-24 13:48:37 +0200 | [diff] [blame] | 5989 | if (sample_type & PERF_SAMPLE_REGS_INTR) { |
| 5990 | u64 abi = data->regs_intr.abi; |
| 5991 | /* |
| 5992 | * If there are no regs to dump, notice it through |
| 5993 | * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE). |
| 5994 | */ |
| 5995 | perf_output_put(handle, abi); |
| 5996 | |
| 5997 | if (abi) { |
| 5998 | u64 mask = event->attr.sample_regs_intr; |
| 5999 | |
| 6000 | perf_output_sample_regs(handle, |
| 6001 | data->regs_intr.regs, |
| 6002 | mask); |
| 6003 | } |
| 6004 | } |
| 6005 | |
Peter Zijlstra | a5cdd40 | 2013-07-16 17:09:07 +0200 | [diff] [blame] | 6006 | if (!event->attr.watermark) { |
| 6007 | int wakeup_events = event->attr.wakeup_events; |
| 6008 | |
| 6009 | if (wakeup_events) { |
| 6010 | struct ring_buffer *rb = handle->rb; |
| 6011 | int events = local_inc_return(&rb->events); |
| 6012 | |
| 6013 | if (events >= wakeup_events) { |
| 6014 | local_sub(wakeup_events, &rb->events); |
| 6015 | local_inc(&rb->wakeup); |
| 6016 | } |
| 6017 | } |
| 6018 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6019 | } |
| 6020 | |
| 6021 | void perf_prepare_sample(struct perf_event_header *header, |
| 6022 | struct perf_sample_data *data, |
| 6023 | struct perf_event *event, |
| 6024 | struct pt_regs *regs) |
| 6025 | { |
| 6026 | u64 sample_type = event->attr.sample_type; |
| 6027 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6028 | header->type = PERF_RECORD_SAMPLE; |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 6029 | header->size = sizeof(*header) + event->header_size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6030 | |
| 6031 | header->misc = 0; |
| 6032 | header->misc |= perf_misc_flags(regs); |
| 6033 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6034 | __perf_event_header__init_id(header, data, event); |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 6035 | |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 6036 | if (sample_type & PERF_SAMPLE_IP) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6037 | data->ip = perf_instruction_pointer(regs); |
| 6038 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6039 | if (sample_type & PERF_SAMPLE_CALLCHAIN) { |
| 6040 | int size = 1; |
| 6041 | |
Andrew Vagin | e6dab5f | 2012-07-11 18:14:58 +0400 | [diff] [blame] | 6042 | data->callchain = perf_callchain(event, regs); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6043 | |
| 6044 | if (data->callchain) |
| 6045 | size += data->callchain->nr; |
| 6046 | |
| 6047 | header->size += size * sizeof(u64); |
| 6048 | } |
| 6049 | |
| 6050 | if (sample_type & PERF_SAMPLE_RAW) { |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 6051 | struct perf_raw_record *raw = data->raw; |
| 6052 | int size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6053 | |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 6054 | if (raw) { |
| 6055 | struct perf_raw_frag *frag = &raw->frag; |
| 6056 | u32 sum = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6057 | |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 6058 | do { |
| 6059 | sum += frag->size; |
| 6060 | if (perf_raw_frag_last(frag)) |
| 6061 | break; |
| 6062 | frag = frag->next; |
| 6063 | } while (1); |
| 6064 | |
| 6065 | size = round_up(sum + sizeof(u32), sizeof(u64)); |
| 6066 | raw->size = size - sizeof(u32); |
| 6067 | frag->pad = raw->size - sum; |
| 6068 | } else { |
| 6069 | size = sizeof(u64); |
| 6070 | } |
| 6071 | |
| 6072 | header->size += size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6073 | } |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 6074 | |
| 6075 | if (sample_type & PERF_SAMPLE_BRANCH_STACK) { |
| 6076 | int size = sizeof(u64); /* nr */ |
| 6077 | if (data->br_stack) { |
| 6078 | size += data->br_stack->nr |
| 6079 | * sizeof(struct perf_branch_entry); |
| 6080 | } |
| 6081 | header->size += size; |
| 6082 | } |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 6083 | |
Peter Zijlstra | 2565711 | 2014-09-24 13:48:42 +0200 | [diff] [blame] | 6084 | if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER)) |
Andy Lutomirski | 88a7c26 | 2015-01-04 10:36:19 -0800 | [diff] [blame] | 6085 | perf_sample_regs_user(&data->regs_user, regs, |
| 6086 | &data->regs_user_copy); |
Peter Zijlstra | 2565711 | 2014-09-24 13:48:42 +0200 | [diff] [blame] | 6087 | |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 6088 | if (sample_type & PERF_SAMPLE_REGS_USER) { |
| 6089 | /* regs dump ABI info */ |
| 6090 | int size = sizeof(u64); |
| 6091 | |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 6092 | if (data->regs_user.regs) { |
| 6093 | u64 mask = event->attr.sample_regs_user; |
| 6094 | size += hweight64(mask) * sizeof(u64); |
| 6095 | } |
| 6096 | |
| 6097 | header->size += size; |
| 6098 | } |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 6099 | |
| 6100 | if (sample_type & PERF_SAMPLE_STACK_USER) { |
| 6101 | /* |
| 6102 | * Either we need PERF_SAMPLE_STACK_USER bit to be allways |
| 6103 | * processed as the last one or have additional check added |
| 6104 | * in case new sample type is added, because we could eat |
| 6105 | * up the rest of the sample size. |
| 6106 | */ |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 6107 | u16 stack_size = event->attr.sample_stack_user; |
| 6108 | u16 size = sizeof(u64); |
| 6109 | |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 6110 | stack_size = perf_sample_ustack_size(stack_size, header->size, |
Peter Zijlstra | 2565711 | 2014-09-24 13:48:42 +0200 | [diff] [blame] | 6111 | data->regs_user.regs); |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 6112 | |
| 6113 | /* |
| 6114 | * If there is something to dump, add space for the dump |
| 6115 | * itself and for the field that tells the dynamic size, |
| 6116 | * which is how many have been actually dumped. |
| 6117 | */ |
| 6118 | if (stack_size) |
| 6119 | size += sizeof(u64) + stack_size; |
| 6120 | |
| 6121 | data->stack_user_size = stack_size; |
| 6122 | header->size += size; |
| 6123 | } |
Stephane Eranian | 60e2364 | 2014-09-24 13:48:37 +0200 | [diff] [blame] | 6124 | |
| 6125 | if (sample_type & PERF_SAMPLE_REGS_INTR) { |
| 6126 | /* regs dump ABI info */ |
| 6127 | int size = sizeof(u64); |
| 6128 | |
| 6129 | perf_sample_regs_intr(&data->regs_intr, regs); |
| 6130 | |
| 6131 | if (data->regs_intr.regs) { |
| 6132 | u64 mask = event->attr.sample_regs_intr; |
| 6133 | |
| 6134 | size += hweight64(mask) * sizeof(u64); |
| 6135 | } |
| 6136 | |
| 6137 | header->size += size; |
| 6138 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6139 | } |
| 6140 | |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 6141 | static void __always_inline |
| 6142 | __perf_event_output(struct perf_event *event, |
| 6143 | struct perf_sample_data *data, |
| 6144 | struct pt_regs *regs, |
| 6145 | int (*output_begin)(struct perf_output_handle *, |
| 6146 | struct perf_event *, |
| 6147 | unsigned int)) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6148 | { |
| 6149 | struct perf_output_handle handle; |
| 6150 | struct perf_event_header header; |
| 6151 | |
Frederic Weisbecker | 927c7a9 | 2010-07-01 16:20:36 +0200 | [diff] [blame] | 6152 | /* protect the callchain buffers */ |
| 6153 | rcu_read_lock(); |
| 6154 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6155 | perf_prepare_sample(&header, data, event, regs); |
| 6156 | |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 6157 | if (output_begin(&handle, event, header.size)) |
Frederic Weisbecker | 927c7a9 | 2010-07-01 16:20:36 +0200 | [diff] [blame] | 6158 | goto exit; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6159 | |
| 6160 | perf_output_sample(&handle, &header, data, event); |
| 6161 | |
| 6162 | perf_output_end(&handle); |
Frederic Weisbecker | 927c7a9 | 2010-07-01 16:20:36 +0200 | [diff] [blame] | 6163 | |
| 6164 | exit: |
| 6165 | rcu_read_unlock(); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6166 | } |
| 6167 | |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 6168 | void |
| 6169 | perf_event_output_forward(struct perf_event *event, |
| 6170 | struct perf_sample_data *data, |
| 6171 | struct pt_regs *regs) |
| 6172 | { |
| 6173 | __perf_event_output(event, data, regs, perf_output_begin_forward); |
| 6174 | } |
| 6175 | |
| 6176 | void |
| 6177 | perf_event_output_backward(struct perf_event *event, |
| 6178 | struct perf_sample_data *data, |
| 6179 | struct pt_regs *regs) |
| 6180 | { |
| 6181 | __perf_event_output(event, data, regs, perf_output_begin_backward); |
| 6182 | } |
| 6183 | |
| 6184 | void |
| 6185 | perf_event_output(struct perf_event *event, |
| 6186 | struct perf_sample_data *data, |
| 6187 | struct pt_regs *regs) |
| 6188 | { |
| 6189 | __perf_event_output(event, data, regs, perf_output_begin); |
| 6190 | } |
| 6191 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6192 | /* |
| 6193 | * read event_id |
| 6194 | */ |
| 6195 | |
| 6196 | struct perf_read_event { |
| 6197 | struct perf_event_header header; |
| 6198 | |
| 6199 | u32 pid; |
| 6200 | u32 tid; |
| 6201 | }; |
| 6202 | |
| 6203 | static void |
| 6204 | perf_event_read_event(struct perf_event *event, |
| 6205 | struct task_struct *task) |
| 6206 | { |
| 6207 | struct perf_output_handle handle; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6208 | struct perf_sample_data sample; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6209 | struct perf_read_event read_event = { |
| 6210 | .header = { |
| 6211 | .type = PERF_RECORD_READ, |
| 6212 | .misc = 0, |
Arnaldo Carvalho de Melo | c320c7b | 2010-10-20 12:50:11 -0200 | [diff] [blame] | 6213 | .size = sizeof(read_event) + event->read_size, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6214 | }, |
| 6215 | .pid = perf_event_pid(event, task), |
| 6216 | .tid = perf_event_tid(event, task), |
| 6217 | }; |
| 6218 | int ret; |
| 6219 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6220 | perf_event_header__init_id(&read_event.header, &sample, event); |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 6221 | ret = perf_output_begin(&handle, event, read_event.header.size); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6222 | if (ret) |
| 6223 | return; |
| 6224 | |
| 6225 | perf_output_put(&handle, read_event); |
| 6226 | perf_output_read(&handle, event); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6227 | perf_event__output_id_sample(event, &handle, &sample); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6228 | |
| 6229 | perf_output_end(&handle); |
| 6230 | } |
| 6231 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6232 | typedef void (perf_iterate_f)(struct perf_event *event, void *data); |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6233 | |
| 6234 | static void |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6235 | perf_iterate_ctx(struct perf_event_context *ctx, |
| 6236 | perf_iterate_f output, |
Alexander Shishkin | b73e4fe | 2016-04-27 18:44:45 +0300 | [diff] [blame] | 6237 | void *data, bool all) |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6238 | { |
| 6239 | struct perf_event *event; |
| 6240 | |
| 6241 | list_for_each_entry_rcu(event, &ctx->event_list, event_entry) { |
Alexander Shishkin | b73e4fe | 2016-04-27 18:44:45 +0300 | [diff] [blame] | 6242 | if (!all) { |
| 6243 | if (event->state < PERF_EVENT_STATE_INACTIVE) |
| 6244 | continue; |
| 6245 | if (!event_filter_match(event)) |
| 6246 | continue; |
| 6247 | } |
| 6248 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6249 | output(event, data); |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6250 | } |
| 6251 | } |
| 6252 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6253 | static void perf_iterate_sb_cpu(perf_iterate_f output, void *data) |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 6254 | { |
| 6255 | struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events); |
| 6256 | struct perf_event *event; |
| 6257 | |
| 6258 | list_for_each_entry_rcu(event, &pel->list, sb_list) { |
Peter Zijlstra | 0b8f1e2 | 2016-08-04 14:37:24 +0200 | [diff] [blame] | 6259 | /* |
| 6260 | * Skip events that are not fully formed yet; ensure that |
| 6261 | * if we observe event->ctx, both event and ctx will be |
| 6262 | * complete enough. See perf_install_in_context(). |
| 6263 | */ |
| 6264 | if (!smp_load_acquire(&event->ctx)) |
| 6265 | continue; |
| 6266 | |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 6267 | if (event->state < PERF_EVENT_STATE_INACTIVE) |
| 6268 | continue; |
| 6269 | if (!event_filter_match(event)) |
| 6270 | continue; |
| 6271 | output(event, data); |
| 6272 | } |
| 6273 | } |
| 6274 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6275 | /* |
| 6276 | * Iterate all events that need to receive side-band events. |
| 6277 | * |
| 6278 | * For new callers; ensure that account_pmu_sb_event() includes |
| 6279 | * your event, otherwise it might not get delivered. |
| 6280 | */ |
Jiri Olsa | 4e93ad6 | 2015-11-04 16:00:05 +0100 | [diff] [blame] | 6281 | static void |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6282 | perf_iterate_sb(perf_iterate_f output, void *data, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6283 | struct perf_event_context *task_ctx) |
| 6284 | { |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6285 | struct perf_event_context *ctx; |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6286 | int ctxn; |
| 6287 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6288 | rcu_read_lock(); |
| 6289 | preempt_disable(); |
| 6290 | |
Jiri Olsa | 4e93ad6 | 2015-11-04 16:00:05 +0100 | [diff] [blame] | 6291 | /* |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6292 | * If we have task_ctx != NULL we only notify the task context itself. |
| 6293 | * The task_ctx is set only for EXIT events before releasing task |
Jiri Olsa | 4e93ad6 | 2015-11-04 16:00:05 +0100 | [diff] [blame] | 6294 | * context. |
| 6295 | */ |
| 6296 | if (task_ctx) { |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6297 | perf_iterate_ctx(task_ctx, output, data, false); |
| 6298 | goto done; |
Jiri Olsa | 4e93ad6 | 2015-11-04 16:00:05 +0100 | [diff] [blame] | 6299 | } |
| 6300 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6301 | perf_iterate_sb_cpu(output, data); |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 6302 | |
| 6303 | for_each_task_context_nr(ctxn) { |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6304 | ctx = rcu_dereference(current->perf_event_ctxp[ctxn]); |
| 6305 | if (ctx) |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6306 | perf_iterate_ctx(ctx, output, data, false); |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6307 | } |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6308 | done: |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 6309 | preempt_enable(); |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6310 | rcu_read_unlock(); |
| 6311 | } |
| 6312 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6313 | /* |
| 6314 | * Clear all file-based filters at exec, they'll have to be |
| 6315 | * re-instated when/if these objects are mmapped again. |
| 6316 | */ |
| 6317 | static void perf_event_addr_filters_exec(struct perf_event *event, void *data) |
| 6318 | { |
| 6319 | struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); |
| 6320 | struct perf_addr_filter *filter; |
| 6321 | unsigned int restart = 0, count = 0; |
| 6322 | unsigned long flags; |
| 6323 | |
| 6324 | if (!has_addr_filter(event)) |
| 6325 | return; |
| 6326 | |
| 6327 | raw_spin_lock_irqsave(&ifh->lock, flags); |
| 6328 | list_for_each_entry(filter, &ifh->list, entry) { |
| 6329 | if (filter->inode) { |
| 6330 | event->addr_filters_offs[count] = 0; |
| 6331 | restart++; |
| 6332 | } |
| 6333 | |
| 6334 | count++; |
| 6335 | } |
| 6336 | |
| 6337 | if (restart) |
| 6338 | event->addr_filters_gen++; |
| 6339 | raw_spin_unlock_irqrestore(&ifh->lock, flags); |
| 6340 | |
| 6341 | if (restart) |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 6342 | perf_event_stop(event, 1); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6343 | } |
| 6344 | |
| 6345 | void perf_event_exec(void) |
| 6346 | { |
| 6347 | struct perf_event_context *ctx; |
| 6348 | int ctxn; |
| 6349 | |
| 6350 | rcu_read_lock(); |
| 6351 | for_each_task_context_nr(ctxn) { |
| 6352 | ctx = current->perf_event_ctxp[ctxn]; |
| 6353 | if (!ctx) |
| 6354 | continue; |
| 6355 | |
| 6356 | perf_event_enable_on_exec(ctxn); |
| 6357 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6358 | perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL, |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6359 | true); |
| 6360 | } |
| 6361 | rcu_read_unlock(); |
| 6362 | } |
| 6363 | |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6364 | struct remote_output { |
| 6365 | struct ring_buffer *rb; |
| 6366 | int err; |
| 6367 | }; |
| 6368 | |
| 6369 | static void __perf_event_output_stop(struct perf_event *event, void *data) |
| 6370 | { |
| 6371 | struct perf_event *parent = event->parent; |
| 6372 | struct remote_output *ro = data; |
| 6373 | struct ring_buffer *rb = ro->rb; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6374 | struct stop_event_data sd = { |
| 6375 | .event = event, |
| 6376 | }; |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6377 | |
| 6378 | if (!has_aux(event)) |
| 6379 | return; |
| 6380 | |
| 6381 | if (!parent) |
| 6382 | parent = event; |
| 6383 | |
| 6384 | /* |
| 6385 | * 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] | 6386 | * ring-buffer, but it will be the child that's actually using it. |
| 6387 | * |
| 6388 | * We are using event::rb to determine if the event should be stopped, |
| 6389 | * however this may race with ring_buffer_attach() (through set_output), |
| 6390 | * which will make us skip the event that actually needs to be stopped. |
| 6391 | * So ring_buffer_attach() has to stop an aux event before re-assigning |
| 6392 | * its rb pointer. |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6393 | */ |
| 6394 | if (rcu_dereference(parent->rb) == rb) |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6395 | ro->err = __perf_event_stop(&sd); |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6396 | } |
| 6397 | |
| 6398 | static int __perf_pmu_output_stop(void *info) |
| 6399 | { |
| 6400 | struct perf_event *event = info; |
| 6401 | struct pmu *pmu = event->pmu; |
Will Deacon | 8b6a3fe | 2016-08-24 10:07:14 +0100 | [diff] [blame] | 6402 | struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context); |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6403 | struct remote_output ro = { |
| 6404 | .rb = event->rb, |
| 6405 | }; |
| 6406 | |
| 6407 | rcu_read_lock(); |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6408 | perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false); |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6409 | if (cpuctx->task_ctx) |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6410 | perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop, |
Alexander Shishkin | b73e4fe | 2016-04-27 18:44:45 +0300 | [diff] [blame] | 6411 | &ro, false); |
Alexander Shishkin | 95ff4ca | 2015-12-02 18:41:11 +0200 | [diff] [blame] | 6412 | rcu_read_unlock(); |
| 6413 | |
| 6414 | return ro.err; |
| 6415 | } |
| 6416 | |
| 6417 | static void perf_pmu_output_stop(struct perf_event *event) |
| 6418 | { |
| 6419 | struct perf_event *iter; |
| 6420 | int err, cpu; |
| 6421 | |
| 6422 | restart: |
| 6423 | rcu_read_lock(); |
| 6424 | list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) { |
| 6425 | /* |
| 6426 | * For per-CPU events, we need to make sure that neither they |
| 6427 | * nor their children are running; for cpu==-1 events it's |
| 6428 | * sufficient to stop the event itself if it's active, since |
| 6429 | * it can't have children. |
| 6430 | */ |
| 6431 | cpu = iter->cpu; |
| 6432 | if (cpu == -1) |
| 6433 | cpu = READ_ONCE(iter->oncpu); |
| 6434 | |
| 6435 | if (cpu == -1) |
| 6436 | continue; |
| 6437 | |
| 6438 | err = cpu_function_call(cpu, __perf_pmu_output_stop, event); |
| 6439 | if (err == -EAGAIN) { |
| 6440 | rcu_read_unlock(); |
| 6441 | goto restart; |
| 6442 | } |
| 6443 | } |
| 6444 | rcu_read_unlock(); |
| 6445 | } |
| 6446 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6447 | /* |
| 6448 | * task tracking -- fork/exit |
| 6449 | * |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6450 | * 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] | 6451 | */ |
| 6452 | |
| 6453 | struct perf_task_event { |
| 6454 | struct task_struct *task; |
| 6455 | struct perf_event_context *task_ctx; |
| 6456 | |
| 6457 | struct { |
| 6458 | struct perf_event_header header; |
| 6459 | |
| 6460 | u32 pid; |
| 6461 | u32 ppid; |
| 6462 | u32 tid; |
| 6463 | u32 ptid; |
| 6464 | u64 time; |
| 6465 | } event_id; |
| 6466 | }; |
| 6467 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6468 | static int perf_event_task_match(struct perf_event *event) |
| 6469 | { |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6470 | return event->attr.comm || event->attr.mmap || |
| 6471 | event->attr.mmap2 || event->attr.mmap_data || |
| 6472 | event->attr.task; |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6473 | } |
| 6474 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6475 | static void perf_event_task_output(struct perf_event *event, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6476 | void *data) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6477 | { |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6478 | struct perf_task_event *task_event = data; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6479 | struct perf_output_handle handle; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6480 | struct perf_sample_data sample; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6481 | struct task_struct *task = task_event->task; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6482 | int ret, size = task_event->event_id.header.size; |
Mike Galbraith | 8bb39f9 | 2010-03-26 11:11:33 +0100 | [diff] [blame] | 6483 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6484 | if (!perf_event_task_match(event)) |
| 6485 | return; |
| 6486 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6487 | perf_event_header__init_id(&task_event->event_id.header, &sample, event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6488 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6489 | ret = perf_output_begin(&handle, event, |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 6490 | task_event->event_id.header.size); |
Peter Zijlstra | ef60777 | 2010-05-18 10:50:41 +0200 | [diff] [blame] | 6491 | if (ret) |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6492 | goto out; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6493 | |
| 6494 | task_event->event_id.pid = perf_event_pid(event, task); |
| 6495 | task_event->event_id.ppid = perf_event_pid(event, current); |
| 6496 | |
| 6497 | task_event->event_id.tid = perf_event_tid(event, task); |
| 6498 | task_event->event_id.ptid = perf_event_tid(event, current); |
| 6499 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 6500 | task_event->event_id.time = perf_event_clock(event); |
| 6501 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6502 | perf_output_put(&handle, task_event->event_id); |
| 6503 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6504 | perf_event__output_id_sample(event, &handle, &sample); |
| 6505 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6506 | perf_output_end(&handle); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6507 | out: |
| 6508 | task_event->event_id.header.size = size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6509 | } |
| 6510 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6511 | static void perf_event_task(struct task_struct *task, |
| 6512 | struct perf_event_context *task_ctx, |
| 6513 | int new) |
| 6514 | { |
| 6515 | struct perf_task_event task_event; |
| 6516 | |
| 6517 | if (!atomic_read(&nr_comm_events) && |
| 6518 | !atomic_read(&nr_mmap_events) && |
| 6519 | !atomic_read(&nr_task_events)) |
| 6520 | return; |
| 6521 | |
| 6522 | task_event = (struct perf_task_event){ |
| 6523 | .task = task, |
| 6524 | .task_ctx = task_ctx, |
| 6525 | .event_id = { |
| 6526 | .header = { |
| 6527 | .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT, |
| 6528 | .misc = 0, |
| 6529 | .size = sizeof(task_event.event_id), |
| 6530 | }, |
| 6531 | /* .pid */ |
| 6532 | /* .ppid */ |
| 6533 | /* .tid */ |
| 6534 | /* .ptid */ |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 6535 | /* .time */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6536 | }, |
| 6537 | }; |
| 6538 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6539 | perf_iterate_sb(perf_event_task_output, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6540 | &task_event, |
| 6541 | task_ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6542 | } |
| 6543 | |
| 6544 | void perf_event_fork(struct task_struct *task) |
| 6545 | { |
| 6546 | perf_event_task(task, NULL, 1); |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 6547 | perf_event_namespaces(task); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6548 | } |
| 6549 | |
| 6550 | /* |
| 6551 | * comm tracking |
| 6552 | */ |
| 6553 | |
| 6554 | struct perf_comm_event { |
| 6555 | struct task_struct *task; |
| 6556 | char *comm; |
| 6557 | int comm_size; |
| 6558 | |
| 6559 | struct { |
| 6560 | struct perf_event_header header; |
| 6561 | |
| 6562 | u32 pid; |
| 6563 | u32 tid; |
| 6564 | } event_id; |
| 6565 | }; |
| 6566 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6567 | static int perf_event_comm_match(struct perf_event *event) |
| 6568 | { |
| 6569 | return event->attr.comm; |
| 6570 | } |
| 6571 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6572 | static void perf_event_comm_output(struct perf_event *event, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6573 | void *data) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6574 | { |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6575 | struct perf_comm_event *comm_event = data; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6576 | struct perf_output_handle handle; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6577 | struct perf_sample_data sample; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6578 | int size = comm_event->event_id.header.size; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6579 | int ret; |
| 6580 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6581 | if (!perf_event_comm_match(event)) |
| 6582 | return; |
| 6583 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6584 | perf_event_header__init_id(&comm_event->event_id.header, &sample, event); |
| 6585 | ret = perf_output_begin(&handle, event, |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 6586 | comm_event->event_id.header.size); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6587 | |
| 6588 | if (ret) |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6589 | goto out; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6590 | |
| 6591 | comm_event->event_id.pid = perf_event_pid(event, comm_event->task); |
| 6592 | comm_event->event_id.tid = perf_event_tid(event, comm_event->task); |
| 6593 | |
| 6594 | perf_output_put(&handle, comm_event->event_id); |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 6595 | __output_copy(&handle, comm_event->comm, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6596 | comm_event->comm_size); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6597 | |
| 6598 | perf_event__output_id_sample(event, &handle, &sample); |
| 6599 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6600 | perf_output_end(&handle); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6601 | out: |
| 6602 | comm_event->event_id.header.size = size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6603 | } |
| 6604 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6605 | static void perf_event_comm_event(struct perf_comm_event *comm_event) |
| 6606 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6607 | char comm[TASK_COMM_LEN]; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6608 | unsigned int size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6609 | |
| 6610 | memset(comm, 0, sizeof(comm)); |
Márton Németh | 96b02d7 | 2009-11-21 23:10:15 +0100 | [diff] [blame] | 6611 | strlcpy(comm, comm_event->task->comm, sizeof(comm)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6612 | size = ALIGN(strlen(comm)+1, sizeof(u64)); |
| 6613 | |
| 6614 | comm_event->comm = comm; |
| 6615 | comm_event->comm_size = size; |
| 6616 | |
| 6617 | comm_event->event_id.header.size = sizeof(comm_event->event_id) + size; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 6618 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6619 | perf_iterate_sb(perf_event_comm_output, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6620 | comm_event, |
| 6621 | NULL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6622 | } |
| 6623 | |
Adrian Hunter | 82b8977 | 2014-05-28 11:45:04 +0300 | [diff] [blame] | 6624 | void perf_event_comm(struct task_struct *task, bool exec) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6625 | { |
| 6626 | struct perf_comm_event comm_event; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6627 | |
| 6628 | if (!atomic_read(&nr_comm_events)) |
| 6629 | return; |
| 6630 | |
| 6631 | comm_event = (struct perf_comm_event){ |
| 6632 | .task = task, |
| 6633 | /* .comm */ |
| 6634 | /* .comm_size */ |
| 6635 | .event_id = { |
| 6636 | .header = { |
| 6637 | .type = PERF_RECORD_COMM, |
Adrian Hunter | 82b8977 | 2014-05-28 11:45:04 +0300 | [diff] [blame] | 6638 | .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6639 | /* .size */ |
| 6640 | }, |
| 6641 | /* .pid */ |
| 6642 | /* .tid */ |
| 6643 | }, |
| 6644 | }; |
| 6645 | |
| 6646 | perf_event_comm_event(&comm_event); |
| 6647 | } |
| 6648 | |
| 6649 | /* |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 6650 | * namespaces tracking |
| 6651 | */ |
| 6652 | |
| 6653 | struct perf_namespaces_event { |
| 6654 | struct task_struct *task; |
| 6655 | |
| 6656 | struct { |
| 6657 | struct perf_event_header header; |
| 6658 | |
| 6659 | u32 pid; |
| 6660 | u32 tid; |
| 6661 | u64 nr_namespaces; |
| 6662 | struct perf_ns_link_info link_info[NR_NAMESPACES]; |
| 6663 | } event_id; |
| 6664 | }; |
| 6665 | |
| 6666 | static int perf_event_namespaces_match(struct perf_event *event) |
| 6667 | { |
| 6668 | return event->attr.namespaces; |
| 6669 | } |
| 6670 | |
| 6671 | static void perf_event_namespaces_output(struct perf_event *event, |
| 6672 | void *data) |
| 6673 | { |
| 6674 | struct perf_namespaces_event *namespaces_event = data; |
| 6675 | struct perf_output_handle handle; |
| 6676 | struct perf_sample_data sample; |
| 6677 | int ret; |
| 6678 | |
| 6679 | if (!perf_event_namespaces_match(event)) |
| 6680 | return; |
| 6681 | |
| 6682 | perf_event_header__init_id(&namespaces_event->event_id.header, |
| 6683 | &sample, event); |
| 6684 | ret = perf_output_begin(&handle, event, |
| 6685 | namespaces_event->event_id.header.size); |
| 6686 | if (ret) |
| 6687 | return; |
| 6688 | |
| 6689 | namespaces_event->event_id.pid = perf_event_pid(event, |
| 6690 | namespaces_event->task); |
| 6691 | namespaces_event->event_id.tid = perf_event_tid(event, |
| 6692 | namespaces_event->task); |
| 6693 | |
| 6694 | perf_output_put(&handle, namespaces_event->event_id); |
| 6695 | |
| 6696 | perf_event__output_id_sample(event, &handle, &sample); |
| 6697 | |
| 6698 | perf_output_end(&handle); |
| 6699 | } |
| 6700 | |
| 6701 | static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info, |
| 6702 | struct task_struct *task, |
| 6703 | const struct proc_ns_operations *ns_ops) |
| 6704 | { |
| 6705 | struct path ns_path; |
| 6706 | struct inode *ns_inode; |
| 6707 | void *error; |
| 6708 | |
| 6709 | error = ns_get_path(&ns_path, task, ns_ops); |
| 6710 | if (!error) { |
| 6711 | ns_inode = ns_path.dentry->d_inode; |
| 6712 | ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev); |
| 6713 | ns_link_info->ino = ns_inode->i_ino; |
| 6714 | } |
| 6715 | } |
| 6716 | |
| 6717 | void perf_event_namespaces(struct task_struct *task) |
| 6718 | { |
| 6719 | struct perf_namespaces_event namespaces_event; |
| 6720 | struct perf_ns_link_info *ns_link_info; |
| 6721 | |
| 6722 | if (!atomic_read(&nr_namespaces_events)) |
| 6723 | return; |
| 6724 | |
| 6725 | namespaces_event = (struct perf_namespaces_event){ |
| 6726 | .task = task, |
| 6727 | .event_id = { |
| 6728 | .header = { |
| 6729 | .type = PERF_RECORD_NAMESPACES, |
| 6730 | .misc = 0, |
| 6731 | .size = sizeof(namespaces_event.event_id), |
| 6732 | }, |
| 6733 | /* .pid */ |
| 6734 | /* .tid */ |
| 6735 | .nr_namespaces = NR_NAMESPACES, |
| 6736 | /* .link_info[NR_NAMESPACES] */ |
| 6737 | }, |
| 6738 | }; |
| 6739 | |
| 6740 | ns_link_info = namespaces_event.event_id.link_info; |
| 6741 | |
| 6742 | perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX], |
| 6743 | task, &mntns_operations); |
| 6744 | |
| 6745 | #ifdef CONFIG_USER_NS |
| 6746 | perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX], |
| 6747 | task, &userns_operations); |
| 6748 | #endif |
| 6749 | #ifdef CONFIG_NET_NS |
| 6750 | perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX], |
| 6751 | task, &netns_operations); |
| 6752 | #endif |
| 6753 | #ifdef CONFIG_UTS_NS |
| 6754 | perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX], |
| 6755 | task, &utsns_operations); |
| 6756 | #endif |
| 6757 | #ifdef CONFIG_IPC_NS |
| 6758 | perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX], |
| 6759 | task, &ipcns_operations); |
| 6760 | #endif |
| 6761 | #ifdef CONFIG_PID_NS |
| 6762 | perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX], |
| 6763 | task, &pidns_operations); |
| 6764 | #endif |
| 6765 | #ifdef CONFIG_CGROUPS |
| 6766 | perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX], |
| 6767 | task, &cgroupns_operations); |
| 6768 | #endif |
| 6769 | |
| 6770 | perf_iterate_sb(perf_event_namespaces_output, |
| 6771 | &namespaces_event, |
| 6772 | NULL); |
| 6773 | } |
| 6774 | |
| 6775 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6776 | * mmap tracking |
| 6777 | */ |
| 6778 | |
| 6779 | struct perf_mmap_event { |
| 6780 | struct vm_area_struct *vma; |
| 6781 | |
| 6782 | const char *file_name; |
| 6783 | int file_size; |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6784 | int maj, min; |
| 6785 | u64 ino; |
| 6786 | u64 ino_generation; |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 6787 | u32 prot, flags; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6788 | |
| 6789 | struct { |
| 6790 | struct perf_event_header header; |
| 6791 | |
| 6792 | u32 pid; |
| 6793 | u32 tid; |
| 6794 | u64 start; |
| 6795 | u64 len; |
| 6796 | u64 pgoff; |
| 6797 | } event_id; |
| 6798 | }; |
| 6799 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6800 | static int perf_event_mmap_match(struct perf_event *event, |
| 6801 | void *data) |
| 6802 | { |
| 6803 | struct perf_mmap_event *mmap_event = data; |
| 6804 | struct vm_area_struct *vma = mmap_event->vma; |
| 6805 | int executable = vma->vm_flags & VM_EXEC; |
| 6806 | |
| 6807 | return (!executable && event->attr.mmap_data) || |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6808 | (executable && (event->attr.mmap || event->attr.mmap2)); |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6809 | } |
| 6810 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6811 | static void perf_event_mmap_output(struct perf_event *event, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6812 | void *data) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6813 | { |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6814 | struct perf_mmap_event *mmap_event = data; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6815 | struct perf_output_handle handle; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6816 | struct perf_sample_data sample; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6817 | int size = mmap_event->event_id.header.size; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6818 | int ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6819 | |
Jiri Olsa | 6751684 | 2013-07-09 18:56:31 +0200 | [diff] [blame] | 6820 | if (!perf_event_mmap_match(event, data)) |
| 6821 | return; |
| 6822 | |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6823 | if (event->attr.mmap2) { |
| 6824 | mmap_event->event_id.header.type = PERF_RECORD_MMAP2; |
| 6825 | mmap_event->event_id.header.size += sizeof(mmap_event->maj); |
| 6826 | mmap_event->event_id.header.size += sizeof(mmap_event->min); |
| 6827 | mmap_event->event_id.header.size += sizeof(mmap_event->ino); |
Arnaldo Carvalho de Melo | d008d52 | 2013-09-10 10:24:05 -0300 | [diff] [blame] | 6828 | mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation); |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 6829 | mmap_event->event_id.header.size += sizeof(mmap_event->prot); |
| 6830 | mmap_event->event_id.header.size += sizeof(mmap_event->flags); |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6831 | } |
| 6832 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6833 | perf_event_header__init_id(&mmap_event->event_id.header, &sample, event); |
| 6834 | ret = perf_output_begin(&handle, event, |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 6835 | mmap_event->event_id.header.size); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6836 | if (ret) |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6837 | goto out; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6838 | |
| 6839 | mmap_event->event_id.pid = perf_event_pid(event, current); |
| 6840 | mmap_event->event_id.tid = perf_event_tid(event, current); |
| 6841 | |
| 6842 | perf_output_put(&handle, mmap_event->event_id); |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6843 | |
| 6844 | if (event->attr.mmap2) { |
| 6845 | perf_output_put(&handle, mmap_event->maj); |
| 6846 | perf_output_put(&handle, mmap_event->min); |
| 6847 | perf_output_put(&handle, mmap_event->ino); |
| 6848 | perf_output_put(&handle, mmap_event->ino_generation); |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 6849 | perf_output_put(&handle, mmap_event->prot); |
| 6850 | perf_output_put(&handle, mmap_event->flags); |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6851 | } |
| 6852 | |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 6853 | __output_copy(&handle, mmap_event->file_name, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6854 | mmap_event->file_size); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6855 | |
| 6856 | perf_event__output_id_sample(event, &handle, &sample); |
| 6857 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6858 | perf_output_end(&handle); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 6859 | out: |
| 6860 | mmap_event->event_id.header.size = size; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6861 | } |
| 6862 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6863 | static void perf_event_mmap_event(struct perf_mmap_event *mmap_event) |
| 6864 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6865 | struct vm_area_struct *vma = mmap_event->vma; |
| 6866 | struct file *file = vma->vm_file; |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6867 | int maj = 0, min = 0; |
| 6868 | u64 ino = 0, gen = 0; |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 6869 | u32 prot = 0, flags = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6870 | unsigned int size; |
| 6871 | char tmp[16]; |
| 6872 | char *buf = NULL; |
Peter Zijlstra | 2c42cfbf | 2013-10-17 00:06:46 +0200 | [diff] [blame] | 6873 | char *name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6874 | |
Peter Zijlstra | 0b3589b | 2017-01-26 23:15:08 +0100 | [diff] [blame] | 6875 | if (vma->vm_flags & VM_READ) |
| 6876 | prot |= PROT_READ; |
| 6877 | if (vma->vm_flags & VM_WRITE) |
| 6878 | prot |= PROT_WRITE; |
| 6879 | if (vma->vm_flags & VM_EXEC) |
| 6880 | prot |= PROT_EXEC; |
| 6881 | |
| 6882 | if (vma->vm_flags & VM_MAYSHARE) |
| 6883 | flags = MAP_SHARED; |
| 6884 | else |
| 6885 | flags = MAP_PRIVATE; |
| 6886 | |
| 6887 | if (vma->vm_flags & VM_DENYWRITE) |
| 6888 | flags |= MAP_DENYWRITE; |
| 6889 | if (vma->vm_flags & VM_MAYEXEC) |
| 6890 | flags |= MAP_EXECUTABLE; |
| 6891 | if (vma->vm_flags & VM_LOCKED) |
| 6892 | flags |= MAP_LOCKED; |
| 6893 | if (vma->vm_flags & VM_HUGETLB) |
| 6894 | flags |= MAP_HUGETLB; |
| 6895 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6896 | if (file) { |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6897 | struct inode *inode; |
| 6898 | dev_t dev; |
Oleg Nesterov | 3ea2f2b | 2013-10-16 22:10:04 +0200 | [diff] [blame] | 6899 | |
Peter Zijlstra | 2c42cfbf | 2013-10-17 00:06:46 +0200 | [diff] [blame] | 6900 | buf = kmalloc(PATH_MAX, GFP_KERNEL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6901 | if (!buf) { |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6902 | name = "//enomem"; |
| 6903 | goto cpy_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6904 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6905 | /* |
Oleg Nesterov | 3ea2f2b | 2013-10-16 22:10:04 +0200 | [diff] [blame] | 6906 | * d_path() works from the end of the rb backwards, so we |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6907 | * need to add enough zero bytes after the string to handle |
| 6908 | * the 64bit alignment we do later. |
| 6909 | */ |
Miklos Szeredi | 9bf39ab | 2015-06-19 10:29:13 +0200 | [diff] [blame] | 6910 | name = file_path(file, buf, PATH_MAX - sizeof(u64)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6911 | if (IS_ERR(name)) { |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6912 | name = "//toolong"; |
| 6913 | goto cpy_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6914 | } |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6915 | inode = file_inode(vma->vm_file); |
| 6916 | dev = inode->i_sb->s_dev; |
| 6917 | ino = inode->i_ino; |
| 6918 | gen = inode->i_generation; |
| 6919 | maj = MAJOR(dev); |
| 6920 | min = MINOR(dev); |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 6921 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6922 | goto got_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6923 | } else { |
Jiri Olsa | fbe26ab | 2014-07-14 17:57:19 +0200 | [diff] [blame] | 6924 | if (vma->vm_ops && vma->vm_ops->name) { |
| 6925 | name = (char *) vma->vm_ops->name(vma); |
| 6926 | if (name) |
| 6927 | goto cpy_name; |
| 6928 | } |
| 6929 | |
Peter Zijlstra | 2c42cfbf | 2013-10-17 00:06:46 +0200 | [diff] [blame] | 6930 | name = (char *)arch_vma_name(vma); |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6931 | if (name) |
| 6932 | goto cpy_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6933 | |
Oleg Nesterov | 32c5fb7 | 2013-10-16 22:09:45 +0200 | [diff] [blame] | 6934 | if (vma->vm_start <= vma->vm_mm->start_brk && |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6935 | vma->vm_end >= vma->vm_mm->brk) { |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6936 | name = "[heap]"; |
| 6937 | goto cpy_name; |
Oleg Nesterov | 32c5fb7 | 2013-10-16 22:09:45 +0200 | [diff] [blame] | 6938 | } |
| 6939 | if (vma->vm_start <= vma->vm_mm->start_stack && |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6940 | vma->vm_end >= vma->vm_mm->start_stack) { |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6941 | name = "[stack]"; |
| 6942 | goto cpy_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6943 | } |
| 6944 | |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6945 | name = "//anon"; |
| 6946 | goto cpy_name; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6947 | } |
| 6948 | |
Oleg Nesterov | c7e548b | 2013-10-17 20:24:17 +0200 | [diff] [blame] | 6949 | cpy_name: |
| 6950 | strlcpy(tmp, name, sizeof(tmp)); |
| 6951 | name = tmp; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6952 | got_name: |
Peter Zijlstra | 2c42cfbf | 2013-10-17 00:06:46 +0200 | [diff] [blame] | 6953 | /* |
| 6954 | * Since our buffer works in 8 byte units we need to align our string |
| 6955 | * size to a multiple of 8. However, we must guarantee the tail end is |
| 6956 | * zero'd out to avoid leaking random bits to userspace. |
| 6957 | */ |
| 6958 | size = strlen(name)+1; |
| 6959 | while (!IS_ALIGNED(size, sizeof(u64))) |
| 6960 | name[size++] = '\0'; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6961 | |
| 6962 | mmap_event->file_name = name; |
| 6963 | mmap_event->file_size = size; |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 6964 | mmap_event->maj = maj; |
| 6965 | mmap_event->min = min; |
| 6966 | mmap_event->ino = ino; |
| 6967 | mmap_event->ino_generation = gen; |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 6968 | mmap_event->prot = prot; |
| 6969 | mmap_event->flags = flags; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6970 | |
Stephane Eranian | 2fe8542 | 2013-01-24 16:10:39 +0100 | [diff] [blame] | 6971 | if (!(vma->vm_flags & VM_EXEC)) |
| 6972 | mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA; |
| 6973 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6974 | mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size; |
| 6975 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 6976 | perf_iterate_sb(perf_event_mmap_output, |
Jiri Olsa | 52d857a | 2013-05-06 18:27:18 +0200 | [diff] [blame] | 6977 | mmap_event, |
| 6978 | NULL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6979 | |
| 6980 | kfree(buf); |
| 6981 | } |
| 6982 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6983 | /* |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6984 | * Check whether inode and address range match filter criteria. |
| 6985 | */ |
| 6986 | static bool perf_addr_filter_match(struct perf_addr_filter *filter, |
| 6987 | struct file *file, unsigned long offset, |
| 6988 | unsigned long size) |
| 6989 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 6990 | if (filter->inode != file_inode(file)) |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 6991 | return false; |
| 6992 | |
| 6993 | if (filter->offset > offset + size) |
| 6994 | return false; |
| 6995 | |
| 6996 | if (filter->offset + filter->size < offset) |
| 6997 | return false; |
| 6998 | |
| 6999 | return true; |
| 7000 | } |
| 7001 | |
| 7002 | static void __perf_addr_filters_adjust(struct perf_event *event, void *data) |
| 7003 | { |
| 7004 | struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); |
| 7005 | struct vm_area_struct *vma = data; |
| 7006 | unsigned long off = vma->vm_pgoff << PAGE_SHIFT, flags; |
| 7007 | struct file *file = vma->vm_file; |
| 7008 | struct perf_addr_filter *filter; |
| 7009 | unsigned int restart = 0, count = 0; |
| 7010 | |
| 7011 | if (!has_addr_filter(event)) |
| 7012 | return; |
| 7013 | |
| 7014 | if (!file) |
| 7015 | return; |
| 7016 | |
| 7017 | raw_spin_lock_irqsave(&ifh->lock, flags); |
| 7018 | list_for_each_entry(filter, &ifh->list, entry) { |
| 7019 | if (perf_addr_filter_match(filter, file, off, |
| 7020 | vma->vm_end - vma->vm_start)) { |
| 7021 | event->addr_filters_offs[count] = vma->vm_start; |
| 7022 | restart++; |
| 7023 | } |
| 7024 | |
| 7025 | count++; |
| 7026 | } |
| 7027 | |
| 7028 | if (restart) |
| 7029 | event->addr_filters_gen++; |
| 7030 | raw_spin_unlock_irqrestore(&ifh->lock, flags); |
| 7031 | |
| 7032 | if (restart) |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 7033 | perf_event_stop(event, 1); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 7034 | } |
| 7035 | |
| 7036 | /* |
| 7037 | * Adjust all task's events' filters to the new vma |
| 7038 | */ |
| 7039 | static void perf_addr_filters_adjust(struct vm_area_struct *vma) |
| 7040 | { |
| 7041 | struct perf_event_context *ctx; |
| 7042 | int ctxn; |
| 7043 | |
Mathieu Poirier | 12b40a2 | 2016-07-18 10:43:06 -0600 | [diff] [blame] | 7044 | /* |
| 7045 | * Data tracing isn't supported yet and as such there is no need |
| 7046 | * to keep track of anything that isn't related to executable code: |
| 7047 | */ |
| 7048 | if (!(vma->vm_flags & VM_EXEC)) |
| 7049 | return; |
| 7050 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 7051 | rcu_read_lock(); |
| 7052 | for_each_task_context_nr(ctxn) { |
| 7053 | ctx = rcu_dereference(current->perf_event_ctxp[ctxn]); |
| 7054 | if (!ctx) |
| 7055 | continue; |
| 7056 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 7057 | perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 7058 | } |
| 7059 | rcu_read_unlock(); |
| 7060 | } |
| 7061 | |
Eric B Munson | 3af9e85 | 2010-05-18 15:30:49 +0100 | [diff] [blame] | 7062 | void perf_event_mmap(struct vm_area_struct *vma) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7063 | { |
| 7064 | struct perf_mmap_event mmap_event; |
| 7065 | |
| 7066 | if (!atomic_read(&nr_mmap_events)) |
| 7067 | return; |
| 7068 | |
| 7069 | mmap_event = (struct perf_mmap_event){ |
| 7070 | .vma = vma, |
| 7071 | /* .file_name */ |
| 7072 | /* .file_size */ |
| 7073 | .event_id = { |
| 7074 | .header = { |
| 7075 | .type = PERF_RECORD_MMAP, |
Zhang, Yanmin | 39447b3 | 2010-04-19 13:32:41 +0800 | [diff] [blame] | 7076 | .misc = PERF_RECORD_MISC_USER, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7077 | /* .size */ |
| 7078 | }, |
| 7079 | /* .pid */ |
| 7080 | /* .tid */ |
| 7081 | .start = vma->vm_start, |
| 7082 | .len = vma->vm_end - vma->vm_start, |
Peter Zijlstra | 3a0304e | 2010-02-26 10:33:41 +0100 | [diff] [blame] | 7083 | .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7084 | }, |
Stephane Eranian | 13d7a24 | 2013-08-21 12:10:24 +0200 | [diff] [blame] | 7085 | /* .maj (attr_mmap2 only) */ |
| 7086 | /* .min (attr_mmap2 only) */ |
| 7087 | /* .ino (attr_mmap2 only) */ |
| 7088 | /* .ino_generation (attr_mmap2 only) */ |
Peter Zijlstra | f972eb6 | 2014-05-19 15:13:47 -0400 | [diff] [blame] | 7089 | /* .prot (attr_mmap2 only) */ |
| 7090 | /* .flags (attr_mmap2 only) */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7091 | }; |
| 7092 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 7093 | perf_addr_filters_adjust(vma); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7094 | perf_event_mmap_event(&mmap_event); |
| 7095 | } |
| 7096 | |
Alexander Shishkin | 68db7e9 | 2015-01-14 14:18:15 +0200 | [diff] [blame] | 7097 | void perf_event_aux_event(struct perf_event *event, unsigned long head, |
| 7098 | unsigned long size, u64 flags) |
| 7099 | { |
| 7100 | struct perf_output_handle handle; |
| 7101 | struct perf_sample_data sample; |
| 7102 | struct perf_aux_event { |
| 7103 | struct perf_event_header header; |
| 7104 | u64 offset; |
| 7105 | u64 size; |
| 7106 | u64 flags; |
| 7107 | } rec = { |
| 7108 | .header = { |
| 7109 | .type = PERF_RECORD_AUX, |
| 7110 | .misc = 0, |
| 7111 | .size = sizeof(rec), |
| 7112 | }, |
| 7113 | .offset = head, |
| 7114 | .size = size, |
| 7115 | .flags = flags, |
| 7116 | }; |
| 7117 | int ret; |
| 7118 | |
| 7119 | perf_event_header__init_id(&rec.header, &sample, event); |
| 7120 | ret = perf_output_begin(&handle, event, rec.header.size); |
| 7121 | |
| 7122 | if (ret) |
| 7123 | return; |
| 7124 | |
| 7125 | perf_output_put(&handle, rec); |
| 7126 | perf_event__output_id_sample(event, &handle, &sample); |
| 7127 | |
| 7128 | perf_output_end(&handle); |
| 7129 | } |
| 7130 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7131 | /* |
Kan Liang | f38b0db | 2015-05-10 15:13:14 -0400 | [diff] [blame] | 7132 | * Lost/dropped samples logging |
| 7133 | */ |
| 7134 | void perf_log_lost_samples(struct perf_event *event, u64 lost) |
| 7135 | { |
| 7136 | struct perf_output_handle handle; |
| 7137 | struct perf_sample_data sample; |
| 7138 | int ret; |
| 7139 | |
| 7140 | struct { |
| 7141 | struct perf_event_header header; |
| 7142 | u64 lost; |
| 7143 | } lost_samples_event = { |
| 7144 | .header = { |
| 7145 | .type = PERF_RECORD_LOST_SAMPLES, |
| 7146 | .misc = 0, |
| 7147 | .size = sizeof(lost_samples_event), |
| 7148 | }, |
| 7149 | .lost = lost, |
| 7150 | }; |
| 7151 | |
| 7152 | perf_event_header__init_id(&lost_samples_event.header, &sample, event); |
| 7153 | |
| 7154 | ret = perf_output_begin(&handle, event, |
| 7155 | lost_samples_event.header.size); |
| 7156 | if (ret) |
| 7157 | return; |
| 7158 | |
| 7159 | perf_output_put(&handle, lost_samples_event); |
| 7160 | perf_event__output_id_sample(event, &handle, &sample); |
| 7161 | perf_output_end(&handle); |
| 7162 | } |
| 7163 | |
| 7164 | /* |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 7165 | * context_switch tracking |
| 7166 | */ |
| 7167 | |
| 7168 | struct perf_switch_event { |
| 7169 | struct task_struct *task; |
| 7170 | struct task_struct *next_prev; |
| 7171 | |
| 7172 | struct { |
| 7173 | struct perf_event_header header; |
| 7174 | u32 next_prev_pid; |
| 7175 | u32 next_prev_tid; |
| 7176 | } event_id; |
| 7177 | }; |
| 7178 | |
| 7179 | static int perf_event_switch_match(struct perf_event *event) |
| 7180 | { |
| 7181 | return event->attr.context_switch; |
| 7182 | } |
| 7183 | |
| 7184 | static void perf_event_switch_output(struct perf_event *event, void *data) |
| 7185 | { |
| 7186 | struct perf_switch_event *se = data; |
| 7187 | struct perf_output_handle handle; |
| 7188 | struct perf_sample_data sample; |
| 7189 | int ret; |
| 7190 | |
| 7191 | if (!perf_event_switch_match(event)) |
| 7192 | return; |
| 7193 | |
| 7194 | /* Only CPU-wide events are allowed to see next/prev pid/tid */ |
| 7195 | if (event->ctx->task) { |
| 7196 | se->event_id.header.type = PERF_RECORD_SWITCH; |
| 7197 | se->event_id.header.size = sizeof(se->event_id.header); |
| 7198 | } else { |
| 7199 | se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE; |
| 7200 | se->event_id.header.size = sizeof(se->event_id); |
| 7201 | se->event_id.next_prev_pid = |
| 7202 | perf_event_pid(event, se->next_prev); |
| 7203 | se->event_id.next_prev_tid = |
| 7204 | perf_event_tid(event, se->next_prev); |
| 7205 | } |
| 7206 | |
| 7207 | perf_event_header__init_id(&se->event_id.header, &sample, event); |
| 7208 | |
| 7209 | ret = perf_output_begin(&handle, event, se->event_id.header.size); |
| 7210 | if (ret) |
| 7211 | return; |
| 7212 | |
| 7213 | if (event->ctx->task) |
| 7214 | perf_output_put(&handle, se->event_id.header); |
| 7215 | else |
| 7216 | perf_output_put(&handle, se->event_id); |
| 7217 | |
| 7218 | perf_event__output_id_sample(event, &handle, &sample); |
| 7219 | |
| 7220 | perf_output_end(&handle); |
| 7221 | } |
| 7222 | |
| 7223 | static void perf_event_switch(struct task_struct *task, |
| 7224 | struct task_struct *next_prev, bool sched_in) |
| 7225 | { |
| 7226 | struct perf_switch_event switch_event; |
| 7227 | |
| 7228 | /* N.B. caller checks nr_switch_events != 0 */ |
| 7229 | |
| 7230 | switch_event = (struct perf_switch_event){ |
| 7231 | .task = task, |
| 7232 | .next_prev = next_prev, |
| 7233 | .event_id = { |
| 7234 | .header = { |
| 7235 | /* .type */ |
| 7236 | .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT, |
| 7237 | /* .size */ |
| 7238 | }, |
| 7239 | /* .next_prev_pid */ |
| 7240 | /* .next_prev_tid */ |
| 7241 | }, |
| 7242 | }; |
| 7243 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 7244 | perf_iterate_sb(perf_event_switch_output, |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 7245 | &switch_event, |
| 7246 | NULL); |
| 7247 | } |
| 7248 | |
| 7249 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7250 | * IRQ throttle logging |
| 7251 | */ |
| 7252 | |
| 7253 | static void perf_log_throttle(struct perf_event *event, int enable) |
| 7254 | { |
| 7255 | struct perf_output_handle handle; |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 7256 | struct perf_sample_data sample; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7257 | int ret; |
| 7258 | |
| 7259 | struct { |
| 7260 | struct perf_event_header header; |
| 7261 | u64 time; |
| 7262 | u64 id; |
| 7263 | u64 stream_id; |
| 7264 | } throttle_event = { |
| 7265 | .header = { |
| 7266 | .type = PERF_RECORD_THROTTLE, |
| 7267 | .misc = 0, |
| 7268 | .size = sizeof(throttle_event), |
| 7269 | }, |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 7270 | .time = perf_event_clock(event), |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7271 | .id = primary_event_id(event), |
| 7272 | .stream_id = event->id, |
| 7273 | }; |
| 7274 | |
| 7275 | if (enable) |
| 7276 | throttle_event.header.type = PERF_RECORD_UNTHROTTLE; |
| 7277 | |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 7278 | perf_event_header__init_id(&throttle_event.header, &sample, event); |
| 7279 | |
| 7280 | ret = perf_output_begin(&handle, event, |
Peter Zijlstra | a7ac67e | 2011-06-27 16:47:16 +0200 | [diff] [blame] | 7281 | throttle_event.header.size); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7282 | if (ret) |
| 7283 | return; |
| 7284 | |
| 7285 | perf_output_put(&handle, throttle_event); |
Arnaldo Carvalho de Melo | c980d10 | 2010-12-04 23:02:20 -0200 | [diff] [blame] | 7286 | perf_event__output_id_sample(event, &handle, &sample); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7287 | perf_output_end(&handle); |
| 7288 | } |
| 7289 | |
Alexander Shishkin | ec0d772 | 2015-01-14 14:18:23 +0200 | [diff] [blame] | 7290 | static void perf_log_itrace_start(struct perf_event *event) |
| 7291 | { |
| 7292 | struct perf_output_handle handle; |
| 7293 | struct perf_sample_data sample; |
| 7294 | struct perf_aux_event { |
| 7295 | struct perf_event_header header; |
| 7296 | u32 pid; |
| 7297 | u32 tid; |
| 7298 | } rec; |
| 7299 | int ret; |
| 7300 | |
| 7301 | if (event->parent) |
| 7302 | event = event->parent; |
| 7303 | |
| 7304 | if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) || |
| 7305 | event->hw.itrace_started) |
| 7306 | return; |
| 7307 | |
Alexander Shishkin | ec0d772 | 2015-01-14 14:18:23 +0200 | [diff] [blame] | 7308 | rec.header.type = PERF_RECORD_ITRACE_START; |
| 7309 | rec.header.misc = 0; |
| 7310 | rec.header.size = sizeof(rec); |
| 7311 | rec.pid = perf_event_pid(event, current); |
| 7312 | rec.tid = perf_event_tid(event, current); |
| 7313 | |
| 7314 | perf_event_header__init_id(&rec.header, &sample, event); |
| 7315 | ret = perf_output_begin(&handle, event, rec.header.size); |
| 7316 | |
| 7317 | if (ret) |
| 7318 | return; |
| 7319 | |
| 7320 | perf_output_put(&handle, rec); |
| 7321 | perf_event__output_id_sample(event, &handle, &sample); |
| 7322 | |
| 7323 | perf_output_end(&handle); |
| 7324 | } |
| 7325 | |
Jiri Olsa | 475113d | 2016-12-28 14:31:03 +0100 | [diff] [blame] | 7326 | static int |
| 7327 | __perf_event_account_interrupt(struct perf_event *event, int throttle) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7328 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7329 | struct hw_perf_event *hwc = &event->hw; |
| 7330 | int ret = 0; |
Jiri Olsa | 475113d | 2016-12-28 14:31:03 +0100 | [diff] [blame] | 7331 | u64 seq; |
Peter Zijlstra | 9639882 | 2010-11-24 18:55:29 +0100 | [diff] [blame] | 7332 | |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 7333 | seq = __this_cpu_read(perf_throttled_seq); |
| 7334 | if (seq != hwc->interrupts_seq) { |
| 7335 | hwc->interrupts_seq = seq; |
| 7336 | hwc->interrupts = 1; |
| 7337 | } else { |
| 7338 | hwc->interrupts++; |
| 7339 | if (unlikely(throttle |
| 7340 | && hwc->interrupts >= max_samples_per_tick)) { |
| 7341 | __this_cpu_inc(perf_throttled_count); |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 7342 | tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS); |
Peter Zijlstra | 163ec43 | 2011-02-16 11:22:34 +0100 | [diff] [blame] | 7343 | hwc->interrupts = MAX_INTERRUPTS; |
| 7344 | perf_log_throttle(event, 0); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7345 | ret = 1; |
| 7346 | } |
Stephane Eranian | e050e3f | 2012-01-26 17:03:19 +0100 | [diff] [blame] | 7347 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7348 | |
| 7349 | if (event->attr.freq) { |
| 7350 | u64 now = perf_clock(); |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 7351 | s64 delta = now - hwc->freq_time_stamp; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7352 | |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 7353 | hwc->freq_time_stamp = now; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7354 | |
Peter Zijlstra | abd5071 | 2010-01-26 18:50:16 +0100 | [diff] [blame] | 7355 | if (delta > 0 && delta < 2*TICK_NSEC) |
Stephane Eranian | f39d47f | 2012-02-07 14:39:57 +0100 | [diff] [blame] | 7356 | perf_adjust_period(event, delta, hwc->last_period, true); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7357 | } |
| 7358 | |
Jiri Olsa | 475113d | 2016-12-28 14:31:03 +0100 | [diff] [blame] | 7359 | return ret; |
| 7360 | } |
| 7361 | |
| 7362 | int perf_event_account_interrupt(struct perf_event *event) |
| 7363 | { |
| 7364 | return __perf_event_account_interrupt(event, 1); |
| 7365 | } |
| 7366 | |
| 7367 | /* |
| 7368 | * Generic event overflow handling, sampling. |
| 7369 | */ |
| 7370 | |
| 7371 | static int __perf_event_overflow(struct perf_event *event, |
| 7372 | int throttle, struct perf_sample_data *data, |
| 7373 | struct pt_regs *regs) |
| 7374 | { |
| 7375 | int events = atomic_read(&event->event_limit); |
| 7376 | int ret = 0; |
| 7377 | |
| 7378 | /* |
| 7379 | * Non-sampling counters might still use the PMI to fold short |
| 7380 | * hardware counters, ignore those. |
| 7381 | */ |
| 7382 | if (unlikely(!is_sampling_event(event))) |
| 7383 | return 0; |
| 7384 | |
| 7385 | ret = __perf_event_account_interrupt(event, throttle); |
| 7386 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7387 | /* |
| 7388 | * XXX event_limit might not quite work as expected on inherited |
| 7389 | * events |
| 7390 | */ |
| 7391 | |
| 7392 | event->pending_kill = POLL_IN; |
| 7393 | if (events && atomic_dec_and_test(&event->event_limit)) { |
| 7394 | ret = 1; |
| 7395 | event->pending_kill = POLL_HUP; |
Jiri Olsa | 5aab90c | 2016-10-26 11:48:24 +0200 | [diff] [blame] | 7396 | |
| 7397 | perf_event_disable_inatomic(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7398 | } |
| 7399 | |
Alexei Starovoitov | aa6a5f3 | 2016-09-01 18:37:24 -0700 | [diff] [blame] | 7400 | READ_ONCE(event->overflow_handler)(event, data, regs); |
Peter Zijlstra | 453f19e | 2009-11-20 22:19:43 +0100 | [diff] [blame] | 7401 | |
Peter Zijlstra | fed66e2cd | 2015-06-11 10:32:01 +0200 | [diff] [blame] | 7402 | if (*perf_event_fasync(event) && event->pending_kill) { |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7403 | event->pending_wakeup = 1; |
| 7404 | irq_work_queue(&event->pending); |
Peter Zijlstra | f506b3d | 2011-05-26 17:02:53 +0200 | [diff] [blame] | 7405 | } |
| 7406 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7407 | return ret; |
| 7408 | } |
| 7409 | |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7410 | int perf_event_overflow(struct perf_event *event, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7411 | struct perf_sample_data *data, |
| 7412 | struct pt_regs *regs) |
| 7413 | { |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7414 | return __perf_event_overflow(event, 1, data, regs); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7415 | } |
| 7416 | |
| 7417 | /* |
| 7418 | * Generic software event infrastructure |
| 7419 | */ |
| 7420 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7421 | struct swevent_htable { |
| 7422 | struct swevent_hlist *swevent_hlist; |
| 7423 | struct mutex hlist_mutex; |
| 7424 | int hlist_refcount; |
| 7425 | |
| 7426 | /* Recursion avoidance in each contexts */ |
| 7427 | int recursion[PERF_NR_CONTEXTS]; |
| 7428 | }; |
| 7429 | |
| 7430 | static DEFINE_PER_CPU(struct swevent_htable, swevent_htable); |
| 7431 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7432 | /* |
| 7433 | * We directly increment event->count and keep a second value in |
| 7434 | * event->hw.period_left to count intervals. This period event |
| 7435 | * is kept in the range [-sample_period, 0] so that we can use the |
| 7436 | * sign as trigger. |
| 7437 | */ |
| 7438 | |
Jiri Olsa | ab57384 | 2013-05-01 17:25:44 +0200 | [diff] [blame] | 7439 | u64 perf_swevent_set_period(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7440 | { |
| 7441 | struct hw_perf_event *hwc = &event->hw; |
| 7442 | u64 period = hwc->last_period; |
| 7443 | u64 nr, offset; |
| 7444 | s64 old, val; |
| 7445 | |
| 7446 | hwc->last_period = hwc->sample_period; |
| 7447 | |
| 7448 | again: |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 7449 | old = val = local64_read(&hwc->period_left); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7450 | if (val < 0) |
| 7451 | return 0; |
| 7452 | |
| 7453 | nr = div64_u64(period + val, period); |
| 7454 | offset = nr * period; |
| 7455 | val -= offset; |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 7456 | if (local64_cmpxchg(&hwc->period_left, old, val) != old) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7457 | goto again; |
| 7458 | |
| 7459 | return nr; |
| 7460 | } |
| 7461 | |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7462 | static void perf_swevent_overflow(struct perf_event *event, u64 overflow, |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7463 | struct perf_sample_data *data, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7464 | struct pt_regs *regs) |
| 7465 | { |
| 7466 | struct hw_perf_event *hwc = &event->hw; |
| 7467 | int throttle = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7468 | |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7469 | if (!overflow) |
| 7470 | overflow = perf_swevent_set_period(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7471 | |
| 7472 | if (hwc->interrupts == MAX_INTERRUPTS) |
| 7473 | return; |
| 7474 | |
| 7475 | for (; overflow; overflow--) { |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7476 | if (__perf_event_overflow(event, throttle, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7477 | data, regs)) { |
| 7478 | /* |
| 7479 | * We inhibit the overflow from happening when |
| 7480 | * hwc->interrupts == MAX_INTERRUPTS. |
| 7481 | */ |
| 7482 | break; |
| 7483 | } |
| 7484 | throttle = 1; |
| 7485 | } |
| 7486 | } |
| 7487 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7488 | static void perf_swevent_event(struct perf_event *event, u64 nr, |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7489 | struct perf_sample_data *data, |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7490 | struct pt_regs *regs) |
| 7491 | { |
| 7492 | struct hw_perf_event *hwc = &event->hw; |
| 7493 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 7494 | local64_add(nr, &event->count); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7495 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7496 | if (!regs) |
| 7497 | return; |
| 7498 | |
Franck Bui-Huu | 6c7e550 | 2010-11-23 16:21:43 +0100 | [diff] [blame] | 7499 | if (!is_sampling_event(event)) |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7500 | return; |
| 7501 | |
Andrew Vagin | 5d81e5c | 2011-11-07 15:54:12 +0300 | [diff] [blame] | 7502 | if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) { |
| 7503 | data->period = nr; |
| 7504 | return perf_swevent_overflow(event, 1, data, regs); |
| 7505 | } else |
| 7506 | data->period = event->hw.last_period; |
| 7507 | |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7508 | if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq) |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7509 | return perf_swevent_overflow(event, 1, data, regs); |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7510 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 7511 | if (local64_add_negative(nr, &hwc->period_left)) |
Peter Zijlstra | 0cff784 | 2009-11-20 22:19:44 +0100 | [diff] [blame] | 7512 | return; |
| 7513 | |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7514 | perf_swevent_overflow(event, 0, data, regs); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7515 | } |
| 7516 | |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 7517 | static int perf_exclude_event(struct perf_event *event, |
| 7518 | struct pt_regs *regs) |
| 7519 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7520 | if (event->hw.state & PERF_HES_STOPPED) |
Frederic Weisbecker | 91b2f48 | 2011-03-07 21:27:08 +0100 | [diff] [blame] | 7521 | return 1; |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7522 | |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 7523 | if (regs) { |
| 7524 | if (event->attr.exclude_user && user_mode(regs)) |
| 7525 | return 1; |
| 7526 | |
| 7527 | if (event->attr.exclude_kernel && !user_mode(regs)) |
| 7528 | return 1; |
| 7529 | } |
| 7530 | |
| 7531 | return 0; |
| 7532 | } |
| 7533 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7534 | static int perf_swevent_match(struct perf_event *event, |
| 7535 | enum perf_type_id type, |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 7536 | u32 event_id, |
| 7537 | struct perf_sample_data *data, |
| 7538 | struct pt_regs *regs) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7539 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7540 | if (event->attr.type != type) |
| 7541 | return 0; |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 7542 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7543 | if (event->attr.config != event_id) |
| 7544 | return 0; |
| 7545 | |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 7546 | if (perf_exclude_event(event, regs)) |
| 7547 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7548 | |
| 7549 | return 1; |
| 7550 | } |
| 7551 | |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7552 | static inline u64 swevent_hash(u64 type, u32 event_id) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7553 | { |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7554 | u64 val = event_id | (type << 32); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7555 | |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7556 | return hash_64(val, SWEVENT_HLIST_BITS); |
| 7557 | } |
| 7558 | |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7559 | static inline struct hlist_head * |
| 7560 | __find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7561 | { |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7562 | u64 hash = swevent_hash(type, event_id); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7563 | |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7564 | return &hlist->heads[hash]; |
| 7565 | } |
| 7566 | |
| 7567 | /* For the read side: events when they trigger */ |
| 7568 | static inline struct hlist_head * |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7569 | 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] | 7570 | { |
| 7571 | struct swevent_hlist *hlist; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7572 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7573 | hlist = rcu_dereference(swhash->swevent_hlist); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7574 | if (!hlist) |
| 7575 | return NULL; |
| 7576 | |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7577 | return __find_swevent_head(hlist, type, event_id); |
| 7578 | } |
| 7579 | |
| 7580 | /* For the event head insertion and removal in the hlist */ |
| 7581 | static inline struct hlist_head * |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7582 | find_swevent_head(struct swevent_htable *swhash, struct perf_event *event) |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7583 | { |
| 7584 | struct swevent_hlist *hlist; |
| 7585 | u32 event_id = event->attr.config; |
| 7586 | u64 type = event->attr.type; |
| 7587 | |
| 7588 | /* |
| 7589 | * Event scheduling is always serialized against hlist allocation |
| 7590 | * and release. Which makes the protected version suitable here. |
| 7591 | * The context lock guarantees that. |
| 7592 | */ |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7593 | hlist = rcu_dereference_protected(swhash->swevent_hlist, |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7594 | lockdep_is_held(&event->ctx->lock)); |
| 7595 | if (!hlist) |
| 7596 | return NULL; |
| 7597 | |
| 7598 | return __find_swevent_head(hlist, type, event_id); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7599 | } |
| 7600 | |
| 7601 | 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] | 7602 | u64 nr, |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7603 | struct perf_sample_data *data, |
| 7604 | struct pt_regs *regs) |
| 7605 | { |
Christoph Lameter | 4a32fea | 2014-08-17 12:30:27 -0500 | [diff] [blame] | 7606 | struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7607 | struct perf_event *event; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7608 | struct hlist_head *head; |
| 7609 | |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7610 | rcu_read_lock(); |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7611 | head = find_swevent_head_rcu(swhash, type, event_id); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7612 | if (!head) |
| 7613 | goto end; |
| 7614 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 7615 | hlist_for_each_entry_rcu(event, head, hlist_entry) { |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 7616 | if (perf_swevent_match(event, type, event_id, data, regs)) |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7617 | perf_swevent_event(event, nr, data, regs); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7618 | } |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7619 | end: |
| 7620 | rcu_read_unlock(); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7621 | } |
| 7622 | |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7623 | DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]); |
| 7624 | |
Peter Zijlstra | 4ed7c92 | 2009-11-23 11:37:29 +0100 | [diff] [blame] | 7625 | int perf_swevent_get_recursion_context(void) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7626 | { |
Christoph Lameter | 4a32fea | 2014-08-17 12:30:27 -0500 | [diff] [blame] | 7627 | struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable); |
Frederic Weisbecker | ce71b9d | 2009-11-22 05:26:55 +0100 | [diff] [blame] | 7628 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7629 | return get_recursion_context(swhash->recursion); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7630 | } |
Ingo Molnar | 645e8cc | 2009-11-22 12:20:19 +0100 | [diff] [blame] | 7631 | EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7632 | |
Alexei Starovoitov | 98b5c2c | 2016-04-06 18:43:25 -0700 | [diff] [blame] | 7633 | void perf_swevent_put_recursion_context(int rctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7634 | { |
Christoph Lameter | 4a32fea | 2014-08-17 12:30:27 -0500 | [diff] [blame] | 7635 | struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable); |
Frederic Weisbecker | 927c7a9 | 2010-07-01 16:20:36 +0200 | [diff] [blame] | 7636 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7637 | put_recursion_context(swhash->recursion, rctx); |
Frederic Weisbecker | ce71b9d | 2009-11-22 05:26:55 +0100 | [diff] [blame] | 7638 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7639 | |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7640 | 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] | 7641 | { |
Ingo Molnar | a4234bf | 2009-11-23 10:57:59 +0100 | [diff] [blame] | 7642 | struct perf_sample_data data; |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7643 | |
| 7644 | if (WARN_ON_ONCE(!regs)) |
| 7645 | return; |
| 7646 | |
| 7647 | perf_sample_data_init(&data, addr, 0); |
| 7648 | do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs); |
| 7649 | } |
| 7650 | |
| 7651 | void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) |
| 7652 | { |
Peter Zijlstra | 4ed7c92 | 2009-11-23 11:37:29 +0100 | [diff] [blame] | 7653 | int rctx; |
| 7654 | |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7655 | preempt_disable_notrace(); |
Peter Zijlstra | 4ed7c92 | 2009-11-23 11:37:29 +0100 | [diff] [blame] | 7656 | rctx = perf_swevent_get_recursion_context(); |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7657 | if (unlikely(rctx < 0)) |
| 7658 | goto fail; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7659 | |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7660 | ___perf_sw_event(event_id, nr, regs, addr); |
Peter Zijlstra | 4ed7c92 | 2009-11-23 11:37:29 +0100 | [diff] [blame] | 7661 | |
| 7662 | perf_swevent_put_recursion_context(rctx); |
Peter Zijlstra (Intel) | 86038c5 | 2014-12-16 12:47:34 +0100 | [diff] [blame] | 7663 | fail: |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7664 | preempt_enable_notrace(); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7665 | } |
| 7666 | |
| 7667 | static void perf_swevent_read(struct perf_event *event) |
| 7668 | { |
| 7669 | } |
| 7670 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7671 | static int perf_swevent_add(struct perf_event *event, int flags) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7672 | { |
Christoph Lameter | 4a32fea | 2014-08-17 12:30:27 -0500 | [diff] [blame] | 7673 | struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7674 | struct hw_perf_event *hwc = &event->hw; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7675 | struct hlist_head *head; |
| 7676 | |
Franck Bui-Huu | 6c7e550 | 2010-11-23 16:21:43 +0100 | [diff] [blame] | 7677 | if (is_sampling_event(event)) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7678 | hwc->last_period = hwc->sample_period; |
| 7679 | perf_swevent_set_period(event); |
| 7680 | } |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7681 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7682 | hwc->state = !(flags & PERF_EF_START); |
| 7683 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7684 | head = find_swevent_head(swhash, event); |
Peter Zijlstra | 12ca6ad | 2015-12-15 13:49:05 +0100 | [diff] [blame] | 7685 | if (WARN_ON_ONCE(!head)) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7686 | return -EINVAL; |
| 7687 | |
| 7688 | hlist_add_head_rcu(&event->hlist_entry, head); |
Shaohua Li | 6a694a6 | 2015-02-05 15:55:32 -0800 | [diff] [blame] | 7689 | perf_event_update_userpage(event); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7690 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7691 | return 0; |
| 7692 | } |
| 7693 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7694 | static void perf_swevent_del(struct perf_event *event, int flags) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7695 | { |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7696 | hlist_del_rcu(&event->hlist_entry); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7697 | } |
| 7698 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7699 | static void perf_swevent_start(struct perf_event *event, int flags) |
Peter Zijlstra | c6df8d5 | 2010-06-03 11:21:20 +0200 | [diff] [blame] | 7700 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7701 | event->hw.state = 0; |
Peter Zijlstra | c6df8d5 | 2010-06-03 11:21:20 +0200 | [diff] [blame] | 7702 | } |
| 7703 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7704 | static void perf_swevent_stop(struct perf_event *event, int flags) |
Peter Zijlstra | c6df8d5 | 2010-06-03 11:21:20 +0200 | [diff] [blame] | 7705 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7706 | event->hw.state = PERF_HES_STOPPED; |
Peter Zijlstra | c6df8d5 | 2010-06-03 11:21:20 +0200 | [diff] [blame] | 7707 | } |
| 7708 | |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7709 | /* Deref the hlist from the update side */ |
| 7710 | static inline struct swevent_hlist * |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7711 | swevent_hlist_deref(struct swevent_htable *swhash) |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7712 | { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7713 | return rcu_dereference_protected(swhash->swevent_hlist, |
| 7714 | lockdep_is_held(&swhash->hlist_mutex)); |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7715 | } |
| 7716 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7717 | static void swevent_hlist_release(struct swevent_htable *swhash) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7718 | { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7719 | struct swevent_hlist *hlist = swevent_hlist_deref(swhash); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7720 | |
Frederic Weisbecker | 49f135e | 2010-05-20 10:17:46 +0200 | [diff] [blame] | 7721 | if (!hlist) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7722 | return; |
| 7723 | |
Andreea-Cristina Bernat | 70691d4 | 2014-08-22 16:26:05 +0300 | [diff] [blame] | 7724 | RCU_INIT_POINTER(swhash->swevent_hlist, NULL); |
Lai Jiangshan | fa4bbc4 | 2011-03-18 12:08:29 +0800 | [diff] [blame] | 7725 | kfree_rcu(hlist, rcu_head); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7726 | } |
| 7727 | |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7728 | static void swevent_hlist_put_cpu(int cpu) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7729 | { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7730 | struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7731 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7732 | mutex_lock(&swhash->hlist_mutex); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7733 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7734 | if (!--swhash->hlist_refcount) |
| 7735 | swevent_hlist_release(swhash); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7736 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7737 | mutex_unlock(&swhash->hlist_mutex); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7738 | } |
| 7739 | |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7740 | static void swevent_hlist_put(void) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7741 | { |
| 7742 | int cpu; |
| 7743 | |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7744 | for_each_possible_cpu(cpu) |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7745 | swevent_hlist_put_cpu(cpu); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7746 | } |
| 7747 | |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7748 | static int swevent_hlist_get_cpu(int cpu) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7749 | { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7750 | struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7751 | int err = 0; |
| 7752 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7753 | mutex_lock(&swhash->hlist_mutex); |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 7754 | if (!swevent_hlist_deref(swhash) && |
| 7755 | cpumask_test_cpu(cpu, perf_online_mask)) { |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7756 | struct swevent_hlist *hlist; |
| 7757 | |
| 7758 | hlist = kzalloc(sizeof(*hlist), GFP_KERNEL); |
| 7759 | if (!hlist) { |
| 7760 | err = -ENOMEM; |
| 7761 | goto exit; |
| 7762 | } |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7763 | rcu_assign_pointer(swhash->swevent_hlist, hlist); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7764 | } |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7765 | swhash->hlist_refcount++; |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 7766 | exit: |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 7767 | mutex_unlock(&swhash->hlist_mutex); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7768 | |
| 7769 | return err; |
| 7770 | } |
| 7771 | |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7772 | static int swevent_hlist_get(void) |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7773 | { |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7774 | int err, cpu, failed_cpu; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7775 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 7776 | mutex_lock(&pmus_lock); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7777 | for_each_possible_cpu(cpu) { |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7778 | err = swevent_hlist_get_cpu(cpu); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7779 | if (err) { |
| 7780 | failed_cpu = cpu; |
| 7781 | goto fail; |
| 7782 | } |
| 7783 | } |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 7784 | mutex_unlock(&pmus_lock); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7785 | return 0; |
Peter Zijlstra | 9ed6060 | 2010-06-11 17:36:35 +0200 | [diff] [blame] | 7786 | fail: |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7787 | for_each_possible_cpu(cpu) { |
| 7788 | if (cpu == failed_cpu) |
| 7789 | break; |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7790 | swevent_hlist_put_cpu(cpu); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7791 | } |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 7792 | mutex_unlock(&pmus_lock); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7793 | return err; |
| 7794 | } |
| 7795 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 7796 | struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX]; |
Frederic Weisbecker | 95476b6 | 2010-04-14 23:42:18 +0200 | [diff] [blame] | 7797 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7798 | static void sw_perf_event_destroy(struct perf_event *event) |
| 7799 | { |
| 7800 | u64 event_id = event->attr.config; |
| 7801 | |
| 7802 | WARN_ON(event->parent); |
| 7803 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 7804 | static_key_slow_dec(&perf_swevent_enabled[event_id]); |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7805 | swevent_hlist_put(); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7806 | } |
| 7807 | |
| 7808 | static int perf_swevent_init(struct perf_event *event) |
| 7809 | { |
Tommi Rantala | 8176cce | 2013-04-13 22:49:14 +0300 | [diff] [blame] | 7810 | u64 event_id = event->attr.config; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7811 | |
| 7812 | if (event->attr.type != PERF_TYPE_SOFTWARE) |
| 7813 | return -ENOENT; |
| 7814 | |
Stephane Eranian | 2481c5f | 2012-02-09 23:20:59 +0100 | [diff] [blame] | 7815 | /* |
| 7816 | * no branch sampling for software events |
| 7817 | */ |
| 7818 | if (has_branch_stack(event)) |
| 7819 | return -EOPNOTSUPP; |
| 7820 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7821 | switch (event_id) { |
| 7822 | case PERF_COUNT_SW_CPU_CLOCK: |
| 7823 | case PERF_COUNT_SW_TASK_CLOCK: |
| 7824 | return -ENOENT; |
| 7825 | |
| 7826 | default: |
| 7827 | break; |
| 7828 | } |
| 7829 | |
Dan Carpenter | ce67783 | 2010-10-24 21:50:42 +0200 | [diff] [blame] | 7830 | if (event_id >= PERF_COUNT_SW_MAX) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7831 | return -ENOENT; |
| 7832 | |
| 7833 | if (!event->parent) { |
| 7834 | int err; |
| 7835 | |
Thomas Gleixner | 3b364d7 | 2016-02-09 20:11:40 +0000 | [diff] [blame] | 7836 | err = swevent_hlist_get(); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7837 | if (err) |
| 7838 | return err; |
| 7839 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 7840 | static_key_slow_inc(&perf_swevent_enabled[event_id]); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7841 | event->destroy = sw_perf_event_destroy; |
| 7842 | } |
| 7843 | |
| 7844 | return 0; |
| 7845 | } |
| 7846 | |
| 7847 | static struct pmu perf_swevent = { |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 7848 | .task_ctx_nr = perf_sw_context, |
| 7849 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 7850 | .capabilities = PERF_PMU_CAP_NO_NMI, |
| 7851 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7852 | .event_init = perf_swevent_init, |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7853 | .add = perf_swevent_add, |
| 7854 | .del = perf_swevent_del, |
| 7855 | .start = perf_swevent_start, |
| 7856 | .stop = perf_swevent_stop, |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7857 | .read = perf_swevent_read, |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7858 | }; |
Frederic Weisbecker | 95476b6 | 2010-04-14 23:42:18 +0200 | [diff] [blame] | 7859 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7860 | #ifdef CONFIG_EVENT_TRACING |
| 7861 | |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7862 | static int perf_tp_filter_match(struct perf_event *event, |
Frederic Weisbecker | 95476b6 | 2010-04-14 23:42:18 +0200 | [diff] [blame] | 7863 | struct perf_sample_data *data) |
| 7864 | { |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 7865 | void *record = data->raw->frag.data; |
Frederic Weisbecker | 95476b6 | 2010-04-14 23:42:18 +0200 | [diff] [blame] | 7866 | |
Peter Zijlstra | b71b437 | 2015-11-02 10:50:51 +0100 | [diff] [blame] | 7867 | /* only top level events have filters set */ |
| 7868 | if (event->parent) |
| 7869 | event = event->parent; |
| 7870 | |
Frederic Weisbecker | 95476b6 | 2010-04-14 23:42:18 +0200 | [diff] [blame] | 7871 | if (likely(!event->filter) || filter_match_preds(event->filter, record)) |
| 7872 | return 1; |
| 7873 | return 0; |
| 7874 | } |
| 7875 | |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7876 | static int perf_tp_event_match(struct perf_event *event, |
| 7877 | struct perf_sample_data *data, |
| 7878 | struct pt_regs *regs) |
| 7879 | { |
Frederic Weisbecker | a0f7d0f | 2011-03-07 21:27:09 +0100 | [diff] [blame] | 7880 | if (event->hw.state & PERF_HES_STOPPED) |
| 7881 | return 0; |
Peter Zijlstra | 580d607 | 2010-05-20 20:54:31 +0200 | [diff] [blame] | 7882 | /* |
| 7883 | * All tracepoints are from kernel-space. |
| 7884 | */ |
| 7885 | if (event->attr.exclude_kernel) |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7886 | return 0; |
| 7887 | |
| 7888 | if (!perf_tp_filter_match(event, data)) |
| 7889 | return 0; |
| 7890 | |
| 7891 | return 1; |
| 7892 | } |
| 7893 | |
Alexei Starovoitov | 85b67bc | 2016-04-18 20:11:50 -0700 | [diff] [blame] | 7894 | void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx, |
| 7895 | struct trace_event_call *call, u64 count, |
| 7896 | struct pt_regs *regs, struct hlist_head *head, |
| 7897 | struct task_struct *task) |
| 7898 | { |
| 7899 | struct bpf_prog *prog = call->prog; |
| 7900 | |
| 7901 | if (prog) { |
| 7902 | *(struct pt_regs **)raw_data = regs; |
| 7903 | if (!trace_call_bpf(prog, raw_data) || hlist_empty(head)) { |
| 7904 | perf_swevent_put_recursion_context(rctx); |
| 7905 | return; |
| 7906 | } |
| 7907 | } |
| 7908 | perf_tp_event(call->event.type, count, raw_data, size, regs, head, |
| 7909 | rctx, task); |
| 7910 | } |
| 7911 | EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit); |
| 7912 | |
Alexei Starovoitov | 1e1dcd9 | 2016-04-06 18:43:24 -0700 | [diff] [blame] | 7913 | 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] | 7914 | struct pt_regs *regs, struct hlist_head *head, int rctx, |
| 7915 | struct task_struct *task) |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7916 | { |
| 7917 | struct perf_sample_data data; |
| 7918 | struct perf_event *event; |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7919 | |
| 7920 | struct perf_raw_record raw = { |
Daniel Borkmann | 7e3f977 | 2016-07-14 18:08:03 +0200 | [diff] [blame] | 7921 | .frag = { |
| 7922 | .size = entry_size, |
| 7923 | .data = record, |
| 7924 | }, |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7925 | }; |
| 7926 | |
Alexei Starovoitov | 1e1dcd9 | 2016-04-06 18:43:24 -0700 | [diff] [blame] | 7927 | perf_sample_data_init(&data, 0, 0); |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7928 | data.raw = &raw; |
| 7929 | |
Alexei Starovoitov | 1e1dcd9 | 2016-04-06 18:43:24 -0700 | [diff] [blame] | 7930 | perf_trace_buf_update(record, event_type); |
| 7931 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 7932 | hlist_for_each_entry_rcu(event, head, hlist_entry) { |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7933 | if (perf_tp_event_match(event, &data, regs)) |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 7934 | perf_swevent_event(event, count, &data, regs); |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7935 | } |
Peter Zijlstra | ecc55f8 | 2010-05-21 15:11:34 +0200 | [diff] [blame] | 7936 | |
Andrew Vagin | e6dab5f | 2012-07-11 18:14:58 +0400 | [diff] [blame] | 7937 | /* |
| 7938 | * If we got specified a target task, also iterate its context and |
| 7939 | * deliver this event there too. |
| 7940 | */ |
| 7941 | if (task && task != current) { |
| 7942 | struct perf_event_context *ctx; |
| 7943 | struct trace_entry *entry = record; |
| 7944 | |
| 7945 | rcu_read_lock(); |
| 7946 | ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]); |
| 7947 | if (!ctx) |
| 7948 | goto unlock; |
| 7949 | |
| 7950 | list_for_each_entry_rcu(event, &ctx->event_list, event_entry) { |
| 7951 | if (event->attr.type != PERF_TYPE_TRACEPOINT) |
| 7952 | continue; |
| 7953 | if (event->attr.config != entry->type) |
| 7954 | continue; |
| 7955 | if (perf_tp_event_match(event, &data, regs)) |
| 7956 | perf_swevent_event(event, count, &data, regs); |
| 7957 | } |
| 7958 | unlock: |
| 7959 | rcu_read_unlock(); |
| 7960 | } |
| 7961 | |
Peter Zijlstra | ecc55f8 | 2010-05-21 15:11:34 +0200 | [diff] [blame] | 7962 | perf_swevent_put_recursion_context(rctx); |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7963 | } |
| 7964 | EXPORT_SYMBOL_GPL(perf_tp_event); |
| 7965 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7966 | static void tp_perf_event_destroy(struct perf_event *event) |
| 7967 | { |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7968 | perf_trace_destroy(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7969 | } |
| 7970 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7971 | static int perf_tp_event_init(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7972 | { |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 7973 | int err; |
| 7974 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7975 | if (event->attr.type != PERF_TYPE_TRACEPOINT) |
| 7976 | return -ENOENT; |
| 7977 | |
Stephane Eranian | 2481c5f | 2012-02-09 23:20:59 +0100 | [diff] [blame] | 7978 | /* |
| 7979 | * no branch sampling for tracepoint events |
| 7980 | */ |
| 7981 | if (has_branch_stack(event)) |
| 7982 | return -EOPNOTSUPP; |
| 7983 | |
Peter Zijlstra | 1c024eca | 2010-05-19 14:02:22 +0200 | [diff] [blame] | 7984 | err = perf_trace_init(event); |
| 7985 | if (err) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7986 | return err; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 7987 | |
| 7988 | event->destroy = tp_perf_event_destroy; |
| 7989 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7990 | return 0; |
| 7991 | } |
| 7992 | |
| 7993 | static struct pmu perf_tracepoint = { |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 7994 | .task_ctx_nr = perf_sw_context, |
| 7995 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 7996 | .event_init = perf_tp_event_init, |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 7997 | .add = perf_trace_add, |
| 7998 | .del = perf_trace_del, |
| 7999 | .start = perf_swevent_start, |
| 8000 | .stop = perf_swevent_stop, |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8001 | .read = perf_swevent_read, |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8002 | }; |
| 8003 | |
| 8004 | static inline void perf_tp_register(void) |
| 8005 | { |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 8006 | perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8007 | } |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 8008 | |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 8009 | static void perf_event_free_filter(struct perf_event *event) |
| 8010 | { |
| 8011 | ftrace_profile_free_filter(event); |
| 8012 | } |
| 8013 | |
Alexei Starovoitov | aa6a5f3 | 2016-09-01 18:37:24 -0700 | [diff] [blame] | 8014 | #ifdef CONFIG_BPF_SYSCALL |
| 8015 | static void bpf_overflow_handler(struct perf_event *event, |
| 8016 | struct perf_sample_data *data, |
| 8017 | struct pt_regs *regs) |
| 8018 | { |
| 8019 | struct bpf_perf_event_data_kern ctx = { |
| 8020 | .data = data, |
| 8021 | .regs = regs, |
| 8022 | }; |
| 8023 | int ret = 0; |
| 8024 | |
| 8025 | preempt_disable(); |
| 8026 | if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1)) |
| 8027 | goto out; |
| 8028 | rcu_read_lock(); |
Daniel Borkmann | 8857519 | 2016-11-26 01:28:04 +0100 | [diff] [blame] | 8029 | ret = BPF_PROG_RUN(event->prog, &ctx); |
Alexei Starovoitov | aa6a5f3 | 2016-09-01 18:37:24 -0700 | [diff] [blame] | 8030 | rcu_read_unlock(); |
| 8031 | out: |
| 8032 | __this_cpu_dec(bpf_prog_active); |
| 8033 | preempt_enable(); |
| 8034 | if (!ret) |
| 8035 | return; |
| 8036 | |
| 8037 | event->orig_overflow_handler(event, data, regs); |
| 8038 | } |
| 8039 | |
| 8040 | static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd) |
| 8041 | { |
| 8042 | struct bpf_prog *prog; |
| 8043 | |
| 8044 | if (event->overflow_handler_context) |
| 8045 | /* hw breakpoint or kernel counter */ |
| 8046 | return -EINVAL; |
| 8047 | |
| 8048 | if (event->prog) |
| 8049 | return -EEXIST; |
| 8050 | |
| 8051 | prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT); |
| 8052 | if (IS_ERR(prog)) |
| 8053 | return PTR_ERR(prog); |
| 8054 | |
| 8055 | event->prog = prog; |
| 8056 | event->orig_overflow_handler = READ_ONCE(event->overflow_handler); |
| 8057 | WRITE_ONCE(event->overflow_handler, bpf_overflow_handler); |
| 8058 | return 0; |
| 8059 | } |
| 8060 | |
| 8061 | static void perf_event_free_bpf_handler(struct perf_event *event) |
| 8062 | { |
| 8063 | struct bpf_prog *prog = event->prog; |
| 8064 | |
| 8065 | if (!prog) |
| 8066 | return; |
| 8067 | |
| 8068 | WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler); |
| 8069 | event->prog = NULL; |
| 8070 | bpf_prog_put(prog); |
| 8071 | } |
| 8072 | #else |
| 8073 | static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd) |
| 8074 | { |
| 8075 | return -EOPNOTSUPP; |
| 8076 | } |
| 8077 | static void perf_event_free_bpf_handler(struct perf_event *event) |
| 8078 | { |
| 8079 | } |
| 8080 | #endif |
| 8081 | |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8082 | static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd) |
| 8083 | { |
Alexei Starovoitov | 98b5c2c | 2016-04-06 18:43:25 -0700 | [diff] [blame] | 8084 | bool is_kprobe, is_tracepoint; |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8085 | struct bpf_prog *prog; |
| 8086 | |
| 8087 | if (event->attr.type != PERF_TYPE_TRACEPOINT) |
Alexei Starovoitov | f91840a | 2017-06-02 21:03:52 -0700 | [diff] [blame] | 8088 | return perf_event_set_bpf_handler(event, prog_fd); |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8089 | |
| 8090 | if (event->tp_event->prog) |
| 8091 | return -EEXIST; |
| 8092 | |
Alexei Starovoitov | 98b5c2c | 2016-04-06 18:43:25 -0700 | [diff] [blame] | 8093 | is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_UKPROBE; |
| 8094 | is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT; |
| 8095 | if (!is_kprobe && !is_tracepoint) |
| 8096 | /* bpf programs can only be attached to u/kprobe or tracepoint */ |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8097 | return -EINVAL; |
| 8098 | |
| 8099 | prog = bpf_prog_get(prog_fd); |
| 8100 | if (IS_ERR(prog)) |
| 8101 | return PTR_ERR(prog); |
| 8102 | |
Alexei Starovoitov | 98b5c2c | 2016-04-06 18:43:25 -0700 | [diff] [blame] | 8103 | if ((is_kprobe && prog->type != BPF_PROG_TYPE_KPROBE) || |
| 8104 | (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT)) { |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8105 | /* valid fd, but invalid bpf program type */ |
| 8106 | bpf_prog_put(prog); |
| 8107 | return -EINVAL; |
| 8108 | } |
| 8109 | |
Alexei Starovoitov | 32bbe00 | 2016-04-06 18:43:28 -0700 | [diff] [blame] | 8110 | if (is_tracepoint) { |
| 8111 | int off = trace_event_get_offsets(event->tp_event); |
| 8112 | |
| 8113 | if (prog->aux->max_ctx_offset > off) { |
| 8114 | bpf_prog_put(prog); |
| 8115 | return -EACCES; |
| 8116 | } |
| 8117 | } |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8118 | event->tp_event->prog = prog; |
| 8119 | |
| 8120 | return 0; |
| 8121 | } |
| 8122 | |
| 8123 | static void perf_event_free_bpf_prog(struct perf_event *event) |
| 8124 | { |
| 8125 | struct bpf_prog *prog; |
| 8126 | |
Alexei Starovoitov | aa6a5f3 | 2016-09-01 18:37:24 -0700 | [diff] [blame] | 8127 | perf_event_free_bpf_handler(event); |
| 8128 | |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8129 | if (!event->tp_event) |
| 8130 | return; |
| 8131 | |
| 8132 | prog = event->tp_event->prog; |
| 8133 | if (prog) { |
| 8134 | event->tp_event->prog = NULL; |
Daniel Borkmann | 1aacde3 | 2016-06-30 17:24:43 +0200 | [diff] [blame] | 8135 | bpf_prog_put(prog); |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8136 | } |
| 8137 | } |
| 8138 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8139 | #else |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 8140 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8141 | static inline void perf_tp_register(void) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8142 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8143 | } |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 8144 | |
Li Zefan | 6fb2915 | 2009-10-15 11:21:42 +0800 | [diff] [blame] | 8145 | static void perf_event_free_filter(struct perf_event *event) |
| 8146 | { |
| 8147 | } |
| 8148 | |
Alexei Starovoitov | 2541517 | 2015-03-25 12:49:20 -0700 | [diff] [blame] | 8149 | static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd) |
| 8150 | { |
| 8151 | return -ENOENT; |
| 8152 | } |
| 8153 | |
| 8154 | static void perf_event_free_bpf_prog(struct perf_event *event) |
| 8155 | { |
| 8156 | } |
Li Zefan | 07b139c | 2009-12-21 14:27:35 +0800 | [diff] [blame] | 8157 | #endif /* CONFIG_EVENT_TRACING */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8158 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 8159 | #ifdef CONFIG_HAVE_HW_BREAKPOINT |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 8160 | void perf_bp_event(struct perf_event *bp, void *data) |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 8161 | { |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 8162 | struct perf_sample_data sample; |
| 8163 | struct pt_regs *regs = data; |
| 8164 | |
Robert Richter | fd0d000 | 2012-04-02 20:19:08 +0200 | [diff] [blame] | 8165 | perf_sample_data_init(&sample, bp->attr.bp_addr, 0); |
Frederic Weisbecker | f5ffe02 | 2009-11-23 15:42:34 +0100 | [diff] [blame] | 8166 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8167 | if (!bp->hw.state && !perf_exclude_event(bp, regs)) |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 8168 | perf_swevent_event(bp, 1, &sample, regs); |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 8169 | } |
| 8170 | #endif |
| 8171 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8172 | /* |
| 8173 | * Allocate a new address filter |
| 8174 | */ |
| 8175 | static struct perf_addr_filter * |
| 8176 | perf_addr_filter_new(struct perf_event *event, struct list_head *filters) |
| 8177 | { |
| 8178 | int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu); |
| 8179 | struct perf_addr_filter *filter; |
| 8180 | |
| 8181 | filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node); |
| 8182 | if (!filter) |
| 8183 | return NULL; |
| 8184 | |
| 8185 | INIT_LIST_HEAD(&filter->entry); |
| 8186 | list_add_tail(&filter->entry, filters); |
| 8187 | |
| 8188 | return filter; |
| 8189 | } |
| 8190 | |
| 8191 | static void free_filters_list(struct list_head *filters) |
| 8192 | { |
| 8193 | struct perf_addr_filter *filter, *iter; |
| 8194 | |
| 8195 | list_for_each_entry_safe(filter, iter, filters, entry) { |
| 8196 | if (filter->inode) |
| 8197 | iput(filter->inode); |
| 8198 | list_del(&filter->entry); |
| 8199 | kfree(filter); |
| 8200 | } |
| 8201 | } |
| 8202 | |
| 8203 | /* |
| 8204 | * Free existing address filters and optionally install new ones |
| 8205 | */ |
| 8206 | static void perf_addr_filters_splice(struct perf_event *event, |
| 8207 | struct list_head *head) |
| 8208 | { |
| 8209 | unsigned long flags; |
| 8210 | LIST_HEAD(list); |
| 8211 | |
| 8212 | if (!has_addr_filter(event)) |
| 8213 | return; |
| 8214 | |
| 8215 | /* don't bother with children, they don't have their own filters */ |
| 8216 | if (event->parent) |
| 8217 | return; |
| 8218 | |
| 8219 | raw_spin_lock_irqsave(&event->addr_filters.lock, flags); |
| 8220 | |
| 8221 | list_splice_init(&event->addr_filters.list, &list); |
| 8222 | if (head) |
| 8223 | list_splice(head, &event->addr_filters.list); |
| 8224 | |
| 8225 | raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags); |
| 8226 | |
| 8227 | free_filters_list(&list); |
| 8228 | } |
| 8229 | |
| 8230 | /* |
| 8231 | * Scan through mm's vmas and see if one of them matches the |
| 8232 | * @filter; if so, adjust filter's address range. |
| 8233 | * Called with mm::mmap_sem down for reading. |
| 8234 | */ |
| 8235 | static unsigned long perf_addr_filter_apply(struct perf_addr_filter *filter, |
| 8236 | struct mm_struct *mm) |
| 8237 | { |
| 8238 | struct vm_area_struct *vma; |
| 8239 | |
| 8240 | for (vma = mm->mmap; vma; vma = vma->vm_next) { |
| 8241 | struct file *file = vma->vm_file; |
| 8242 | unsigned long off = vma->vm_pgoff << PAGE_SHIFT; |
| 8243 | unsigned long vma_size = vma->vm_end - vma->vm_start; |
| 8244 | |
| 8245 | if (!file) |
| 8246 | continue; |
| 8247 | |
| 8248 | if (!perf_addr_filter_match(filter, file, off, vma_size)) |
| 8249 | continue; |
| 8250 | |
| 8251 | return vma->vm_start; |
| 8252 | } |
| 8253 | |
| 8254 | return 0; |
| 8255 | } |
| 8256 | |
| 8257 | /* |
| 8258 | * Update event's address range filters based on the |
| 8259 | * task's existing mappings, if any. |
| 8260 | */ |
| 8261 | static void perf_event_addr_filters_apply(struct perf_event *event) |
| 8262 | { |
| 8263 | struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); |
| 8264 | struct task_struct *task = READ_ONCE(event->ctx->task); |
| 8265 | struct perf_addr_filter *filter; |
| 8266 | struct mm_struct *mm = NULL; |
| 8267 | unsigned int count = 0; |
| 8268 | unsigned long flags; |
| 8269 | |
| 8270 | /* |
| 8271 | * We may observe TASK_TOMBSTONE, which means that the event tear-down |
| 8272 | * will stop on the parent's child_mutex that our caller is also holding |
| 8273 | */ |
| 8274 | if (task == TASK_TOMBSTONE) |
| 8275 | return; |
| 8276 | |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8277 | if (!ifh->nr_file_filters) |
| 8278 | return; |
| 8279 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8280 | mm = get_task_mm(event->ctx->task); |
| 8281 | if (!mm) |
| 8282 | goto restart; |
| 8283 | |
| 8284 | down_read(&mm->mmap_sem); |
| 8285 | |
| 8286 | raw_spin_lock_irqsave(&ifh->lock, flags); |
| 8287 | list_for_each_entry(filter, &ifh->list, entry) { |
| 8288 | event->addr_filters_offs[count] = 0; |
| 8289 | |
Mathieu Poirier | 99f5bc9 | 2016-07-18 10:43:07 -0600 | [diff] [blame] | 8290 | /* |
| 8291 | * Adjust base offset if the filter is associated to a binary |
| 8292 | * that needs to be mapped: |
| 8293 | */ |
| 8294 | if (filter->inode) |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8295 | event->addr_filters_offs[count] = |
| 8296 | perf_addr_filter_apply(filter, mm); |
| 8297 | |
| 8298 | count++; |
| 8299 | } |
| 8300 | |
| 8301 | event->addr_filters_gen++; |
| 8302 | raw_spin_unlock_irqrestore(&ifh->lock, flags); |
| 8303 | |
| 8304 | up_read(&mm->mmap_sem); |
| 8305 | |
| 8306 | mmput(mm); |
| 8307 | |
| 8308 | restart: |
Alexander Shishkin | 767ae08 | 2016-09-06 16:23:49 +0300 | [diff] [blame] | 8309 | perf_event_stop(event, 1); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8310 | } |
| 8311 | |
| 8312 | /* |
| 8313 | * Address range filtering: limiting the data to certain |
| 8314 | * instruction address ranges. Filters are ioctl()ed to us from |
| 8315 | * userspace as ascii strings. |
| 8316 | * |
| 8317 | * Filter string format: |
| 8318 | * |
| 8319 | * ACTION RANGE_SPEC |
| 8320 | * where ACTION is one of the |
| 8321 | * * "filter": limit the trace to this region |
| 8322 | * * "start": start tracing from this address |
| 8323 | * * "stop": stop tracing at this address/region; |
| 8324 | * RANGE_SPEC is |
| 8325 | * * for kernel addresses: <start address>[/<size>] |
| 8326 | * * for object files: <start address>[/<size>]@</path/to/object/file> |
| 8327 | * |
| 8328 | * if <size> is not specified, the range is treated as a single address. |
| 8329 | */ |
| 8330 | enum { |
Alexander Shishkin | e96271f | 2016-11-18 13:38:43 +0200 | [diff] [blame] | 8331 | IF_ACT_NONE = -1, |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8332 | IF_ACT_FILTER, |
| 8333 | IF_ACT_START, |
| 8334 | IF_ACT_STOP, |
| 8335 | IF_SRC_FILE, |
| 8336 | IF_SRC_KERNEL, |
| 8337 | IF_SRC_FILEADDR, |
| 8338 | IF_SRC_KERNELADDR, |
| 8339 | }; |
| 8340 | |
| 8341 | enum { |
| 8342 | IF_STATE_ACTION = 0, |
| 8343 | IF_STATE_SOURCE, |
| 8344 | IF_STATE_END, |
| 8345 | }; |
| 8346 | |
| 8347 | static const match_table_t if_tokens = { |
| 8348 | { IF_ACT_FILTER, "filter" }, |
| 8349 | { IF_ACT_START, "start" }, |
| 8350 | { IF_ACT_STOP, "stop" }, |
| 8351 | { IF_SRC_FILE, "%u/%u@%s" }, |
| 8352 | { IF_SRC_KERNEL, "%u/%u" }, |
| 8353 | { IF_SRC_FILEADDR, "%u@%s" }, |
| 8354 | { IF_SRC_KERNELADDR, "%u" }, |
Alexander Shishkin | e96271f | 2016-11-18 13:38:43 +0200 | [diff] [blame] | 8355 | { IF_ACT_NONE, NULL }, |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8356 | }; |
| 8357 | |
| 8358 | /* |
| 8359 | * Address filter string parser |
| 8360 | */ |
| 8361 | static int |
| 8362 | perf_event_parse_addr_filter(struct perf_event *event, char *fstr, |
| 8363 | struct list_head *filters) |
| 8364 | { |
| 8365 | struct perf_addr_filter *filter = NULL; |
| 8366 | char *start, *orig, *filename = NULL; |
| 8367 | struct path path; |
| 8368 | substring_t args[MAX_OPT_ARGS]; |
| 8369 | int state = IF_STATE_ACTION, token; |
| 8370 | unsigned int kernel = 0; |
| 8371 | int ret = -EINVAL; |
| 8372 | |
| 8373 | orig = fstr = kstrdup(fstr, GFP_KERNEL); |
| 8374 | if (!fstr) |
| 8375 | return -ENOMEM; |
| 8376 | |
| 8377 | while ((start = strsep(&fstr, " ,\n")) != NULL) { |
| 8378 | ret = -EINVAL; |
| 8379 | |
| 8380 | if (!*start) |
| 8381 | continue; |
| 8382 | |
| 8383 | /* filter definition begins */ |
| 8384 | if (state == IF_STATE_ACTION) { |
| 8385 | filter = perf_addr_filter_new(event, filters); |
| 8386 | if (!filter) |
| 8387 | goto fail; |
| 8388 | } |
| 8389 | |
| 8390 | token = match_token(start, if_tokens, args); |
| 8391 | switch (token) { |
| 8392 | case IF_ACT_FILTER: |
| 8393 | case IF_ACT_START: |
| 8394 | filter->filter = 1; |
| 8395 | |
| 8396 | case IF_ACT_STOP: |
| 8397 | if (state != IF_STATE_ACTION) |
| 8398 | goto fail; |
| 8399 | |
| 8400 | state = IF_STATE_SOURCE; |
| 8401 | break; |
| 8402 | |
| 8403 | case IF_SRC_KERNELADDR: |
| 8404 | case IF_SRC_KERNEL: |
| 8405 | kernel = 1; |
| 8406 | |
| 8407 | case IF_SRC_FILEADDR: |
| 8408 | case IF_SRC_FILE: |
| 8409 | if (state != IF_STATE_SOURCE) |
| 8410 | goto fail; |
| 8411 | |
| 8412 | if (token == IF_SRC_FILE || token == IF_SRC_KERNEL) |
| 8413 | filter->range = 1; |
| 8414 | |
| 8415 | *args[0].to = 0; |
| 8416 | ret = kstrtoul(args[0].from, 0, &filter->offset); |
| 8417 | if (ret) |
| 8418 | goto fail; |
| 8419 | |
| 8420 | if (filter->range) { |
| 8421 | *args[1].to = 0; |
| 8422 | ret = kstrtoul(args[1].from, 0, &filter->size); |
| 8423 | if (ret) |
| 8424 | goto fail; |
| 8425 | } |
| 8426 | |
Mathieu Poirier | 4059ffd | 2016-07-18 10:43:05 -0600 | [diff] [blame] | 8427 | if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) { |
| 8428 | int fpos = filter->range ? 2 : 1; |
| 8429 | |
| 8430 | filename = match_strdup(&args[fpos]); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8431 | if (!filename) { |
| 8432 | ret = -ENOMEM; |
| 8433 | goto fail; |
| 8434 | } |
| 8435 | } |
| 8436 | |
| 8437 | state = IF_STATE_END; |
| 8438 | break; |
| 8439 | |
| 8440 | default: |
| 8441 | goto fail; |
| 8442 | } |
| 8443 | |
| 8444 | /* |
| 8445 | * Filter definition is fully parsed, validate and install it. |
| 8446 | * Make sure that it doesn't contradict itself or the event's |
| 8447 | * attribute. |
| 8448 | */ |
| 8449 | if (state == IF_STATE_END) { |
Alexander Shishkin | 9ccbfbb | 2017-01-26 11:40:56 +0200 | [diff] [blame] | 8450 | ret = -EINVAL; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8451 | if (kernel && event->attr.exclude_kernel) |
| 8452 | goto fail; |
| 8453 | |
| 8454 | if (!kernel) { |
| 8455 | if (!filename) |
| 8456 | goto fail; |
| 8457 | |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8458 | /* |
| 8459 | * For now, we only support file-based filters |
| 8460 | * in per-task events; doing so for CPU-wide |
| 8461 | * events requires additional context switching |
| 8462 | * trickery, since same object code will be |
| 8463 | * mapped at different virtual addresses in |
| 8464 | * different processes. |
| 8465 | */ |
| 8466 | ret = -EOPNOTSUPP; |
| 8467 | if (!event->ctx->task) |
| 8468 | goto fail_free_name; |
| 8469 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8470 | /* look up the path and grab its inode */ |
| 8471 | ret = kern_path(filename, LOOKUP_FOLLOW, &path); |
| 8472 | if (ret) |
| 8473 | goto fail_free_name; |
| 8474 | |
| 8475 | filter->inode = igrab(d_inode(path.dentry)); |
| 8476 | path_put(&path); |
| 8477 | kfree(filename); |
| 8478 | filename = NULL; |
| 8479 | |
| 8480 | ret = -EINVAL; |
| 8481 | if (!filter->inode || |
| 8482 | !S_ISREG(filter->inode->i_mode)) |
| 8483 | /* free_filters_list() will iput() */ |
| 8484 | goto fail; |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8485 | |
| 8486 | event->addr_filters.nr_file_filters++; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8487 | } |
| 8488 | |
| 8489 | /* ready to consume more filters */ |
| 8490 | state = IF_STATE_ACTION; |
| 8491 | filter = NULL; |
| 8492 | } |
| 8493 | } |
| 8494 | |
| 8495 | if (state != IF_STATE_ACTION) |
| 8496 | goto fail; |
| 8497 | |
| 8498 | kfree(orig); |
| 8499 | |
| 8500 | return 0; |
| 8501 | |
| 8502 | fail_free_name: |
| 8503 | kfree(filename); |
| 8504 | fail: |
| 8505 | free_filters_list(filters); |
| 8506 | kfree(orig); |
| 8507 | |
| 8508 | return ret; |
| 8509 | } |
| 8510 | |
| 8511 | static int |
| 8512 | perf_event_set_addr_filter(struct perf_event *event, char *filter_str) |
| 8513 | { |
| 8514 | LIST_HEAD(filters); |
| 8515 | int ret; |
| 8516 | |
| 8517 | /* |
| 8518 | * Since this is called in perf_ioctl() path, we're already holding |
| 8519 | * ctx::mutex. |
| 8520 | */ |
| 8521 | lockdep_assert_held(&event->ctx->mutex); |
| 8522 | |
| 8523 | if (WARN_ON_ONCE(event->parent)) |
| 8524 | return -EINVAL; |
| 8525 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8526 | ret = perf_event_parse_addr_filter(event, filter_str, &filters); |
| 8527 | if (ret) |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8528 | goto fail_clear_files; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8529 | |
| 8530 | ret = event->pmu->addr_filters_validate(&filters); |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8531 | if (ret) |
| 8532 | goto fail_free_filters; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8533 | |
| 8534 | /* remove existing filters, if any */ |
| 8535 | perf_addr_filters_splice(event, &filters); |
| 8536 | |
| 8537 | /* install new filters */ |
| 8538 | perf_event_for_each_child(event, perf_event_addr_filters_apply); |
| 8539 | |
| 8540 | return ret; |
Alexander Shishkin | 6ce77bf | 2017-01-26 11:40:57 +0200 | [diff] [blame] | 8541 | |
| 8542 | fail_free_filters: |
| 8543 | free_filters_list(&filters); |
| 8544 | |
| 8545 | fail_clear_files: |
| 8546 | event->addr_filters.nr_file_filters = 0; |
| 8547 | |
| 8548 | return ret; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8549 | } |
| 8550 | |
Alexander Shishkin | c796bbb | 2016-04-27 18:44:42 +0300 | [diff] [blame] | 8551 | static int perf_event_set_filter(struct perf_event *event, void __user *arg) |
| 8552 | { |
| 8553 | char *filter_str; |
| 8554 | int ret = -EINVAL; |
| 8555 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8556 | if ((event->attr.type != PERF_TYPE_TRACEPOINT || |
| 8557 | !IS_ENABLED(CONFIG_EVENT_TRACING)) && |
| 8558 | !has_addr_filter(event)) |
Alexander Shishkin | c796bbb | 2016-04-27 18:44:42 +0300 | [diff] [blame] | 8559 | return -EINVAL; |
| 8560 | |
| 8561 | filter_str = strndup_user(arg, PAGE_SIZE); |
| 8562 | if (IS_ERR(filter_str)) |
| 8563 | return PTR_ERR(filter_str); |
| 8564 | |
| 8565 | if (IS_ENABLED(CONFIG_EVENT_TRACING) && |
| 8566 | event->attr.type == PERF_TYPE_TRACEPOINT) |
| 8567 | ret = ftrace_profile_set_filter(event, event->attr.config, |
| 8568 | filter_str); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 8569 | else if (has_addr_filter(event)) |
| 8570 | ret = perf_event_set_addr_filter(event, filter_str); |
Alexander Shishkin | c796bbb | 2016-04-27 18:44:42 +0300 | [diff] [blame] | 8571 | |
| 8572 | kfree(filter_str); |
| 8573 | return ret; |
| 8574 | } |
| 8575 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8576 | /* |
| 8577 | * hrtimer based swevent callback |
| 8578 | */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8579 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8580 | static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8581 | { |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8582 | enum hrtimer_restart ret = HRTIMER_RESTART; |
| 8583 | struct perf_sample_data data; |
| 8584 | struct pt_regs *regs; |
| 8585 | struct perf_event *event; |
| 8586 | u64 period; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8587 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8588 | event = container_of(hrtimer, struct perf_event, hw.hrtimer); |
Peter Zijlstra | ba3dd36 | 2011-02-15 12:41:46 +0100 | [diff] [blame] | 8589 | |
| 8590 | if (event->state != PERF_EVENT_STATE_ACTIVE) |
| 8591 | return HRTIMER_NORESTART; |
| 8592 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8593 | event->pmu->read(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8594 | |
Robert Richter | fd0d000 | 2012-04-02 20:19:08 +0200 | [diff] [blame] | 8595 | perf_sample_data_init(&data, 0, event->hw.last_period); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8596 | regs = get_irq_regs(); |
| 8597 | |
| 8598 | if (regs && !perf_exclude_event(event, regs)) { |
Paul E. McKenney | 77aeeeb | 2011-11-10 16:02:52 -0800 | [diff] [blame] | 8599 | if (!(event->attr.exclude_idle && is_idle_task(current))) |
Robert Richter | 33b07b8 | 2012-04-05 18:24:43 +0200 | [diff] [blame] | 8600 | if (__perf_event_overflow(event, 1, &data, regs)) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8601 | ret = HRTIMER_NORESTART; |
| 8602 | } |
| 8603 | |
| 8604 | period = max_t(u64, 10000, event->hw.sample_period); |
| 8605 | hrtimer_forward_now(hrtimer, ns_to_ktime(period)); |
| 8606 | |
| 8607 | return ret; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8608 | } |
| 8609 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8610 | static void perf_swevent_start_hrtimer(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 8611 | { |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8612 | struct hw_perf_event *hwc = &event->hw; |
Franck Bui-Huu | 5d508e8 | 2010-11-23 16:21:45 +0100 | [diff] [blame] | 8613 | s64 period; |
| 8614 | |
| 8615 | if (!is_sampling_event(event)) |
| 8616 | return; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8617 | |
Franck Bui-Huu | 5d508e8 | 2010-11-23 16:21:45 +0100 | [diff] [blame] | 8618 | period = local64_read(&hwc->period_left); |
| 8619 | if (period) { |
| 8620 | if (period < 0) |
| 8621 | period = 10000; |
Peter Zijlstra | fa407f3 | 2010-06-24 12:35:12 +0200 | [diff] [blame] | 8622 | |
Franck Bui-Huu | 5d508e8 | 2010-11-23 16:21:45 +0100 | [diff] [blame] | 8623 | local64_set(&hwc->period_left, 0); |
| 8624 | } else { |
| 8625 | period = max_t(u64, 10000, hwc->sample_period); |
| 8626 | } |
Thomas Gleixner | 3497d20 | 2015-04-14 21:09:03 +0000 | [diff] [blame] | 8627 | hrtimer_start(&hwc->hrtimer, ns_to_ktime(period), |
| 8628 | HRTIMER_MODE_REL_PINNED); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8629 | } |
| 8630 | |
| 8631 | static void perf_swevent_cancel_hrtimer(struct perf_event *event) |
| 8632 | { |
| 8633 | struct hw_perf_event *hwc = &event->hw; |
| 8634 | |
Franck Bui-Huu | 6c7e550 | 2010-11-23 16:21:43 +0100 | [diff] [blame] | 8635 | if (is_sampling_event(event)) { |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8636 | ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer); |
Peter Zijlstra | fa407f3 | 2010-06-24 12:35:12 +0200 | [diff] [blame] | 8637 | local64_set(&hwc->period_left, ktime_to_ns(remaining)); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8638 | |
| 8639 | hrtimer_cancel(&hwc->hrtimer); |
| 8640 | } |
| 8641 | } |
| 8642 | |
Peter Zijlstra | ba3dd36 | 2011-02-15 12:41:46 +0100 | [diff] [blame] | 8643 | static void perf_swevent_init_hrtimer(struct perf_event *event) |
| 8644 | { |
| 8645 | struct hw_perf_event *hwc = &event->hw; |
| 8646 | |
| 8647 | if (!is_sampling_event(event)) |
| 8648 | return; |
| 8649 | |
| 8650 | hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 8651 | hwc->hrtimer.function = perf_swevent_hrtimer; |
| 8652 | |
| 8653 | /* |
| 8654 | * Since hrtimers have a fixed rate, we can do a static freq->period |
| 8655 | * mapping and avoid the whole period adjust feedback stuff. |
| 8656 | */ |
| 8657 | if (event->attr.freq) { |
| 8658 | long freq = event->attr.sample_freq; |
| 8659 | |
| 8660 | event->attr.sample_period = NSEC_PER_SEC / freq; |
| 8661 | hwc->sample_period = event->attr.sample_period; |
| 8662 | local64_set(&hwc->period_left, hwc->sample_period); |
Namhyung Kim | 778141e | 2013-03-18 11:41:46 +0900 | [diff] [blame] | 8663 | hwc->last_period = hwc->sample_period; |
Peter Zijlstra | ba3dd36 | 2011-02-15 12:41:46 +0100 | [diff] [blame] | 8664 | event->attr.freq = 0; |
| 8665 | } |
| 8666 | } |
| 8667 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8668 | /* |
| 8669 | * Software event: cpu wall time clock |
| 8670 | */ |
| 8671 | |
| 8672 | static void cpu_clock_event_update(struct perf_event *event) |
| 8673 | { |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8674 | s64 prev; |
| 8675 | u64 now; |
| 8676 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8677 | now = local_clock(); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8678 | prev = local64_xchg(&event->hw.prev_count, now); |
| 8679 | local64_add(now - prev, &event->count); |
| 8680 | } |
| 8681 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8682 | static void cpu_clock_event_start(struct perf_event *event, int flags) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8683 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8684 | local64_set(&event->hw.prev_count, local_clock()); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8685 | perf_swevent_start_hrtimer(event); |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8686 | } |
| 8687 | |
| 8688 | static void cpu_clock_event_stop(struct perf_event *event, int flags) |
| 8689 | { |
| 8690 | perf_swevent_cancel_hrtimer(event); |
| 8691 | cpu_clock_event_update(event); |
| 8692 | } |
| 8693 | |
| 8694 | static int cpu_clock_event_add(struct perf_event *event, int flags) |
| 8695 | { |
| 8696 | if (flags & PERF_EF_START) |
| 8697 | cpu_clock_event_start(event, flags); |
Shaohua Li | 6a694a6 | 2015-02-05 15:55:32 -0800 | [diff] [blame] | 8698 | perf_event_update_userpage(event); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8699 | |
| 8700 | return 0; |
| 8701 | } |
| 8702 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8703 | static void cpu_clock_event_del(struct perf_event *event, int flags) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8704 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8705 | cpu_clock_event_stop(event, flags); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8706 | } |
| 8707 | |
| 8708 | static void cpu_clock_event_read(struct perf_event *event) |
| 8709 | { |
| 8710 | cpu_clock_event_update(event); |
| 8711 | } |
| 8712 | |
| 8713 | static int cpu_clock_event_init(struct perf_event *event) |
| 8714 | { |
| 8715 | if (event->attr.type != PERF_TYPE_SOFTWARE) |
| 8716 | return -ENOENT; |
| 8717 | |
| 8718 | if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK) |
| 8719 | return -ENOENT; |
| 8720 | |
Stephane Eranian | 2481c5f | 2012-02-09 23:20:59 +0100 | [diff] [blame] | 8721 | /* |
| 8722 | * no branch sampling for software events |
| 8723 | */ |
| 8724 | if (has_branch_stack(event)) |
| 8725 | return -EOPNOTSUPP; |
| 8726 | |
Peter Zijlstra | ba3dd36 | 2011-02-15 12:41:46 +0100 | [diff] [blame] | 8727 | perf_swevent_init_hrtimer(event); |
| 8728 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8729 | return 0; |
| 8730 | } |
| 8731 | |
| 8732 | static struct pmu perf_cpu_clock = { |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 8733 | .task_ctx_nr = perf_sw_context, |
| 8734 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 8735 | .capabilities = PERF_PMU_CAP_NO_NMI, |
| 8736 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8737 | .event_init = cpu_clock_event_init, |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8738 | .add = cpu_clock_event_add, |
| 8739 | .del = cpu_clock_event_del, |
| 8740 | .start = cpu_clock_event_start, |
| 8741 | .stop = cpu_clock_event_stop, |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8742 | .read = cpu_clock_event_read, |
| 8743 | }; |
| 8744 | |
| 8745 | /* |
| 8746 | * Software event: task time clock |
| 8747 | */ |
| 8748 | |
| 8749 | static void task_clock_event_update(struct perf_event *event, u64 now) |
| 8750 | { |
| 8751 | u64 prev; |
| 8752 | s64 delta; |
| 8753 | |
| 8754 | prev = local64_xchg(&event->hw.prev_count, now); |
| 8755 | delta = now - prev; |
| 8756 | local64_add(delta, &event->count); |
| 8757 | } |
| 8758 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8759 | static void task_clock_event_start(struct perf_event *event, int flags) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8760 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8761 | local64_set(&event->hw.prev_count, event->ctx->time); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8762 | perf_swevent_start_hrtimer(event); |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8763 | } |
| 8764 | |
| 8765 | static void task_clock_event_stop(struct perf_event *event, int flags) |
| 8766 | { |
| 8767 | perf_swevent_cancel_hrtimer(event); |
| 8768 | task_clock_event_update(event, event->ctx->time); |
| 8769 | } |
| 8770 | |
| 8771 | static int task_clock_event_add(struct perf_event *event, int flags) |
| 8772 | { |
| 8773 | if (flags & PERF_EF_START) |
| 8774 | task_clock_event_start(event, flags); |
Shaohua Li | 6a694a6 | 2015-02-05 15:55:32 -0800 | [diff] [blame] | 8775 | perf_event_update_userpage(event); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8776 | |
| 8777 | return 0; |
| 8778 | } |
| 8779 | |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8780 | static void task_clock_event_del(struct perf_event *event, int flags) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8781 | { |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8782 | task_clock_event_stop(event, PERF_EF_UPDATE); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8783 | } |
| 8784 | |
| 8785 | static void task_clock_event_read(struct perf_event *event) |
| 8786 | { |
Peter Zijlstra | 768a06e | 2011-02-22 16:52:24 +0100 | [diff] [blame] | 8787 | u64 now = perf_clock(); |
| 8788 | u64 delta = now - event->ctx->timestamp; |
| 8789 | u64 time = event->ctx->time + delta; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8790 | |
| 8791 | task_clock_event_update(event, time); |
| 8792 | } |
| 8793 | |
| 8794 | static int task_clock_event_init(struct perf_event *event) |
| 8795 | { |
| 8796 | if (event->attr.type != PERF_TYPE_SOFTWARE) |
| 8797 | return -ENOENT; |
| 8798 | |
| 8799 | if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK) |
| 8800 | return -ENOENT; |
| 8801 | |
Stephane Eranian | 2481c5f | 2012-02-09 23:20:59 +0100 | [diff] [blame] | 8802 | /* |
| 8803 | * no branch sampling for software events |
| 8804 | */ |
| 8805 | if (has_branch_stack(event)) |
| 8806 | return -EOPNOTSUPP; |
| 8807 | |
Peter Zijlstra | ba3dd36 | 2011-02-15 12:41:46 +0100 | [diff] [blame] | 8808 | perf_swevent_init_hrtimer(event); |
| 8809 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8810 | return 0; |
| 8811 | } |
| 8812 | |
| 8813 | static struct pmu perf_task_clock = { |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 8814 | .task_ctx_nr = perf_sw_context, |
| 8815 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 8816 | .capabilities = PERF_PMU_CAP_NO_NMI, |
| 8817 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8818 | .event_init = task_clock_event_init, |
Peter Zijlstra | a4eaf7f | 2010-06-16 14:37:10 +0200 | [diff] [blame] | 8819 | .add = task_clock_event_add, |
| 8820 | .del = task_clock_event_del, |
| 8821 | .start = task_clock_event_start, |
| 8822 | .stop = task_clock_event_stop, |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 8823 | .read = task_clock_event_read, |
| 8824 | }; |
| 8825 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8826 | static void perf_pmu_nop_void(struct pmu *pmu) |
| 8827 | { |
| 8828 | } |
| 8829 | |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 8830 | static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags) |
| 8831 | { |
| 8832 | } |
| 8833 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8834 | static int perf_pmu_nop_int(struct pmu *pmu) |
| 8835 | { |
| 8836 | return 0; |
| 8837 | } |
| 8838 | |
Geliang Tang | 18ab2cd | 2015-09-27 23:25:50 +0800 | [diff] [blame] | 8839 | static DEFINE_PER_CPU(unsigned int, nop_txn_flags); |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 8840 | |
| 8841 | static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags) |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8842 | { |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 8843 | __this_cpu_write(nop_txn_flags, flags); |
| 8844 | |
| 8845 | if (flags & ~PERF_PMU_TXN_ADD) |
| 8846 | return; |
| 8847 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8848 | perf_pmu_disable(pmu); |
| 8849 | } |
| 8850 | |
| 8851 | static int perf_pmu_commit_txn(struct pmu *pmu) |
| 8852 | { |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 8853 | unsigned int flags = __this_cpu_read(nop_txn_flags); |
| 8854 | |
| 8855 | __this_cpu_write(nop_txn_flags, 0); |
| 8856 | |
| 8857 | if (flags & ~PERF_PMU_TXN_ADD) |
| 8858 | return 0; |
| 8859 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8860 | perf_pmu_enable(pmu); |
| 8861 | return 0; |
| 8862 | } |
| 8863 | |
| 8864 | static void perf_pmu_cancel_txn(struct pmu *pmu) |
| 8865 | { |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 8866 | unsigned int flags = __this_cpu_read(nop_txn_flags); |
| 8867 | |
| 8868 | __this_cpu_write(nop_txn_flags, 0); |
| 8869 | |
| 8870 | if (flags & ~PERF_PMU_TXN_ADD) |
| 8871 | return; |
| 8872 | |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 8873 | perf_pmu_enable(pmu); |
| 8874 | } |
| 8875 | |
Peter Zijlstra | 35edc2a | 2011-11-20 20:36:02 +0100 | [diff] [blame] | 8876 | static int perf_event_idx_default(struct perf_event *event) |
| 8877 | { |
Peter Zijlstra | c719f56 | 2014-10-21 11:10:21 +0200 | [diff] [blame] | 8878 | return 0; |
Peter Zijlstra | 35edc2a | 2011-11-20 20:36:02 +0100 | [diff] [blame] | 8879 | } |
| 8880 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 8881 | /* |
| 8882 | * Ensures all contexts with the same task_ctx_nr have the same |
| 8883 | * pmu_cpu_context too. |
| 8884 | */ |
Mark Rutland | 9e31704 | 2014-02-10 17:44:18 +0000 | [diff] [blame] | 8885 | static struct perf_cpu_context __percpu *find_pmu_context(int ctxn) |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 8886 | { |
| 8887 | struct pmu *pmu; |
| 8888 | |
| 8889 | if (ctxn < 0) |
| 8890 | return NULL; |
| 8891 | |
| 8892 | list_for_each_entry(pmu, &pmus, entry) { |
| 8893 | if (pmu->task_ctx_nr == ctxn) |
| 8894 | return pmu->pmu_cpu_context; |
| 8895 | } |
| 8896 | |
| 8897 | return NULL; |
| 8898 | } |
| 8899 | |
Peter Zijlstra | 5167695 | 2010-12-07 14:18:20 +0100 | [diff] [blame] | 8900 | static void free_pmu_context(struct pmu *pmu) |
| 8901 | { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 8902 | mutex_lock(&pmus_lock); |
Peter Zijlstra | 5167695 | 2010-12-07 14:18:20 +0100 | [diff] [blame] | 8903 | free_percpu(pmu->pmu_cpu_context); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 8904 | mutex_unlock(&pmus_lock); |
| 8905 | } |
Alexander Shishkin | 6e855cd | 2016-04-27 18:44:48 +0300 | [diff] [blame] | 8906 | |
| 8907 | /* |
| 8908 | * Let userspace know that this PMU supports address range filtering: |
| 8909 | */ |
| 8910 | static ssize_t nr_addr_filters_show(struct device *dev, |
| 8911 | struct device_attribute *attr, |
| 8912 | char *page) |
| 8913 | { |
| 8914 | struct pmu *pmu = dev_get_drvdata(dev); |
| 8915 | |
| 8916 | return snprintf(page, PAGE_SIZE - 1, "%d\n", pmu->nr_addr_filters); |
| 8917 | } |
| 8918 | DEVICE_ATTR_RO(nr_addr_filters); |
| 8919 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 8920 | static struct idr pmu_idr; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 8921 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 8922 | static ssize_t |
| 8923 | type_show(struct device *dev, struct device_attribute *attr, char *page) |
| 8924 | { |
| 8925 | struct pmu *pmu = dev_get_drvdata(dev); |
| 8926 | |
| 8927 | return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type); |
| 8928 | } |
Greg Kroah-Hartman | 90826ca | 2013-08-23 14:24:40 -0700 | [diff] [blame] | 8929 | static DEVICE_ATTR_RO(type); |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 8930 | |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 8931 | static ssize_t |
| 8932 | perf_event_mux_interval_ms_show(struct device *dev, |
| 8933 | struct device_attribute *attr, |
| 8934 | char *page) |
| 8935 | { |
| 8936 | struct pmu *pmu = dev_get_drvdata(dev); |
| 8937 | |
| 8938 | return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms); |
| 8939 | } |
| 8940 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 8941 | static DEFINE_MUTEX(mux_interval_mutex); |
| 8942 | |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 8943 | static ssize_t |
| 8944 | perf_event_mux_interval_ms_store(struct device *dev, |
| 8945 | struct device_attribute *attr, |
| 8946 | const char *buf, size_t count) |
| 8947 | { |
| 8948 | struct pmu *pmu = dev_get_drvdata(dev); |
| 8949 | int timer, cpu, ret; |
| 8950 | |
| 8951 | ret = kstrtoint(buf, 0, &timer); |
| 8952 | if (ret) |
| 8953 | return ret; |
| 8954 | |
| 8955 | if (timer < 1) |
| 8956 | return -EINVAL; |
| 8957 | |
| 8958 | /* same value, noting to do */ |
| 8959 | if (timer == pmu->hrtimer_interval_ms) |
| 8960 | return count; |
| 8961 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 8962 | mutex_lock(&mux_interval_mutex); |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 8963 | pmu->hrtimer_interval_ms = timer; |
| 8964 | |
| 8965 | /* update all cpuctx for this PMU */ |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 8966 | cpus_read_lock(); |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 8967 | for_each_online_cpu(cpu) { |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 8968 | struct perf_cpu_context *cpuctx; |
| 8969 | cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); |
| 8970 | cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer); |
| 8971 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 8972 | cpu_function_call(cpu, |
| 8973 | (remote_function_f)perf_mux_hrtimer_restart, cpuctx); |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 8974 | } |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 8975 | cpus_read_unlock(); |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 8976 | mutex_unlock(&mux_interval_mutex); |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 8977 | |
| 8978 | return count; |
| 8979 | } |
Greg Kroah-Hartman | 90826ca | 2013-08-23 14:24:40 -0700 | [diff] [blame] | 8980 | static DEVICE_ATTR_RW(perf_event_mux_interval_ms); |
Stephane Eranian | 62b8563 | 2013-04-03 14:21:34 +0200 | [diff] [blame] | 8981 | |
Greg Kroah-Hartman | 90826ca | 2013-08-23 14:24:40 -0700 | [diff] [blame] | 8982 | static struct attribute *pmu_dev_attrs[] = { |
| 8983 | &dev_attr_type.attr, |
| 8984 | &dev_attr_perf_event_mux_interval_ms.attr, |
| 8985 | NULL, |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 8986 | }; |
Greg Kroah-Hartman | 90826ca | 2013-08-23 14:24:40 -0700 | [diff] [blame] | 8987 | ATTRIBUTE_GROUPS(pmu_dev); |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 8988 | |
| 8989 | static int pmu_bus_running; |
| 8990 | static struct bus_type pmu_bus = { |
| 8991 | .name = "event_source", |
Greg Kroah-Hartman | 90826ca | 2013-08-23 14:24:40 -0700 | [diff] [blame] | 8992 | .dev_groups = pmu_dev_groups, |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 8993 | }; |
| 8994 | |
| 8995 | static void pmu_dev_release(struct device *dev) |
| 8996 | { |
| 8997 | kfree(dev); |
| 8998 | } |
| 8999 | |
| 9000 | static int pmu_dev_alloc(struct pmu *pmu) |
| 9001 | { |
| 9002 | int ret = -ENOMEM; |
| 9003 | |
| 9004 | pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL); |
| 9005 | if (!pmu->dev) |
| 9006 | goto out; |
| 9007 | |
Peter Zijlstra | 0c9d42e | 2011-11-20 23:30:47 +0100 | [diff] [blame] | 9008 | pmu->dev->groups = pmu->attr_groups; |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9009 | device_initialize(pmu->dev); |
| 9010 | ret = dev_set_name(pmu->dev, "%s", pmu->name); |
| 9011 | if (ret) |
| 9012 | goto free_dev; |
| 9013 | |
| 9014 | dev_set_drvdata(pmu->dev, pmu); |
| 9015 | pmu->dev->bus = &pmu_bus; |
| 9016 | pmu->dev->release = pmu_dev_release; |
| 9017 | ret = device_add(pmu->dev); |
| 9018 | if (ret) |
| 9019 | goto free_dev; |
| 9020 | |
Alexander Shishkin | 6e855cd | 2016-04-27 18:44:48 +0300 | [diff] [blame] | 9021 | /* For PMUs with address filters, throw in an extra attribute: */ |
| 9022 | if (pmu->nr_addr_filters) |
| 9023 | ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters); |
| 9024 | |
| 9025 | if (ret) |
| 9026 | goto del_dev; |
| 9027 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9028 | out: |
| 9029 | return ret; |
| 9030 | |
Alexander Shishkin | 6e855cd | 2016-04-27 18:44:48 +0300 | [diff] [blame] | 9031 | del_dev: |
| 9032 | device_del(pmu->dev); |
| 9033 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9034 | free_dev: |
| 9035 | put_device(pmu->dev); |
| 9036 | goto out; |
| 9037 | } |
| 9038 | |
Peter Zijlstra | 547e9fd | 2011-01-19 12:51:39 +0100 | [diff] [blame] | 9039 | static struct lock_class_key cpuctx_mutex; |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 9040 | static struct lock_class_key cpuctx_lock; |
Peter Zijlstra | 547e9fd | 2011-01-19 12:51:39 +0100 | [diff] [blame] | 9041 | |
Mischa Jonker | 03d8e80 | 2013-06-04 11:45:48 +0200 | [diff] [blame] | 9042 | int perf_pmu_register(struct pmu *pmu, const char *name, int type) |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9043 | { |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9044 | int cpu, ret; |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 9045 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9046 | mutex_lock(&pmus_lock); |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 9047 | ret = -ENOMEM; |
| 9048 | pmu->pmu_disable_count = alloc_percpu(int); |
| 9049 | if (!pmu->pmu_disable_count) |
| 9050 | goto unlock; |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 9051 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9052 | pmu->type = -1; |
| 9053 | if (!name) |
| 9054 | goto skip_type; |
| 9055 | pmu->name = name; |
| 9056 | |
| 9057 | if (type < 0) { |
Tejun Heo | 0e9c3be | 2013-02-27 17:04:55 -0800 | [diff] [blame] | 9058 | type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL); |
| 9059 | if (type < 0) { |
| 9060 | ret = type; |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9061 | goto free_pdc; |
| 9062 | } |
| 9063 | } |
| 9064 | pmu->type = type; |
| 9065 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9066 | if (pmu_bus_running) { |
| 9067 | ret = pmu_dev_alloc(pmu); |
| 9068 | if (ret) |
| 9069 | goto free_idr; |
| 9070 | } |
| 9071 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9072 | skip_type: |
Peter Zijlstra | 2665784 | 2016-03-22 22:09:18 +0100 | [diff] [blame] | 9073 | if (pmu->task_ctx_nr == perf_hw_context) { |
| 9074 | static int hw_context_taken = 0; |
| 9075 | |
Mark Rutland | 5101ef2 | 2016-04-26 11:33:46 +0100 | [diff] [blame] | 9076 | /* |
| 9077 | * Other than systems with heterogeneous CPUs, it never makes |
| 9078 | * sense for two PMUs to share perf_hw_context. PMUs which are |
| 9079 | * uncore must use perf_invalid_context. |
| 9080 | */ |
| 9081 | if (WARN_ON_ONCE(hw_context_taken && |
| 9082 | !(pmu->capabilities & PERF_PMU_CAP_HETEROGENEOUS_CPUS))) |
Peter Zijlstra | 2665784 | 2016-03-22 22:09:18 +0100 | [diff] [blame] | 9083 | pmu->task_ctx_nr = perf_invalid_context; |
| 9084 | |
| 9085 | hw_context_taken = 1; |
| 9086 | } |
| 9087 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 9088 | pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr); |
| 9089 | if (pmu->pmu_cpu_context) |
| 9090 | goto got_cpu_context; |
| 9091 | |
Wei Yongjun | c481420 | 2013-04-12 11:05:54 +0800 | [diff] [blame] | 9092 | ret = -ENOMEM; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9093 | pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context); |
| 9094 | if (!pmu->pmu_cpu_context) |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9095 | goto free_dev; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9096 | |
| 9097 | for_each_possible_cpu(cpu) { |
| 9098 | struct perf_cpu_context *cpuctx; |
| 9099 | |
| 9100 | cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); |
Peter Zijlstra | eb18447 | 2010-09-07 15:55:13 +0200 | [diff] [blame] | 9101 | __perf_event_init_context(&cpuctx->ctx); |
Peter Zijlstra | 547e9fd | 2011-01-19 12:51:39 +0100 | [diff] [blame] | 9102 | lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex); |
Peter Zijlstra | facc430 | 2011-04-09 21:17:42 +0200 | [diff] [blame] | 9103 | lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock); |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9104 | cpuctx->ctx.pmu = pmu; |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 9105 | cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask); |
Stephane Eranian | 9e63020 | 2013-04-03 14:21:33 +0200 | [diff] [blame] | 9106 | |
Peter Zijlstra | 272325c | 2015-04-15 11:41:58 +0200 | [diff] [blame] | 9107 | __perf_mux_hrtimer_init(cpuctx, cpu); |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9108 | } |
| 9109 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 9110 | got_cpu_context: |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 9111 | if (!pmu->start_txn) { |
| 9112 | if (pmu->pmu_enable) { |
| 9113 | /* |
| 9114 | * If we have pmu_enable/pmu_disable calls, install |
| 9115 | * transaction stubs that use that to try and batch |
| 9116 | * hardware accesses. |
| 9117 | */ |
| 9118 | pmu->start_txn = perf_pmu_start_txn; |
| 9119 | pmu->commit_txn = perf_pmu_commit_txn; |
| 9120 | pmu->cancel_txn = perf_pmu_cancel_txn; |
| 9121 | } else { |
Sukadev Bhattiprolu | fbbe070 | 2015-09-03 20:07:45 -0700 | [diff] [blame] | 9122 | pmu->start_txn = perf_pmu_nop_txn; |
Peter Zijlstra | ad5133b | 2010-06-15 12:22:39 +0200 | [diff] [blame] | 9123 | pmu->commit_txn = perf_pmu_nop_int; |
| 9124 | pmu->cancel_txn = perf_pmu_nop_void; |
| 9125 | } |
| 9126 | } |
| 9127 | |
| 9128 | if (!pmu->pmu_enable) { |
| 9129 | pmu->pmu_enable = perf_pmu_nop_void; |
| 9130 | pmu->pmu_disable = perf_pmu_nop_void; |
| 9131 | } |
| 9132 | |
Peter Zijlstra | 35edc2a | 2011-11-20 20:36:02 +0100 | [diff] [blame] | 9133 | if (!pmu->event_idx) |
| 9134 | pmu->event_idx = perf_event_idx_default; |
| 9135 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9136 | list_add_rcu(&pmu->entry, &pmus); |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 9137 | atomic_set(&pmu->exclusive_cnt, 0); |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 9138 | ret = 0; |
| 9139 | unlock: |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9140 | mutex_unlock(&pmus_lock); |
| 9141 | |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 9142 | return ret; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9143 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 9144 | free_dev: |
| 9145 | device_del(pmu->dev); |
| 9146 | put_device(pmu->dev); |
| 9147 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9148 | free_idr: |
| 9149 | if (pmu->type >= PERF_TYPE_MAX) |
| 9150 | idr_remove(&pmu_idr, pmu->type); |
| 9151 | |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 9152 | free_pdc: |
| 9153 | free_percpu(pmu->pmu_disable_count); |
| 9154 | goto unlock; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9155 | } |
Yan, Zheng | c464c76 | 2014-03-18 16:56:41 +0800 | [diff] [blame] | 9156 | EXPORT_SYMBOL_GPL(perf_pmu_register); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9157 | |
| 9158 | void perf_pmu_unregister(struct pmu *pmu) |
| 9159 | { |
Jiri Olsa | 0933840 | 2016-10-20 13:10:11 +0200 | [diff] [blame] | 9160 | int remove_device; |
| 9161 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9162 | mutex_lock(&pmus_lock); |
Jiri Olsa | 0933840 | 2016-10-20 13:10:11 +0200 | [diff] [blame] | 9163 | remove_device = pmu_bus_running; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9164 | list_del_rcu(&pmu->entry); |
| 9165 | mutex_unlock(&pmus_lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9166 | |
| 9167 | /* |
Peter Zijlstra | cde8e88 | 2010-09-13 11:06:55 +0200 | [diff] [blame] | 9168 | * We dereference the pmu list under both SRCU and regular RCU, so |
| 9169 | * synchronize against both of those. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9170 | */ |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9171 | synchronize_srcu(&pmus_srcu); |
Peter Zijlstra | cde8e88 | 2010-09-13 11:06:55 +0200 | [diff] [blame] | 9172 | synchronize_rcu(); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9173 | |
Peter Zijlstra | 33696fc | 2010-06-14 08:49:00 +0200 | [diff] [blame] | 9174 | free_percpu(pmu->pmu_disable_count); |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9175 | if (pmu->type >= PERF_TYPE_MAX) |
| 9176 | idr_remove(&pmu_idr, pmu->type); |
Jiri Olsa | 0933840 | 2016-10-20 13:10:11 +0200 | [diff] [blame] | 9177 | if (remove_device) { |
| 9178 | if (pmu->nr_addr_filters) |
| 9179 | device_remove_file(pmu->dev, &dev_attr_nr_addr_filters); |
| 9180 | device_del(pmu->dev); |
| 9181 | put_device(pmu->dev); |
| 9182 | } |
Peter Zijlstra | 5167695 | 2010-12-07 14:18:20 +0100 | [diff] [blame] | 9183 | free_pmu_context(pmu); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9184 | } |
Yan, Zheng | c464c76 | 2014-03-18 16:56:41 +0800 | [diff] [blame] | 9185 | EXPORT_SYMBOL_GPL(perf_pmu_unregister); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9186 | |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9187 | static int perf_try_init_event(struct pmu *pmu, struct perf_event *event) |
| 9188 | { |
Peter Zijlstra | ccd41c8 | 2015-02-25 15:56:04 +0100 | [diff] [blame] | 9189 | struct perf_event_context *ctx = NULL; |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9190 | int ret; |
| 9191 | |
| 9192 | if (!try_module_get(pmu->module)) |
| 9193 | return -ENODEV; |
Peter Zijlstra | ccd41c8 | 2015-02-25 15:56:04 +0100 | [diff] [blame] | 9194 | |
| 9195 | if (event->group_leader != event) { |
Peter Zijlstra | 8b10c5e | 2015-05-01 16:08:46 +0200 | [diff] [blame] | 9196 | /* |
| 9197 | * This ctx->mutex can nest when we're called through |
| 9198 | * inheritance. See the perf_event_ctx_lock_nested() comment. |
| 9199 | */ |
| 9200 | ctx = perf_event_ctx_lock_nested(event->group_leader, |
| 9201 | SINGLE_DEPTH_NESTING); |
Peter Zijlstra | ccd41c8 | 2015-02-25 15:56:04 +0100 | [diff] [blame] | 9202 | BUG_ON(!ctx); |
| 9203 | } |
| 9204 | |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9205 | event->pmu = pmu; |
| 9206 | ret = pmu->event_init(event); |
Peter Zijlstra | ccd41c8 | 2015-02-25 15:56:04 +0100 | [diff] [blame] | 9207 | |
| 9208 | if (ctx) |
| 9209 | perf_event_ctx_unlock(event->group_leader, ctx); |
| 9210 | |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9211 | if (ret) |
| 9212 | module_put(pmu->module); |
| 9213 | |
| 9214 | return ret; |
| 9215 | } |
| 9216 | |
Geliang Tang | 18ab2cd | 2015-09-27 23:25:50 +0800 | [diff] [blame] | 9217 | static struct pmu *perf_init_event(struct perf_event *event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9218 | { |
Dan Carpenter | 85c617a | 2017-05-22 12:03:49 +0300 | [diff] [blame] | 9219 | struct pmu *pmu; |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9220 | int idx; |
Lin Ming | 940c5b2 | 2011-02-27 21:13:31 +0800 | [diff] [blame] | 9221 | int ret; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 9222 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9223 | idx = srcu_read_lock(&pmus_srcu); |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9224 | |
Kan Liang | 4099931 | 2017-01-18 08:21:01 -0500 | [diff] [blame] | 9225 | /* Try parent's PMU first: */ |
| 9226 | if (event->parent && event->parent->pmu) { |
| 9227 | pmu = event->parent->pmu; |
| 9228 | ret = perf_try_init_event(pmu, event); |
| 9229 | if (!ret) |
| 9230 | goto unlock; |
| 9231 | } |
| 9232 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9233 | rcu_read_lock(); |
| 9234 | pmu = idr_find(&pmu_idr, event->attr.type); |
| 9235 | rcu_read_unlock(); |
Lin Ming | 940c5b2 | 2011-02-27 21:13:31 +0800 | [diff] [blame] | 9236 | if (pmu) { |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9237 | ret = perf_try_init_event(pmu, event); |
Lin Ming | 940c5b2 | 2011-02-27 21:13:31 +0800 | [diff] [blame] | 9238 | if (ret) |
| 9239 | pmu = ERR_PTR(ret); |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9240 | goto unlock; |
Lin Ming | 940c5b2 | 2011-02-27 21:13:31 +0800 | [diff] [blame] | 9241 | } |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 9242 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9243 | list_for_each_entry_rcu(pmu, &pmus, entry) { |
Mark Rutland | cc34b98 | 2015-01-07 14:56:51 +0000 | [diff] [blame] | 9244 | ret = perf_try_init_event(pmu, event); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9245 | if (!ret) |
Peter Zijlstra | e5f4d33 | 2010-09-10 17:38:06 +0200 | [diff] [blame] | 9246 | goto unlock; |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 9247 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9248 | if (ret != -ENOENT) { |
| 9249 | pmu = ERR_PTR(ret); |
Peter Zijlstra | e5f4d33 | 2010-09-10 17:38:06 +0200 | [diff] [blame] | 9250 | goto unlock; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9251 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9252 | } |
Peter Zijlstra | e5f4d33 | 2010-09-10 17:38:06 +0200 | [diff] [blame] | 9253 | pmu = ERR_PTR(-ENOENT); |
| 9254 | unlock: |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9255 | srcu_read_unlock(&pmus_srcu, idx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9256 | |
| 9257 | return pmu; |
| 9258 | } |
| 9259 | |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 9260 | static void attach_sb_event(struct perf_event *event) |
| 9261 | { |
| 9262 | struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu); |
| 9263 | |
| 9264 | raw_spin_lock(&pel->lock); |
| 9265 | list_add_rcu(&event->sb_list, &pel->list); |
| 9266 | raw_spin_unlock(&pel->lock); |
| 9267 | } |
| 9268 | |
Peter Zijlstra | aab5b71 | 2016-05-12 17:26:46 +0200 | [diff] [blame] | 9269 | /* |
| 9270 | * We keep a list of all !task (and therefore per-cpu) events |
| 9271 | * that need to receive side-band records. |
| 9272 | * |
| 9273 | * This avoids having to scan all the various PMU per-cpu contexts |
| 9274 | * looking for them. |
| 9275 | */ |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 9276 | static void account_pmu_sb_event(struct perf_event *event) |
| 9277 | { |
David Carrillo-Cisneros | a4f144e | 2016-06-01 12:33:05 -0700 | [diff] [blame] | 9278 | if (is_sb_event(event)) |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 9279 | attach_sb_event(event); |
| 9280 | } |
| 9281 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9282 | static void account_event_cpu(struct perf_event *event, int cpu) |
| 9283 | { |
| 9284 | if (event->parent) |
| 9285 | return; |
| 9286 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9287 | if (is_cgroup_event(event)) |
| 9288 | atomic_inc(&per_cpu(perf_cgroup_events, cpu)); |
| 9289 | } |
| 9290 | |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 9291 | /* Freq events need the tick to stay alive (see perf_event_task_tick). */ |
| 9292 | static void account_freq_event_nohz(void) |
| 9293 | { |
| 9294 | #ifdef CONFIG_NO_HZ_FULL |
| 9295 | /* Lock so we don't race with concurrent unaccount */ |
| 9296 | spin_lock(&nr_freq_lock); |
| 9297 | if (atomic_inc_return(&nr_freq_events) == 1) |
| 9298 | tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS); |
| 9299 | spin_unlock(&nr_freq_lock); |
| 9300 | #endif |
| 9301 | } |
| 9302 | |
| 9303 | static void account_freq_event(void) |
| 9304 | { |
| 9305 | if (tick_nohz_full_enabled()) |
| 9306 | account_freq_event_nohz(); |
| 9307 | else |
| 9308 | atomic_inc(&nr_freq_events); |
| 9309 | } |
| 9310 | |
| 9311 | |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9312 | static void account_event(struct perf_event *event) |
| 9313 | { |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 9314 | bool inc = false; |
| 9315 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9316 | if (event->parent) |
| 9317 | return; |
| 9318 | |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9319 | if (event->attach_state & PERF_ATTACH_TASK) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 9320 | inc = true; |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9321 | if (event->attr.mmap || event->attr.mmap_data) |
| 9322 | atomic_inc(&nr_mmap_events); |
| 9323 | if (event->attr.comm) |
| 9324 | atomic_inc(&nr_comm_events); |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 9325 | if (event->attr.namespaces) |
| 9326 | atomic_inc(&nr_namespaces_events); |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9327 | if (event->attr.task) |
| 9328 | atomic_inc(&nr_task_events); |
Frederic Weisbecker | 555e0c1 | 2015-07-16 17:42:29 +0200 | [diff] [blame] | 9329 | if (event->attr.freq) |
| 9330 | account_freq_event(); |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 9331 | if (event->attr.context_switch) { |
| 9332 | atomic_inc(&nr_switch_events); |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 9333 | inc = true; |
Adrian Hunter | 45ac140 | 2015-07-21 12:44:02 +0300 | [diff] [blame] | 9334 | } |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9335 | if (has_branch_stack(event)) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 9336 | inc = true; |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9337 | if (is_cgroup_event(event)) |
Peter Zijlstra | 25432ae | 2016-01-08 11:05:09 +0100 | [diff] [blame] | 9338 | inc = true; |
| 9339 | |
Peter Zijlstra | 9107c89 | 2016-02-24 18:45:45 +0100 | [diff] [blame] | 9340 | if (inc) { |
| 9341 | if (atomic_inc_not_zero(&perf_sched_count)) |
| 9342 | goto enabled; |
| 9343 | |
| 9344 | mutex_lock(&perf_sched_mutex); |
| 9345 | if (!atomic_read(&perf_sched_count)) { |
| 9346 | static_branch_enable(&perf_sched_events); |
| 9347 | /* |
| 9348 | * Guarantee that all CPUs observe they key change and |
| 9349 | * call the perf scheduling hooks before proceeding to |
| 9350 | * install events that need them. |
| 9351 | */ |
| 9352 | synchronize_sched(); |
| 9353 | } |
| 9354 | /* |
| 9355 | * Now that we have waited for the sync_sched(), allow further |
| 9356 | * increments to by-pass the mutex. |
| 9357 | */ |
| 9358 | atomic_inc(&perf_sched_count); |
| 9359 | mutex_unlock(&perf_sched_mutex); |
| 9360 | } |
| 9361 | enabled: |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9362 | |
Frederic Weisbecker | 4beb31f | 2013-07-23 02:31:02 +0200 | [diff] [blame] | 9363 | account_event_cpu(event, event->cpu); |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 9364 | |
| 9365 | account_pmu_sb_event(event); |
Frederic Weisbecker | 766d6c0 | 2013-07-23 02:31:01 +0200 | [diff] [blame] | 9366 | } |
| 9367 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9368 | /* |
| 9369 | * Allocate and initialize a event structure |
| 9370 | */ |
| 9371 | static struct perf_event * |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 9372 | perf_event_alloc(struct perf_event_attr *attr, int cpu, |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 9373 | struct task_struct *task, |
| 9374 | struct perf_event *group_leader, |
| 9375 | struct perf_event *parent_event, |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 9376 | perf_overflow_handler_t overflow_handler, |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 9377 | void *context, int cgroup_fd) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9378 | { |
Peter Zijlstra | 51b0fe3 | 2010-06-11 13:35:57 +0200 | [diff] [blame] | 9379 | struct pmu *pmu; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9380 | struct perf_event *event; |
| 9381 | struct hw_perf_event *hwc; |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9382 | long err = -EINVAL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9383 | |
Oleg Nesterov | 66832eb | 2011-01-18 17:10:32 +0100 | [diff] [blame] | 9384 | if ((unsigned)cpu >= nr_cpu_ids) { |
| 9385 | if (!task || cpu != -1) |
| 9386 | return ERR_PTR(-EINVAL); |
| 9387 | } |
| 9388 | |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 9389 | event = kzalloc(sizeof(*event), GFP_KERNEL); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9390 | if (!event) |
| 9391 | return ERR_PTR(-ENOMEM); |
| 9392 | |
| 9393 | /* |
| 9394 | * Single events are their own group leaders, with an |
| 9395 | * empty sibling list: |
| 9396 | */ |
| 9397 | if (!group_leader) |
| 9398 | group_leader = event; |
| 9399 | |
| 9400 | mutex_init(&event->child_mutex); |
| 9401 | INIT_LIST_HEAD(&event->child_list); |
| 9402 | |
| 9403 | INIT_LIST_HEAD(&event->group_entry); |
| 9404 | INIT_LIST_HEAD(&event->event_entry); |
| 9405 | INIT_LIST_HEAD(&event->sibling_list); |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 9406 | INIT_LIST_HEAD(&event->rb_entry); |
Stephane Eranian | 71ad88e | 2013-11-12 17:58:48 +0100 | [diff] [blame] | 9407 | INIT_LIST_HEAD(&event->active_entry); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9408 | INIT_LIST_HEAD(&event->addr_filters.list); |
Stephane Eranian | f3ae75d | 2014-01-08 11:15:52 +0100 | [diff] [blame] | 9409 | INIT_HLIST_NODE(&event->hlist_entry); |
| 9410 | |
Peter Zijlstra | 10c6db1 | 2011-11-26 02:47:31 +0100 | [diff] [blame] | 9411 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9412 | init_waitqueue_head(&event->waitq); |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 9413 | init_irq_work(&event->pending, perf_pending_event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9414 | |
| 9415 | mutex_init(&event->mmap_mutex); |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9416 | raw_spin_lock_init(&event->addr_filters.lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9417 | |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 9418 | atomic_long_set(&event->refcount, 1); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9419 | event->cpu = cpu; |
| 9420 | event->attr = *attr; |
| 9421 | event->group_leader = group_leader; |
| 9422 | event->pmu = NULL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9423 | event->oncpu = -1; |
| 9424 | |
| 9425 | event->parent = parent_event; |
| 9426 | |
Eric W. Biederman | 17cf22c | 2010-03-02 14:51:53 -0800 | [diff] [blame] | 9427 | event->ns = get_pid_ns(task_active_pid_ns(current)); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9428 | event->id = atomic64_inc_return(&perf_event_id); |
| 9429 | |
| 9430 | event->state = PERF_EVENT_STATE_INACTIVE; |
| 9431 | |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 9432 | if (task) { |
| 9433 | event->attach_state = PERF_ATTACH_TASK; |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 9434 | /* |
Peter Zijlstra | 50f16a8 | 2015-03-05 22:10:19 +0100 | [diff] [blame] | 9435 | * XXX pmu::event_init needs to know what task to account to |
| 9436 | * and we cannot use the ctx information because we need the |
| 9437 | * pmu before we get a ctx. |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 9438 | */ |
Peter Zijlstra | 50f16a8 | 2015-03-05 22:10:19 +0100 | [diff] [blame] | 9439 | event->hw.target = task; |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 9440 | } |
| 9441 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 9442 | event->clock = &local_clock; |
| 9443 | if (parent_event) |
| 9444 | event->clock = parent_event->clock; |
| 9445 | |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 9446 | if (!overflow_handler && parent_event) { |
Frederic Weisbecker | b326e95 | 2009-12-05 09:44:31 +0100 | [diff] [blame] | 9447 | overflow_handler = parent_event->overflow_handler; |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 9448 | context = parent_event->overflow_handler_context; |
Arnd Bergmann | f1e4ba5 | 2016-09-06 15:10:22 +0200 | [diff] [blame] | 9449 | #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING) |
Alexei Starovoitov | aa6a5f3 | 2016-09-01 18:37:24 -0700 | [diff] [blame] | 9450 | if (overflow_handler == bpf_overflow_handler) { |
| 9451 | struct bpf_prog *prog = bpf_prog_inc(parent_event->prog); |
| 9452 | |
| 9453 | if (IS_ERR(prog)) { |
| 9454 | err = PTR_ERR(prog); |
| 9455 | goto err_ns; |
| 9456 | } |
| 9457 | event->prog = prog; |
| 9458 | event->orig_overflow_handler = |
| 9459 | parent_event->orig_overflow_handler; |
| 9460 | } |
| 9461 | #endif |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 9462 | } |
Oleg Nesterov | 66832eb | 2011-01-18 17:10:32 +0100 | [diff] [blame] | 9463 | |
Wang Nan | 1879445 | 2016-03-28 06:41:30 +0000 | [diff] [blame] | 9464 | if (overflow_handler) { |
| 9465 | event->overflow_handler = overflow_handler; |
| 9466 | event->overflow_handler_context = context; |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 9467 | } else if (is_write_backward(event)){ |
| 9468 | event->overflow_handler = perf_event_output_backward; |
| 9469 | event->overflow_handler_context = NULL; |
Wang Nan | 1879445 | 2016-03-28 06:41:30 +0000 | [diff] [blame] | 9470 | } else { |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 9471 | event->overflow_handler = perf_event_output_forward; |
Wang Nan | 1879445 | 2016-03-28 06:41:30 +0000 | [diff] [blame] | 9472 | event->overflow_handler_context = NULL; |
| 9473 | } |
Frederic Weisbecker | 97eaf53 | 2009-10-18 15:33:50 +0200 | [diff] [blame] | 9474 | |
Jiri Olsa | 0231bb5 | 2013-02-01 11:23:45 +0100 | [diff] [blame] | 9475 | perf_event__state_init(event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9476 | |
| 9477 | pmu = NULL; |
| 9478 | |
| 9479 | hwc = &event->hw; |
| 9480 | hwc->sample_period = attr->sample_period; |
| 9481 | if (attr->freq && attr->sample_freq) |
| 9482 | hwc->sample_period = 1; |
| 9483 | hwc->last_period = hwc->sample_period; |
| 9484 | |
Peter Zijlstra | e785059 | 2010-05-21 14:43:08 +0200 | [diff] [blame] | 9485 | local64_set(&hwc->period_left, hwc->sample_period); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9486 | |
| 9487 | /* |
Peter Zijlstra | ba5213a | 2017-05-30 11:45:12 +0200 | [diff] [blame] | 9488 | * We currently do not support PERF_SAMPLE_READ on inherited events. |
| 9489 | * See perf_output_read(). |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9490 | */ |
Peter Zijlstra | ba5213a | 2017-05-30 11:45:12 +0200 | [diff] [blame] | 9491 | if (attr->inherit && (attr->sample_type & PERF_SAMPLE_READ)) |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9492 | goto err_ns; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9493 | |
Yan, Zheng | a46a230 | 2014-11-04 21:56:06 -0500 | [diff] [blame] | 9494 | if (!has_branch_stack(event)) |
| 9495 | event->attr.branch_sample_type = 0; |
| 9496 | |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 9497 | if (cgroup_fd != -1) { |
| 9498 | err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader); |
| 9499 | if (err) |
| 9500 | goto err_ns; |
| 9501 | } |
| 9502 | |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 9503 | pmu = perf_init_event(event); |
Dan Carpenter | 85c617a | 2017-05-22 12:03:49 +0300 | [diff] [blame] | 9504 | if (IS_ERR(pmu)) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9505 | err = PTR_ERR(pmu); |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9506 | goto err_ns; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9507 | } |
| 9508 | |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 9509 | err = exclusive_event_init(event); |
| 9510 | if (err) |
| 9511 | goto err_pmu; |
| 9512 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9513 | if (has_addr_filter(event)) { |
| 9514 | event->addr_filters_offs = kcalloc(pmu->nr_addr_filters, |
| 9515 | sizeof(unsigned long), |
| 9516 | GFP_KERNEL); |
Dan Carpenter | 36cc2b9 | 2017-05-22 12:04:18 +0300 | [diff] [blame] | 9517 | if (!event->addr_filters_offs) { |
| 9518 | err = -ENOMEM; |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9519 | goto err_per_task; |
Dan Carpenter | 36cc2b9 | 2017-05-22 12:04:18 +0300 | [diff] [blame] | 9520 | } |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9521 | |
| 9522 | /* force hw sync on the address filters */ |
| 9523 | event->addr_filters_gen = 1; |
| 9524 | } |
| 9525 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9526 | if (!event->parent) { |
Frederic Weisbecker | 927c7a9 | 2010-07-01 16:20:36 +0200 | [diff] [blame] | 9527 | if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) { |
Arnaldo Carvalho de Melo | 97c79a3 | 2016-04-28 13:16:33 -0300 | [diff] [blame] | 9528 | err = get_callchain_buffers(attr->sample_max_stack); |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9529 | if (err) |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9530 | goto err_addr_filters; |
Stephane Eranian | d010b33 | 2012-02-09 23:21:00 +0100 | [diff] [blame] | 9531 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9532 | } |
| 9533 | |
Alexander Shishkin | 927a557 | 2016-03-02 13:24:14 +0200 | [diff] [blame] | 9534 | /* symmetric to unaccount_event() in _free_event() */ |
| 9535 | account_event(event); |
| 9536 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9537 | return event; |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9538 | |
Alexander Shishkin | 375637b | 2016-04-27 18:44:46 +0300 | [diff] [blame] | 9539 | err_addr_filters: |
| 9540 | kfree(event->addr_filters_offs); |
| 9541 | |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 9542 | err_per_task: |
| 9543 | exclusive_event_destroy(event); |
| 9544 | |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9545 | err_pmu: |
| 9546 | if (event->destroy) |
| 9547 | event->destroy(event); |
Yan, Zheng | c464c76 | 2014-03-18 16:56:41 +0800 | [diff] [blame] | 9548 | module_put(pmu->module); |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9549 | err_ns: |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 9550 | if (is_cgroup_event(event)) |
| 9551 | perf_detach_cgroup(event); |
Frederic Weisbecker | 90983b1 | 2013-07-23 02:31:00 +0200 | [diff] [blame] | 9552 | if (event->ns) |
| 9553 | put_pid_ns(event->ns); |
| 9554 | kfree(event); |
| 9555 | |
| 9556 | return ERR_PTR(err); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9557 | } |
| 9558 | |
| 9559 | static int perf_copy_attr(struct perf_event_attr __user *uattr, |
| 9560 | struct perf_event_attr *attr) |
| 9561 | { |
| 9562 | u32 size; |
| 9563 | int ret; |
| 9564 | |
| 9565 | if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0)) |
| 9566 | return -EFAULT; |
| 9567 | |
| 9568 | /* |
| 9569 | * zero the full structure, so that a short copy will be nice. |
| 9570 | */ |
| 9571 | memset(attr, 0, sizeof(*attr)); |
| 9572 | |
| 9573 | ret = get_user(size, &uattr->size); |
| 9574 | if (ret) |
| 9575 | return ret; |
| 9576 | |
| 9577 | if (size > PAGE_SIZE) /* silly large */ |
| 9578 | goto err_size; |
| 9579 | |
| 9580 | if (!size) /* abi compat */ |
| 9581 | size = PERF_ATTR_SIZE_VER0; |
| 9582 | |
| 9583 | if (size < PERF_ATTR_SIZE_VER0) |
| 9584 | goto err_size; |
| 9585 | |
| 9586 | /* |
| 9587 | * If we're handed a bigger struct than we know of, |
| 9588 | * ensure all the unknown bits are 0 - i.e. new |
| 9589 | * user-space does not rely on any kernel feature |
| 9590 | * extensions we dont know about yet. |
| 9591 | */ |
| 9592 | if (size > sizeof(*attr)) { |
| 9593 | unsigned char __user *addr; |
| 9594 | unsigned char __user *end; |
| 9595 | unsigned char val; |
| 9596 | |
| 9597 | addr = (void __user *)uattr + sizeof(*attr); |
| 9598 | end = (void __user *)uattr + size; |
| 9599 | |
| 9600 | for (; addr < end; addr++) { |
| 9601 | ret = get_user(val, addr); |
| 9602 | if (ret) |
| 9603 | return ret; |
| 9604 | if (val) |
| 9605 | goto err_size; |
| 9606 | } |
| 9607 | size = sizeof(*attr); |
| 9608 | } |
| 9609 | |
| 9610 | ret = copy_from_user(attr, uattr, size); |
| 9611 | if (ret) |
| 9612 | return -EFAULT; |
| 9613 | |
Mahesh Salgaonkar | cd75764 | 2010-01-30 10:25:18 +0530 | [diff] [blame] | 9614 | if (attr->__reserved_1) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9615 | return -EINVAL; |
| 9616 | |
| 9617 | if (attr->sample_type & ~(PERF_SAMPLE_MAX-1)) |
| 9618 | return -EINVAL; |
| 9619 | |
| 9620 | if (attr->read_format & ~(PERF_FORMAT_MAX-1)) |
| 9621 | return -EINVAL; |
| 9622 | |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 9623 | if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) { |
| 9624 | u64 mask = attr->branch_sample_type; |
| 9625 | |
| 9626 | /* only using defined bits */ |
| 9627 | if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1)) |
| 9628 | return -EINVAL; |
| 9629 | |
| 9630 | /* at least one branch bit must be set */ |
| 9631 | if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL)) |
| 9632 | return -EINVAL; |
| 9633 | |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 9634 | /* propagate priv level, when not set for branch */ |
| 9635 | if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) { |
| 9636 | |
| 9637 | /* exclude_kernel checked on syscall entry */ |
| 9638 | if (!attr->exclude_kernel) |
| 9639 | mask |= PERF_SAMPLE_BRANCH_KERNEL; |
| 9640 | |
| 9641 | if (!attr->exclude_user) |
| 9642 | mask |= PERF_SAMPLE_BRANCH_USER; |
| 9643 | |
| 9644 | if (!attr->exclude_hv) |
| 9645 | mask |= PERF_SAMPLE_BRANCH_HV; |
| 9646 | /* |
| 9647 | * adjust user setting (for HW filter setup) |
| 9648 | */ |
| 9649 | attr->branch_sample_type = mask; |
| 9650 | } |
Stephane Eranian | e712209 | 2013-06-06 11:02:04 +0200 | [diff] [blame] | 9651 | /* privileged levels capture (kernel, hv): check permissions */ |
| 9652 | if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM) |
Stephane Eranian | 2b923c8 | 2013-05-21 12:53:37 +0200 | [diff] [blame] | 9653 | && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN)) |
| 9654 | return -EACCES; |
Stephane Eranian | bce38cd | 2012-02-09 23:20:51 +0100 | [diff] [blame] | 9655 | } |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 9656 | |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 9657 | if (attr->sample_type & PERF_SAMPLE_REGS_USER) { |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 9658 | ret = perf_reg_validate(attr->sample_regs_user); |
Jiri Olsa | c5ebced | 2012-08-07 15:20:40 +0200 | [diff] [blame] | 9659 | if (ret) |
| 9660 | return ret; |
| 9661 | } |
| 9662 | |
| 9663 | if (attr->sample_type & PERF_SAMPLE_STACK_USER) { |
| 9664 | if (!arch_perf_have_user_stack_dump()) |
| 9665 | return -ENOSYS; |
| 9666 | |
| 9667 | /* |
| 9668 | * We have __u32 type for the size, but so far |
| 9669 | * we can only use __u16 as maximum due to the |
| 9670 | * __u16 sample size limit. |
| 9671 | */ |
| 9672 | if (attr->sample_stack_user >= USHRT_MAX) |
| 9673 | ret = -EINVAL; |
| 9674 | else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64))) |
| 9675 | ret = -EINVAL; |
| 9676 | } |
Jiri Olsa | 4018994 | 2012-08-07 15:20:37 +0200 | [diff] [blame] | 9677 | |
Stephane Eranian | 60e2364 | 2014-09-24 13:48:37 +0200 | [diff] [blame] | 9678 | if (attr->sample_type & PERF_SAMPLE_REGS_INTR) |
| 9679 | ret = perf_reg_validate(attr->sample_regs_intr); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9680 | out: |
| 9681 | return ret; |
| 9682 | |
| 9683 | err_size: |
| 9684 | put_user(sizeof(*attr), &uattr->size); |
| 9685 | ret = -E2BIG; |
| 9686 | goto out; |
| 9687 | } |
| 9688 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9689 | static int |
| 9690 | 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] | 9691 | { |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 9692 | struct ring_buffer *rb = NULL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9693 | int ret = -EINVAL; |
| 9694 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9695 | if (!output_event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9696 | goto set; |
| 9697 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9698 | /* don't allow circular references */ |
| 9699 | if (event == output_event) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9700 | goto out; |
| 9701 | |
Peter Zijlstra | 0f13930 | 2010-05-20 14:35:15 +0200 | [diff] [blame] | 9702 | /* |
| 9703 | * Don't allow cross-cpu buffers |
| 9704 | */ |
| 9705 | if (output_event->cpu != event->cpu) |
| 9706 | goto out; |
| 9707 | |
| 9708 | /* |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 9709 | * 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] | 9710 | */ |
| 9711 | if (output_event->cpu == -1 && output_event->ctx != event->ctx) |
| 9712 | goto out; |
| 9713 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 9714 | /* |
| 9715 | * Mixing clocks in the same buffer is trouble you don't need. |
| 9716 | */ |
| 9717 | if (output_event->clock != event->clock) |
| 9718 | goto out; |
| 9719 | |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 9720 | /* |
Wang Nan | 9ecda41 | 2016-04-05 14:11:18 +0000 | [diff] [blame] | 9721 | * Either writing ring buffer from beginning or from end. |
| 9722 | * Mixing is not allowed. |
| 9723 | */ |
| 9724 | if (is_write_backward(output_event) != is_write_backward(event)) |
| 9725 | goto out; |
| 9726 | |
| 9727 | /* |
Peter Zijlstra | 45bfb2e | 2015-01-14 14:18:11 +0200 | [diff] [blame] | 9728 | * If both events generate aux data, they must be on the same PMU |
| 9729 | */ |
| 9730 | if (has_aux(event) && has_aux(output_event) && |
| 9731 | event->pmu != output_event->pmu) |
| 9732 | goto out; |
| 9733 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9734 | set: |
| 9735 | mutex_lock(&event->mmap_mutex); |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9736 | /* Can't redirect output if we've got an active mmap() */ |
| 9737 | if (atomic_read(&event->mmap_count)) |
| 9738 | goto unlock; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9739 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9740 | if (output_event) { |
Frederic Weisbecker | 7636913 | 2011-05-19 19:55:04 +0200 | [diff] [blame] | 9741 | /* get the rb we want to redirect to */ |
| 9742 | rb = ring_buffer_get(output_event); |
| 9743 | if (!rb) |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9744 | goto unlock; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9745 | } |
| 9746 | |
Peter Zijlstra | b69cf53 | 2014-03-14 10:50:33 +0100 | [diff] [blame] | 9747 | ring_buffer_attach(event, rb); |
Peter Zijlstra | 9bb5d40 | 2013-06-04 10:44:21 +0200 | [diff] [blame] | 9748 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9749 | ret = 0; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9750 | unlock: |
| 9751 | mutex_unlock(&event->mmap_mutex); |
| 9752 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9753 | out: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9754 | return ret; |
| 9755 | } |
| 9756 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 9757 | static void mutex_lock_double(struct mutex *a, struct mutex *b) |
| 9758 | { |
| 9759 | if (b < a) |
| 9760 | swap(a, b); |
| 9761 | |
| 9762 | mutex_lock(a); |
| 9763 | mutex_lock_nested(b, SINGLE_DEPTH_NESTING); |
| 9764 | } |
| 9765 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 9766 | static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id) |
| 9767 | { |
| 9768 | bool nmi_safe = false; |
| 9769 | |
| 9770 | switch (clk_id) { |
| 9771 | case CLOCK_MONOTONIC: |
| 9772 | event->clock = &ktime_get_mono_fast_ns; |
| 9773 | nmi_safe = true; |
| 9774 | break; |
| 9775 | |
| 9776 | case CLOCK_MONOTONIC_RAW: |
| 9777 | event->clock = &ktime_get_raw_fast_ns; |
| 9778 | nmi_safe = true; |
| 9779 | break; |
| 9780 | |
| 9781 | case CLOCK_REALTIME: |
| 9782 | event->clock = &ktime_get_real_ns; |
| 9783 | break; |
| 9784 | |
| 9785 | case CLOCK_BOOTTIME: |
| 9786 | event->clock = &ktime_get_boot_ns; |
| 9787 | break; |
| 9788 | |
| 9789 | case CLOCK_TAI: |
| 9790 | event->clock = &ktime_get_tai_ns; |
| 9791 | break; |
| 9792 | |
| 9793 | default: |
| 9794 | return -EINVAL; |
| 9795 | } |
| 9796 | |
| 9797 | if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI)) |
| 9798 | return -EINVAL; |
| 9799 | |
| 9800 | return 0; |
| 9801 | } |
| 9802 | |
Peter Zijlstra | 321027c | 2017-01-11 21:09:50 +0100 | [diff] [blame] | 9803 | /* |
| 9804 | * Variation on perf_event_ctx_lock_nested(), except we take two context |
| 9805 | * mutexes. |
| 9806 | */ |
| 9807 | static struct perf_event_context * |
| 9808 | __perf_event_ctx_lock_double(struct perf_event *group_leader, |
| 9809 | struct perf_event_context *ctx) |
| 9810 | { |
| 9811 | struct perf_event_context *gctx; |
| 9812 | |
| 9813 | again: |
| 9814 | rcu_read_lock(); |
| 9815 | gctx = READ_ONCE(group_leader->ctx); |
| 9816 | if (!atomic_inc_not_zero(&gctx->refcount)) { |
| 9817 | rcu_read_unlock(); |
| 9818 | goto again; |
| 9819 | } |
| 9820 | rcu_read_unlock(); |
| 9821 | |
| 9822 | mutex_lock_double(&gctx->mutex, &ctx->mutex); |
| 9823 | |
| 9824 | if (group_leader->ctx != gctx) { |
| 9825 | mutex_unlock(&ctx->mutex); |
| 9826 | mutex_unlock(&gctx->mutex); |
| 9827 | put_ctx(gctx); |
| 9828 | goto again; |
| 9829 | } |
| 9830 | |
| 9831 | return gctx; |
| 9832 | } |
| 9833 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9834 | /** |
| 9835 | * sys_perf_event_open - open a performance event, associate it to a task/cpu |
| 9836 | * |
| 9837 | * @attr_uptr: event_id type attributes for monitoring/sampling |
| 9838 | * @pid: target pid |
| 9839 | * @cpu: target cpu |
| 9840 | * @group_fd: group leader event fd |
| 9841 | */ |
| 9842 | SYSCALL_DEFINE5(perf_event_open, |
| 9843 | struct perf_event_attr __user *, attr_uptr, |
| 9844 | pid_t, pid, int, cpu, int, group_fd, unsigned long, flags) |
| 9845 | { |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 9846 | struct perf_event *group_leader = NULL, *output_event = NULL; |
| 9847 | struct perf_event *event, *sibling; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9848 | struct perf_event_attr attr; |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 9849 | struct perf_event_context *ctx, *uninitialized_var(gctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9850 | struct file *event_file = NULL; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 9851 | struct fd group = {NULL, 0}; |
Matt Helsley | 38a81da | 2010-09-13 13:01:20 -0700 | [diff] [blame] | 9852 | struct task_struct *task = NULL; |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 9853 | struct pmu *pmu; |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 9854 | int event_fd; |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 9855 | int move_group = 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9856 | int err; |
Yann Droneaud | a21b0b3 | 2014-01-05 21:36:33 +0100 | [diff] [blame] | 9857 | int f_flags = O_RDWR; |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 9858 | int cgroup_fd = -1; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9859 | |
| 9860 | /* for future expandability... */ |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 9861 | if (flags & ~PERF_FLAG_ALL) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9862 | return -EINVAL; |
| 9863 | |
| 9864 | err = perf_copy_attr(attr_uptr, &attr); |
| 9865 | if (err) |
| 9866 | return err; |
| 9867 | |
| 9868 | if (!attr.exclude_kernel) { |
| 9869 | if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN)) |
| 9870 | return -EACCES; |
| 9871 | } |
| 9872 | |
Hari Bathini | e422267 | 2017-03-08 02:11:36 +0530 | [diff] [blame] | 9873 | if (attr.namespaces) { |
| 9874 | if (!capable(CAP_SYS_ADMIN)) |
| 9875 | return -EACCES; |
| 9876 | } |
| 9877 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9878 | if (attr.freq) { |
| 9879 | if (attr.sample_freq > sysctl_perf_event_sample_rate) |
| 9880 | return -EINVAL; |
Peter Zijlstra | 0819b2e | 2014-05-15 20:23:48 +0200 | [diff] [blame] | 9881 | } else { |
| 9882 | if (attr.sample_period & (1ULL << 63)) |
| 9883 | return -EINVAL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9884 | } |
| 9885 | |
Arnaldo Carvalho de Melo | 97c79a3 | 2016-04-28 13:16:33 -0300 | [diff] [blame] | 9886 | if (!attr.sample_max_stack) |
| 9887 | attr.sample_max_stack = sysctl_perf_event_max_stack; |
| 9888 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 9889 | /* |
| 9890 | * In cgroup mode, the pid argument is used to pass the fd |
| 9891 | * opened to the cgroup directory in cgroupfs. The cpu argument |
| 9892 | * designates the cpu on which to monitor threads from that |
| 9893 | * cgroup. |
| 9894 | */ |
| 9895 | if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1)) |
| 9896 | return -EINVAL; |
| 9897 | |
Yann Droneaud | a21b0b3 | 2014-01-05 21:36:33 +0100 | [diff] [blame] | 9898 | if (flags & PERF_FLAG_FD_CLOEXEC) |
| 9899 | f_flags |= O_CLOEXEC; |
| 9900 | |
| 9901 | event_fd = get_unused_fd_flags(f_flags); |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 9902 | if (event_fd < 0) |
| 9903 | return event_fd; |
| 9904 | |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9905 | if (group_fd != -1) { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 9906 | err = perf_fget_light(group_fd, &group); |
| 9907 | if (err) |
Stephane Eranian | d14b12d | 2010-09-17 11:28:47 +0200 | [diff] [blame] | 9908 | goto err_fd; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 9909 | group_leader = group.file->private_data; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 9910 | if (flags & PERF_FLAG_FD_OUTPUT) |
| 9911 | output_event = group_leader; |
| 9912 | if (flags & PERF_FLAG_FD_NO_GROUP) |
| 9913 | group_leader = NULL; |
| 9914 | } |
| 9915 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 9916 | if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) { |
Peter Zijlstra | c6be5a5 | 2010-10-14 16:59:46 +0200 | [diff] [blame] | 9917 | task = find_lively_task_by_vpid(pid); |
| 9918 | if (IS_ERR(task)) { |
| 9919 | err = PTR_ERR(task); |
| 9920 | goto err_group_fd; |
| 9921 | } |
| 9922 | } |
| 9923 | |
Peter Zijlstra | 1f4ee50 | 2014-05-06 09:59:34 +0200 | [diff] [blame] | 9924 | if (task && group_leader && |
| 9925 | group_leader->attr.inherit != attr.inherit) { |
| 9926 | err = -EINVAL; |
| 9927 | goto err_task; |
| 9928 | } |
| 9929 | |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 9930 | if (task) { |
| 9931 | err = mutex_lock_interruptible(&task->signal->cred_guard_mutex); |
| 9932 | if (err) |
Alexander Levin | e5aeee5 | 2017-06-03 03:39:13 +0000 | [diff] [blame] | 9933 | goto err_task; |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 9934 | |
| 9935 | /* |
| 9936 | * Reuse ptrace permission checks for now. |
| 9937 | * |
| 9938 | * We must hold cred_guard_mutex across this and any potential |
| 9939 | * perf_install_in_context() call for this new event to |
| 9940 | * serialize against exec() altering our credentials (and the |
| 9941 | * perf_event_exit_task() that could imply). |
| 9942 | */ |
| 9943 | err = -EACCES; |
| 9944 | if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) |
| 9945 | goto err_cred; |
| 9946 | } |
| 9947 | |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 9948 | if (flags & PERF_FLAG_PID_CGROUP) |
| 9949 | cgroup_fd = pid; |
| 9950 | |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 9951 | event = perf_event_alloc(&attr, cpu, task, group_leader, NULL, |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 9952 | NULL, NULL, cgroup_fd); |
Stephane Eranian | d14b12d | 2010-09-17 11:28:47 +0200 | [diff] [blame] | 9953 | if (IS_ERR(event)) { |
| 9954 | err = PTR_ERR(event); |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 9955 | goto err_cred; |
Stephane Eranian | d14b12d | 2010-09-17 11:28:47 +0200 | [diff] [blame] | 9956 | } |
| 9957 | |
Vince Weaver | 53b2533 | 2014-05-16 17:12:12 -0400 | [diff] [blame] | 9958 | if (is_sampling_event(event)) { |
| 9959 | if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) { |
Vineet Gupta | a139655 | 2016-05-09 15:07:40 +0530 | [diff] [blame] | 9960 | err = -EOPNOTSUPP; |
Vince Weaver | 53b2533 | 2014-05-16 17:12:12 -0400 | [diff] [blame] | 9961 | goto err_alloc; |
| 9962 | } |
| 9963 | } |
| 9964 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 9965 | /* |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 9966 | * Special case software events and allow them to be part of |
| 9967 | * any hardware group. |
| 9968 | */ |
| 9969 | pmu = event->pmu; |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 9970 | |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 9971 | if (attr.use_clockid) { |
| 9972 | err = perf_event_set_clock(event, attr.clockid); |
| 9973 | if (err) |
| 9974 | goto err_alloc; |
| 9975 | } |
| 9976 | |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 9977 | if (pmu->task_ctx_nr == perf_sw_context) |
| 9978 | event->event_caps |= PERF_EV_CAP_SOFTWARE; |
| 9979 | |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 9980 | if (group_leader && |
| 9981 | (is_software_event(event) != is_software_event(group_leader))) { |
| 9982 | if (is_software_event(event)) { |
| 9983 | /* |
| 9984 | * If event and group_leader are not both a software |
| 9985 | * event, and event is, then group leader is not. |
| 9986 | * |
| 9987 | * Allow the addition of software events to !software |
| 9988 | * groups, this is safe because software events never |
| 9989 | * fail to schedule. |
| 9990 | */ |
| 9991 | pmu = group_leader->pmu; |
| 9992 | } else if (is_software_event(group_leader) && |
David Carrillo-Cisneros | 4ff6a8d | 2016-08-17 13:55:05 -0700 | [diff] [blame] | 9993 | (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) { |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 9994 | /* |
| 9995 | * In case the group is a pure software group, and we |
| 9996 | * try to add a hardware event, move the whole group to |
| 9997 | * the hardware context. |
| 9998 | */ |
| 9999 | move_group = 1; |
| 10000 | } |
| 10001 | } |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 10002 | |
| 10003 | /* |
| 10004 | * Get the target context (task or percpu): |
| 10005 | */ |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 10006 | ctx = find_get_context(pmu, task, event); |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 10007 | if (IS_ERR(ctx)) { |
| 10008 | err = PTR_ERR(ctx); |
Peter Zijlstra | c6be5a5 | 2010-10-14 16:59:46 +0200 | [diff] [blame] | 10009 | goto err_alloc; |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 10010 | } |
| 10011 | |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 10012 | if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) { |
| 10013 | err = -EBUSY; |
| 10014 | goto err_context; |
| 10015 | } |
| 10016 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10017 | /* |
| 10018 | * Look up the group leader (we will attach this event to it): |
| 10019 | */ |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 10020 | if (group_leader) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10021 | err = -EINVAL; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10022 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10023 | /* |
| 10024 | * Do not allow a recursive hierarchy (this new sibling |
| 10025 | * becoming part of another group-sibling): |
| 10026 | */ |
| 10027 | if (group_leader->group_leader != group_leader) |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10028 | goto err_context; |
Peter Zijlstra | 34f4392 | 2015-02-20 14:05:38 +0100 | [diff] [blame] | 10029 | |
| 10030 | /* All events in a group should have the same clock */ |
| 10031 | if (group_leader->clock != event->clock) |
| 10032 | goto err_context; |
| 10033 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10034 | /* |
| 10035 | * Do not allow to attach to a group in a different |
| 10036 | * task or CPU context: |
| 10037 | */ |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10038 | if (move_group) { |
Peter Zijlstra | c3c87e7 | 2015-01-23 11:19:48 +0100 | [diff] [blame] | 10039 | /* |
| 10040 | * Make sure we're both on the same task, or both |
| 10041 | * per-cpu events. |
| 10042 | */ |
| 10043 | if (group_leader->ctx->task != ctx->task) |
| 10044 | goto err_context; |
| 10045 | |
| 10046 | /* |
| 10047 | * Make sure we're both events for the same CPU; |
| 10048 | * grouping events for different CPUs is broken; since |
| 10049 | * you can never concurrently schedule them anyhow. |
| 10050 | */ |
| 10051 | if (group_leader->cpu != event->cpu) |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10052 | goto err_context; |
| 10053 | } else { |
| 10054 | if (group_leader->ctx != ctx) |
| 10055 | goto err_context; |
| 10056 | } |
| 10057 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10058 | /* |
| 10059 | * Only a group leader can be exclusive or pinned |
| 10060 | */ |
| 10061 | if (attr.exclusive || attr.pinned) |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10062 | goto err_context; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 10063 | } |
| 10064 | |
| 10065 | if (output_event) { |
| 10066 | err = perf_event_set_output(event, output_event); |
| 10067 | if (err) |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10068 | goto err_context; |
Peter Zijlstra | ac9721f | 2010-05-27 12:54:41 +0200 | [diff] [blame] | 10069 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10070 | |
Yann Droneaud | a21b0b3 | 2014-01-05 21:36:33 +0100 | [diff] [blame] | 10071 | event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, |
| 10072 | f_flags); |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 10073 | if (IS_ERR(event_file)) { |
| 10074 | err = PTR_ERR(event_file); |
Alexander Shishkin | 201c2f8 | 2016-03-21 10:02:42 +0200 | [diff] [blame] | 10075 | event_file = NULL; |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10076 | goto err_context; |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 10077 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10078 | |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10079 | if (move_group) { |
Peter Zijlstra | 321027c | 2017-01-11 21:09:50 +0100 | [diff] [blame] | 10080 | gctx = __perf_event_ctx_lock_double(group_leader, ctx); |
| 10081 | |
Peter Zijlstra | 84c4e62 | 2016-02-24 18:45:40 +0100 | [diff] [blame] | 10082 | if (gctx->task == TASK_TOMBSTONE) { |
| 10083 | err = -ESRCH; |
| 10084 | goto err_locked; |
| 10085 | } |
Peter Zijlstra | 321027c | 2017-01-11 21:09:50 +0100 | [diff] [blame] | 10086 | |
| 10087 | /* |
| 10088 | * Check if we raced against another sys_perf_event_open() call |
| 10089 | * moving the software group underneath us. |
| 10090 | */ |
| 10091 | if (!(group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) { |
| 10092 | /* |
| 10093 | * If someone moved the group out from under us, check |
| 10094 | * if this new event wound up on the same ctx, if so |
| 10095 | * its the regular !move_group case, otherwise fail. |
| 10096 | */ |
| 10097 | if (gctx != ctx) { |
| 10098 | err = -EINVAL; |
| 10099 | goto err_locked; |
| 10100 | } else { |
| 10101 | perf_event_ctx_unlock(group_leader, gctx); |
| 10102 | move_group = 0; |
| 10103 | } |
| 10104 | } |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10105 | } else { |
| 10106 | mutex_lock(&ctx->mutex); |
| 10107 | } |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10108 | |
Peter Zijlstra | 84c4e62 | 2016-02-24 18:45:40 +0100 | [diff] [blame] | 10109 | if (ctx->task == TASK_TOMBSTONE) { |
| 10110 | err = -ESRCH; |
| 10111 | goto err_locked; |
| 10112 | } |
| 10113 | |
Peter Zijlstra | a723968 | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10114 | if (!perf_event_validate_size(event)) { |
| 10115 | err = -E2BIG; |
| 10116 | goto err_locked; |
| 10117 | } |
| 10118 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 10119 | if (!task) { |
| 10120 | /* |
| 10121 | * Check if the @cpu we're creating an event for is online. |
| 10122 | * |
| 10123 | * We use the perf_cpu_context::ctx::mutex to serialize against |
| 10124 | * the hotplug notifiers. See perf_event_{init,exit}_cpu(). |
| 10125 | */ |
| 10126 | struct perf_cpu_context *cpuctx = |
| 10127 | container_of(ctx, struct perf_cpu_context, ctx); |
| 10128 | |
| 10129 | if (!cpuctx->online) { |
| 10130 | err = -ENODEV; |
| 10131 | goto err_locked; |
| 10132 | } |
| 10133 | } |
| 10134 | |
| 10135 | |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10136 | /* |
| 10137 | * Must be under the same ctx::mutex as perf_install_in_context(), |
| 10138 | * because we need to serialize with concurrent event creation. |
| 10139 | */ |
| 10140 | if (!exclusive_event_installable(event, ctx)) { |
| 10141 | /* exclusive and group stuff are assumed mutually exclusive */ |
| 10142 | WARN_ON_ONCE(move_group); |
| 10143 | |
| 10144 | err = -EBUSY; |
| 10145 | goto err_locked; |
| 10146 | } |
| 10147 | |
| 10148 | WARN_ON_ONCE(ctx->parent_ctx); |
| 10149 | |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 10150 | /* |
| 10151 | * This is the point on no return; we cannot fail hereafter. This is |
| 10152 | * where we start modifying current state. |
| 10153 | */ |
| 10154 | |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10155 | if (move_group) { |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10156 | /* |
| 10157 | * See perf_event_ctx_lock() for comments on the details |
| 10158 | * of swizzling perf_event::ctx. |
| 10159 | */ |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 10160 | perf_remove_from_context(group_leader, 0); |
Peter Zijlstra | 279b516 | 2017-02-16 10:28:37 +0100 | [diff] [blame] | 10161 | put_ctx(gctx); |
Jiri Olsa | 0231bb5 | 2013-02-01 11:23:45 +0100 | [diff] [blame] | 10162 | |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10163 | list_for_each_entry(sibling, &group_leader->sibling_list, |
| 10164 | group_entry) { |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 10165 | perf_remove_from_context(sibling, 0); |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10166 | put_ctx(gctx); |
| 10167 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10168 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10169 | /* |
| 10170 | * Wait for everybody to stop referencing the events through |
| 10171 | * the old lists, before installing it on new lists. |
| 10172 | */ |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10173 | synchronize_rcu(); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10174 | |
Peter Zijlstra (Intel) | 8f95b43 | 2015-01-27 11:53:12 +0100 | [diff] [blame] | 10175 | /* |
| 10176 | * Install the group siblings before the group leader. |
| 10177 | * |
| 10178 | * Because a group leader will try and install the entire group |
| 10179 | * (through the sibling list, which is still in-tact), we can |
| 10180 | * end up with siblings installed in the wrong context. |
| 10181 | * |
| 10182 | * By installing siblings first we NO-OP because they're not |
| 10183 | * reachable through the group lists. |
| 10184 | */ |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10185 | list_for_each_entry(sibling, &group_leader->sibling_list, |
| 10186 | group_entry) { |
Peter Zijlstra (Intel) | 8f95b43 | 2015-01-27 11:53:12 +0100 | [diff] [blame] | 10187 | perf_event__state_init(sibling); |
Jiri Olsa | 9fc81d8 | 2014-12-10 21:23:51 +0100 | [diff] [blame] | 10188 | perf_install_in_context(ctx, sibling, sibling->cpu); |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10189 | get_ctx(ctx); |
| 10190 | } |
Peter Zijlstra (Intel) | 8f95b43 | 2015-01-27 11:53:12 +0100 | [diff] [blame] | 10191 | |
| 10192 | /* |
| 10193 | * Removing from the context ends up with disabled |
| 10194 | * event. What we want here is event in the initial |
| 10195 | * startup state, ready to be add into new context. |
| 10196 | */ |
| 10197 | perf_event__state_init(group_leader); |
| 10198 | perf_install_in_context(ctx, group_leader, group_leader->cpu); |
| 10199 | get_ctx(ctx); |
Peter Zijlstra | b04243e | 2010-09-17 11:28:48 +0200 | [diff] [blame] | 10200 | } |
| 10201 | |
Peter Zijlstra | f73e22a | 2015-09-09 20:48:22 +0200 | [diff] [blame] | 10202 | /* |
| 10203 | * Precalculate sample_data sizes; do while holding ctx::mutex such |
| 10204 | * that we're serialized against further additions and before |
| 10205 | * perf_install_in_context() which is the point the event is active and |
| 10206 | * can use these values. |
| 10207 | */ |
| 10208 | perf_event__header_size(event); |
| 10209 | perf_event__id_header_size(event); |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 10210 | |
Peter Zijlstra | 78cd2c7 | 2016-01-25 14:08:45 +0100 | [diff] [blame] | 10211 | event->owner = current; |
| 10212 | |
Yan, Zheng | e2d37cd | 2012-06-15 14:31:32 +0800 | [diff] [blame] | 10213 | perf_install_in_context(ctx, event, event->cpu); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 10214 | perf_unpin_context(ctx); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10215 | |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10216 | if (move_group) |
Peter Zijlstra | 321027c | 2017-01-11 21:09:50 +0100 | [diff] [blame] | 10217 | perf_event_ctx_unlock(group_leader, gctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10218 | mutex_unlock(&ctx->mutex); |
| 10219 | |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 10220 | if (task) { |
| 10221 | mutex_unlock(&task->signal->cred_guard_mutex); |
| 10222 | put_task_struct(task); |
| 10223 | } |
| 10224 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10225 | mutex_lock(¤t->perf_event_mutex); |
| 10226 | list_add_tail(&event->owner_entry, ¤t->perf_event_list); |
| 10227 | mutex_unlock(¤t->perf_event_mutex); |
| 10228 | |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 10229 | /* |
| 10230 | * Drop the reference on the group_event after placing the |
| 10231 | * new event on the sibling_list. This ensures destruction |
| 10232 | * of the group leader will find the pointer to itself in |
| 10233 | * perf_group_detach(). |
| 10234 | */ |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 10235 | fdput(group); |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 10236 | fd_install(event_fd, event_file); |
| 10237 | return event_fd; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10238 | |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10239 | err_locked: |
| 10240 | if (move_group) |
Peter Zijlstra | 321027c | 2017-01-11 21:09:50 +0100 | [diff] [blame] | 10241 | perf_event_ctx_unlock(group_leader, gctx); |
Peter Zijlstra | f55fc2a | 2015-09-09 19:06:33 +0200 | [diff] [blame] | 10242 | mutex_unlock(&ctx->mutex); |
| 10243 | /* err_file: */ |
| 10244 | fput(event_file); |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10245 | err_context: |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 10246 | perf_unpin_context(ctx); |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 10247 | put_ctx(ctx); |
Peter Zijlstra | c6be5a5 | 2010-10-14 16:59:46 +0200 | [diff] [blame] | 10248 | err_alloc: |
Peter Zijlstra | 1300562 | 2016-02-24 18:45:41 +0100 | [diff] [blame] | 10249 | /* |
| 10250 | * If event_file is set, the fput() above will have called ->release() |
| 10251 | * and that will take care of freeing the event. |
| 10252 | */ |
| 10253 | if (!event_file) |
| 10254 | free_event(event); |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 10255 | err_cred: |
| 10256 | if (task) |
| 10257 | mutex_unlock(&task->signal->cred_guard_mutex); |
Peter Zijlstra | 1f4ee50 | 2014-05-06 09:59:34 +0200 | [diff] [blame] | 10258 | err_task: |
Peter Zijlstra | e7d0bc0 | 2010-10-14 16:54:51 +0200 | [diff] [blame] | 10259 | if (task) |
| 10260 | put_task_struct(task); |
Peter Zijlstra | 89a1e18 | 2010-09-07 17:34:50 +0200 | [diff] [blame] | 10261 | err_group_fd: |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 10262 | fdput(group); |
Al Viro | ea635c6 | 2010-05-26 17:40:29 -0400 | [diff] [blame] | 10263 | err_fd: |
| 10264 | put_unused_fd(event_fd); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10265 | return err; |
| 10266 | } |
| 10267 | |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10268 | /** |
| 10269 | * perf_event_create_kernel_counter |
| 10270 | * |
| 10271 | * @attr: attributes of the counter to create |
| 10272 | * @cpu: cpu in which the counter is bound |
Matt Helsley | 38a81da | 2010-09-13 13:01:20 -0700 | [diff] [blame] | 10273 | * @task: task to profile (NULL for percpu) |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10274 | */ |
| 10275 | struct perf_event * |
| 10276 | perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu, |
Matt Helsley | 38a81da | 2010-09-13 13:01:20 -0700 | [diff] [blame] | 10277 | struct task_struct *task, |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 10278 | perf_overflow_handler_t overflow_handler, |
| 10279 | void *context) |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10280 | { |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10281 | struct perf_event_context *ctx; |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10282 | struct perf_event *event; |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10283 | int err; |
| 10284 | |
| 10285 | /* |
| 10286 | * Get the target context (task or percpu): |
| 10287 | */ |
| 10288 | |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 10289 | event = perf_event_alloc(attr, cpu, task, NULL, NULL, |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 10290 | overflow_handler, context, -1); |
Frederic Weisbecker | c6567f6 | 2009-11-26 05:35:41 +0100 | [diff] [blame] | 10291 | if (IS_ERR(event)) { |
| 10292 | err = PTR_ERR(event); |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10293 | goto err; |
| 10294 | } |
| 10295 | |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 10296 | /* Mark owner so we could distinguish it from user events. */ |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10297 | event->owner = TASK_TOMBSTONE; |
Jiri Olsa | f869776 | 2014-08-01 14:33:01 +0200 | [diff] [blame] | 10298 | |
Yan, Zheng | 4af57ef | 2014-11-04 21:56:01 -0500 | [diff] [blame] | 10299 | ctx = find_get_context(event->pmu, task, event); |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10300 | if (IS_ERR(ctx)) { |
| 10301 | err = PTR_ERR(ctx); |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10302 | goto err_free; |
Frederic Weisbecker | c6567f6 | 2009-11-26 05:35:41 +0100 | [diff] [blame] | 10303 | } |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10304 | |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10305 | WARN_ON_ONCE(ctx->parent_ctx); |
| 10306 | mutex_lock(&ctx->mutex); |
Peter Zijlstra | 84c4e62 | 2016-02-24 18:45:40 +0100 | [diff] [blame] | 10307 | if (ctx->task == TASK_TOMBSTONE) { |
| 10308 | err = -ESRCH; |
| 10309 | goto err_unlock; |
| 10310 | } |
| 10311 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 10312 | if (!task) { |
| 10313 | /* |
| 10314 | * Check if the @cpu we're creating an event for is online. |
| 10315 | * |
| 10316 | * We use the perf_cpu_context::ctx::mutex to serialize against |
| 10317 | * the hotplug notifiers. See perf_event_{init,exit}_cpu(). |
| 10318 | */ |
| 10319 | struct perf_cpu_context *cpuctx = |
| 10320 | container_of(ctx, struct perf_cpu_context, ctx); |
| 10321 | if (!cpuctx->online) { |
| 10322 | err = -ENODEV; |
| 10323 | goto err_unlock; |
| 10324 | } |
| 10325 | } |
| 10326 | |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 10327 | if (!exclusive_event_installable(event, ctx)) { |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 10328 | err = -EBUSY; |
Peter Zijlstra | 84c4e62 | 2016-02-24 18:45:40 +0100 | [diff] [blame] | 10329 | goto err_unlock; |
Alexander Shishkin | bed5b25 | 2015-01-30 12:31:06 +0200 | [diff] [blame] | 10330 | } |
| 10331 | |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10332 | perf_install_in_context(ctx, event, cpu); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 10333 | perf_unpin_context(ctx); |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10334 | mutex_unlock(&ctx->mutex); |
| 10335 | |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10336 | return event; |
| 10337 | |
Peter Zijlstra | 84c4e62 | 2016-02-24 18:45:40 +0100 | [diff] [blame] | 10338 | err_unlock: |
| 10339 | mutex_unlock(&ctx->mutex); |
| 10340 | perf_unpin_context(ctx); |
| 10341 | put_ctx(ctx); |
Peter Zijlstra | c3f00c7 | 2010-08-18 14:37:15 +0200 | [diff] [blame] | 10342 | err_free: |
| 10343 | free_event(event); |
| 10344 | err: |
Frederic Weisbecker | c6567f6 | 2009-11-26 05:35:41 +0100 | [diff] [blame] | 10345 | return ERR_PTR(err); |
Arjan van de Ven | fb0459d | 2009-09-25 12:25:56 +0200 | [diff] [blame] | 10346 | } |
| 10347 | EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter); |
| 10348 | |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10349 | void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu) |
| 10350 | { |
| 10351 | struct perf_event_context *src_ctx; |
| 10352 | struct perf_event_context *dst_ctx; |
| 10353 | struct perf_event *event, *tmp; |
| 10354 | LIST_HEAD(events); |
| 10355 | |
| 10356 | src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx; |
| 10357 | dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx; |
| 10358 | |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10359 | /* |
| 10360 | * See perf_event_ctx_lock() for comments on the details |
| 10361 | * of swizzling perf_event::ctx. |
| 10362 | */ |
| 10363 | mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10364 | list_for_each_entry_safe(event, tmp, &src_ctx->event_list, |
| 10365 | event_entry) { |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 10366 | perf_remove_from_context(event, 0); |
Frederic Weisbecker | 9a545de | 2013-07-23 02:31:03 +0200 | [diff] [blame] | 10367 | unaccount_event_cpu(event, src_cpu); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10368 | put_ctx(src_ctx); |
Peter Zijlstra | 9886167 | 2013-10-03 16:02:23 +0200 | [diff] [blame] | 10369 | list_add(&event->migrate_entry, &events); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10370 | } |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10371 | |
Peter Zijlstra (Intel) | 8f95b43 | 2015-01-27 11:53:12 +0100 | [diff] [blame] | 10372 | /* |
| 10373 | * Wait for the events to quiesce before re-instating them. |
| 10374 | */ |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10375 | synchronize_rcu(); |
| 10376 | |
Peter Zijlstra (Intel) | 8f95b43 | 2015-01-27 11:53:12 +0100 | [diff] [blame] | 10377 | /* |
| 10378 | * Re-instate events in 2 passes. |
| 10379 | * |
| 10380 | * Skip over group leaders and only install siblings on this first |
| 10381 | * pass, siblings will not get enabled without a leader, however a |
| 10382 | * leader will enable its siblings, even if those are still on the old |
| 10383 | * context. |
| 10384 | */ |
| 10385 | list_for_each_entry_safe(event, tmp, &events, migrate_entry) { |
| 10386 | if (event->group_leader == event) |
| 10387 | continue; |
| 10388 | |
| 10389 | list_del(&event->migrate_entry); |
| 10390 | if (event->state >= PERF_EVENT_STATE_OFF) |
| 10391 | event->state = PERF_EVENT_STATE_INACTIVE; |
| 10392 | account_event_cpu(event, dst_cpu); |
| 10393 | perf_install_in_context(dst_ctx, event, dst_cpu); |
| 10394 | get_ctx(dst_ctx); |
| 10395 | } |
| 10396 | |
| 10397 | /* |
| 10398 | * Once all the siblings are setup properly, install the group leaders |
| 10399 | * to make it go. |
| 10400 | */ |
Peter Zijlstra | 9886167 | 2013-10-03 16:02:23 +0200 | [diff] [blame] | 10401 | list_for_each_entry_safe(event, tmp, &events, migrate_entry) { |
| 10402 | list_del(&event->migrate_entry); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10403 | if (event->state >= PERF_EVENT_STATE_OFF) |
| 10404 | event->state = PERF_EVENT_STATE_INACTIVE; |
Frederic Weisbecker | 9a545de | 2013-07-23 02:31:03 +0200 | [diff] [blame] | 10405 | account_event_cpu(event, dst_cpu); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10406 | perf_install_in_context(dst_ctx, event, dst_cpu); |
| 10407 | get_ctx(dst_ctx); |
| 10408 | } |
| 10409 | mutex_unlock(&dst_ctx->mutex); |
Peter Zijlstra | f63a8da | 2015-01-23 12:24:14 +0100 | [diff] [blame] | 10410 | mutex_unlock(&src_ctx->mutex); |
Yan, Zheng | 0cda4c0 | 2012-06-15 14:31:33 +0800 | [diff] [blame] | 10411 | } |
| 10412 | EXPORT_SYMBOL_GPL(perf_pmu_migrate_context); |
| 10413 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10414 | static void sync_child_event(struct perf_event *child_event, |
| 10415 | struct task_struct *child) |
| 10416 | { |
| 10417 | struct perf_event *parent_event = child_event->parent; |
| 10418 | u64 child_val; |
| 10419 | |
| 10420 | if (child_event->attr.inherit_stat) |
| 10421 | perf_event_read_event(child_event, child); |
| 10422 | |
Peter Zijlstra | b5e5879 | 2010-05-21 14:43:12 +0200 | [diff] [blame] | 10423 | child_val = perf_event_count(child_event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10424 | |
| 10425 | /* |
| 10426 | * Add back the child's count to the parent's count: |
| 10427 | */ |
Peter Zijlstra | a6e6dea | 2010-05-21 14:27:58 +0200 | [diff] [blame] | 10428 | atomic64_add(child_val, &parent_event->child_count); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10429 | atomic64_add(child_event->total_time_enabled, |
| 10430 | &parent_event->child_total_time_enabled); |
| 10431 | atomic64_add(child_event->total_time_running, |
| 10432 | &parent_event->child_total_time_running); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10433 | } |
| 10434 | |
| 10435 | static void |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10436 | perf_event_exit_event(struct perf_event *child_event, |
| 10437 | struct perf_event_context *child_ctx, |
| 10438 | struct task_struct *child) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10439 | { |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10440 | struct perf_event *parent_event = child_event->parent; |
| 10441 | |
Peter Zijlstra | 1903d50 | 2014-07-15 17:27:27 +0200 | [diff] [blame] | 10442 | /* |
| 10443 | * Do not destroy the 'original' grouping; because of the context |
| 10444 | * switch optimization the original events could've ended up in a |
| 10445 | * random child task. |
| 10446 | * |
| 10447 | * If we were to destroy the original group, all group related |
| 10448 | * operations would cease to function properly after this random |
| 10449 | * child dies. |
| 10450 | * |
| 10451 | * Do destroy all inherited groups, we don't care about those |
| 10452 | * and being thorough is better. |
| 10453 | */ |
Peter Zijlstra | 32132a3 | 2016-01-11 15:40:59 +0100 | [diff] [blame] | 10454 | raw_spin_lock_irq(&child_ctx->lock); |
| 10455 | WARN_ON_ONCE(child_ctx->is_active); |
| 10456 | |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10457 | if (parent_event) |
Peter Zijlstra | 32132a3 | 2016-01-11 15:40:59 +0100 | [diff] [blame] | 10458 | perf_group_detach(child_event); |
| 10459 | list_del_event(child_event, child_ctx); |
Peter Zijlstra | a69b0ca | 2016-02-24 18:45:44 +0100 | [diff] [blame] | 10460 | child_event->state = PERF_EVENT_STATE_EXIT; /* is_event_hup() */ |
Peter Zijlstra | 32132a3 | 2016-01-11 15:40:59 +0100 | [diff] [blame] | 10461 | raw_spin_unlock_irq(&child_ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10462 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10463 | /* |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10464 | * Parent events are governed by their filedesc, retain them. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10465 | */ |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10466 | if (!parent_event) { |
Jiri Olsa | 179033b | 2014-08-07 11:48:26 -0400 | [diff] [blame] | 10467 | perf_event_wakeup(child_event); |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10468 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10469 | } |
Peter Zijlstra | 8ba289b | 2016-01-26 13:06:56 +0100 | [diff] [blame] | 10470 | /* |
| 10471 | * Child events can be cleaned up. |
| 10472 | */ |
| 10473 | |
| 10474 | sync_child_event(child_event, child); |
| 10475 | |
| 10476 | /* |
| 10477 | * Remove this event from the parent's list |
| 10478 | */ |
| 10479 | WARN_ON_ONCE(parent_event->ctx->parent_ctx); |
| 10480 | mutex_lock(&parent_event->child_mutex); |
| 10481 | list_del_init(&child_event->child_list); |
| 10482 | mutex_unlock(&parent_event->child_mutex); |
| 10483 | |
| 10484 | /* |
| 10485 | * Kick perf_poll() for is_event_hup(). |
| 10486 | */ |
| 10487 | perf_event_wakeup(parent_event); |
| 10488 | free_event(child_event); |
| 10489 | put_event(parent_event); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10490 | } |
| 10491 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10492 | 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] | 10493 | { |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 10494 | struct perf_event_context *child_ctx, *clone_ctx = NULL; |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10495 | struct perf_event *child_event, *next; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10496 | |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10497 | WARN_ON_ONCE(child != current); |
| 10498 | |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10499 | child_ctx = perf_pin_task_context(child, ctxn); |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10500 | if (!child_ctx) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10501 | return; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10502 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10503 | /* |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10504 | * In order to reduce the amount of tricky in ctx tear-down, we hold |
| 10505 | * ctx::mutex over the entire thing. This serializes against almost |
| 10506 | * everything that wants to access the ctx. |
| 10507 | * |
| 10508 | * The exception is sys_perf_event_open() / |
| 10509 | * perf_event_create_kernel_count() which does find_get_context() |
| 10510 | * without ctx::mutex (it cannot because of the move_group double mutex |
| 10511 | * lock thing). See the comments in perf_install_in_context(). |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10512 | */ |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10513 | mutex_lock(&child_ctx->mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10514 | |
| 10515 | /* |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10516 | * In a single ctx::lock section, de-schedule the events and detach the |
| 10517 | * context from the task such that we cannot ever get it scheduled back |
| 10518 | * in. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10519 | */ |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10520 | raw_spin_lock_irq(&child_ctx->lock); |
Alexander Shishkin | 487f05e | 2017-01-19 18:43:30 +0200 | [diff] [blame] | 10521 | 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] | 10522 | |
| 10523 | /* |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10524 | * Now that the context is inactive, destroy the task <-> ctx relation |
| 10525 | * and mark the context dead. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10526 | */ |
Peter Zijlstra | 63b6da3 | 2016-01-14 16:05:37 +0100 | [diff] [blame] | 10527 | RCU_INIT_POINTER(child->perf_event_ctxp[ctxn], NULL); |
| 10528 | put_ctx(child_ctx); /* cannot be last */ |
| 10529 | WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE); |
| 10530 | put_task_struct(current); /* cannot be last */ |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10531 | |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 10532 | clone_ctx = unclone_ctx(child_ctx); |
Peter Zijlstra | 6a3351b | 2016-01-25 14:09:54 +0100 | [diff] [blame] | 10533 | raw_spin_unlock_irq(&child_ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10534 | |
Peter Zijlstra | 211de6e | 2014-09-30 19:23:08 +0200 | [diff] [blame] | 10535 | if (clone_ctx) |
| 10536 | put_ctx(clone_ctx); |
Peter Zijlstra | 4a1c0f2 | 2014-06-23 16:12:42 +0200 | [diff] [blame] | 10537 | |
| 10538 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10539 | * Report the task dead after unscheduling the events so that we |
| 10540 | * won't get any samples after PERF_RECORD_EXIT. We can however still |
| 10541 | * get a few PERF_RECORD_READ events. |
| 10542 | */ |
| 10543 | perf_event_task(child, child_ctx, 0); |
| 10544 | |
Peter Zijlstra | ebf905f | 2014-05-29 19:00:24 +0200 | [diff] [blame] | 10545 | 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] | 10546 | perf_event_exit_event(child_event, child_ctx, child); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10547 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10548 | mutex_unlock(&child_ctx->mutex); |
| 10549 | |
| 10550 | put_ctx(child_ctx); |
| 10551 | } |
| 10552 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10553 | /* |
| 10554 | * When a child task exits, feed back event values to parent events. |
Peter Zijlstra | 79c9ce5 | 2016-04-26 11:36:53 +0200 | [diff] [blame] | 10555 | * |
| 10556 | * Can be called with cred_guard_mutex held when called from |
| 10557 | * install_exec_creds(). |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10558 | */ |
| 10559 | void perf_event_exit_task(struct task_struct *child) |
| 10560 | { |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 10561 | struct perf_event *event, *tmp; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10562 | int ctxn; |
| 10563 | |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 10564 | mutex_lock(&child->perf_event_mutex); |
| 10565 | list_for_each_entry_safe(event, tmp, &child->perf_event_list, |
| 10566 | owner_entry) { |
| 10567 | list_del_init(&event->owner_entry); |
| 10568 | |
| 10569 | /* |
| 10570 | * Ensure the list deletion is visible before we clear |
| 10571 | * the owner, closes a race against perf_release() where |
| 10572 | * we need to serialize on the owner->perf_event_mutex. |
| 10573 | */ |
Peter Zijlstra | f47c02c | 2016-01-26 12:30:14 +0100 | [diff] [blame] | 10574 | smp_store_release(&event->owner, NULL); |
Peter Zijlstra | 8882135 | 2010-11-09 19:01:43 +0100 | [diff] [blame] | 10575 | } |
| 10576 | mutex_unlock(&child->perf_event_mutex); |
| 10577 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10578 | for_each_task_context_nr(ctxn) |
| 10579 | perf_event_exit_task_context(child, ctxn); |
Jiri Olsa | 4e93ad6 | 2015-11-04 16:00:05 +0100 | [diff] [blame] | 10580 | |
| 10581 | /* |
| 10582 | * The perf_event_exit_task_context calls perf_event_task |
| 10583 | * with child's task_ctx, which generates EXIT events for |
| 10584 | * child contexts and sets child->perf_event_ctxp[] to NULL. |
| 10585 | * At this point we need to send EXIT events to cpu contexts. |
| 10586 | */ |
| 10587 | perf_event_task(child, NULL, 0); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10588 | } |
| 10589 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10590 | static void perf_free_event(struct perf_event *event, |
| 10591 | struct perf_event_context *ctx) |
| 10592 | { |
| 10593 | struct perf_event *parent = event->parent; |
| 10594 | |
| 10595 | if (WARN_ON_ONCE(!parent)) |
| 10596 | return; |
| 10597 | |
| 10598 | mutex_lock(&parent->child_mutex); |
| 10599 | list_del_init(&event->child_list); |
| 10600 | mutex_unlock(&parent->child_mutex); |
| 10601 | |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 10602 | put_event(parent); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10603 | |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 10604 | raw_spin_lock_irq(&ctx->lock); |
Peter Zijlstra | 8a49542 | 2010-05-27 15:47:49 +0200 | [diff] [blame] | 10605 | perf_group_detach(event); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10606 | list_del_event(event, ctx); |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 10607 | raw_spin_unlock_irq(&ctx->lock); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10608 | free_event(event); |
| 10609 | } |
| 10610 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10611 | /* |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 10612 | * Free an unexposed, unused context as created by inheritance by |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10613 | * perf_event_init_task below, used by fork() in case of fail. |
Peter Zijlstra | 652884f | 2015-01-23 11:20:10 +0100 | [diff] [blame] | 10614 | * |
| 10615 | * Not all locks are strictly required, but take them anyway to be nice and |
| 10616 | * help out with the lockdep assertions. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10617 | */ |
| 10618 | void perf_event_free_task(struct task_struct *task) |
| 10619 | { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10620 | struct perf_event_context *ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10621 | struct perf_event *event, *tmp; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10622 | int ctxn; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10623 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10624 | for_each_task_context_nr(ctxn) { |
| 10625 | ctx = task->perf_event_ctxp[ctxn]; |
| 10626 | if (!ctx) |
| 10627 | continue; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10628 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10629 | mutex_lock(&ctx->mutex); |
Peter Zijlstra | e552a83 | 2017-03-16 13:47:48 +0100 | [diff] [blame] | 10630 | raw_spin_lock_irq(&ctx->lock); |
| 10631 | /* |
| 10632 | * Destroy the task <-> ctx relation and mark the context dead. |
| 10633 | * |
| 10634 | * This is important because even though the task hasn't been |
| 10635 | * exposed yet the context has been (through child_list). |
| 10636 | */ |
| 10637 | RCU_INIT_POINTER(task->perf_event_ctxp[ctxn], NULL); |
| 10638 | WRITE_ONCE(ctx->task, TASK_TOMBSTONE); |
| 10639 | put_task_struct(task); /* cannot be last */ |
| 10640 | raw_spin_unlock_irq(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10641 | |
Peter Zijlstra | 15121c7 | 2017-03-16 13:47:50 +0100 | [diff] [blame] | 10642 | list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry) |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10643 | perf_free_event(event, ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10644 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10645 | mutex_unlock(&ctx->mutex); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10646 | put_ctx(ctx); |
| 10647 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10648 | } |
| 10649 | |
Peter Zijlstra | 4e231c7 | 2010-09-09 21:01:59 +0200 | [diff] [blame] | 10650 | void perf_event_delayed_put(struct task_struct *task) |
| 10651 | { |
| 10652 | int ctxn; |
| 10653 | |
| 10654 | for_each_task_context_nr(ctxn) |
| 10655 | WARN_ON_ONCE(task->perf_event_ctxp[ctxn]); |
| 10656 | } |
| 10657 | |
Alexei Starovoitov | e03e7ee | 2016-01-25 20:59:49 -0800 | [diff] [blame] | 10658 | struct file *perf_event_get(unsigned int fd) |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 10659 | { |
Alexei Starovoitov | e03e7ee | 2016-01-25 20:59:49 -0800 | [diff] [blame] | 10660 | struct file *file; |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 10661 | |
Alexei Starovoitov | e03e7ee | 2016-01-25 20:59:49 -0800 | [diff] [blame] | 10662 | file = fget_raw(fd); |
| 10663 | if (!file) |
| 10664 | return ERR_PTR(-EBADF); |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 10665 | |
Alexei Starovoitov | e03e7ee | 2016-01-25 20:59:49 -0800 | [diff] [blame] | 10666 | if (file->f_op != &perf_fops) { |
| 10667 | fput(file); |
| 10668 | return ERR_PTR(-EBADF); |
| 10669 | } |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 10670 | |
Alexei Starovoitov | e03e7ee | 2016-01-25 20:59:49 -0800 | [diff] [blame] | 10671 | return file; |
Kaixu Xia | ffe8690 | 2015-08-06 07:02:32 +0000 | [diff] [blame] | 10672 | } |
| 10673 | |
| 10674 | const struct perf_event_attr *perf_event_attrs(struct perf_event *event) |
| 10675 | { |
| 10676 | if (!event) |
| 10677 | return ERR_PTR(-EINVAL); |
| 10678 | |
| 10679 | return &event->attr; |
| 10680 | } |
| 10681 | |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10682 | /* |
Peter Zijlstra | d8a8cfc | 2017-03-16 13:47:51 +0100 | [diff] [blame] | 10683 | * Inherit a event from parent task to child task. |
| 10684 | * |
| 10685 | * Returns: |
| 10686 | * - valid pointer on success |
| 10687 | * - NULL for orphaned events |
| 10688 | * - IS_ERR() on error |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10689 | */ |
| 10690 | static struct perf_event * |
| 10691 | inherit_event(struct perf_event *parent_event, |
| 10692 | struct task_struct *parent, |
| 10693 | struct perf_event_context *parent_ctx, |
| 10694 | struct task_struct *child, |
| 10695 | struct perf_event *group_leader, |
| 10696 | struct perf_event_context *child_ctx) |
| 10697 | { |
Jiri Olsa | 1929def | 2014-09-12 13:18:27 +0200 | [diff] [blame] | 10698 | enum perf_event_active_state parent_state = parent_event->state; |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10699 | struct perf_event *child_event; |
Peter Zijlstra | cee010e | 2010-09-10 12:51:54 +0200 | [diff] [blame] | 10700 | unsigned long flags; |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10701 | |
| 10702 | /* |
| 10703 | * Instead of creating recursive hierarchies of events, |
| 10704 | * we link inherited events back to the original parent, |
| 10705 | * which has a filp for sure, which we use as the reference |
| 10706 | * count: |
| 10707 | */ |
| 10708 | if (parent_event->parent) |
| 10709 | parent_event = parent_event->parent; |
| 10710 | |
| 10711 | child_event = perf_event_alloc(&parent_event->attr, |
| 10712 | parent_event->cpu, |
Peter Zijlstra | d580ff8 | 2010-10-14 17:43:23 +0200 | [diff] [blame] | 10713 | child, |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10714 | group_leader, parent_event, |
Matt Fleming | 79dff51 | 2015-01-23 18:45:42 +0000 | [diff] [blame] | 10715 | NULL, NULL, -1); |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10716 | if (IS_ERR(child_event)) |
| 10717 | return child_event; |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 10718 | |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 10719 | /* |
| 10720 | * is_orphaned_event() and list_add_tail(&parent_event->child_list) |
| 10721 | * must be under the same lock in order to serialize against |
| 10722 | * perf_event_release_kernel(), such that either we must observe |
| 10723 | * is_orphaned_event() or they will observe us on the child_list. |
| 10724 | */ |
| 10725 | mutex_lock(&parent_event->child_mutex); |
Jiri Olsa | fadfe7b | 2014-08-01 14:33:02 +0200 | [diff] [blame] | 10726 | if (is_orphaned_event(parent_event) || |
| 10727 | !atomic_long_inc_not_zero(&parent_event->refcount)) { |
Peter Zijlstra | c6e5b73 | 2016-01-15 16:07:41 +0200 | [diff] [blame] | 10728 | mutex_unlock(&parent_event->child_mutex); |
Al Viro | a6fa941 | 2012-08-20 14:59:25 +0100 | [diff] [blame] | 10729 | free_event(child_event); |
| 10730 | return NULL; |
| 10731 | } |
| 10732 | |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10733 | get_ctx(child_ctx); |
| 10734 | |
| 10735 | /* |
| 10736 | * Make the child state follow the state of the parent event, |
| 10737 | * not its attr.disabled bit. We hold the parent's mutex, |
| 10738 | * so we won't race with perf_event_{en, dis}able_family. |
| 10739 | */ |
Jiri Olsa | 1929def | 2014-09-12 13:18:27 +0200 | [diff] [blame] | 10740 | if (parent_state >= PERF_EVENT_STATE_INACTIVE) |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10741 | child_event->state = PERF_EVENT_STATE_INACTIVE; |
| 10742 | else |
| 10743 | child_event->state = PERF_EVENT_STATE_OFF; |
| 10744 | |
| 10745 | if (parent_event->attr.freq) { |
| 10746 | u64 sample_period = parent_event->hw.sample_period; |
| 10747 | struct hw_perf_event *hwc = &child_event->hw; |
| 10748 | |
| 10749 | hwc->sample_period = sample_period; |
| 10750 | hwc->last_period = sample_period; |
| 10751 | |
| 10752 | local64_set(&hwc->period_left, sample_period); |
| 10753 | } |
| 10754 | |
| 10755 | child_event->ctx = child_ctx; |
| 10756 | child_event->overflow_handler = parent_event->overflow_handler; |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 10757 | child_event->overflow_handler_context |
| 10758 | = parent_event->overflow_handler_context; |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10759 | |
| 10760 | /* |
Thomas Gleixner | 614b678 | 2010-12-03 16:24:32 -0200 | [diff] [blame] | 10761 | * Precalculate sample_data sizes |
| 10762 | */ |
| 10763 | perf_event__header_size(child_event); |
Arnaldo Carvalho de Melo | 6844c09 | 2010-12-03 16:36:35 -0200 | [diff] [blame] | 10764 | perf_event__id_header_size(child_event); |
Thomas Gleixner | 614b678 | 2010-12-03 16:24:32 -0200 | [diff] [blame] | 10765 | |
| 10766 | /* |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10767 | * Link it up in the child's context: |
| 10768 | */ |
Peter Zijlstra | cee010e | 2010-09-10 12:51:54 +0200 | [diff] [blame] | 10769 | raw_spin_lock_irqsave(&child_ctx->lock, flags); |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10770 | add_event_to_ctx(child_event, child_ctx); |
Peter Zijlstra | cee010e | 2010-09-10 12:51:54 +0200 | [diff] [blame] | 10771 | raw_spin_unlock_irqrestore(&child_ctx->lock, flags); |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10772 | |
| 10773 | /* |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10774 | * Link this into the parent event's child list |
| 10775 | */ |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10776 | list_add_tail(&child_event->child_list, &parent_event->child_list); |
| 10777 | mutex_unlock(&parent_event->child_mutex); |
| 10778 | |
| 10779 | return child_event; |
| 10780 | } |
| 10781 | |
Peter Zijlstra | d8a8cfc | 2017-03-16 13:47:51 +0100 | [diff] [blame] | 10782 | /* |
| 10783 | * Inherits an event group. |
| 10784 | * |
| 10785 | * This will quietly suppress orphaned events; !inherit_event() is not an error. |
| 10786 | * This matches with perf_event_release_kernel() removing all child events. |
| 10787 | * |
| 10788 | * Returns: |
| 10789 | * - 0 on success |
| 10790 | * - <0 on error |
| 10791 | */ |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10792 | static int inherit_group(struct perf_event *parent_event, |
| 10793 | struct task_struct *parent, |
| 10794 | struct perf_event_context *parent_ctx, |
| 10795 | struct task_struct *child, |
| 10796 | struct perf_event_context *child_ctx) |
| 10797 | { |
| 10798 | struct perf_event *leader; |
| 10799 | struct perf_event *sub; |
| 10800 | struct perf_event *child_ctr; |
| 10801 | |
| 10802 | leader = inherit_event(parent_event, parent, parent_ctx, |
| 10803 | child, NULL, child_ctx); |
| 10804 | if (IS_ERR(leader)) |
| 10805 | return PTR_ERR(leader); |
Peter Zijlstra | d8a8cfc | 2017-03-16 13:47:51 +0100 | [diff] [blame] | 10806 | /* |
| 10807 | * @leader can be NULL here because of is_orphaned_event(). In this |
| 10808 | * case inherit_event() will create individual events, similar to what |
| 10809 | * perf_group_detach() would do anyway. |
| 10810 | */ |
Peter Zijlstra | 97dee4f | 2010-09-07 15:35:33 +0200 | [diff] [blame] | 10811 | list_for_each_entry(sub, &parent_event->sibling_list, group_entry) { |
| 10812 | child_ctr = inherit_event(sub, parent, parent_ctx, |
| 10813 | child, leader, child_ctx); |
| 10814 | if (IS_ERR(child_ctr)) |
| 10815 | return PTR_ERR(child_ctr); |
| 10816 | } |
| 10817 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10818 | } |
| 10819 | |
Peter Zijlstra | d8a8cfc | 2017-03-16 13:47:51 +0100 | [diff] [blame] | 10820 | /* |
| 10821 | * Creates the child task context and tries to inherit the event-group. |
| 10822 | * |
| 10823 | * Clears @inherited_all on !attr.inherited or error. Note that we'll leave |
| 10824 | * inherited_all set when we 'fail' to inherit an orphaned event; this is |
| 10825 | * consistent with perf_event_release_kernel() removing all child events. |
| 10826 | * |
| 10827 | * Returns: |
| 10828 | * - 0 on success |
| 10829 | * - <0 on error |
| 10830 | */ |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10831 | static int |
| 10832 | inherit_task_group(struct perf_event *event, struct task_struct *parent, |
| 10833 | struct perf_event_context *parent_ctx, |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10834 | struct task_struct *child, int ctxn, |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10835 | int *inherited_all) |
| 10836 | { |
| 10837 | int ret; |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10838 | struct perf_event_context *child_ctx; |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10839 | |
| 10840 | if (!event->attr.inherit) { |
| 10841 | *inherited_all = 0; |
| 10842 | return 0; |
| 10843 | } |
| 10844 | |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 10845 | child_ctx = child->perf_event_ctxp[ctxn]; |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10846 | if (!child_ctx) { |
| 10847 | /* |
| 10848 | * This is executed from the parent task context, so |
| 10849 | * inherit events that have been marked for cloning. |
| 10850 | * First allocate and initialize a context for the |
| 10851 | * child. |
| 10852 | */ |
Jiri Olsa | 734df5a | 2013-07-09 17:44:10 +0200 | [diff] [blame] | 10853 | child_ctx = alloc_perf_context(parent_ctx->pmu, child); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10854 | if (!child_ctx) |
| 10855 | return -ENOMEM; |
| 10856 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10857 | child->perf_event_ctxp[ctxn] = child_ctx; |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10858 | } |
| 10859 | |
| 10860 | ret = inherit_group(event, parent, parent_ctx, |
| 10861 | child, child_ctx); |
| 10862 | |
| 10863 | if (ret) |
| 10864 | *inherited_all = 0; |
| 10865 | |
| 10866 | return ret; |
| 10867 | } |
| 10868 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10869 | /* |
| 10870 | * Initialize the perf_event context in task_struct |
| 10871 | */ |
Jiri Olsa | 985c8dc | 2014-06-24 10:20:24 +0200 | [diff] [blame] | 10872 | static int perf_event_init_context(struct task_struct *child, int ctxn) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10873 | { |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10874 | struct perf_event_context *child_ctx, *parent_ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10875 | struct perf_event_context *cloned_ctx; |
| 10876 | struct perf_event *event; |
| 10877 | struct task_struct *parent = current; |
| 10878 | int inherited_all = 1; |
Thomas Gleixner | dddd337 | 2010-11-24 10:05:55 +0100 | [diff] [blame] | 10879 | unsigned long flags; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10880 | int ret = 0; |
| 10881 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10882 | if (likely(!parent->perf_event_ctxp[ctxn])) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10883 | return 0; |
| 10884 | |
| 10885 | /* |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10886 | * If the parent's context is a clone, pin it so it won't get |
| 10887 | * swapped under us. |
| 10888 | */ |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10889 | parent_ctx = perf_pin_task_context(parent, ctxn); |
Peter Zijlstra | ffb4ef2 | 2014-05-05 19:12:20 +0200 | [diff] [blame] | 10890 | if (!parent_ctx) |
| 10891 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10892 | |
| 10893 | /* |
| 10894 | * No need to check if parent_ctx != NULL here; since we saw |
| 10895 | * it non-NULL earlier, the only reason for it to become NULL |
| 10896 | * is if we exit, and since we're currently in the middle of |
| 10897 | * a fork we can't be exiting at the same time. |
| 10898 | */ |
| 10899 | |
| 10900 | /* |
| 10901 | * Lock the parent list. No need to lock the child - not PID |
| 10902 | * hashed yet and not running, so nobody can access it. |
| 10903 | */ |
| 10904 | mutex_lock(&parent_ctx->mutex); |
| 10905 | |
| 10906 | /* |
| 10907 | * We dont have to disable NMIs - we are only looking at |
| 10908 | * the list, not manipulating it: |
| 10909 | */ |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10910 | list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10911 | ret = inherit_task_group(event, parent, parent_ctx, |
| 10912 | child, ctxn, &inherited_all); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10913 | if (ret) |
Peter Zijlstra | e7cc486 | 2017-03-16 13:47:49 +0100 | [diff] [blame] | 10914 | goto out_unlock; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10915 | } |
| 10916 | |
Thomas Gleixner | dddd337 | 2010-11-24 10:05:55 +0100 | [diff] [blame] | 10917 | /* |
| 10918 | * We can't hold ctx->lock when iterating the ->flexible_group list due |
| 10919 | * to allocations, but we need to prevent rotation because |
| 10920 | * rotate_ctx() will change the list from interrupt context. |
| 10921 | */ |
| 10922 | raw_spin_lock_irqsave(&parent_ctx->lock, flags); |
| 10923 | parent_ctx->rotate_disable = 1; |
| 10924 | raw_spin_unlock_irqrestore(&parent_ctx->lock, flags); |
| 10925 | |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10926 | list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) { |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10927 | ret = inherit_task_group(event, parent, parent_ctx, |
| 10928 | child, ctxn, &inherited_all); |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10929 | if (ret) |
Peter Zijlstra | e7cc486 | 2017-03-16 13:47:49 +0100 | [diff] [blame] | 10930 | goto out_unlock; |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10931 | } |
| 10932 | |
Thomas Gleixner | dddd337 | 2010-11-24 10:05:55 +0100 | [diff] [blame] | 10933 | raw_spin_lock_irqsave(&parent_ctx->lock, flags); |
| 10934 | parent_ctx->rotate_disable = 0; |
Thomas Gleixner | dddd337 | 2010-11-24 10:05:55 +0100 | [diff] [blame] | 10935 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10936 | child_ctx = child->perf_event_ctxp[ctxn]; |
Frederic Weisbecker | 889ff01 | 2010-01-09 20:04:47 +0100 | [diff] [blame] | 10937 | |
Peter Zijlstra | 05cbaa2 | 2009-12-30 16:00:35 +0100 | [diff] [blame] | 10938 | if (child_ctx && inherited_all) { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10939 | /* |
| 10940 | * Mark the child context as a clone of the parent |
| 10941 | * context, or of whatever the parent is a clone of. |
Peter Zijlstra | c5ed514 | 2011-01-17 13:45:37 +0100 | [diff] [blame] | 10942 | * |
| 10943 | * Note that if the parent is a clone, the holding of |
| 10944 | * parent_ctx->lock avoids it from being uncloned. |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10945 | */ |
Peter Zijlstra | c5ed514 | 2011-01-17 13:45:37 +0100 | [diff] [blame] | 10946 | cloned_ctx = parent_ctx->parent_ctx; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10947 | if (cloned_ctx) { |
| 10948 | child_ctx->parent_ctx = cloned_ctx; |
| 10949 | child_ctx->parent_gen = parent_ctx->parent_gen; |
| 10950 | } else { |
| 10951 | child_ctx->parent_ctx = parent_ctx; |
| 10952 | child_ctx->parent_gen = parent_ctx->generation; |
| 10953 | } |
| 10954 | get_ctx(child_ctx->parent_ctx); |
| 10955 | } |
| 10956 | |
Peter Zijlstra | c5ed514 | 2011-01-17 13:45:37 +0100 | [diff] [blame] | 10957 | raw_spin_unlock_irqrestore(&parent_ctx->lock, flags); |
Peter Zijlstra | e7cc486 | 2017-03-16 13:47:49 +0100 | [diff] [blame] | 10958 | out_unlock: |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10959 | mutex_unlock(&parent_ctx->mutex); |
| 10960 | |
| 10961 | perf_unpin_context(parent_ctx); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 10962 | put_ctx(parent_ctx); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 10963 | |
| 10964 | return ret; |
| 10965 | } |
| 10966 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10967 | /* |
| 10968 | * Initialize the perf_event context in task_struct |
| 10969 | */ |
| 10970 | int perf_event_init_task(struct task_struct *child) |
| 10971 | { |
| 10972 | int ctxn, ret; |
| 10973 | |
Oleg Nesterov | 8550d7c | 2011-01-19 19:22:28 +0100 | [diff] [blame] | 10974 | memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp)); |
| 10975 | mutex_init(&child->perf_event_mutex); |
| 10976 | INIT_LIST_HEAD(&child->perf_event_list); |
| 10977 | |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10978 | for_each_task_context_nr(ctxn) { |
| 10979 | ret = perf_event_init_context(child, ctxn); |
Peter Zijlstra | 6c72e350 | 2014-10-02 16:17:02 -0700 | [diff] [blame] | 10980 | if (ret) { |
| 10981 | perf_event_free_task(child); |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10982 | return ret; |
Peter Zijlstra | 6c72e350 | 2014-10-02 16:17:02 -0700 | [diff] [blame] | 10983 | } |
Peter Zijlstra | 8dc85d547 | 2010-09-02 16:50:03 +0200 | [diff] [blame] | 10984 | } |
| 10985 | |
| 10986 | return 0; |
| 10987 | } |
| 10988 | |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 10989 | static void __init perf_event_init_all_cpus(void) |
| 10990 | { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 10991 | struct swevent_htable *swhash; |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 10992 | int cpu; |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 10993 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 10994 | zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL); |
| 10995 | |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 10996 | for_each_possible_cpu(cpu) { |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 10997 | swhash = &per_cpu(swevent_htable, cpu); |
| 10998 | mutex_init(&swhash->hlist_mutex); |
Mark Rutland | 2fde4f9 | 2015-01-07 15:01:54 +0000 | [diff] [blame] | 10999 | INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu)); |
Kan Liang | f2fb6be | 2016-03-23 11:24:37 -0700 | [diff] [blame] | 11000 | |
| 11001 | INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu)); |
| 11002 | raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu)); |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 11003 | |
David Carrillo-Cisneros | 058fe1c | 2017-01-18 11:24:53 -0800 | [diff] [blame] | 11004 | #ifdef CONFIG_CGROUP_PERF |
| 11005 | INIT_LIST_HEAD(&per_cpu(cgrp_cpuctx_list, cpu)); |
| 11006 | #endif |
Peter Zijlstra | e48c178 | 2016-07-06 09:18:30 +0200 | [diff] [blame] | 11007 | INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu)); |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 11008 | } |
| 11009 | } |
| 11010 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11011 | void perf_swevent_init_cpu(unsigned int cpu) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11012 | { |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11013 | struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11014 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 11015 | mutex_lock(&swhash->hlist_mutex); |
Thomas Gleixner | 059fcd8 | 2016-02-09 20:11:34 +0000 | [diff] [blame] | 11016 | if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) { |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 11017 | struct swevent_hlist *hlist; |
| 11018 | |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 11019 | hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu)); |
| 11020 | WARN_ON(!hlist); |
| 11021 | rcu_assign_pointer(swhash->swevent_hlist, hlist); |
Frederic Weisbecker | 76e1d90 | 2010-04-05 15:35:57 +0200 | [diff] [blame] | 11022 | } |
Peter Zijlstra | b28ab83 | 2010-09-06 14:48:15 +0200 | [diff] [blame] | 11023 | mutex_unlock(&swhash->hlist_mutex); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11024 | } |
| 11025 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 11026 | #if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11027 | static void __perf_event_exit_context(void *__info) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11028 | { |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11029 | struct perf_event_context *ctx = __info; |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 11030 | struct perf_cpu_context *cpuctx = __get_cpu_context(ctx); |
| 11031 | struct perf_event *event; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11032 | |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 11033 | raw_spin_lock(&ctx->lock); |
| 11034 | list_for_each_entry(event, &ctx->event_list, event_entry) |
Peter Zijlstra | 45a0e07 | 2016-01-26 13:09:48 +0100 | [diff] [blame] | 11035 | __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP); |
Peter Zijlstra | fae3fde | 2016-01-11 15:00:50 +0100 | [diff] [blame] | 11036 | raw_spin_unlock(&ctx->lock); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11037 | } |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11038 | |
| 11039 | static void perf_event_exit_cpu_context(int cpu) |
| 11040 | { |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11041 | struct perf_cpu_context *cpuctx; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11042 | struct perf_event_context *ctx; |
| 11043 | struct pmu *pmu; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11044 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11045 | mutex_lock(&pmus_lock); |
| 11046 | list_for_each_entry(pmu, &pmus, entry) { |
| 11047 | cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); |
| 11048 | ctx = &cpuctx->ctx; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11049 | |
| 11050 | mutex_lock(&ctx->mutex); |
| 11051 | smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1); |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11052 | cpuctx->online = 0; |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11053 | mutex_unlock(&ctx->mutex); |
| 11054 | } |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11055 | cpumask_clear_cpu(cpu, perf_online_mask); |
| 11056 | mutex_unlock(&pmus_lock); |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11057 | } |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 11058 | #else |
Peter Zijlstra | 108b02c | 2010-09-06 14:32:03 +0200 | [diff] [blame] | 11059 | |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 11060 | static void perf_event_exit_cpu_context(int cpu) { } |
| 11061 | |
| 11062 | #endif |
| 11063 | |
Thomas Gleixner | a63fbed | 2017-05-24 10:15:34 +0200 | [diff] [blame] | 11064 | int perf_event_init_cpu(unsigned int cpu) |
| 11065 | { |
| 11066 | struct perf_cpu_context *cpuctx; |
| 11067 | struct perf_event_context *ctx; |
| 11068 | struct pmu *pmu; |
| 11069 | |
| 11070 | perf_swevent_init_cpu(cpu); |
| 11071 | |
| 11072 | mutex_lock(&pmus_lock); |
| 11073 | cpumask_set_cpu(cpu, perf_online_mask); |
| 11074 | list_for_each_entry(pmu, &pmus, entry) { |
| 11075 | cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); |
| 11076 | ctx = &cpuctx->ctx; |
| 11077 | |
| 11078 | mutex_lock(&ctx->mutex); |
| 11079 | cpuctx->online = 1; |
| 11080 | mutex_unlock(&ctx->mutex); |
| 11081 | } |
| 11082 | mutex_unlock(&pmus_lock); |
| 11083 | |
| 11084 | return 0; |
| 11085 | } |
| 11086 | |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 11087 | int perf_event_exit_cpu(unsigned int cpu) |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11088 | { |
Peter Zijlstra | e3703f8 | 2014-02-24 12:06:12 +0100 | [diff] [blame] | 11089 | perf_event_exit_cpu_context(cpu); |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 11090 | return 0; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11091 | } |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11092 | |
Peter Zijlstra | c277443 | 2010-12-08 15:29:02 +0100 | [diff] [blame] | 11093 | static int |
| 11094 | perf_reboot(struct notifier_block *notifier, unsigned long val, void *v) |
| 11095 | { |
| 11096 | int cpu; |
| 11097 | |
| 11098 | for_each_online_cpu(cpu) |
| 11099 | perf_event_exit_cpu(cpu); |
| 11100 | |
| 11101 | return NOTIFY_OK; |
| 11102 | } |
| 11103 | |
| 11104 | /* |
| 11105 | * Run the perf reboot notifier at the very last possible moment so that |
| 11106 | * the generic watchdog code runs as long as possible. |
| 11107 | */ |
| 11108 | static struct notifier_block perf_reboot_notifier = { |
| 11109 | .notifier_call = perf_reboot, |
| 11110 | .priority = INT_MIN, |
| 11111 | }; |
| 11112 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11113 | void __init perf_event_init(void) |
| 11114 | { |
Jason Wessel | 3c502e7 | 2010-11-04 17:33:01 -0500 | [diff] [blame] | 11115 | int ret; |
| 11116 | |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 11117 | idr_init(&pmu_idr); |
| 11118 | |
Paul Mackerras | 220b140 | 2010-03-10 20:45:52 +1100 | [diff] [blame] | 11119 | perf_event_init_all_cpus(); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 11120 | init_srcu_struct(&pmus_srcu); |
Peter Zijlstra | 2e80a82 | 2010-11-17 23:17:36 +0100 | [diff] [blame] | 11121 | perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE); |
| 11122 | perf_pmu_register(&perf_cpu_clock, NULL, -1); |
| 11123 | perf_pmu_register(&perf_task_clock, NULL, -1); |
Peter Zijlstra | b0a873e | 2010-06-11 13:35:08 +0200 | [diff] [blame] | 11124 | perf_tp_register(); |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 11125 | perf_event_init_cpu(smp_processor_id()); |
Peter Zijlstra | c277443 | 2010-12-08 15:29:02 +0100 | [diff] [blame] | 11126 | register_reboot_notifier(&perf_reboot_notifier); |
Jason Wessel | 3c502e7 | 2010-11-04 17:33:01 -0500 | [diff] [blame] | 11127 | |
| 11128 | ret = init_hw_breakpoint(); |
| 11129 | WARN(ret, "hw_breakpoint initialization failed with: %d", ret); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 11130 | |
Jiri Olsa | b01c3a0 | 2012-03-23 15:41:20 +0100 | [diff] [blame] | 11131 | /* |
| 11132 | * Build time assertion that we keep the data_head at the intended |
| 11133 | * location. IOW, validation we got the __reserved[] size right. |
| 11134 | */ |
| 11135 | BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head)) |
| 11136 | != 1024); |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 11137 | } |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 11138 | |
Cody P Schafer | fd979c0 | 2015-01-30 13:45:57 -0800 | [diff] [blame] | 11139 | ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr, |
| 11140 | char *page) |
| 11141 | { |
| 11142 | struct perf_pmu_events_attr *pmu_attr = |
| 11143 | container_of(attr, struct perf_pmu_events_attr, attr); |
| 11144 | |
| 11145 | if (pmu_attr->event_str) |
| 11146 | return sprintf(page, "%s\n", pmu_attr->event_str); |
| 11147 | |
| 11148 | return 0; |
| 11149 | } |
Thomas Gleixner | 675965b | 2016-02-22 22:19:27 +0000 | [diff] [blame] | 11150 | EXPORT_SYMBOL_GPL(perf_event_sysfs_show); |
Cody P Schafer | fd979c0 | 2015-01-30 13:45:57 -0800 | [diff] [blame] | 11151 | |
Peter Zijlstra | abe4340 | 2010-11-17 23:17:37 +0100 | [diff] [blame] | 11152 | static int __init perf_event_sysfs_init(void) |
| 11153 | { |
| 11154 | struct pmu *pmu; |
| 11155 | int ret; |
| 11156 | |
| 11157 | mutex_lock(&pmus_lock); |
| 11158 | |
| 11159 | ret = bus_register(&pmu_bus); |
| 11160 | if (ret) |
| 11161 | goto unlock; |
| 11162 | |
| 11163 | list_for_each_entry(pmu, &pmus, entry) { |
| 11164 | if (!pmu->name || pmu->type < 0) |
| 11165 | continue; |
| 11166 | |
| 11167 | ret = pmu_dev_alloc(pmu); |
| 11168 | WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret); |
| 11169 | } |
| 11170 | pmu_bus_running = 1; |
| 11171 | ret = 0; |
| 11172 | |
| 11173 | unlock: |
| 11174 | mutex_unlock(&pmus_lock); |
| 11175 | |
| 11176 | return ret; |
| 11177 | } |
| 11178 | device_initcall(perf_event_sysfs_init); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11179 | |
| 11180 | #ifdef CONFIG_CGROUP_PERF |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 11181 | static struct cgroup_subsys_state * |
| 11182 | perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11183 | { |
| 11184 | struct perf_cgroup *jc; |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11185 | |
Li Zefan | 1b15d05 | 2011-03-03 14:26:06 +0800 | [diff] [blame] | 11186 | jc = kzalloc(sizeof(*jc), GFP_KERNEL); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11187 | if (!jc) |
| 11188 | return ERR_PTR(-ENOMEM); |
| 11189 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11190 | jc->info = alloc_percpu(struct perf_cgroup_info); |
| 11191 | if (!jc->info) { |
| 11192 | kfree(jc); |
| 11193 | return ERR_PTR(-ENOMEM); |
| 11194 | } |
| 11195 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11196 | return &jc->css; |
| 11197 | } |
| 11198 | |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 11199 | static void perf_cgroup_css_free(struct cgroup_subsys_state *css) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11200 | { |
Tejun Heo | eb95419 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 11201 | struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css); |
| 11202 | |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11203 | free_percpu(jc->info); |
| 11204 | kfree(jc); |
| 11205 | } |
| 11206 | |
| 11207 | static int __perf_cgroup_move(void *info) |
| 11208 | { |
| 11209 | struct task_struct *task = info; |
Stephane Eranian | ddaaf4e | 2015-11-12 11:00:03 +0100 | [diff] [blame] | 11210 | rcu_read_lock(); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11211 | perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN); |
Stephane Eranian | ddaaf4e | 2015-11-12 11:00:03 +0100 | [diff] [blame] | 11212 | rcu_read_unlock(); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11213 | return 0; |
| 11214 | } |
| 11215 | |
Tejun Heo | 1f7dd3e5 | 2015-12-03 10:18:21 -0500 | [diff] [blame] | 11216 | static void perf_cgroup_attach(struct cgroup_taskset *tset) |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11217 | { |
Tejun Heo | bb9d97b | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 11218 | struct task_struct *task; |
Tejun Heo | 1f7dd3e5 | 2015-12-03 10:18:21 -0500 | [diff] [blame] | 11219 | struct cgroup_subsys_state *css; |
Tejun Heo | bb9d97b | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 11220 | |
Tejun Heo | 1f7dd3e5 | 2015-12-03 10:18:21 -0500 | [diff] [blame] | 11221 | cgroup_taskset_for_each(task, css, tset) |
Tejun Heo | bb9d97b | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 11222 | task_function_call(task, __perf_cgroup_move, task); |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11223 | } |
| 11224 | |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 11225 | struct cgroup_subsys perf_event_cgrp_subsys = { |
Tejun Heo | 92fb974 | 2012-11-19 08:13:38 -0800 | [diff] [blame] | 11226 | .css_alloc = perf_cgroup_css_alloc, |
| 11227 | .css_free = perf_cgroup_css_free, |
Tejun Heo | bb9d97b | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 11228 | .attach = perf_cgroup_attach, |
Tejun Heo | 968ebff | 2017-01-29 14:35:20 -0500 | [diff] [blame] | 11229 | /* |
| 11230 | * Implicitly enable on dfl hierarchy so that perf events can |
| 11231 | * always be filtered by cgroup2 path as long as perf_event |
| 11232 | * controller is not mounted on a legacy hierarchy. |
| 11233 | */ |
| 11234 | .implicit_on_dfl = true, |
Stephane Eranian | e5d1367 | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 11235 | }; |
| 11236 | #endif /* CONFIG_CGROUP_PERF */ |