1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Performance events core code: 4 * 5 * Copyright (C) 2008 Linutronix GmbH, Thomas Gleixner <tglx@kernel.org> 6 * Copyright (C) 2008-2011 Red Hat, Inc., Ingo Molnar 7 * Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra 8 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com> 9 */ 10 11 #include <linux/fs.h> 12 #include <linux/mm.h> 13 #include <linux/cpu.h> 14 #include <linux/smp.h> 15 #include <linux/idr.h> 16 #include <linux/file.h> 17 #include <linux/poll.h> 18 #include <linux/slab.h> 19 #include <linux/hash.h> 20 #include <linux/tick.h> 21 #include <linux/sysfs.h> 22 #include <linux/dcache.h> 23 #include <linux/percpu.h> 24 #include <linux/ptrace.h> 25 #include <linux/reboot.h> 26 #include <linux/vmstat.h> 27 #include <linux/device.h> 28 #include <linux/export.h> 29 #include <linux/vmalloc.h> 30 #include <linux/hardirq.h> 31 #include <linux/hugetlb.h> 32 #include <linux/rculist.h> 33 #include <linux/uaccess.h> 34 #include <linux/syscalls.h> 35 #include <linux/anon_inodes.h> 36 #include <linux/kernel_stat.h> 37 #include <linux/cgroup.h> 38 #include <linux/perf_event.h> 39 #include <linux/trace_events.h> 40 #include <linux/hw_breakpoint.h> 41 #include <linux/mm_types.h> 42 #include <linux/module.h> 43 #include <linux/mman.h> 44 #include <linux/compat.h> 45 #include <linux/bpf.h> 46 #include <linux/filter.h> 47 #include <linux/namei.h> 48 #include <linux/parser.h> 49 #include <linux/sched/clock.h> 50 #include <linux/sched/mm.h> 51 #include <linux/proc_ns.h> 52 #include <linux/mount.h> 53 #include <linux/min_heap.h> 54 #include <linux/highmem.h> 55 #include <linux/pgtable.h> 56 #include <linux/buildid.h> 57 #include <linux/task_work.h> 58 #include <linux/percpu-rwsem.h> 59 #include <linux/unwind_deferred.h> 60 #include <linux/kvm_types.h> 61 62 #include "internal.h" 63 64 #include <asm/irq_regs.h> 65 66 typedef int (*remote_function_f)(void *); 67 68 struct remote_function_call { 69 struct task_struct *p; 70 remote_function_f func; 71 void *info; 72 int ret; 73 }; 74 75 static void remote_function(void *data) 76 { 77 struct remote_function_call *tfc = data; 78 struct task_struct *p = tfc->p; 79 80 if (p) { 81 /* -EAGAIN */ 82 if (task_cpu(p) != smp_processor_id()) 83 return; 84 85 /* 86 * Now that we're on right CPU with IRQs disabled, we can test 87 * if we hit the right task without races. 88 */ 89 90 tfc->ret = -ESRCH; /* No such (running) process */ 91 if (p != current) 92 return; 93 } 94 95 tfc->ret = tfc->func(tfc->info); 96 } 97 98 /** 99 * task_function_call - call a function on the cpu on which a task runs 100 * @p: the task to evaluate 101 * @func: the function to be called 102 * @info: the function call argument 103 * 104 * Calls the function @func when the task is currently running. This might 105 * be on the current CPU, which just calls the function directly. This will 106 * retry due to any failures in smp_call_function_single(), such as if the 107 * task_cpu() goes offline concurrently. 108 * 109 * returns @func return value or -ESRCH or -ENXIO when the process isn't running 110 */ 111 static int 112 task_function_call(struct task_struct *p, remote_function_f func, void *info) 113 { 114 struct remote_function_call data = { 115 .p = p, 116 .func = func, 117 .info = info, 118 .ret = -EAGAIN, 119 }; 120 int ret; 121 122 for (;;) { 123 ret = smp_call_function_single(task_cpu(p), remote_function, 124 &data, 1); 125 if (!ret) 126 ret = data.ret; 127 128 if (ret != -EAGAIN) 129 break; 130 131 cond_resched(); 132 } 133 134 return ret; 135 } 136 137 /** 138 * cpu_function_call - call a function on the cpu 139 * @cpu: target cpu to queue this function 140 * @func: the function to be called 141 * @info: the function call argument 142 * 143 * Calls the function @func on the remote cpu. 144 * 145 * returns: @func return value or -ENXIO when the cpu is offline 146 */ 147 static int cpu_function_call(int cpu, remote_function_f func, void *info) 148 { 149 struct remote_function_call data = { 150 .p = NULL, 151 .func = func, 152 .info = info, 153 .ret = -ENXIO, /* No such CPU */ 154 }; 155 156 smp_call_function_single(cpu, remote_function, &data, 1); 157 158 return data.ret; 159 } 160 161 enum event_type_t { 162 EVENT_FLEXIBLE = 0x01, 163 EVENT_PINNED = 0x02, 164 EVENT_TIME = 0x04, 165 EVENT_FROZEN = 0x08, 166 /* see ctx_resched() for details */ 167 EVENT_CPU = 0x10, 168 EVENT_CGROUP = 0x20, 169 170 /* 171 * EVENT_GUEST is set when scheduling in/out events between the host 172 * and a guest with a mediated vPMU. Among other things, EVENT_GUEST 173 * is used: 174 * 175 * - In for_each_epc() to skip PMUs that don't support events in a 176 * MEDIATED_VPMU guest, i.e. don't need to be context switched. 177 * - To indicate the start/end point of the events in a guest. Guest 178 * running time is deducted for host-only (exclude_guest) events. 179 */ 180 EVENT_GUEST = 0x40, 181 EVENT_FLAGS = EVENT_CGROUP | EVENT_GUEST, 182 /* compound helpers */ 183 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED, 184 EVENT_TIME_FROZEN = EVENT_TIME | EVENT_FROZEN, 185 }; 186 187 static inline void __perf_ctx_lock(struct perf_event_context *ctx) 188 { 189 raw_spin_lock(&ctx->lock); 190 WARN_ON_ONCE(ctx->is_active & EVENT_FROZEN); 191 } 192 193 static void perf_ctx_lock(struct perf_cpu_context *cpuctx, 194 struct perf_event_context *ctx) 195 { 196 __perf_ctx_lock(&cpuctx->ctx); 197 if (ctx) 198 __perf_ctx_lock(ctx); 199 } 200 201 static inline void __perf_ctx_unlock(struct perf_event_context *ctx) 202 { 203 /* 204 * If ctx_sched_in() didn't again set any ALL flags, clean up 205 * after ctx_sched_out() by clearing is_active. 206 */ 207 if (ctx->is_active & EVENT_FROZEN) { 208 if (!(ctx->is_active & EVENT_ALL)) 209 ctx->is_active = 0; 210 else 211 ctx->is_active &= ~EVENT_FROZEN; 212 } 213 raw_spin_unlock(&ctx->lock); 214 } 215 216 static void perf_ctx_unlock(struct perf_cpu_context *cpuctx, 217 struct perf_event_context *ctx) 218 { 219 if (ctx) 220 __perf_ctx_unlock(ctx); 221 __perf_ctx_unlock(&cpuctx->ctx); 222 } 223 224 typedef struct { 225 struct perf_cpu_context *cpuctx; 226 struct perf_event_context *ctx; 227 } class_perf_ctx_lock_t; 228 229 static inline void class_perf_ctx_lock_destructor(class_perf_ctx_lock_t *_T) 230 { perf_ctx_unlock(_T->cpuctx, _T->ctx); } 231 232 static inline class_perf_ctx_lock_t 233 class_perf_ctx_lock_constructor(struct perf_cpu_context *cpuctx, 234 struct perf_event_context *ctx) 235 { perf_ctx_lock(cpuctx, ctx); return (class_perf_ctx_lock_t){ cpuctx, ctx }; } 236 237 #define TASK_TOMBSTONE ((void *)-1L) 238 239 static bool is_kernel_event(struct perf_event *event) 240 { 241 return READ_ONCE(event->owner) == TASK_TOMBSTONE; 242 } 243 244 static DEFINE_PER_CPU(struct perf_cpu_context, perf_cpu_context); 245 246 struct perf_event_context *perf_cpu_task_ctx(void) 247 { 248 lockdep_assert_irqs_disabled(); 249 return this_cpu_ptr(&perf_cpu_context)->task_ctx; 250 } 251 252 /* 253 * On task ctx scheduling... 254 * 255 * When !ctx->nr_events a task context will not be scheduled. This means 256 * we can disable the scheduler hooks (for performance) without leaving 257 * pending task ctx state. 258 * 259 * This however results in two special cases: 260 * 261 * - removing the last event from a task ctx; this is relatively straight 262 * forward and is done in __perf_remove_from_context. 263 * 264 * - adding the first event to a task ctx; this is tricky because we cannot 265 * rely on ctx->is_active and therefore cannot use event_function_call(). 266 * See perf_install_in_context(). 267 * 268 * If ctx->nr_events, then ctx->is_active and cpuctx->task_ctx are set. 269 */ 270 271 typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *, 272 struct perf_event_context *, void *); 273 274 struct event_function_struct { 275 struct perf_event *event; 276 event_f func; 277 void *data; 278 }; 279 280 static int event_function(void *info) 281 { 282 struct event_function_struct *efs = info; 283 struct perf_event *event = efs->event; 284 struct perf_event_context *ctx = event->ctx; 285 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 286 struct perf_event_context *task_ctx = cpuctx->task_ctx; 287 int ret = 0; 288 289 lockdep_assert_irqs_disabled(); 290 291 perf_ctx_lock(cpuctx, task_ctx); 292 /* 293 * Since we do the IPI call without holding ctx->lock things can have 294 * changed, double check we hit the task we set out to hit. 295 */ 296 if (ctx->task) { 297 if (ctx->task != current) { 298 ret = -ESRCH; 299 goto unlock; 300 } 301 302 /* 303 * We only use event_function_call() on established contexts, 304 * and event_function() is only ever called when active (or 305 * rather, we'll have bailed in task_function_call() or the 306 * above ctx->task != current test), therefore we must have 307 * ctx->is_active here. 308 */ 309 WARN_ON_ONCE(!ctx->is_active); 310 /* 311 * And since we have ctx->is_active, cpuctx->task_ctx must 312 * match. 313 */ 314 WARN_ON_ONCE(task_ctx != ctx); 315 } else { 316 WARN_ON_ONCE(&cpuctx->ctx != ctx); 317 } 318 319 efs->func(event, cpuctx, ctx, efs->data); 320 unlock: 321 perf_ctx_unlock(cpuctx, task_ctx); 322 323 return ret; 324 } 325 326 static void event_function_call(struct perf_event *event, event_f func, void *data) 327 { 328 struct perf_event_context *ctx = event->ctx; 329 struct task_struct *task = READ_ONCE(ctx->task); /* verified in event_function */ 330 struct perf_cpu_context *cpuctx; 331 struct event_function_struct efs = { 332 .event = event, 333 .func = func, 334 .data = data, 335 }; 336 337 if (!event->parent) { 338 /* 339 * If this is a !child event, we must hold ctx::mutex to 340 * stabilize the event->ctx relation. See 341 * perf_event_ctx_lock(). 342 */ 343 lockdep_assert_held(&ctx->mutex); 344 } 345 346 if (!task) { 347 cpu_function_call(event->cpu, event_function, &efs); 348 return; 349 } 350 351 if (task == TASK_TOMBSTONE) 352 return; 353 354 again: 355 if (!task_function_call(task, event_function, &efs)) 356 return; 357 358 local_irq_disable(); 359 cpuctx = this_cpu_ptr(&perf_cpu_context); 360 perf_ctx_lock(cpuctx, ctx); 361 /* 362 * Reload the task pointer, it might have been changed by 363 * a concurrent perf_event_context_sched_out(). 364 */ 365 task = ctx->task; 366 if (task == TASK_TOMBSTONE) 367 goto unlock; 368 if (ctx->is_active) { 369 perf_ctx_unlock(cpuctx, ctx); 370 local_irq_enable(); 371 goto again; 372 } 373 func(event, NULL, ctx, data); 374 unlock: 375 perf_ctx_unlock(cpuctx, ctx); 376 local_irq_enable(); 377 } 378 379 /* 380 * Similar to event_function_call() + event_function(), but hard assumes IRQs 381 * are already disabled and we're on the right CPU. 382 */ 383 static void event_function_local(struct perf_event *event, event_f func, void *data) 384 { 385 struct perf_event_context *ctx = event->ctx; 386 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 387 struct task_struct *task = READ_ONCE(ctx->task); 388 struct perf_event_context *task_ctx = NULL; 389 390 lockdep_assert_irqs_disabled(); 391 392 if (task) { 393 if (task == TASK_TOMBSTONE) 394 return; 395 396 task_ctx = ctx; 397 } 398 399 perf_ctx_lock(cpuctx, task_ctx); 400 401 task = ctx->task; 402 if (task == TASK_TOMBSTONE) 403 goto unlock; 404 405 if (task) { 406 /* 407 * We must be either inactive or active and the right task, 408 * otherwise we're screwed, since we cannot IPI to somewhere 409 * else. 410 */ 411 if (ctx->is_active) { 412 if (WARN_ON_ONCE(task != current)) 413 goto unlock; 414 415 if (WARN_ON_ONCE(cpuctx->task_ctx != ctx)) 416 goto unlock; 417 } 418 } else { 419 WARN_ON_ONCE(&cpuctx->ctx != ctx); 420 } 421 422 func(event, cpuctx, ctx, data); 423 unlock: 424 perf_ctx_unlock(cpuctx, task_ctx); 425 } 426 427 #define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\ 428 PERF_FLAG_FD_OUTPUT |\ 429 PERF_FLAG_PID_CGROUP |\ 430 PERF_FLAG_FD_CLOEXEC) 431 432 /* 433 * branch priv levels that need permission checks 434 */ 435 #define PERF_SAMPLE_BRANCH_PERM_PLM \ 436 (PERF_SAMPLE_BRANCH_KERNEL |\ 437 PERF_SAMPLE_BRANCH_HV) 438 439 /* 440 * perf_sched_events : >0 events exist 441 */ 442 443 static void perf_sched_delayed(struct work_struct *work); 444 DEFINE_STATIC_KEY_FALSE(perf_sched_events); 445 static DECLARE_DELAYED_WORK(perf_sched_work, perf_sched_delayed); 446 static DEFINE_MUTEX(perf_sched_mutex); 447 static atomic_t perf_sched_count; 448 449 static DEFINE_PER_CPU(struct pmu_event_list, pmu_sb_events); 450 451 static atomic_t nr_mmap_events __read_mostly; 452 static atomic_t nr_comm_events __read_mostly; 453 static atomic_t nr_namespaces_events __read_mostly; 454 static atomic_t nr_task_events __read_mostly; 455 static atomic_t nr_freq_events __read_mostly; 456 static atomic_t nr_switch_events __read_mostly; 457 static atomic_t nr_ksymbol_events __read_mostly; 458 static atomic_t nr_bpf_events __read_mostly; 459 static atomic_t nr_cgroup_events __read_mostly; 460 static atomic_t nr_text_poke_events __read_mostly; 461 static atomic_t nr_build_id_events __read_mostly; 462 463 static LIST_HEAD(pmus); 464 static DEFINE_MUTEX(pmus_lock); 465 static struct srcu_struct pmus_srcu; 466 static cpumask_var_t perf_online_mask; 467 static cpumask_var_t perf_online_core_mask; 468 static cpumask_var_t perf_online_die_mask; 469 static cpumask_var_t perf_online_cluster_mask; 470 static cpumask_var_t perf_online_pkg_mask; 471 static cpumask_var_t perf_online_sys_mask; 472 static struct kmem_cache *perf_event_cache; 473 474 #ifdef CONFIG_PERF_GUEST_MEDIATED_PMU 475 static DEFINE_PER_CPU(bool, guest_ctx_loaded); 476 477 static __always_inline bool is_guest_mediated_pmu_loaded(void) 478 { 479 return __this_cpu_read(guest_ctx_loaded); 480 } 481 #else 482 static __always_inline bool is_guest_mediated_pmu_loaded(void) 483 { 484 return false; 485 } 486 #endif 487 488 /* 489 * perf event paranoia level: 490 * -1 - not paranoid at all 491 * 0 - disallow raw tracepoint access for unpriv 492 * 1 - disallow cpu events for unpriv 493 * 2 - disallow kernel profiling for unpriv 494 */ 495 int sysctl_perf_event_paranoid __read_mostly = 2; 496 497 /* Minimum for 512 kiB + 1 user control page. 'free' kiB per user. */ 498 static int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); 499 500 /* 501 * max perf event sample rate 502 */ 503 #define DEFAULT_MAX_SAMPLE_RATE 100000 504 #define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE) 505 #define DEFAULT_CPU_TIME_MAX_PERCENT 25 506 507 int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE; 508 static int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT; 509 510 static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ); 511 static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS; 512 513 static int perf_sample_allowed_ns __read_mostly = 514 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100; 515 516 static void update_perf_cpu_limits(void) 517 { 518 u64 tmp = perf_sample_period_ns; 519 520 tmp *= sysctl_perf_cpu_time_max_percent; 521 tmp = div_u64(tmp, 100); 522 if (!tmp) 523 tmp = 1; 524 525 WRITE_ONCE(perf_sample_allowed_ns, tmp); 526 } 527 528 static bool perf_rotate_context(struct perf_cpu_pmu_context *cpc); 529 530 static int perf_event_max_sample_rate_handler(const struct ctl_table *table, int write, 531 void *buffer, size_t *lenp, loff_t *ppos) 532 { 533 int ret; 534 int perf_cpu = sysctl_perf_cpu_time_max_percent; 535 /* 536 * If throttling is disabled don't allow the write: 537 */ 538 if (write && (perf_cpu == 100 || perf_cpu == 0)) 539 return -EINVAL; 540 541 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); 542 if (ret || !write) 543 return ret; 544 545 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ); 546 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate; 547 update_perf_cpu_limits(); 548 549 return 0; 550 } 551 552 static int perf_cpu_time_max_percent_handler(const struct ctl_table *table, int write, 553 void *buffer, size_t *lenp, loff_t *ppos) 554 { 555 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); 556 557 if (ret || !write) 558 return ret; 559 560 if (sysctl_perf_cpu_time_max_percent == 100 || 561 sysctl_perf_cpu_time_max_percent == 0) { 562 printk(KERN_WARNING 563 "perf: Dynamic interrupt throttling disabled, can hang your system!\n"); 564 WRITE_ONCE(perf_sample_allowed_ns, 0); 565 } else { 566 update_perf_cpu_limits(); 567 } 568 569 return 0; 570 } 571 572 static const struct ctl_table events_core_sysctl_table[] = { 573 /* 574 * User-space relies on this file as a feature check for 575 * perf_events being enabled. It's an ABI, do not remove! 576 */ 577 { 578 .procname = "perf_event_paranoid", 579 .data = &sysctl_perf_event_paranoid, 580 .maxlen = sizeof(sysctl_perf_event_paranoid), 581 .mode = 0644, 582 .proc_handler = proc_dointvec, 583 }, 584 { 585 .procname = "perf_event_mlock_kb", 586 .data = &sysctl_perf_event_mlock, 587 .maxlen = sizeof(sysctl_perf_event_mlock), 588 .mode = 0644, 589 .proc_handler = proc_dointvec, 590 }, 591 { 592 .procname = "perf_event_max_sample_rate", 593 .data = &sysctl_perf_event_sample_rate, 594 .maxlen = sizeof(sysctl_perf_event_sample_rate), 595 .mode = 0644, 596 .proc_handler = perf_event_max_sample_rate_handler, 597 .extra1 = SYSCTL_ONE, 598 }, 599 { 600 .procname = "perf_cpu_time_max_percent", 601 .data = &sysctl_perf_cpu_time_max_percent, 602 .maxlen = sizeof(sysctl_perf_cpu_time_max_percent), 603 .mode = 0644, 604 .proc_handler = perf_cpu_time_max_percent_handler, 605 .extra1 = SYSCTL_ZERO, 606 .extra2 = SYSCTL_ONE_HUNDRED, 607 }, 608 }; 609 610 static int __init init_events_core_sysctls(void) 611 { 612 register_sysctl_init("kernel", events_core_sysctl_table); 613 return 0; 614 } 615 core_initcall(init_events_core_sysctls); 616 617 618 /* 619 * perf samples are done in some very critical code paths (NMIs). 620 * If they take too much CPU time, the system can lock up and not 621 * get any real work done. This will drop the sample rate when 622 * we detect that events are taking too long. 623 */ 624 #define NR_ACCUMULATED_SAMPLES 128 625 static DEFINE_PER_CPU(u64, running_sample_length); 626 627 static u64 __report_avg; 628 static u64 __report_allowed; 629 630 static void perf_duration_warn(struct irq_work *w) 631 { 632 printk_ratelimited(KERN_INFO 633 "perf: interrupt took too long (%lld > %lld), lowering " 634 "kernel.perf_event_max_sample_rate to %d\n", 635 __report_avg, __report_allowed, 636 sysctl_perf_event_sample_rate); 637 } 638 639 static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn); 640 641 void perf_sample_event_took(u64 sample_len_ns) 642 { 643 u64 max_len = READ_ONCE(perf_sample_allowed_ns); 644 u64 running_len; 645 u64 avg_len; 646 u32 max; 647 648 if (max_len == 0) 649 return; 650 651 /* Decay the counter by 1 average sample. */ 652 running_len = __this_cpu_read(running_sample_length); 653 running_len -= running_len/NR_ACCUMULATED_SAMPLES; 654 running_len += sample_len_ns; 655 __this_cpu_write(running_sample_length, running_len); 656 657 /* 658 * Note: this will be biased artificially low until we have 659 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us 660 * from having to maintain a count. 661 */ 662 avg_len = running_len/NR_ACCUMULATED_SAMPLES; 663 if (avg_len <= max_len) 664 return; 665 666 __report_avg = avg_len; 667 __report_allowed = max_len; 668 669 /* 670 * Compute a throttle threshold 25% below the current duration. 671 */ 672 avg_len += avg_len / 4; 673 max = (TICK_NSEC / 100) * sysctl_perf_cpu_time_max_percent; 674 if (avg_len < max) 675 max /= (u32)avg_len; 676 else 677 max = 1; 678 679 WRITE_ONCE(perf_sample_allowed_ns, avg_len); 680 WRITE_ONCE(max_samples_per_tick, max); 681 682 sysctl_perf_event_sample_rate = max * HZ; 683 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate; 684 685 if (!irq_work_queue(&perf_duration_work)) { 686 early_printk("perf: interrupt took too long (%lld > %lld), lowering " 687 "kernel.perf_event_max_sample_rate to %d\n", 688 __report_avg, __report_allowed, 689 sysctl_perf_event_sample_rate); 690 } 691 } 692 693 static atomic64_t perf_event_id; 694 695 static void update_context_time(struct perf_event_context *ctx); 696 static u64 perf_event_time(struct perf_event *event); 697 698 void __weak perf_event_print_debug(void) { } 699 700 static inline u64 perf_clock(void) 701 { 702 return local_clock(); 703 } 704 705 static inline u64 perf_event_clock(struct perf_event *event) 706 { 707 return event->clock(); 708 } 709 710 /* 711 * State based event timekeeping... 712 * 713 * The basic idea is to use event->state to determine which (if any) time 714 * fields to increment with the current delta. This means we only need to 715 * update timestamps when we change state or when they are explicitly requested 716 * (read). 717 * 718 * Event groups make things a little more complicated, but not terribly so. The 719 * rules for a group are that if the group leader is OFF the entire group is 720 * OFF, irrespective of what the group member states are. This results in 721 * __perf_effective_state(). 722 * 723 * A further ramification is that when a group leader flips between OFF and 724 * !OFF, we need to update all group member times. 725 * 726 * 727 * NOTE: perf_event_time() is based on the (cgroup) context time, and thus we 728 * need to make sure the relevant context time is updated before we try and 729 * update our timestamps. 730 */ 731 732 static __always_inline enum perf_event_state 733 __perf_effective_state(struct perf_event *event) 734 { 735 struct perf_event *leader = event->group_leader; 736 737 if (leader->state <= PERF_EVENT_STATE_OFF) 738 return leader->state; 739 740 return event->state; 741 } 742 743 static __always_inline void 744 __perf_update_times(struct perf_event *event, u64 now, u64 *enabled, u64 *running) 745 { 746 enum perf_event_state state = __perf_effective_state(event); 747 u64 delta = now - event->tstamp; 748 749 *enabled = event->total_time_enabled; 750 if (state >= PERF_EVENT_STATE_INACTIVE) 751 *enabled += delta; 752 753 *running = event->total_time_running; 754 if (state >= PERF_EVENT_STATE_ACTIVE) 755 *running += delta; 756 } 757 758 static void perf_event_update_time(struct perf_event *event) 759 { 760 u64 now = perf_event_time(event); 761 762 __perf_update_times(event, now, &event->total_time_enabled, 763 &event->total_time_running); 764 event->tstamp = now; 765 } 766 767 static void perf_event_update_sibling_time(struct perf_event *leader) 768 { 769 struct perf_event *sibling; 770 771 for_each_sibling_event(sibling, leader) 772 perf_event_update_time(sibling); 773 } 774 775 static void 776 perf_event_set_state(struct perf_event *event, enum perf_event_state state) 777 { 778 if (event->state == state) 779 return; 780 781 perf_event_update_time(event); 782 /* 783 * If a group leader gets enabled/disabled all its siblings 784 * are affected too. 785 */ 786 if ((event->state < 0) ^ (state < 0)) 787 perf_event_update_sibling_time(event); 788 789 WRITE_ONCE(event->state, state); 790 } 791 792 /* 793 * UP store-release, load-acquire 794 */ 795 796 #define __store_release(ptr, val) \ 797 do { \ 798 barrier(); \ 799 WRITE_ONCE(*(ptr), (val)); \ 800 } while (0) 801 802 #define __load_acquire(ptr) \ 803 ({ \ 804 __unqual_scalar_typeof(*(ptr)) ___p = READ_ONCE(*(ptr)); \ 805 barrier(); \ 806 ___p; \ 807 }) 808 809 static bool perf_skip_pmu_ctx(struct perf_event_pmu_context *pmu_ctx, 810 enum event_type_t event_type) 811 { 812 if ((event_type & EVENT_CGROUP) && !pmu_ctx->nr_cgroups) 813 return true; 814 if ((event_type & EVENT_GUEST) && 815 !(pmu_ctx->pmu->capabilities & PERF_PMU_CAP_MEDIATED_VPMU)) 816 return true; 817 return false; 818 } 819 820 #define for_each_epc(_epc, _ctx, _pmu, _event_type) \ 821 list_for_each_entry(_epc, &((_ctx)->pmu_ctx_list), pmu_ctx_entry) \ 822 if (perf_skip_pmu_ctx(_epc, _event_type)) \ 823 continue; \ 824 else if (_pmu && _epc->pmu != _pmu) \ 825 continue; \ 826 else 827 828 static void perf_ctx_disable(struct perf_event_context *ctx, 829 enum event_type_t event_type) 830 { 831 struct perf_event_pmu_context *pmu_ctx; 832 833 for_each_epc(pmu_ctx, ctx, NULL, event_type) 834 perf_pmu_disable(pmu_ctx->pmu); 835 } 836 837 static void perf_ctx_enable(struct perf_event_context *ctx, 838 enum event_type_t event_type) 839 { 840 struct perf_event_pmu_context *pmu_ctx; 841 842 for_each_epc(pmu_ctx, ctx, NULL, event_type) 843 perf_pmu_enable(pmu_ctx->pmu); 844 } 845 846 static void ctx_sched_out(struct perf_event_context *ctx, struct pmu *pmu, enum event_type_t event_type); 847 static void ctx_sched_in(struct perf_event_context *ctx, struct pmu *pmu, enum event_type_t event_type); 848 849 static inline void update_perf_time_ctx(struct perf_time_ctx *time, u64 now, bool adv) 850 { 851 if (adv) 852 time->time += now - time->stamp; 853 time->stamp = now; 854 855 /* 856 * The above: time' = time + (now - timestamp), can be re-arranged 857 * into: time` = now + (time - timestamp), which gives a single value 858 * offset to compute future time without locks on. 859 * 860 * See perf_event_time_now(), which can be used from NMI context where 861 * it's (obviously) not possible to acquire ctx->lock in order to read 862 * both the above values in a consistent manner. 863 */ 864 WRITE_ONCE(time->offset, time->time - time->stamp); 865 } 866 867 static_assert(offsetof(struct perf_event_context, timeguest) - 868 offsetof(struct perf_event_context, time) == 869 sizeof(struct perf_time_ctx)); 870 871 #define T_TOTAL 0 872 #define T_GUEST 1 873 874 static inline u64 __perf_event_time_ctx(struct perf_event *event, 875 struct perf_time_ctx *times) 876 { 877 u64 time = times[T_TOTAL].time; 878 879 if (event->attr.exclude_guest) 880 time -= times[T_GUEST].time; 881 882 return time; 883 } 884 885 static inline u64 __perf_event_time_ctx_now(struct perf_event *event, 886 struct perf_time_ctx *times, 887 u64 now) 888 { 889 if (is_guest_mediated_pmu_loaded() && event->attr.exclude_guest) { 890 /* 891 * (now + times[total].offset) - (now + times[guest].offset) := 892 * times[total].offset - times[guest].offset 893 */ 894 return READ_ONCE(times[T_TOTAL].offset) - READ_ONCE(times[T_GUEST].offset); 895 } 896 897 return now + READ_ONCE(times[T_TOTAL].offset); 898 } 899 900 #ifdef CONFIG_CGROUP_PERF 901 902 static inline bool 903 perf_cgroup_match(struct perf_event *event) 904 { 905 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 906 907 /* @event doesn't care about cgroup */ 908 if (!event->cgrp) 909 return true; 910 911 /* wants specific cgroup scope but @cpuctx isn't associated with any */ 912 if (!cpuctx->cgrp) 913 return false; 914 915 /* 916 * Cgroup scoping is recursive. An event enabled for a cgroup is 917 * also enabled for all its descendant cgroups. If @cpuctx's 918 * cgroup is a descendant of @event's (the test covers identity 919 * case), it's a match. 920 */ 921 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup, 922 event->cgrp->css.cgroup); 923 } 924 925 static inline void perf_detach_cgroup(struct perf_event *event) 926 { 927 css_put(&event->cgrp->css); 928 event->cgrp = NULL; 929 } 930 931 static inline int is_cgroup_event(struct perf_event *event) 932 { 933 return event->cgrp != NULL; 934 } 935 936 static_assert(offsetof(struct perf_cgroup_info, timeguest) - 937 offsetof(struct perf_cgroup_info, time) == 938 sizeof(struct perf_time_ctx)); 939 940 static inline u64 perf_cgroup_event_time(struct perf_event *event) 941 { 942 struct perf_cgroup_info *t; 943 944 t = per_cpu_ptr(event->cgrp->info, event->cpu); 945 return __perf_event_time_ctx(event, &t->time); 946 } 947 948 static inline u64 perf_cgroup_event_time_now(struct perf_event *event, u64 now) 949 { 950 struct perf_cgroup_info *t; 951 952 t = per_cpu_ptr(event->cgrp->info, event->cpu); 953 if (!__load_acquire(&t->active)) 954 return __perf_event_time_ctx(event, &t->time); 955 956 return __perf_event_time_ctx_now(event, &t->time, now); 957 } 958 959 static inline void __update_cgrp_guest_time(struct perf_cgroup_info *info, u64 now, bool adv) 960 { 961 update_perf_time_ctx(&info->timeguest, now, adv); 962 } 963 964 static inline void update_cgrp_time(struct perf_cgroup_info *info, u64 now) 965 { 966 update_perf_time_ctx(&info->time, now, true); 967 if (is_guest_mediated_pmu_loaded()) 968 __update_cgrp_guest_time(info, now, true); 969 } 970 971 static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx, bool final) 972 { 973 struct perf_cgroup *cgrp = cpuctx->cgrp; 974 struct cgroup_subsys_state *css; 975 struct perf_cgroup_info *info; 976 977 if (cgrp) { 978 u64 now = perf_clock(); 979 980 for (css = &cgrp->css; css; css = css->parent) { 981 cgrp = container_of(css, struct perf_cgroup, css); 982 info = this_cpu_ptr(cgrp->info); 983 984 update_cgrp_time(info, now); 985 if (final) 986 __store_release(&info->active, 0); 987 } 988 } 989 } 990 991 static inline void update_cgrp_time_from_event(struct perf_event *event) 992 { 993 struct perf_cgroup_info *info; 994 995 /* 996 * ensure we access cgroup data only when needed and 997 * when we know the cgroup is pinned (css_get) 998 */ 999 if (!is_cgroup_event(event)) 1000 return; 1001 1002 info = this_cpu_ptr(event->cgrp->info); 1003 /* 1004 * Do not update time when cgroup is not active 1005 */ 1006 if (info->active) 1007 update_cgrp_time(info, perf_clock()); 1008 } 1009 1010 static inline void 1011 perf_cgroup_set_timestamp(struct perf_cpu_context *cpuctx, bool guest) 1012 { 1013 struct perf_event_context *ctx = &cpuctx->ctx; 1014 struct perf_cgroup *cgrp = cpuctx->cgrp; 1015 struct perf_cgroup_info *info; 1016 struct cgroup_subsys_state *css; 1017 1018 /* 1019 * ctx->lock held by caller 1020 * ensure we do not access cgroup data 1021 * unless we have the cgroup pinned (css_get) 1022 */ 1023 if (!cgrp) 1024 return; 1025 1026 WARN_ON_ONCE(!ctx->nr_cgroups); 1027 1028 for (css = &cgrp->css; css; css = css->parent) { 1029 cgrp = container_of(css, struct perf_cgroup, css); 1030 info = this_cpu_ptr(cgrp->info); 1031 if (guest) { 1032 __update_cgrp_guest_time(info, ctx->time.stamp, false); 1033 } else { 1034 update_perf_time_ctx(&info->time, ctx->time.stamp, false); 1035 __store_release(&info->active, 1); 1036 } 1037 } 1038 } 1039 1040 /* 1041 * reschedule events based on the cgroup constraint of task. 1042 */ 1043 static void perf_cgroup_switch(struct task_struct *task) 1044 { 1045 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 1046 struct perf_cgroup *cgrp; 1047 1048 /* 1049 * cpuctx->cgrp is set when the first cgroup event enabled, 1050 * and is cleared when the last cgroup event disabled. 1051 */ 1052 if (READ_ONCE(cpuctx->cgrp) == NULL) 1053 return; 1054 1055 cgrp = perf_cgroup_from_task(task, NULL); 1056 if (READ_ONCE(cpuctx->cgrp) == cgrp) 1057 return; 1058 1059 guard(perf_ctx_lock)(cpuctx, cpuctx->task_ctx); 1060 /* 1061 * Re-check, could've raced vs perf_remove_from_context(). 1062 */ 1063 if (READ_ONCE(cpuctx->cgrp) == NULL) 1064 return; 1065 1066 WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0); 1067 perf_ctx_disable(&cpuctx->ctx, EVENT_CGROUP); 1068 1069 ctx_sched_out(&cpuctx->ctx, NULL, EVENT_ALL|EVENT_CGROUP); 1070 /* 1071 * must not be done before ctxswout due 1072 * to update_cgrp_time_from_cpuctx() in 1073 * ctx_sched_out() 1074 */ 1075 cpuctx->cgrp = cgrp; 1076 /* 1077 * set cgrp before ctxsw in to allow 1078 * perf_cgroup_set_timestamp() in ctx_sched_in() 1079 * to not have to pass task around 1080 */ 1081 ctx_sched_in(&cpuctx->ctx, NULL, EVENT_ALL|EVENT_CGROUP); 1082 1083 perf_ctx_enable(&cpuctx->ctx, EVENT_CGROUP); 1084 } 1085 1086 static int perf_cgroup_ensure_storage(struct perf_event *event, 1087 struct cgroup_subsys_state *css) 1088 { 1089 struct perf_cpu_context *cpuctx; 1090 struct perf_event **storage; 1091 int cpu, heap_size, ret = 0; 1092 1093 /* 1094 * Allow storage to have sufficient space for an iterator for each 1095 * possibly nested cgroup plus an iterator for events with no cgroup. 1096 */ 1097 for (heap_size = 1; css; css = css->parent) 1098 heap_size++; 1099 1100 for_each_possible_cpu(cpu) { 1101 cpuctx = per_cpu_ptr(&perf_cpu_context, cpu); 1102 if (heap_size <= cpuctx->heap_size) 1103 continue; 1104 1105 storage = kmalloc_node(heap_size * sizeof(struct perf_event *), 1106 GFP_KERNEL, cpu_to_node(cpu)); 1107 if (!storage) { 1108 ret = -ENOMEM; 1109 break; 1110 } 1111 1112 raw_spin_lock_irq(&cpuctx->ctx.lock); 1113 if (cpuctx->heap_size < heap_size) { 1114 swap(cpuctx->heap, storage); 1115 if (storage == cpuctx->heap_default) 1116 storage = NULL; 1117 cpuctx->heap_size = heap_size; 1118 } 1119 raw_spin_unlock_irq(&cpuctx->ctx.lock); 1120 1121 kfree(storage); 1122 } 1123 1124 return ret; 1125 } 1126 1127 static inline int perf_cgroup_connect(int fd, struct perf_event *event, 1128 struct perf_event_attr *attr, 1129 struct perf_event *group_leader) 1130 { 1131 struct perf_cgroup *cgrp; 1132 struct cgroup_subsys_state *css; 1133 CLASS(fd, f)(fd); 1134 int ret = 0; 1135 1136 if (fd_empty(f)) 1137 return -EBADF; 1138 1139 css = css_tryget_online_from_dir(fd_file(f)->f_path.dentry, 1140 &perf_event_cgrp_subsys); 1141 if (IS_ERR(css)) 1142 return PTR_ERR(css); 1143 1144 ret = perf_cgroup_ensure_storage(event, css); 1145 if (ret) 1146 return ret; 1147 1148 cgrp = container_of(css, struct perf_cgroup, css); 1149 event->cgrp = cgrp; 1150 1151 /* 1152 * all events in a group must monitor 1153 * the same cgroup because a task belongs 1154 * to only one perf cgroup at a time 1155 */ 1156 if (group_leader && group_leader->cgrp != cgrp) { 1157 perf_detach_cgroup(event); 1158 ret = -EINVAL; 1159 } 1160 return ret; 1161 } 1162 1163 static inline void 1164 perf_cgroup_event_enable(struct perf_event *event, struct perf_event_context *ctx) 1165 { 1166 struct perf_cpu_context *cpuctx; 1167 1168 if (!is_cgroup_event(event)) 1169 return; 1170 1171 event->pmu_ctx->nr_cgroups++; 1172 1173 /* 1174 * Because cgroup events are always per-cpu events, 1175 * @ctx == &cpuctx->ctx. 1176 */ 1177 cpuctx = container_of(ctx, struct perf_cpu_context, ctx); 1178 1179 if (ctx->nr_cgroups++) 1180 return; 1181 1182 cpuctx->cgrp = perf_cgroup_from_task(current, ctx); 1183 } 1184 1185 static inline void 1186 perf_cgroup_event_disable(struct perf_event *event, struct perf_event_context *ctx) 1187 { 1188 struct perf_cpu_context *cpuctx; 1189 1190 if (!is_cgroup_event(event)) 1191 return; 1192 1193 event->pmu_ctx->nr_cgroups--; 1194 1195 /* 1196 * Because cgroup events are always per-cpu events, 1197 * @ctx == &cpuctx->ctx. 1198 */ 1199 cpuctx = container_of(ctx, struct perf_cpu_context, ctx); 1200 1201 if (--ctx->nr_cgroups) 1202 return; 1203 1204 cpuctx->cgrp = NULL; 1205 } 1206 1207 #else /* !CONFIG_CGROUP_PERF */ 1208 1209 static inline bool 1210 perf_cgroup_match(struct perf_event *event) 1211 { 1212 return true; 1213 } 1214 1215 static inline void perf_detach_cgroup(struct perf_event *event) 1216 {} 1217 1218 static inline int is_cgroup_event(struct perf_event *event) 1219 { 1220 return 0; 1221 } 1222 1223 static inline void update_cgrp_time_from_event(struct perf_event *event) 1224 { 1225 } 1226 1227 static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx, 1228 bool final) 1229 { 1230 } 1231 1232 static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event, 1233 struct perf_event_attr *attr, 1234 struct perf_event *group_leader) 1235 { 1236 return -EINVAL; 1237 } 1238 1239 static inline void 1240 perf_cgroup_set_timestamp(struct perf_cpu_context *cpuctx, bool guest) 1241 { 1242 } 1243 1244 static inline u64 perf_cgroup_event_time(struct perf_event *event) 1245 { 1246 return 0; 1247 } 1248 1249 static inline u64 perf_cgroup_event_time_now(struct perf_event *event, u64 now) 1250 { 1251 return 0; 1252 } 1253 1254 static inline void 1255 perf_cgroup_event_enable(struct perf_event *event, struct perf_event_context *ctx) 1256 { 1257 } 1258 1259 static inline void 1260 perf_cgroup_event_disable(struct perf_event *event, struct perf_event_context *ctx) 1261 { 1262 } 1263 1264 static void perf_cgroup_switch(struct task_struct *task) 1265 { 1266 } 1267 #endif 1268 1269 /* 1270 * set default to be dependent on timer tick just 1271 * like original code 1272 */ 1273 #define PERF_CPU_HRTIMER (1000 / HZ) 1274 /* 1275 * function must be called with interrupts disabled 1276 */ 1277 static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr) 1278 { 1279 struct perf_cpu_pmu_context *cpc; 1280 bool rotations; 1281 1282 lockdep_assert_irqs_disabled(); 1283 1284 cpc = container_of(hr, struct perf_cpu_pmu_context, hrtimer); 1285 rotations = perf_rotate_context(cpc); 1286 1287 raw_spin_lock(&cpc->hrtimer_lock); 1288 if (rotations) 1289 hrtimer_forward_now(hr, cpc->hrtimer_interval); 1290 else 1291 cpc->hrtimer_active = 0; 1292 raw_spin_unlock(&cpc->hrtimer_lock); 1293 1294 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART; 1295 } 1296 1297 static void __perf_mux_hrtimer_init(struct perf_cpu_pmu_context *cpc, int cpu) 1298 { 1299 struct hrtimer *timer = &cpc->hrtimer; 1300 struct pmu *pmu = cpc->epc.pmu; 1301 u64 interval; 1302 1303 /* 1304 * check default is sane, if not set then force to 1305 * default interval (1/tick) 1306 */ 1307 interval = pmu->hrtimer_interval_ms; 1308 if (interval < 1) 1309 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER; 1310 1311 cpc->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval); 1312 1313 raw_spin_lock_init(&cpc->hrtimer_lock); 1314 hrtimer_setup(timer, perf_mux_hrtimer_handler, CLOCK_MONOTONIC, 1315 HRTIMER_MODE_ABS_PINNED_HARD); 1316 } 1317 1318 static int perf_mux_hrtimer_restart(struct perf_cpu_pmu_context *cpc) 1319 { 1320 struct hrtimer *timer = &cpc->hrtimer; 1321 unsigned long flags; 1322 1323 raw_spin_lock_irqsave(&cpc->hrtimer_lock, flags); 1324 if (!cpc->hrtimer_active) { 1325 cpc->hrtimer_active = 1; 1326 hrtimer_forward_now(timer, cpc->hrtimer_interval); 1327 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED_HARD); 1328 } 1329 raw_spin_unlock_irqrestore(&cpc->hrtimer_lock, flags); 1330 1331 return 0; 1332 } 1333 1334 static int perf_mux_hrtimer_restart_ipi(void *arg) 1335 { 1336 return perf_mux_hrtimer_restart(arg); 1337 } 1338 1339 static __always_inline struct perf_cpu_pmu_context *this_cpc(struct pmu *pmu) 1340 { 1341 return *this_cpu_ptr(pmu->cpu_pmu_context); 1342 } 1343 1344 void perf_pmu_disable(struct pmu *pmu) 1345 { 1346 int *count = &this_cpc(pmu)->pmu_disable_count; 1347 if (!(*count)++) 1348 pmu->pmu_disable(pmu); 1349 } 1350 1351 void perf_pmu_enable(struct pmu *pmu) 1352 { 1353 int *count = &this_cpc(pmu)->pmu_disable_count; 1354 if (!--(*count)) 1355 pmu->pmu_enable(pmu); 1356 } 1357 1358 static void perf_assert_pmu_disabled(struct pmu *pmu) 1359 { 1360 int *count = &this_cpc(pmu)->pmu_disable_count; 1361 WARN_ON_ONCE(*count == 0); 1362 } 1363 1364 static inline void perf_pmu_read(struct perf_event *event) 1365 { 1366 if (event->state == PERF_EVENT_STATE_ACTIVE) 1367 event->pmu->read(event); 1368 } 1369 1370 static void get_ctx(struct perf_event_context *ctx) 1371 { 1372 refcount_inc(&ctx->refcount); 1373 } 1374 1375 static void free_ctx(struct rcu_head *head) 1376 { 1377 struct perf_event_context *ctx; 1378 1379 ctx = container_of(head, struct perf_event_context, rcu_head); 1380 kfree(ctx); 1381 } 1382 1383 static void put_ctx(struct perf_event_context *ctx) 1384 { 1385 if (refcount_dec_and_test(&ctx->refcount)) { 1386 if (ctx->parent_ctx) 1387 put_ctx(ctx->parent_ctx); 1388 if (ctx->task && ctx->task != TASK_TOMBSTONE) 1389 put_task_struct(ctx->task); 1390 call_rcu(&ctx->rcu_head, free_ctx); 1391 } else { 1392 smp_mb__after_atomic(); /* pairs with wait_var_event() */ 1393 if (ctx->task == TASK_TOMBSTONE) 1394 wake_up_var(&ctx->refcount); 1395 } 1396 } 1397 1398 /* 1399 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and 1400 * perf_pmu_migrate_context() we need some magic. 1401 * 1402 * Those places that change perf_event::ctx will hold both 1403 * perf_event_ctx::mutex of the 'old' and 'new' ctx value. 1404 * 1405 * Lock ordering is by mutex address. There are two other sites where 1406 * perf_event_context::mutex nests and those are: 1407 * 1408 * - perf_event_exit_task_context() [ child , 0 ] 1409 * perf_event_exit_event() 1410 * put_event() [ parent, 1 ] 1411 * 1412 * - perf_event_init_context() [ parent, 0 ] 1413 * inherit_task_group() 1414 * inherit_group() 1415 * inherit_event() 1416 * perf_event_alloc() 1417 * perf_init_event() 1418 * perf_try_init_event() [ child , 1 ] 1419 * 1420 * While it appears there is an obvious deadlock here -- the parent and child 1421 * nesting levels are inverted between the two. This is in fact safe because 1422 * life-time rules separate them. That is an exiting task cannot fork, and a 1423 * spawning task cannot (yet) exit. 1424 * 1425 * But remember that these are parent<->child context relations, and 1426 * migration does not affect children, therefore these two orderings should not 1427 * interact. 1428 * 1429 * The change in perf_event::ctx does not affect children (as claimed above) 1430 * because the sys_perf_event_open() case will install a new event and break 1431 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only 1432 * concerned with cpuctx and that doesn't have children. 1433 * 1434 * The places that change perf_event::ctx will issue: 1435 * 1436 * perf_remove_from_context(); 1437 * synchronize_rcu(); 1438 * perf_install_in_context(); 1439 * 1440 * to affect the change. The remove_from_context() + synchronize_rcu() should 1441 * quiesce the event, after which we can install it in the new location. This 1442 * means that only external vectors (perf_fops, prctl) can perturb the event 1443 * while in transit. Therefore all such accessors should also acquire 1444 * perf_event_context::mutex to serialize against this. 1445 * 1446 * However; because event->ctx can change while we're waiting to acquire 1447 * ctx->mutex we must be careful and use the below perf_event_ctx_lock() 1448 * function. 1449 * 1450 * Lock order: 1451 * exec_update_lock 1452 * task_struct::perf_event_mutex 1453 * perf_event_context::mutex 1454 * perf_event::child_mutex; 1455 * perf_event_context::lock 1456 * mmap_lock 1457 * perf_event::mmap_mutex 1458 * perf_buffer::aux_mutex 1459 * perf_addr_filters_head::lock 1460 * 1461 * cpu_hotplug_lock 1462 * pmus_lock 1463 * cpuctx->mutex / perf_event_context::mutex 1464 */ 1465 static struct perf_event_context * 1466 perf_event_ctx_lock_nested(struct perf_event *event, int nesting) 1467 { 1468 struct perf_event_context *ctx; 1469 1470 again: 1471 rcu_read_lock(); 1472 ctx = READ_ONCE(event->ctx); 1473 if (!refcount_inc_not_zero(&ctx->refcount)) { 1474 rcu_read_unlock(); 1475 goto again; 1476 } 1477 rcu_read_unlock(); 1478 1479 mutex_lock_nested(&ctx->mutex, nesting); 1480 if (event->ctx != ctx) { 1481 mutex_unlock(&ctx->mutex); 1482 put_ctx(ctx); 1483 goto again; 1484 } 1485 1486 return ctx; 1487 } 1488 1489 static inline struct perf_event_context * 1490 perf_event_ctx_lock(struct perf_event *event) 1491 { 1492 return perf_event_ctx_lock_nested(event, 0); 1493 } 1494 1495 static void perf_event_ctx_unlock(struct perf_event *event, 1496 struct perf_event_context *ctx) 1497 { 1498 mutex_unlock(&ctx->mutex); 1499 put_ctx(ctx); 1500 } 1501 1502 /* 1503 * This must be done under the ctx->lock, such as to serialize against 1504 * context_equiv(), therefore we cannot call put_ctx() since that might end up 1505 * calling scheduler related locks and ctx->lock nests inside those. 1506 */ 1507 static __must_check struct perf_event_context * 1508 unclone_ctx(struct perf_event_context *ctx) 1509 { 1510 struct perf_event_context *parent_ctx = ctx->parent_ctx; 1511 1512 lockdep_assert_held(&ctx->lock); 1513 1514 if (parent_ctx) 1515 ctx->parent_ctx = NULL; 1516 ctx->generation++; 1517 1518 return parent_ctx; 1519 } 1520 1521 static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p, 1522 enum pid_type type) 1523 { 1524 u32 nr; 1525 /* 1526 * only top level events have the pid namespace they were created in 1527 */ 1528 if (event->parent) 1529 event = event->parent; 1530 1531 nr = __task_pid_nr_ns(p, type, event->ns); 1532 /* avoid -1 if it is idle thread or runs in another ns */ 1533 if (!nr && !pid_alive(p)) 1534 nr = -1; 1535 return nr; 1536 } 1537 1538 static u32 perf_event_pid(struct perf_event *event, struct task_struct *p) 1539 { 1540 return perf_event_pid_type(event, p, PIDTYPE_TGID); 1541 } 1542 1543 static u32 perf_event_tid(struct perf_event *event, struct task_struct *p) 1544 { 1545 return perf_event_pid_type(event, p, PIDTYPE_PID); 1546 } 1547 1548 /* 1549 * If we inherit events we want to return the parent event id 1550 * to userspace. 1551 */ 1552 static u64 primary_event_id(struct perf_event *event) 1553 { 1554 u64 id = event->id; 1555 1556 if (event->parent) 1557 id = event->parent->id; 1558 1559 return id; 1560 } 1561 1562 /* 1563 * Get the perf_event_context for a task and lock it. 1564 * 1565 * This has to cope with the fact that until it is locked, 1566 * the context could get moved to another task. 1567 */ 1568 static struct perf_event_context * 1569 perf_lock_task_context(struct task_struct *task, unsigned long *flags) 1570 { 1571 struct perf_event_context *ctx; 1572 1573 retry: 1574 /* 1575 * One of the few rules of preemptible RCU is that one cannot do 1576 * rcu_read_unlock() while holding a scheduler (or nested) lock when 1577 * part of the read side critical section was irqs-enabled -- see 1578 * rcu_read_unlock_special(). 1579 * 1580 * Since ctx->lock nests under rq->lock we must ensure the entire read 1581 * side critical section has interrupts disabled. 1582 */ 1583 local_irq_save(*flags); 1584 rcu_read_lock(); 1585 ctx = rcu_dereference(task->perf_event_ctxp); 1586 if (ctx) { 1587 /* 1588 * If this context is a clone of another, it might 1589 * get swapped for another underneath us by 1590 * perf_event_task_sched_out, though the 1591 * rcu_read_lock() protects us from any context 1592 * getting freed. Lock the context and check if it 1593 * got swapped before we could get the lock, and retry 1594 * if so. If we locked the right context, then it 1595 * can't get swapped on us any more. 1596 */ 1597 raw_spin_lock(&ctx->lock); 1598 if (ctx != rcu_dereference(task->perf_event_ctxp)) { 1599 raw_spin_unlock(&ctx->lock); 1600 rcu_read_unlock(); 1601 local_irq_restore(*flags); 1602 goto retry; 1603 } 1604 1605 if (ctx->task == TASK_TOMBSTONE || 1606 !refcount_inc_not_zero(&ctx->refcount)) { 1607 raw_spin_unlock(&ctx->lock); 1608 ctx = NULL; 1609 } else { 1610 WARN_ON_ONCE(ctx->task != task); 1611 } 1612 } 1613 rcu_read_unlock(); 1614 if (!ctx) 1615 local_irq_restore(*flags); 1616 return ctx; 1617 } 1618 1619 /* 1620 * Get the context for a task and increment its pin_count so it 1621 * can't get swapped to another task. This also increments its 1622 * reference count so that the context can't get freed. 1623 */ 1624 static struct perf_event_context * 1625 perf_pin_task_context(struct task_struct *task) 1626 { 1627 struct perf_event_context *ctx; 1628 unsigned long flags; 1629 1630 ctx = perf_lock_task_context(task, &flags); 1631 if (ctx) { 1632 ++ctx->pin_count; 1633 raw_spin_unlock_irqrestore(&ctx->lock, flags); 1634 } 1635 return ctx; 1636 } 1637 1638 static void perf_unpin_context(struct perf_event_context *ctx) 1639 { 1640 unsigned long flags; 1641 1642 raw_spin_lock_irqsave(&ctx->lock, flags); 1643 --ctx->pin_count; 1644 raw_spin_unlock_irqrestore(&ctx->lock, flags); 1645 } 1646 1647 /* 1648 * Update the record of the current time in a context. 1649 */ 1650 static void __update_context_time(struct perf_event_context *ctx, bool adv) 1651 { 1652 lockdep_assert_held(&ctx->lock); 1653 1654 update_perf_time_ctx(&ctx->time, perf_clock(), adv); 1655 } 1656 1657 static void __update_context_guest_time(struct perf_event_context *ctx, bool adv) 1658 { 1659 lockdep_assert_held(&ctx->lock); 1660 1661 /* must be called after __update_context_time(); */ 1662 update_perf_time_ctx(&ctx->timeguest, ctx->time.stamp, adv); 1663 } 1664 1665 static void update_context_time(struct perf_event_context *ctx) 1666 { 1667 __update_context_time(ctx, true); 1668 if (is_guest_mediated_pmu_loaded()) 1669 __update_context_guest_time(ctx, true); 1670 } 1671 1672 static u64 perf_event_time(struct perf_event *event) 1673 { 1674 struct perf_event_context *ctx = event->ctx; 1675 1676 if (unlikely(!ctx)) 1677 return 0; 1678 1679 if (is_cgroup_event(event)) 1680 return perf_cgroup_event_time(event); 1681 1682 return __perf_event_time_ctx(event, &ctx->time); 1683 } 1684 1685 static u64 perf_event_time_now(struct perf_event *event, u64 now) 1686 { 1687 struct perf_event_context *ctx = event->ctx; 1688 1689 if (unlikely(!ctx)) 1690 return 0; 1691 1692 if (is_cgroup_event(event)) 1693 return perf_cgroup_event_time_now(event, now); 1694 1695 if (!(__load_acquire(&ctx->is_active) & EVENT_TIME)) 1696 return __perf_event_time_ctx(event, &ctx->time); 1697 1698 return __perf_event_time_ctx_now(event, &ctx->time, now); 1699 } 1700 1701 static enum event_type_t get_event_type(struct perf_event *event) 1702 { 1703 struct perf_event_context *ctx = event->ctx; 1704 enum event_type_t event_type; 1705 1706 lockdep_assert_held(&ctx->lock); 1707 1708 /* 1709 * It's 'group type', really, because if our group leader is 1710 * pinned, so are we. 1711 */ 1712 if (event->group_leader != event) 1713 event = event->group_leader; 1714 1715 event_type = event->attr.pinned ? EVENT_PINNED : EVENT_FLEXIBLE; 1716 if (!ctx->task) 1717 event_type |= EVENT_CPU; 1718 1719 return event_type; 1720 } 1721 1722 /* 1723 * Helper function to initialize event group nodes. 1724 */ 1725 static void init_event_group(struct perf_event *event) 1726 { 1727 RB_CLEAR_NODE(&event->group_node); 1728 event->group_index = 0; 1729 } 1730 1731 /* 1732 * Extract pinned or flexible groups from the context 1733 * based on event attrs bits. 1734 */ 1735 static struct perf_event_groups * 1736 get_event_groups(struct perf_event *event, struct perf_event_context *ctx) 1737 { 1738 if (event->attr.pinned) 1739 return &ctx->pinned_groups; 1740 else 1741 return &ctx->flexible_groups; 1742 } 1743 1744 /* 1745 * Helper function to initializes perf_event_group trees. 1746 */ 1747 static void perf_event_groups_init(struct perf_event_groups *groups) 1748 { 1749 groups->tree = RB_ROOT; 1750 groups->index = 0; 1751 } 1752 1753 static inline struct cgroup *event_cgroup(const struct perf_event *event) 1754 { 1755 struct cgroup *cgroup = NULL; 1756 1757 #ifdef CONFIG_CGROUP_PERF 1758 if (event->cgrp) 1759 cgroup = event->cgrp->css.cgroup; 1760 #endif 1761 1762 return cgroup; 1763 } 1764 1765 /* 1766 * Compare function for event groups; 1767 * 1768 * Implements complex key that first sorts by CPU and then by virtual index 1769 * which provides ordering when rotating groups for the same CPU. 1770 */ 1771 static __always_inline int 1772 perf_event_groups_cmp(const int left_cpu, const struct pmu *left_pmu, 1773 const struct cgroup *left_cgroup, const u64 left_group_index, 1774 const struct perf_event *right) 1775 { 1776 if (left_cpu < right->cpu) 1777 return -1; 1778 if (left_cpu > right->cpu) 1779 return 1; 1780 1781 if (left_pmu) { 1782 if (left_pmu < right->pmu_ctx->pmu) 1783 return -1; 1784 if (left_pmu > right->pmu_ctx->pmu) 1785 return 1; 1786 } 1787 1788 #ifdef CONFIG_CGROUP_PERF 1789 { 1790 const struct cgroup *right_cgroup = event_cgroup(right); 1791 1792 if (left_cgroup != right_cgroup) { 1793 if (!left_cgroup) { 1794 /* 1795 * Left has no cgroup but right does, no 1796 * cgroups come first. 1797 */ 1798 return -1; 1799 } 1800 if (!right_cgroup) { 1801 /* 1802 * Right has no cgroup but left does, no 1803 * cgroups come first. 1804 */ 1805 return 1; 1806 } 1807 /* Two dissimilar cgroups, order by id. */ 1808 if (cgroup_id(left_cgroup) < cgroup_id(right_cgroup)) 1809 return -1; 1810 1811 return 1; 1812 } 1813 } 1814 #endif 1815 1816 if (left_group_index < right->group_index) 1817 return -1; 1818 if (left_group_index > right->group_index) 1819 return 1; 1820 1821 return 0; 1822 } 1823 1824 #define __node_2_pe(node) \ 1825 rb_entry((node), struct perf_event, group_node) 1826 1827 static inline bool __group_less(struct rb_node *a, const struct rb_node *b) 1828 { 1829 struct perf_event *e = __node_2_pe(a); 1830 return perf_event_groups_cmp(e->cpu, e->pmu_ctx->pmu, event_cgroup(e), 1831 e->group_index, __node_2_pe(b)) < 0; 1832 } 1833 1834 struct __group_key { 1835 int cpu; 1836 struct pmu *pmu; 1837 struct cgroup *cgroup; 1838 }; 1839 1840 static inline int __group_cmp(const void *key, const struct rb_node *node) 1841 { 1842 const struct __group_key *a = key; 1843 const struct perf_event *b = __node_2_pe(node); 1844 1845 /* partial/subtree match: @cpu, @pmu, @cgroup; ignore: @group_index */ 1846 return perf_event_groups_cmp(a->cpu, a->pmu, a->cgroup, b->group_index, b); 1847 } 1848 1849 static inline int 1850 __group_cmp_ignore_cgroup(const void *key, const struct rb_node *node) 1851 { 1852 const struct __group_key *a = key; 1853 const struct perf_event *b = __node_2_pe(node); 1854 1855 /* partial/subtree match: @cpu, @pmu, ignore: @cgroup, @group_index */ 1856 return perf_event_groups_cmp(a->cpu, a->pmu, event_cgroup(b), 1857 b->group_index, b); 1858 } 1859 1860 /* 1861 * Insert @event into @groups' tree; using 1862 * {@event->cpu, @event->pmu_ctx->pmu, event_cgroup(@event), ++@groups->index} 1863 * as key. This places it last inside the {cpu,pmu,cgroup} subtree. 1864 */ 1865 static void 1866 perf_event_groups_insert(struct perf_event_groups *groups, 1867 struct perf_event *event) 1868 { 1869 event->group_index = ++groups->index; 1870 1871 rb_add(&event->group_node, &groups->tree, __group_less); 1872 } 1873 1874 /* 1875 * Helper function to insert event into the pinned or flexible groups. 1876 */ 1877 static void 1878 add_event_to_groups(struct perf_event *event, struct perf_event_context *ctx) 1879 { 1880 struct perf_event_groups *groups; 1881 1882 groups = get_event_groups(event, ctx); 1883 perf_event_groups_insert(groups, event); 1884 } 1885 1886 /* 1887 * Delete a group from a tree. 1888 */ 1889 static void 1890 perf_event_groups_delete(struct perf_event_groups *groups, 1891 struct perf_event *event) 1892 { 1893 WARN_ON_ONCE(RB_EMPTY_NODE(&event->group_node) || 1894 RB_EMPTY_ROOT(&groups->tree)); 1895 1896 rb_erase(&event->group_node, &groups->tree); 1897 init_event_group(event); 1898 } 1899 1900 /* 1901 * Helper function to delete event from its groups. 1902 */ 1903 static void 1904 del_event_from_groups(struct perf_event *event, struct perf_event_context *ctx) 1905 { 1906 struct perf_event_groups *groups; 1907 1908 groups = get_event_groups(event, ctx); 1909 perf_event_groups_delete(groups, event); 1910 } 1911 1912 /* 1913 * Get the leftmost event in the {cpu,pmu,cgroup} subtree. 1914 */ 1915 static struct perf_event * 1916 perf_event_groups_first(struct perf_event_groups *groups, int cpu, 1917 struct pmu *pmu, struct cgroup *cgrp) 1918 { 1919 struct __group_key key = { 1920 .cpu = cpu, 1921 .pmu = pmu, 1922 .cgroup = cgrp, 1923 }; 1924 struct rb_node *node; 1925 1926 node = rb_find_first(&key, &groups->tree, __group_cmp); 1927 if (node) 1928 return __node_2_pe(node); 1929 1930 return NULL; 1931 } 1932 1933 static struct perf_event * 1934 perf_event_groups_next(struct perf_event *event, struct pmu *pmu) 1935 { 1936 struct __group_key key = { 1937 .cpu = event->cpu, 1938 .pmu = pmu, 1939 .cgroup = event_cgroup(event), 1940 }; 1941 struct rb_node *next; 1942 1943 next = rb_next_match(&key, &event->group_node, __group_cmp); 1944 if (next) 1945 return __node_2_pe(next); 1946 1947 return NULL; 1948 } 1949 1950 #define perf_event_groups_for_cpu_pmu(event, groups, cpu, pmu) \ 1951 for (event = perf_event_groups_first(groups, cpu, pmu, NULL); \ 1952 event; event = perf_event_groups_next(event, pmu)) 1953 1954 /* 1955 * Iterate through the whole groups tree. 1956 */ 1957 #define perf_event_groups_for_each(event, groups) \ 1958 for (event = rb_entry_safe(rb_first(&((groups)->tree)), \ 1959 typeof(*event), group_node); event; \ 1960 event = rb_entry_safe(rb_next(&event->group_node), \ 1961 typeof(*event), group_node)) 1962 1963 /* 1964 * Does the event attribute request inherit with PERF_SAMPLE_READ 1965 */ 1966 static inline bool has_inherit_and_sample_read(struct perf_event_attr *attr) 1967 { 1968 return attr->inherit && (attr->sample_type & PERF_SAMPLE_READ); 1969 } 1970 1971 /* 1972 * Add an event from the lists for its context. 1973 * Must be called with ctx->mutex and ctx->lock held. 1974 */ 1975 static void 1976 list_add_event(struct perf_event *event, struct perf_event_context *ctx) 1977 { 1978 lockdep_assert_held(&ctx->lock); 1979 1980 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT); 1981 event->attach_state |= PERF_ATTACH_CONTEXT; 1982 1983 event->tstamp = perf_event_time(event); 1984 1985 /* 1986 * If we're a stand alone event or group leader, we go to the context 1987 * list, group events are kept attached to the group so that 1988 * perf_group_detach can, at all times, locate all siblings. 1989 */ 1990 if (event->group_leader == event) { 1991 event->group_caps = event->event_caps; 1992 add_event_to_groups(event, ctx); 1993 } 1994 1995 list_add_rcu(&event->event_entry, &ctx->event_list); 1996 ctx->nr_events++; 1997 if (event->hw.flags & PERF_EVENT_FLAG_USER_READ_CNT) 1998 ctx->nr_user++; 1999 if (event->attr.inherit_stat) 2000 ctx->nr_stat++; 2001 if (has_inherit_and_sample_read(&event->attr)) 2002 local_inc(&ctx->nr_no_switch_fast); 2003 2004 if (event->state > PERF_EVENT_STATE_OFF) 2005 perf_cgroup_event_enable(event, ctx); 2006 2007 ctx->generation++; 2008 event->pmu_ctx->nr_events++; 2009 } 2010 2011 /* 2012 * Initialize event state based on the perf_event_attr::disabled. 2013 */ 2014 static inline void perf_event__state_init(struct perf_event *event) 2015 { 2016 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF : 2017 PERF_EVENT_STATE_INACTIVE; 2018 } 2019 2020 static int __perf_event_read_size(u64 read_format, int nr_siblings) 2021 { 2022 int entry = sizeof(u64); /* value */ 2023 int size = 0; 2024 int nr = 1; 2025 2026 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) 2027 size += sizeof(u64); 2028 2029 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) 2030 size += sizeof(u64); 2031 2032 if (read_format & PERF_FORMAT_ID) 2033 entry += sizeof(u64); 2034 2035 if (read_format & PERF_FORMAT_LOST) 2036 entry += sizeof(u64); 2037 2038 if (read_format & PERF_FORMAT_GROUP) { 2039 nr += nr_siblings; 2040 size += sizeof(u64); 2041 } 2042 2043 /* 2044 * Since perf_event_validate_size() limits this to 16k and inhibits 2045 * adding more siblings, this will never overflow. 2046 */ 2047 return size + nr * entry; 2048 } 2049 2050 static void __perf_event_header_size(struct perf_event *event, u64 sample_type) 2051 { 2052 struct perf_sample_data *data; 2053 u16 size = 0; 2054 2055 if (sample_type & PERF_SAMPLE_IP) 2056 size += sizeof(data->ip); 2057 2058 if (sample_type & PERF_SAMPLE_ADDR) 2059 size += sizeof(data->addr); 2060 2061 if (sample_type & PERF_SAMPLE_PERIOD) 2062 size += sizeof(data->period); 2063 2064 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE) 2065 size += sizeof(data->weight.full); 2066 2067 if (sample_type & PERF_SAMPLE_READ) 2068 size += event->read_size; 2069 2070 if (sample_type & PERF_SAMPLE_DATA_SRC) 2071 size += sizeof(data->data_src.val); 2072 2073 if (sample_type & PERF_SAMPLE_TRANSACTION) 2074 size += sizeof(data->txn); 2075 2076 if (sample_type & PERF_SAMPLE_PHYS_ADDR) 2077 size += sizeof(data->phys_addr); 2078 2079 if (sample_type & PERF_SAMPLE_CGROUP) 2080 size += sizeof(data->cgroup); 2081 2082 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE) 2083 size += sizeof(data->data_page_size); 2084 2085 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE) 2086 size += sizeof(data->code_page_size); 2087 2088 event->header_size = size; 2089 } 2090 2091 /* 2092 * Called at perf_event creation and when events are attached/detached from a 2093 * group. 2094 */ 2095 static void perf_event__header_size(struct perf_event *event) 2096 { 2097 event->read_size = 2098 __perf_event_read_size(event->attr.read_format, 2099 event->group_leader->nr_siblings); 2100 __perf_event_header_size(event, event->attr.sample_type); 2101 } 2102 2103 static void perf_event__id_header_size(struct perf_event *event) 2104 { 2105 struct perf_sample_data *data; 2106 u64 sample_type = event->attr.sample_type; 2107 u16 size = 0; 2108 2109 if (sample_type & PERF_SAMPLE_TID) 2110 size += sizeof(data->tid_entry); 2111 2112 if (sample_type & PERF_SAMPLE_TIME) 2113 size += sizeof(data->time); 2114 2115 if (sample_type & PERF_SAMPLE_IDENTIFIER) 2116 size += sizeof(data->id); 2117 2118 if (sample_type & PERF_SAMPLE_ID) 2119 size += sizeof(data->id); 2120 2121 if (sample_type & PERF_SAMPLE_STREAM_ID) 2122 size += sizeof(data->stream_id); 2123 2124 if (sample_type & PERF_SAMPLE_CPU) 2125 size += sizeof(data->cpu_entry); 2126 2127 event->id_header_size = size; 2128 } 2129 2130 /* 2131 * Check that adding an event to the group does not result in anybody 2132 * overflowing the 64k event limit imposed by the output buffer. 2133 * 2134 * Specifically, check that the read_size for the event does not exceed 16k, 2135 * read_size being the one term that grows with groups size. Since read_size 2136 * depends on per-event read_format, also (re)check the existing events. 2137 * 2138 * This leaves 48k for the constant size fields and things like callchains, 2139 * branch stacks and register sets. 2140 */ 2141 static bool perf_event_validate_size(struct perf_event *event) 2142 { 2143 struct perf_event *sibling, *group_leader = event->group_leader; 2144 2145 if (__perf_event_read_size(event->attr.read_format, 2146 group_leader->nr_siblings + 1) > 16*1024) 2147 return false; 2148 2149 if (__perf_event_read_size(group_leader->attr.read_format, 2150 group_leader->nr_siblings + 1) > 16*1024) 2151 return false; 2152 2153 /* 2154 * When creating a new group leader, group_leader->ctx is initialized 2155 * after the size has been validated, but we cannot safely use 2156 * for_each_sibling_event() until group_leader->ctx is set. A new group 2157 * leader cannot have any siblings yet, so we can safely skip checking 2158 * the non-existent siblings. 2159 */ 2160 if (event == group_leader) 2161 return true; 2162 2163 for_each_sibling_event(sibling, group_leader) { 2164 if (__perf_event_read_size(sibling->attr.read_format, 2165 group_leader->nr_siblings + 1) > 16*1024) 2166 return false; 2167 } 2168 2169 return true; 2170 } 2171 2172 static void perf_group_attach(struct perf_event *event) 2173 { 2174 struct perf_event *group_leader = event->group_leader, *pos; 2175 2176 lockdep_assert_held(&event->ctx->lock); 2177 2178 /* 2179 * We can have double attach due to group movement (move_group) in 2180 * perf_event_open(). 2181 */ 2182 if (event->attach_state & PERF_ATTACH_GROUP) 2183 return; 2184 2185 event->attach_state |= PERF_ATTACH_GROUP; 2186 2187 if (group_leader == event) 2188 return; 2189 2190 WARN_ON_ONCE(group_leader->ctx != event->ctx); 2191 2192 group_leader->group_caps &= event->event_caps; 2193 2194 list_add_tail(&event->sibling_list, &group_leader->sibling_list); 2195 group_leader->nr_siblings++; 2196 group_leader->group_generation++; 2197 2198 perf_event__header_size(group_leader); 2199 2200 for_each_sibling_event(pos, group_leader) 2201 perf_event__header_size(pos); 2202 } 2203 2204 /* 2205 * Remove an event from the lists for its context. 2206 * Must be called with ctx->mutex and ctx->lock held. 2207 */ 2208 static void 2209 list_del_event(struct perf_event *event, struct perf_event_context *ctx) 2210 { 2211 WARN_ON_ONCE(event->ctx != ctx); 2212 lockdep_assert_held(&ctx->lock); 2213 2214 /* 2215 * We can have double detach due to exit/hot-unplug + close. 2216 */ 2217 if (!(event->attach_state & PERF_ATTACH_CONTEXT)) 2218 return; 2219 2220 event->attach_state &= ~PERF_ATTACH_CONTEXT; 2221 2222 ctx->nr_events--; 2223 if (event->hw.flags & PERF_EVENT_FLAG_USER_READ_CNT) 2224 ctx->nr_user--; 2225 if (event->attr.inherit_stat) 2226 ctx->nr_stat--; 2227 if (has_inherit_and_sample_read(&event->attr)) 2228 local_dec(&ctx->nr_no_switch_fast); 2229 2230 list_del_rcu(&event->event_entry); 2231 2232 if (event->group_leader == event) 2233 del_event_from_groups(event, ctx); 2234 2235 ctx->generation++; 2236 event->pmu_ctx->nr_events--; 2237 } 2238 2239 static int 2240 perf_aux_output_match(struct perf_event *event, struct perf_event *aux_event) 2241 { 2242 if (!has_aux(aux_event)) 2243 return 0; 2244 2245 if (!event->pmu->aux_output_match) 2246 return 0; 2247 2248 return event->pmu->aux_output_match(aux_event); 2249 } 2250 2251 static void put_event(struct perf_event *event); 2252 static void __event_disable(struct perf_event *event, 2253 struct perf_event_context *ctx, 2254 enum perf_event_state state); 2255 2256 static void perf_put_aux_event(struct perf_event *event) 2257 { 2258 struct perf_event_context *ctx = event->ctx; 2259 struct perf_event *iter; 2260 2261 /* 2262 * If event uses aux_event tear down the link 2263 */ 2264 if (event->aux_event) { 2265 iter = event->aux_event; 2266 event->aux_event = NULL; 2267 put_event(iter); 2268 return; 2269 } 2270 2271 /* 2272 * If the event is an aux_event, tear down all links to 2273 * it from other events. 2274 */ 2275 for_each_sibling_event(iter, event) { 2276 if (iter->aux_event != event) 2277 continue; 2278 2279 iter->aux_event = NULL; 2280 put_event(event); 2281 2282 /* 2283 * If it's ACTIVE, schedule it out and put it into ERROR 2284 * state so that we don't try to schedule it again. Note 2285 * that perf_event_enable() will clear the ERROR status. 2286 */ 2287 __event_disable(iter, ctx, PERF_EVENT_STATE_ERROR); 2288 } 2289 } 2290 2291 static bool perf_need_aux_event(struct perf_event *event) 2292 { 2293 return event->attr.aux_output || has_aux_action(event); 2294 } 2295 2296 static int perf_get_aux_event(struct perf_event *event, 2297 struct perf_event *group_leader) 2298 { 2299 /* 2300 * Our group leader must be an aux event if we want to be 2301 * an aux_output. This way, the aux event will precede its 2302 * aux_output events in the group, and therefore will always 2303 * schedule first. 2304 */ 2305 if (!group_leader) 2306 return 0; 2307 2308 /* 2309 * aux_output and aux_sample_size are mutually exclusive. 2310 */ 2311 if (event->attr.aux_output && event->attr.aux_sample_size) 2312 return 0; 2313 2314 if (event->attr.aux_output && 2315 !perf_aux_output_match(event, group_leader)) 2316 return 0; 2317 2318 if ((event->attr.aux_pause || event->attr.aux_resume) && 2319 !(group_leader->pmu->capabilities & PERF_PMU_CAP_AUX_PAUSE)) 2320 return 0; 2321 2322 if (event->attr.aux_sample_size && !group_leader->pmu->snapshot_aux) 2323 return 0; 2324 2325 if (!atomic_long_inc_not_zero(&group_leader->refcount)) 2326 return 0; 2327 2328 /* 2329 * Link aux_outputs to their aux event; this is undone in 2330 * perf_group_detach() by perf_put_aux_event(). When the 2331 * group in torn down, the aux_output events loose their 2332 * link to the aux_event and can't schedule any more. 2333 */ 2334 event->aux_event = group_leader; 2335 2336 return 1; 2337 } 2338 2339 static inline struct list_head *get_event_list(struct perf_event *event) 2340 { 2341 return event->attr.pinned ? &event->pmu_ctx->pinned_active : 2342 &event->pmu_ctx->flexible_active; 2343 } 2344 2345 static void perf_group_detach(struct perf_event *event) 2346 { 2347 struct perf_event *leader = event->group_leader; 2348 struct perf_event *sibling, *tmp; 2349 struct perf_event_context *ctx = event->ctx; 2350 2351 lockdep_assert_held(&ctx->lock); 2352 2353 /* 2354 * We can have double detach due to exit/hot-unplug + close. 2355 */ 2356 if (!(event->attach_state & PERF_ATTACH_GROUP)) 2357 return; 2358 2359 event->attach_state &= ~PERF_ATTACH_GROUP; 2360 2361 perf_put_aux_event(event); 2362 2363 /* 2364 * If this is a sibling, remove it from its group. 2365 */ 2366 if (leader != event) { 2367 list_del_init(&event->sibling_list); 2368 event->group_leader->nr_siblings--; 2369 event->group_leader->group_generation++; 2370 goto out; 2371 } 2372 2373 /* 2374 * If this was a group event with sibling events then 2375 * upgrade the siblings to singleton events by adding them 2376 * to whatever list we are on. 2377 */ 2378 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, sibling_list) { 2379 2380 /* 2381 * Events that have PERF_EV_CAP_SIBLING require being part of 2382 * a group and cannot exist on their own, schedule them out 2383 * and move them into the ERROR state. Also see 2384 * _perf_event_enable(), it will not be able to recover this 2385 * ERROR state. 2386 */ 2387 if (sibling->event_caps & PERF_EV_CAP_SIBLING) 2388 __event_disable(sibling, ctx, PERF_EVENT_STATE_ERROR); 2389 2390 sibling->group_leader = sibling; 2391 list_del_init(&sibling->sibling_list); 2392 2393 /* Inherit group flags from the previous leader */ 2394 sibling->group_caps = event->group_caps; 2395 2396 if (sibling->attach_state & PERF_ATTACH_CONTEXT) { 2397 add_event_to_groups(sibling, event->ctx); 2398 2399 if (sibling->state == PERF_EVENT_STATE_ACTIVE) 2400 list_add_tail(&sibling->active_list, get_event_list(sibling)); 2401 } 2402 2403 WARN_ON_ONCE(sibling->ctx != event->ctx); 2404 } 2405 2406 out: 2407 for_each_sibling_event(tmp, leader) 2408 perf_event__header_size(tmp); 2409 2410 perf_event__header_size(leader); 2411 } 2412 2413 static void perf_child_detach(struct perf_event *event) 2414 { 2415 struct perf_event *parent_event = event->parent; 2416 2417 if (!(event->attach_state & PERF_ATTACH_CHILD)) 2418 return; 2419 2420 event->attach_state &= ~PERF_ATTACH_CHILD; 2421 2422 if (WARN_ON_ONCE(!parent_event)) 2423 return; 2424 2425 /* 2426 * Can't check this from an IPI, the holder is likey another CPU. 2427 * 2428 lockdep_assert_held(&parent_event->child_mutex); 2429 */ 2430 2431 list_del_init(&event->child_list); 2432 } 2433 2434 static bool is_orphaned_event(struct perf_event *event) 2435 { 2436 return event->state == PERF_EVENT_STATE_DEAD; 2437 } 2438 2439 static inline int 2440 event_filter_match(struct perf_event *event) 2441 { 2442 return (event->cpu == -1 || event->cpu == smp_processor_id()) && 2443 perf_cgroup_match(event); 2444 } 2445 2446 static inline bool is_event_in_freq_mode(struct perf_event *event) 2447 { 2448 return event->attr.freq && event->attr.sample_freq; 2449 } 2450 2451 static void 2452 event_sched_out(struct perf_event *event, struct perf_event_context *ctx) 2453 { 2454 struct perf_event_pmu_context *epc = event->pmu_ctx; 2455 struct perf_cpu_pmu_context *cpc = this_cpc(epc->pmu); 2456 enum perf_event_state state = PERF_EVENT_STATE_INACTIVE; 2457 2458 // XXX cpc serialization, probably per-cpu IRQ disabled 2459 2460 WARN_ON_ONCE(event->ctx != ctx); 2461 lockdep_assert_held(&ctx->lock); 2462 2463 if (event->state != PERF_EVENT_STATE_ACTIVE) 2464 return; 2465 2466 /* 2467 * Asymmetry; we only schedule events _IN_ through ctx_sched_in(), but 2468 * we can schedule events _OUT_ individually through things like 2469 * __perf_remove_from_context(). 2470 */ 2471 list_del_init(&event->active_list); 2472 2473 perf_pmu_disable(event->pmu); 2474 2475 event->pmu->del(event, 0); 2476 event->oncpu = -1; 2477 2478 if (event->pending_disable) { 2479 event->pending_disable = 0; 2480 perf_cgroup_event_disable(event, ctx); 2481 state = PERF_EVENT_STATE_OFF; 2482 } 2483 2484 perf_event_set_state(event, state); 2485 2486 if (!is_software_event(event)) 2487 cpc->active_oncpu--; 2488 if (is_event_in_freq_mode(event)) { 2489 ctx->nr_freq--; 2490 epc->nr_freq--; 2491 } 2492 if (event->attr.exclusive || !cpc->active_oncpu) 2493 cpc->exclusive = 0; 2494 2495 perf_pmu_enable(event->pmu); 2496 } 2497 2498 static void 2499 group_sched_out(struct perf_event *group_event, struct perf_event_context *ctx) 2500 { 2501 struct perf_event *event; 2502 2503 if (group_event->state != PERF_EVENT_STATE_ACTIVE) 2504 return; 2505 2506 perf_assert_pmu_disabled(group_event->pmu_ctx->pmu); 2507 2508 event_sched_out(group_event, ctx); 2509 2510 /* 2511 * Schedule out siblings (if any): 2512 */ 2513 for_each_sibling_event(event, group_event) 2514 event_sched_out(event, ctx); 2515 } 2516 2517 static inline void 2518 __ctx_time_update(struct perf_cpu_context *cpuctx, struct perf_event_context *ctx, 2519 bool final, enum event_type_t event_type) 2520 { 2521 if (ctx->is_active & EVENT_TIME) { 2522 if (ctx->is_active & EVENT_FROZEN) 2523 return; 2524 2525 update_context_time(ctx); 2526 /* vPMU should not stop time */ 2527 update_cgrp_time_from_cpuctx(cpuctx, !(event_type & EVENT_GUEST) && final); 2528 } 2529 } 2530 2531 static inline void 2532 ctx_time_update(struct perf_cpu_context *cpuctx, struct perf_event_context *ctx) 2533 { 2534 __ctx_time_update(cpuctx, ctx, false, 0); 2535 } 2536 2537 /* 2538 * To be used inside perf_ctx_lock() / perf_ctx_unlock(). Lasts until perf_ctx_unlock(). 2539 */ 2540 static inline void 2541 ctx_time_freeze(struct perf_cpu_context *cpuctx, struct perf_event_context *ctx) 2542 { 2543 ctx_time_update(cpuctx, ctx); 2544 if (ctx->is_active & EVENT_TIME) 2545 ctx->is_active |= EVENT_FROZEN; 2546 } 2547 2548 static inline void 2549 ctx_time_update_event(struct perf_event_context *ctx, struct perf_event *event) 2550 { 2551 if (ctx->is_active & EVENT_TIME) { 2552 if (ctx->is_active & EVENT_FROZEN) 2553 return; 2554 update_context_time(ctx); 2555 update_cgrp_time_from_event(event); 2556 } 2557 } 2558 2559 #define DETACH_GROUP 0x01UL 2560 #define DETACH_CHILD 0x02UL 2561 #define DETACH_EXIT 0x04UL 2562 #define DETACH_REVOKE 0x08UL 2563 #define DETACH_DEAD 0x10UL 2564 2565 /* 2566 * Cross CPU call to remove a performance event 2567 * 2568 * We disable the event on the hardware level first. After that we 2569 * remove it from the context list. 2570 */ 2571 static void 2572 __perf_remove_from_context(struct perf_event *event, 2573 struct perf_cpu_context *cpuctx, 2574 struct perf_event_context *ctx, 2575 void *info) 2576 { 2577 struct perf_event_pmu_context *pmu_ctx = event->pmu_ctx; 2578 enum perf_event_state state = PERF_EVENT_STATE_OFF; 2579 unsigned long flags = (unsigned long)info; 2580 2581 ctx_time_update(cpuctx, ctx); 2582 2583 /* 2584 * Ensure event_sched_out() switches to OFF, at the very least 2585 * this avoids raising perf_pending_task() at this time. 2586 */ 2587 if (flags & DETACH_EXIT) 2588 state = PERF_EVENT_STATE_EXIT; 2589 if (flags & DETACH_REVOKE) 2590 state = PERF_EVENT_STATE_REVOKED; 2591 if (flags & DETACH_DEAD) 2592 state = PERF_EVENT_STATE_DEAD; 2593 2594 event_sched_out(event, ctx); 2595 2596 if (event->state > PERF_EVENT_STATE_OFF) 2597 perf_cgroup_event_disable(event, ctx); 2598 2599 perf_event_set_state(event, min(event->state, state)); 2600 2601 if (flags & DETACH_GROUP) 2602 perf_group_detach(event); 2603 if (flags & DETACH_CHILD) 2604 perf_child_detach(event); 2605 list_del_event(event, ctx); 2606 2607 if (!pmu_ctx->nr_events) { 2608 pmu_ctx->rotate_necessary = 0; 2609 2610 if (ctx->task && ctx->is_active) { 2611 struct perf_cpu_pmu_context *cpc = this_cpc(pmu_ctx->pmu); 2612 2613 WARN_ON_ONCE(cpc->task_epc && cpc->task_epc != pmu_ctx); 2614 cpc->task_epc = NULL; 2615 } 2616 } 2617 2618 if (!ctx->nr_events && ctx->is_active) { 2619 if (ctx == &cpuctx->ctx) 2620 update_cgrp_time_from_cpuctx(cpuctx, true); 2621 2622 ctx->is_active = 0; 2623 if (ctx->task) { 2624 WARN_ON_ONCE(cpuctx->task_ctx != ctx); 2625 cpuctx->task_ctx = NULL; 2626 } 2627 } 2628 } 2629 2630 /* 2631 * Remove the event from a task's (or a CPU's) list of events. 2632 * 2633 * If event->ctx is a cloned context, callers must make sure that 2634 * every task struct that event->ctx->task could possibly point to 2635 * remains valid. This is OK when called from perf_release since 2636 * that only calls us on the top-level context, which can't be a clone. 2637 * When called from perf_event_exit_task, it's OK because the 2638 * context has been detached from its task. 2639 */ 2640 static void perf_remove_from_context(struct perf_event *event, unsigned long flags) 2641 { 2642 struct perf_event_context *ctx = event->ctx; 2643 2644 lockdep_assert_held(&ctx->mutex); 2645 2646 /* 2647 * Because of perf_event_exit_task(), perf_remove_from_context() ought 2648 * to work in the face of TASK_TOMBSTONE, unlike every other 2649 * event_function_call() user. 2650 */ 2651 raw_spin_lock_irq(&ctx->lock); 2652 if (!ctx->is_active) { 2653 __perf_remove_from_context(event, this_cpu_ptr(&perf_cpu_context), 2654 ctx, (void *)flags); 2655 raw_spin_unlock_irq(&ctx->lock); 2656 return; 2657 } 2658 raw_spin_unlock_irq(&ctx->lock); 2659 2660 event_function_call(event, __perf_remove_from_context, (void *)flags); 2661 } 2662 2663 static void __event_disable(struct perf_event *event, 2664 struct perf_event_context *ctx, 2665 enum perf_event_state state) 2666 { 2667 event_sched_out(event, ctx); 2668 perf_cgroup_event_disable(event, ctx); 2669 perf_event_set_state(event, state); 2670 } 2671 2672 /* 2673 * Cross CPU call to disable a performance event 2674 */ 2675 static void __perf_event_disable(struct perf_event *event, 2676 struct perf_cpu_context *cpuctx, 2677 struct perf_event_context *ctx, 2678 void *info) 2679 { 2680 if (event->state < PERF_EVENT_STATE_INACTIVE) 2681 return; 2682 2683 perf_pmu_disable(event->pmu_ctx->pmu); 2684 ctx_time_update_event(ctx, event); 2685 2686 /* 2687 * When disabling a group leader, the whole group becomes ineligible 2688 * to run, so schedule out the full group. 2689 */ 2690 if (event == event->group_leader) 2691 group_sched_out(event, ctx); 2692 2693 /* 2694 * But only mark the leader OFF; the siblings will remain 2695 * INACTIVE. 2696 */ 2697 __event_disable(event, ctx, PERF_EVENT_STATE_OFF); 2698 2699 perf_pmu_enable(event->pmu_ctx->pmu); 2700 } 2701 2702 /* 2703 * Disable an event. 2704 * 2705 * If event->ctx is a cloned context, callers must make sure that 2706 * every task struct that event->ctx->task could possibly point to 2707 * remains valid. This condition is satisfied when called through 2708 * perf_event_for_each_child or perf_event_for_each because they 2709 * hold the top-level event's child_mutex, so any descendant that 2710 * goes to exit will block in perf_event_exit_event(). 2711 * 2712 * When called from perf_pending_disable it's OK because event->ctx 2713 * is the current context on this CPU and preemption is disabled, 2714 * hence we can't get into perf_event_task_sched_out for this context. 2715 */ 2716 static void _perf_event_disable(struct perf_event *event) 2717 { 2718 struct perf_event_context *ctx = event->ctx; 2719 2720 raw_spin_lock_irq(&ctx->lock); 2721 if (event->state <= PERF_EVENT_STATE_OFF) { 2722 raw_spin_unlock_irq(&ctx->lock); 2723 return; 2724 } 2725 raw_spin_unlock_irq(&ctx->lock); 2726 2727 event_function_call(event, __perf_event_disable, NULL); 2728 } 2729 2730 void perf_event_disable_local(struct perf_event *event) 2731 { 2732 event_function_local(event, __perf_event_disable, NULL); 2733 } 2734 2735 /* 2736 * Strictly speaking kernel users cannot create groups and therefore this 2737 * interface does not need the perf_event_ctx_lock() magic. 2738 */ 2739 void perf_event_disable(struct perf_event *event) 2740 { 2741 struct perf_event_context *ctx; 2742 2743 ctx = perf_event_ctx_lock(event); 2744 _perf_event_disable(event); 2745 perf_event_ctx_unlock(event, ctx); 2746 } 2747 EXPORT_SYMBOL_GPL(perf_event_disable); 2748 2749 void perf_event_disable_inatomic(struct perf_event *event) 2750 { 2751 event->pending_disable = 1; 2752 irq_work_queue(&event->pending_disable_irq); 2753 } 2754 2755 #define MAX_INTERRUPTS (~0ULL) 2756 2757 static void perf_log_throttle(struct perf_event *event, int enable); 2758 static void perf_log_itrace_start(struct perf_event *event); 2759 2760 static void perf_event_unthrottle(struct perf_event *event, bool start) 2761 { 2762 if (event->state != PERF_EVENT_STATE_ACTIVE) 2763 return; 2764 2765 event->hw.interrupts = 0; 2766 if (start) 2767 event->pmu->start(event, 0); 2768 if (event == event->group_leader) 2769 perf_log_throttle(event, 1); 2770 } 2771 2772 static void perf_event_throttle(struct perf_event *event) 2773 { 2774 if (event->state != PERF_EVENT_STATE_ACTIVE) 2775 return; 2776 2777 event->hw.interrupts = MAX_INTERRUPTS; 2778 event->pmu->stop(event, 0); 2779 if (event == event->group_leader) 2780 perf_log_throttle(event, 0); 2781 } 2782 2783 static void perf_event_unthrottle_group(struct perf_event *event, bool skip_start_event) 2784 { 2785 struct perf_event *sibling, *leader = event->group_leader; 2786 2787 perf_event_unthrottle(leader, skip_start_event ? leader != event : true); 2788 for_each_sibling_event(sibling, leader) 2789 perf_event_unthrottle(sibling, skip_start_event ? sibling != event : true); 2790 } 2791 2792 static void perf_event_throttle_group(struct perf_event *event) 2793 { 2794 struct perf_event *sibling, *leader = event->group_leader; 2795 2796 perf_event_throttle(leader); 2797 for_each_sibling_event(sibling, leader) 2798 perf_event_throttle(sibling); 2799 } 2800 2801 static int 2802 event_sched_in(struct perf_event *event, struct perf_event_context *ctx) 2803 { 2804 struct perf_event_pmu_context *epc = event->pmu_ctx; 2805 struct perf_cpu_pmu_context *cpc = this_cpc(epc->pmu); 2806 int ret = 0; 2807 2808 WARN_ON_ONCE(event->ctx != ctx); 2809 2810 lockdep_assert_held(&ctx->lock); 2811 2812 if (event->state <= PERF_EVENT_STATE_OFF) 2813 return 0; 2814 2815 WRITE_ONCE(event->oncpu, smp_processor_id()); 2816 /* 2817 * Order event::oncpu write to happen before the ACTIVE state is 2818 * visible. This allows perf_event_{stop,read}() to observe the correct 2819 * ->oncpu if it sees ACTIVE. 2820 */ 2821 smp_wmb(); 2822 perf_event_set_state(event, PERF_EVENT_STATE_ACTIVE); 2823 2824 /* 2825 * Unthrottle events, since we scheduled we might have missed several 2826 * ticks already, also for a heavily scheduling task there is little 2827 * guarantee it'll get a tick in a timely manner. 2828 */ 2829 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) 2830 perf_event_unthrottle(event, false); 2831 2832 perf_pmu_disable(event->pmu); 2833 2834 perf_log_itrace_start(event); 2835 2836 if (event->pmu->add(event, PERF_EF_START)) { 2837 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE); 2838 event->oncpu = -1; 2839 ret = -EAGAIN; 2840 goto out; 2841 } 2842 2843 if (!is_software_event(event)) 2844 cpc->active_oncpu++; 2845 if (is_event_in_freq_mode(event)) { 2846 ctx->nr_freq++; 2847 epc->nr_freq++; 2848 } 2849 if (event->attr.exclusive) 2850 cpc->exclusive = 1; 2851 2852 out: 2853 perf_pmu_enable(event->pmu); 2854 2855 return ret; 2856 } 2857 2858 static int 2859 group_sched_in(struct perf_event *group_event, struct perf_event_context *ctx) 2860 { 2861 struct perf_event *event, *partial_group = NULL; 2862 struct pmu *pmu = group_event->pmu_ctx->pmu; 2863 2864 if (group_event->state == PERF_EVENT_STATE_OFF) 2865 return 0; 2866 2867 pmu->start_txn(pmu, PERF_PMU_TXN_ADD); 2868 2869 if (event_sched_in(group_event, ctx)) 2870 goto error; 2871 2872 /* 2873 * Schedule in siblings as one group (if any): 2874 */ 2875 for_each_sibling_event(event, group_event) { 2876 if (event_sched_in(event, ctx)) { 2877 partial_group = event; 2878 goto group_error; 2879 } 2880 } 2881 2882 if (!pmu->commit_txn(pmu)) 2883 return 0; 2884 2885 group_error: 2886 /* 2887 * Groups can be scheduled in as one unit only, so undo any 2888 * partial group before returning: 2889 * The events up to the failed event are scheduled out normally. 2890 */ 2891 for_each_sibling_event(event, group_event) { 2892 if (event == partial_group) 2893 break; 2894 2895 event_sched_out(event, ctx); 2896 } 2897 event_sched_out(group_event, ctx); 2898 2899 error: 2900 pmu->cancel_txn(pmu); 2901 return -EAGAIN; 2902 } 2903 2904 /* 2905 * Work out whether we can put this event group on the CPU now. 2906 */ 2907 static int group_can_go_on(struct perf_event *event, int can_add_hw) 2908 { 2909 struct perf_event_pmu_context *epc = event->pmu_ctx; 2910 struct perf_cpu_pmu_context *cpc = this_cpc(epc->pmu); 2911 2912 /* 2913 * Groups consisting entirely of software events can always go on. 2914 */ 2915 if (event->group_caps & PERF_EV_CAP_SOFTWARE) 2916 return 1; 2917 /* 2918 * If an exclusive group is already on, no other hardware 2919 * events can go on. 2920 */ 2921 if (cpc->exclusive) 2922 return 0; 2923 /* 2924 * If this group is exclusive and there are already 2925 * events on the CPU, it can't go on. 2926 */ 2927 if (event->attr.exclusive && !list_empty(get_event_list(event))) 2928 return 0; 2929 /* 2930 * Otherwise, try to add it if all previous groups were able 2931 * to go on. 2932 */ 2933 return can_add_hw; 2934 } 2935 2936 static void add_event_to_ctx(struct perf_event *event, 2937 struct perf_event_context *ctx) 2938 { 2939 list_add_event(event, ctx); 2940 perf_group_attach(event); 2941 } 2942 2943 static void task_ctx_sched_out(struct perf_event_context *ctx, 2944 struct pmu *pmu, 2945 enum event_type_t event_type) 2946 { 2947 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 2948 2949 if (!cpuctx->task_ctx) 2950 return; 2951 2952 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx)) 2953 return; 2954 2955 ctx_sched_out(ctx, pmu, event_type); 2956 } 2957 2958 static void perf_event_sched_in(struct perf_cpu_context *cpuctx, 2959 struct perf_event_context *ctx, 2960 struct pmu *pmu, 2961 enum event_type_t event_type) 2962 { 2963 ctx_sched_in(&cpuctx->ctx, pmu, EVENT_PINNED | event_type); 2964 if (ctx) 2965 ctx_sched_in(ctx, pmu, EVENT_PINNED | event_type); 2966 ctx_sched_in(&cpuctx->ctx, pmu, EVENT_FLEXIBLE | event_type); 2967 if (ctx) 2968 ctx_sched_in(ctx, pmu, EVENT_FLEXIBLE | event_type); 2969 } 2970 2971 /* 2972 * We want to maintain the following priority of scheduling: 2973 * - CPU pinned (EVENT_CPU | EVENT_PINNED) 2974 * - task pinned (EVENT_PINNED) 2975 * - CPU flexible (EVENT_CPU | EVENT_FLEXIBLE) 2976 * - task flexible (EVENT_FLEXIBLE). 2977 * 2978 * In order to avoid unscheduling and scheduling back in everything every 2979 * time an event is added, only do it for the groups of equal priority and 2980 * below. 2981 * 2982 * This can be called after a batch operation on task events, in which case 2983 * event_type is a bit mask of the types of events involved. For CPU events, 2984 * event_type is only either EVENT_PINNED or EVENT_FLEXIBLE. 2985 */ 2986 static void ctx_resched(struct perf_cpu_context *cpuctx, 2987 struct perf_event_context *task_ctx, 2988 struct pmu *pmu, enum event_type_t event_type) 2989 { 2990 bool cpu_event = !!(event_type & EVENT_CPU); 2991 struct perf_event_pmu_context *epc; 2992 2993 /* 2994 * If pinned groups are involved, flexible groups also need to be 2995 * scheduled out. 2996 */ 2997 if (event_type & EVENT_PINNED) 2998 event_type |= EVENT_FLEXIBLE; 2999 3000 event_type &= EVENT_ALL; 3001 3002 for_each_epc(epc, &cpuctx->ctx, pmu, 0) 3003 perf_pmu_disable(epc->pmu); 3004 3005 if (task_ctx) { 3006 for_each_epc(epc, task_ctx, pmu, 0) 3007 perf_pmu_disable(epc->pmu); 3008 3009 task_ctx_sched_out(task_ctx, pmu, event_type); 3010 } 3011 3012 /* 3013 * Decide which cpu ctx groups to schedule out based on the types 3014 * of events that caused rescheduling: 3015 * - EVENT_CPU: schedule out corresponding groups; 3016 * - EVENT_PINNED task events: schedule out EVENT_FLEXIBLE groups; 3017 * - otherwise, do nothing more. 3018 */ 3019 if (cpu_event) 3020 ctx_sched_out(&cpuctx->ctx, pmu, event_type); 3021 else if (event_type & EVENT_PINNED) 3022 ctx_sched_out(&cpuctx->ctx, pmu, EVENT_FLEXIBLE); 3023 3024 perf_event_sched_in(cpuctx, task_ctx, pmu, 0); 3025 3026 for_each_epc(epc, &cpuctx->ctx, pmu, 0) 3027 perf_pmu_enable(epc->pmu); 3028 3029 if (task_ctx) { 3030 for_each_epc(epc, task_ctx, pmu, 0) 3031 perf_pmu_enable(epc->pmu); 3032 } 3033 } 3034 3035 void perf_pmu_resched(struct pmu *pmu) 3036 { 3037 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 3038 struct perf_event_context *task_ctx = cpuctx->task_ctx; 3039 3040 perf_ctx_lock(cpuctx, task_ctx); 3041 ctx_resched(cpuctx, task_ctx, pmu, EVENT_ALL|EVENT_CPU); 3042 perf_ctx_unlock(cpuctx, task_ctx); 3043 } 3044 3045 /* 3046 * Cross CPU call to install and enable a performance event 3047 * 3048 * Very similar to remote_function() + event_function() but cannot assume that 3049 * things like ctx->is_active and cpuctx->task_ctx are set. 3050 */ 3051 static int __perf_install_in_context(void *info) 3052 { 3053 struct perf_event *event = info; 3054 struct perf_event_context *ctx = event->ctx; 3055 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 3056 struct perf_event_context *task_ctx = cpuctx->task_ctx; 3057 bool reprogram = true; 3058 int ret = 0; 3059 3060 raw_spin_lock(&cpuctx->ctx.lock); 3061 if (ctx->task) { 3062 raw_spin_lock(&ctx->lock); 3063 task_ctx = ctx; 3064 3065 reprogram = (ctx->task == current); 3066 3067 /* 3068 * If the task is running, it must be running on this CPU, 3069 * otherwise we cannot reprogram things. 3070 * 3071 * If its not running, we don't care, ctx->lock will 3072 * serialize against it becoming runnable. 3073 */ 3074 if (task_curr(ctx->task) && !reprogram) { 3075 ret = -ESRCH; 3076 goto unlock; 3077 } 3078 3079 WARN_ON_ONCE(reprogram && cpuctx->task_ctx && cpuctx->task_ctx != ctx); 3080 } else if (task_ctx) { 3081 raw_spin_lock(&task_ctx->lock); 3082 } 3083 3084 #ifdef CONFIG_CGROUP_PERF 3085 if (event->state > PERF_EVENT_STATE_OFF && is_cgroup_event(event)) { 3086 /* 3087 * If the current cgroup doesn't match the event's 3088 * cgroup, we should not try to schedule it. 3089 */ 3090 struct perf_cgroup *cgrp = perf_cgroup_from_task(current, ctx); 3091 reprogram = cgroup_is_descendant(cgrp->css.cgroup, 3092 event->cgrp->css.cgroup); 3093 } 3094 #endif 3095 3096 if (reprogram) { 3097 ctx_time_freeze(cpuctx, ctx); 3098 add_event_to_ctx(event, ctx); 3099 ctx_resched(cpuctx, task_ctx, event->pmu_ctx->pmu, 3100 get_event_type(event)); 3101 } else { 3102 add_event_to_ctx(event, ctx); 3103 } 3104 3105 unlock: 3106 perf_ctx_unlock(cpuctx, task_ctx); 3107 3108 return ret; 3109 } 3110 3111 static bool exclusive_event_installable(struct perf_event *event, 3112 struct perf_event_context *ctx); 3113 3114 /* 3115 * Attach a performance event to a context. 3116 * 3117 * Very similar to event_function_call, see comment there. 3118 */ 3119 static void 3120 perf_install_in_context(struct perf_event_context *ctx, 3121 struct perf_event *event, 3122 int cpu) 3123 { 3124 struct task_struct *task = READ_ONCE(ctx->task); 3125 3126 lockdep_assert_held(&ctx->mutex); 3127 3128 WARN_ON_ONCE(!exclusive_event_installable(event, ctx)); 3129 3130 if (event->cpu != -1) 3131 WARN_ON_ONCE(event->cpu != cpu); 3132 3133 /* 3134 * Ensures that if we can observe event->ctx, both the event and ctx 3135 * will be 'complete'. See perf_iterate_sb_cpu(). 3136 */ 3137 smp_store_release(&event->ctx, ctx); 3138 3139 /* 3140 * perf_event_attr::disabled events will not run and can be initialized 3141 * without IPI. Except when this is the first event for the context, in 3142 * that case we need the magic of the IPI to set ctx->is_active. 3143 * 3144 * The IOC_ENABLE that is sure to follow the creation of a disabled 3145 * event will issue the IPI and reprogram the hardware. 3146 */ 3147 if (__perf_effective_state(event) == PERF_EVENT_STATE_OFF && 3148 ctx->nr_events && !is_cgroup_event(event)) { 3149 raw_spin_lock_irq(&ctx->lock); 3150 if (ctx->task == TASK_TOMBSTONE) { 3151 raw_spin_unlock_irq(&ctx->lock); 3152 return; 3153 } 3154 add_event_to_ctx(event, ctx); 3155 raw_spin_unlock_irq(&ctx->lock); 3156 return; 3157 } 3158 3159 if (!task) { 3160 cpu_function_call(cpu, __perf_install_in_context, event); 3161 return; 3162 } 3163 3164 /* 3165 * Should not happen, we validate the ctx is still alive before calling. 3166 */ 3167 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) 3168 return; 3169 3170 /* 3171 * Installing events is tricky because we cannot rely on ctx->is_active 3172 * to be set in case this is the nr_events 0 -> 1 transition. 3173 * 3174 * Instead we use task_curr(), which tells us if the task is running. 3175 * However, since we use task_curr() outside of rq::lock, we can race 3176 * against the actual state. This means the result can be wrong. 3177 * 3178 * If we get a false positive, we retry, this is harmless. 3179 * 3180 * If we get a false negative, things are complicated. If we are after 3181 * perf_event_context_sched_in() ctx::lock will serialize us, and the 3182 * value must be correct. If we're before, it doesn't matter since 3183 * perf_event_context_sched_in() will program the counter. 3184 * 3185 * However, this hinges on the remote context switch having observed 3186 * our task->perf_event_ctxp[] store, such that it will in fact take 3187 * ctx::lock in perf_event_context_sched_in(). 3188 * 3189 * We do this by task_function_call(), if the IPI fails to hit the task 3190 * we know any future context switch of task must see the 3191 * perf_event_ctpx[] store. 3192 */ 3193 3194 /* 3195 * This smp_mb() orders the task->perf_event_ctxp[] store with the 3196 * task_cpu() load, such that if the IPI then does not find the task 3197 * running, a future context switch of that task must observe the 3198 * store. 3199 */ 3200 smp_mb(); 3201 again: 3202 if (!task_function_call(task, __perf_install_in_context, event)) 3203 return; 3204 3205 raw_spin_lock_irq(&ctx->lock); 3206 task = ctx->task; 3207 if (WARN_ON_ONCE(task == TASK_TOMBSTONE)) { 3208 /* 3209 * Cannot happen because we already checked above (which also 3210 * cannot happen), and we hold ctx->mutex, which serializes us 3211 * against perf_event_exit_task_context(). 3212 */ 3213 raw_spin_unlock_irq(&ctx->lock); 3214 return; 3215 } 3216 /* 3217 * If the task is not running, ctx->lock will avoid it becoming so, 3218 * thus we can safely install the event. 3219 */ 3220 if (task_curr(task)) { 3221 raw_spin_unlock_irq(&ctx->lock); 3222 goto again; 3223 } 3224 add_event_to_ctx(event, ctx); 3225 raw_spin_unlock_irq(&ctx->lock); 3226 } 3227 3228 /* 3229 * Cross CPU call to enable a performance event 3230 */ 3231 static void __perf_event_enable(struct perf_event *event, 3232 struct perf_cpu_context *cpuctx, 3233 struct perf_event_context *ctx, 3234 void *info) 3235 { 3236 struct perf_event *leader = event->group_leader; 3237 struct perf_event_context *task_ctx; 3238 3239 if (event->state >= PERF_EVENT_STATE_INACTIVE || 3240 event->state <= PERF_EVENT_STATE_ERROR) 3241 return; 3242 3243 ctx_time_freeze(cpuctx, ctx); 3244 3245 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE); 3246 perf_cgroup_event_enable(event, ctx); 3247 3248 if (!ctx->is_active) 3249 return; 3250 3251 if (!event_filter_match(event)) 3252 return; 3253 3254 /* 3255 * If the event is in a group and isn't the group leader, 3256 * then don't put it on unless the group is on. 3257 */ 3258 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE) 3259 return; 3260 3261 task_ctx = cpuctx->task_ctx; 3262 if (ctx->task) 3263 WARN_ON_ONCE(task_ctx != ctx); 3264 3265 ctx_resched(cpuctx, task_ctx, event->pmu_ctx->pmu, get_event_type(event)); 3266 } 3267 3268 /* 3269 * Enable an event. 3270 * 3271 * If event->ctx is a cloned context, callers must make sure that 3272 * every task struct that event->ctx->task could possibly point to 3273 * remains valid. This condition is satisfied when called through 3274 * perf_event_for_each_child or perf_event_for_each as described 3275 * for perf_event_disable. 3276 */ 3277 static void _perf_event_enable(struct perf_event *event) 3278 { 3279 struct perf_event_context *ctx = event->ctx; 3280 3281 raw_spin_lock_irq(&ctx->lock); 3282 if (event->state >= PERF_EVENT_STATE_INACTIVE || 3283 event->state < PERF_EVENT_STATE_ERROR) { 3284 out: 3285 raw_spin_unlock_irq(&ctx->lock); 3286 return; 3287 } 3288 3289 /* 3290 * If the event is in error state, clear that first. 3291 * 3292 * That way, if we see the event in error state below, we know that it 3293 * has gone back into error state, as distinct from the task having 3294 * been scheduled away before the cross-call arrived. 3295 */ 3296 if (event->state == PERF_EVENT_STATE_ERROR) { 3297 /* 3298 * Detached SIBLING events cannot leave ERROR state. 3299 */ 3300 if (event->event_caps & PERF_EV_CAP_SIBLING && 3301 event->group_leader == event) 3302 goto out; 3303 3304 event->state = PERF_EVENT_STATE_OFF; 3305 } 3306 raw_spin_unlock_irq(&ctx->lock); 3307 3308 event_function_call(event, __perf_event_enable, NULL); 3309 } 3310 3311 /* 3312 * See perf_event_disable(); 3313 */ 3314 void perf_event_enable(struct perf_event *event) 3315 { 3316 struct perf_event_context *ctx; 3317 3318 ctx = perf_event_ctx_lock(event); 3319 _perf_event_enable(event); 3320 perf_event_ctx_unlock(event, ctx); 3321 } 3322 EXPORT_SYMBOL_GPL(perf_event_enable); 3323 3324 struct stop_event_data { 3325 struct perf_event *event; 3326 unsigned int restart; 3327 }; 3328 3329 static int __perf_event_stop(void *info) 3330 { 3331 struct stop_event_data *sd = info; 3332 struct perf_event *event = sd->event; 3333 3334 /* if it's already INACTIVE, do nothing */ 3335 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE) 3336 return 0; 3337 3338 /* matches smp_wmb() in event_sched_in() */ 3339 smp_rmb(); 3340 3341 /* 3342 * There is a window with interrupts enabled before we get here, 3343 * so we need to check again lest we try to stop another CPU's event. 3344 */ 3345 if (READ_ONCE(event->oncpu) != smp_processor_id()) 3346 return -EAGAIN; 3347 3348 event->pmu->stop(event, PERF_EF_UPDATE); 3349 3350 /* 3351 * May race with the actual stop (through perf_pmu_output_stop()), 3352 * but it is only used for events with AUX ring buffer, and such 3353 * events will refuse to restart because of rb::aux_mmap_count==0, 3354 * see comments in perf_aux_output_begin(). 3355 * 3356 * Since this is happening on an event-local CPU, no trace is lost 3357 * while restarting. 3358 */ 3359 if (sd->restart) 3360 event->pmu->start(event, 0); 3361 3362 return 0; 3363 } 3364 3365 static int perf_event_stop(struct perf_event *event, int restart) 3366 { 3367 struct stop_event_data sd = { 3368 .event = event, 3369 .restart = restart, 3370 }; 3371 int ret = 0; 3372 3373 do { 3374 if (READ_ONCE(event->state) != PERF_EVENT_STATE_ACTIVE) 3375 return 0; 3376 3377 /* matches smp_wmb() in event_sched_in() */ 3378 smp_rmb(); 3379 3380 /* 3381 * We only want to restart ACTIVE events, so if the event goes 3382 * inactive here (event->oncpu==-1), there's nothing more to do; 3383 * fall through with ret==-ENXIO. 3384 */ 3385 ret = cpu_function_call(READ_ONCE(event->oncpu), 3386 __perf_event_stop, &sd); 3387 } while (ret == -EAGAIN); 3388 3389 return ret; 3390 } 3391 3392 /* 3393 * In order to contain the amount of racy and tricky in the address filter 3394 * configuration management, it is a two part process: 3395 * 3396 * (p1) when userspace mappings change as a result of (1) or (2) or (3) below, 3397 * we update the addresses of corresponding vmas in 3398 * event::addr_filter_ranges array and bump the event::addr_filters_gen; 3399 * (p2) when an event is scheduled in (pmu::add), it calls 3400 * perf_event_addr_filters_sync() which calls pmu::addr_filters_sync() 3401 * if the generation has changed since the previous call. 3402 * 3403 * If (p1) happens while the event is active, we restart it to force (p2). 3404 * 3405 * (1) perf_addr_filters_apply(): adjusting filters' offsets based on 3406 * pre-existing mappings, called once when new filters arrive via SET_FILTER 3407 * ioctl; 3408 * (2) perf_addr_filters_adjust(): adjusting filters' offsets based on newly 3409 * registered mapping, called for every new mmap(), with mm::mmap_lock down 3410 * for reading; 3411 * (3) perf_event_addr_filters_exec(): clearing filters' offsets in the process 3412 * of exec. 3413 */ 3414 void perf_event_addr_filters_sync(struct perf_event *event) 3415 { 3416 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); 3417 3418 if (!has_addr_filter(event)) 3419 return; 3420 3421 raw_spin_lock(&ifh->lock); 3422 if (event->addr_filters_gen != event->hw.addr_filters_gen) { 3423 event->pmu->addr_filters_sync(event); 3424 event->hw.addr_filters_gen = event->addr_filters_gen; 3425 } 3426 raw_spin_unlock(&ifh->lock); 3427 } 3428 EXPORT_SYMBOL_GPL(perf_event_addr_filters_sync); 3429 3430 static int _perf_event_refresh(struct perf_event *event, int refresh) 3431 { 3432 /* 3433 * not supported on inherited events 3434 */ 3435 if (event->attr.inherit || !is_sampling_event(event)) 3436 return -EINVAL; 3437 3438 atomic_add(refresh, &event->event_limit); 3439 _perf_event_enable(event); 3440 3441 return 0; 3442 } 3443 3444 /* 3445 * See perf_event_disable() 3446 */ 3447 int perf_event_refresh(struct perf_event *event, int refresh) 3448 { 3449 struct perf_event_context *ctx; 3450 int ret; 3451 3452 ctx = perf_event_ctx_lock(event); 3453 ret = _perf_event_refresh(event, refresh); 3454 perf_event_ctx_unlock(event, ctx); 3455 3456 return ret; 3457 } 3458 EXPORT_SYMBOL_GPL(perf_event_refresh); 3459 3460 static int perf_event_modify_breakpoint(struct perf_event *bp, 3461 struct perf_event_attr *attr) 3462 { 3463 int err; 3464 3465 _perf_event_disable(bp); 3466 3467 err = modify_user_hw_breakpoint_check(bp, attr, true); 3468 3469 if (!bp->attr.disabled) 3470 _perf_event_enable(bp); 3471 3472 return err; 3473 } 3474 3475 /* 3476 * Copy event-type-independent attributes that may be modified. 3477 */ 3478 static void perf_event_modify_copy_attr(struct perf_event_attr *to, 3479 const struct perf_event_attr *from) 3480 { 3481 to->sig_data = from->sig_data; 3482 } 3483 3484 static int perf_event_modify_attr(struct perf_event *event, 3485 struct perf_event_attr *attr) 3486 { 3487 int (*func)(struct perf_event *, struct perf_event_attr *); 3488 struct perf_event *child; 3489 int err; 3490 3491 if (event->attr.type != attr->type) 3492 return -EINVAL; 3493 3494 switch (event->attr.type) { 3495 case PERF_TYPE_BREAKPOINT: 3496 func = perf_event_modify_breakpoint; 3497 break; 3498 default: 3499 /* Place holder for future additions. */ 3500 return -EOPNOTSUPP; 3501 } 3502 3503 WARN_ON_ONCE(event->ctx->parent_ctx); 3504 3505 mutex_lock(&event->child_mutex); 3506 /* 3507 * Event-type-independent attributes must be copied before event-type 3508 * modification, which will validate that final attributes match the 3509 * source attributes after all relevant attributes have been copied. 3510 */ 3511 perf_event_modify_copy_attr(&event->attr, attr); 3512 err = func(event, attr); 3513 if (err) 3514 goto out; 3515 list_for_each_entry(child, &event->child_list, child_list) { 3516 perf_event_modify_copy_attr(&child->attr, attr); 3517 err = func(child, attr); 3518 if (err) 3519 goto out; 3520 } 3521 out: 3522 mutex_unlock(&event->child_mutex); 3523 return err; 3524 } 3525 3526 static void __pmu_ctx_sched_out(struct perf_event_pmu_context *pmu_ctx, 3527 enum event_type_t event_type) 3528 { 3529 struct perf_event_context *ctx = pmu_ctx->ctx; 3530 struct perf_event *event, *tmp; 3531 struct pmu *pmu = pmu_ctx->pmu; 3532 3533 if (ctx->task && !(ctx->is_active & EVENT_ALL)) { 3534 struct perf_cpu_pmu_context *cpc = this_cpc(pmu); 3535 3536 WARN_ON_ONCE(cpc->task_epc && cpc->task_epc != pmu_ctx); 3537 cpc->task_epc = NULL; 3538 } 3539 3540 if (!(event_type & EVENT_ALL)) 3541 return; 3542 3543 perf_pmu_disable(pmu); 3544 if (event_type & EVENT_PINNED) { 3545 list_for_each_entry_safe(event, tmp, 3546 &pmu_ctx->pinned_active, 3547 active_list) 3548 group_sched_out(event, ctx); 3549 } 3550 3551 if (event_type & EVENT_FLEXIBLE) { 3552 list_for_each_entry_safe(event, tmp, 3553 &pmu_ctx->flexible_active, 3554 active_list) 3555 group_sched_out(event, ctx); 3556 /* 3557 * Since we cleared EVENT_FLEXIBLE, also clear 3558 * rotate_necessary, is will be reset by 3559 * ctx_flexible_sched_in() when needed. 3560 */ 3561 pmu_ctx->rotate_necessary = 0; 3562 } 3563 perf_pmu_enable(pmu); 3564 } 3565 3566 /* 3567 * Be very careful with the @pmu argument since this will change ctx state. 3568 * The @pmu argument works for ctx_resched(), because that is symmetric in 3569 * ctx_sched_out() / ctx_sched_in() usage and the ctx state ends up invariant. 3570 * 3571 * However, if you were to be asymmetrical, you could end up with messed up 3572 * state, eg. ctx->is_active cleared even though most EPCs would still actually 3573 * be active. 3574 */ 3575 static void 3576 ctx_sched_out(struct perf_event_context *ctx, struct pmu *pmu, enum event_type_t event_type) 3577 { 3578 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 3579 enum event_type_t active_type = event_type & ~EVENT_FLAGS; 3580 struct perf_event_pmu_context *pmu_ctx; 3581 int is_active = ctx->is_active; 3582 3583 3584 lockdep_assert_held(&ctx->lock); 3585 3586 if (likely(!ctx->nr_events)) { 3587 /* 3588 * See __perf_remove_from_context(). 3589 */ 3590 WARN_ON_ONCE(ctx->is_active); 3591 if (ctx->task) 3592 WARN_ON_ONCE(cpuctx->task_ctx); 3593 return; 3594 } 3595 3596 /* 3597 * Always update time if it was set; not only when it changes. 3598 * Otherwise we can 'forget' to update time for any but the last 3599 * context we sched out. For example: 3600 * 3601 * ctx_sched_out(.event_type = EVENT_FLEXIBLE) 3602 * ctx_sched_out(.event_type = EVENT_PINNED) 3603 * 3604 * would only update time for the pinned events. 3605 */ 3606 __ctx_time_update(cpuctx, ctx, ctx == &cpuctx->ctx, event_type); 3607 3608 /* 3609 * CPU-release for the below ->is_active store, 3610 * see __load_acquire() in perf_event_time_now() 3611 */ 3612 barrier(); 3613 ctx->is_active &= ~active_type; 3614 3615 if (!(ctx->is_active & EVENT_ALL)) { 3616 /* 3617 * For FROZEN, preserve TIME|FROZEN such that perf_event_time_now() 3618 * does not observe a hole. perf_ctx_unlock() will clean up. 3619 */ 3620 if (ctx->is_active & EVENT_FROZEN) 3621 ctx->is_active &= EVENT_TIME_FROZEN; 3622 else 3623 ctx->is_active = 0; 3624 } 3625 3626 if (ctx->task) { 3627 WARN_ON_ONCE(cpuctx->task_ctx != ctx); 3628 if (!(ctx->is_active & EVENT_ALL)) 3629 cpuctx->task_ctx = NULL; 3630 } 3631 3632 if (event_type & EVENT_GUEST) { 3633 /* 3634 * Schedule out all exclude_guest events of PMU 3635 * with PERF_PMU_CAP_MEDIATED_VPMU. 3636 */ 3637 is_active = EVENT_ALL; 3638 __update_context_guest_time(ctx, false); 3639 perf_cgroup_set_timestamp(cpuctx, true); 3640 barrier(); 3641 } else { 3642 is_active ^= ctx->is_active; /* changed bits */ 3643 } 3644 3645 for_each_epc(pmu_ctx, ctx, pmu, event_type) 3646 __pmu_ctx_sched_out(pmu_ctx, is_active); 3647 } 3648 3649 /* 3650 * Test whether two contexts are equivalent, i.e. whether they have both been 3651 * cloned from the same version of the same context. 3652 * 3653 * Equivalence is measured using a generation number in the context that is 3654 * incremented on each modification to it; see unclone_ctx(), list_add_event() 3655 * and list_del_event(). 3656 */ 3657 static int context_equiv(struct perf_event_context *ctx1, 3658 struct perf_event_context *ctx2) 3659 { 3660 lockdep_assert_held(&ctx1->lock); 3661 lockdep_assert_held(&ctx2->lock); 3662 3663 /* Pinning disables the swap optimization */ 3664 if (ctx1->pin_count || ctx2->pin_count) 3665 return 0; 3666 3667 /* If ctx1 is the parent of ctx2 */ 3668 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen) 3669 return 1; 3670 3671 /* If ctx2 is the parent of ctx1 */ 3672 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation) 3673 return 1; 3674 3675 /* 3676 * If ctx1 and ctx2 have the same parent; we flatten the parent 3677 * hierarchy, see perf_event_init_context(). 3678 */ 3679 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx && 3680 ctx1->parent_gen == ctx2->parent_gen) 3681 return 1; 3682 3683 /* Unmatched */ 3684 return 0; 3685 } 3686 3687 static void __perf_event_sync_stat(struct perf_event *event, 3688 struct perf_event *next_event) 3689 { 3690 u64 value; 3691 3692 if (!event->attr.inherit_stat) 3693 return; 3694 3695 /* 3696 * Update the event value, we cannot use perf_event_read() 3697 * because we're in the middle of a context switch and have IRQs 3698 * disabled, which upsets smp_call_function_single(), however 3699 * we know the event must be on the current CPU, therefore we 3700 * don't need to use it. 3701 */ 3702 perf_pmu_read(event); 3703 3704 perf_event_update_time(event); 3705 3706 /* 3707 * In order to keep per-task stats reliable we need to flip the event 3708 * values when we flip the contexts. 3709 */ 3710 value = local64_read(&next_event->count); 3711 value = local64_xchg(&event->count, value); 3712 local64_set(&next_event->count, value); 3713 3714 swap(event->total_time_enabled, next_event->total_time_enabled); 3715 swap(event->total_time_running, next_event->total_time_running); 3716 3717 /* 3718 * Since we swizzled the values, update the user visible data too. 3719 */ 3720 perf_event_update_userpage(event); 3721 perf_event_update_userpage(next_event); 3722 } 3723 3724 static void perf_event_sync_stat(struct perf_event_context *ctx, 3725 struct perf_event_context *next_ctx) 3726 { 3727 struct perf_event *event, *next_event; 3728 3729 if (!ctx->nr_stat) 3730 return; 3731 3732 update_context_time(ctx); 3733 3734 event = list_first_entry(&ctx->event_list, 3735 struct perf_event, event_entry); 3736 3737 next_event = list_first_entry(&next_ctx->event_list, 3738 struct perf_event, event_entry); 3739 3740 while (&event->event_entry != &ctx->event_list && 3741 &next_event->event_entry != &next_ctx->event_list) { 3742 3743 __perf_event_sync_stat(event, next_event); 3744 3745 event = list_next_entry(event, event_entry); 3746 next_event = list_next_entry(next_event, event_entry); 3747 } 3748 } 3749 3750 static void perf_ctx_sched_task_cb(struct perf_event_context *ctx, 3751 struct task_struct *task, bool sched_in) 3752 { 3753 struct perf_event_pmu_context *pmu_ctx; 3754 struct perf_cpu_pmu_context *cpc; 3755 3756 list_for_each_entry(pmu_ctx, &ctx->pmu_ctx_list, pmu_ctx_entry) { 3757 cpc = this_cpc(pmu_ctx->pmu); 3758 3759 if (cpc->sched_cb_usage && pmu_ctx->pmu->sched_task) 3760 pmu_ctx->pmu->sched_task(pmu_ctx, task, sched_in); 3761 } 3762 } 3763 3764 static void 3765 perf_event_context_sched_out(struct task_struct *task, struct task_struct *next) 3766 { 3767 struct perf_event_context *ctx = task->perf_event_ctxp; 3768 struct perf_event_context *next_ctx; 3769 struct perf_event_context *parent, *next_parent; 3770 int do_switch = 1; 3771 3772 if (likely(!ctx)) 3773 return; 3774 3775 rcu_read_lock(); 3776 next_ctx = rcu_dereference(next->perf_event_ctxp); 3777 if (!next_ctx) 3778 goto unlock; 3779 3780 parent = rcu_dereference(ctx->parent_ctx); 3781 next_parent = rcu_dereference(next_ctx->parent_ctx); 3782 3783 /* If neither context have a parent context; they cannot be clones. */ 3784 if (!parent && !next_parent) 3785 goto unlock; 3786 3787 if (next_parent == ctx || next_ctx == parent || next_parent == parent) { 3788 /* 3789 * Looks like the two contexts are clones, so we might be 3790 * able to optimize the context switch. We lock both 3791 * contexts and check that they are clones under the 3792 * lock (including re-checking that neither has been 3793 * uncloned in the meantime). It doesn't matter which 3794 * order we take the locks because no other cpu could 3795 * be trying to lock both of these tasks. 3796 */ 3797 raw_spin_lock(&ctx->lock); 3798 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING); 3799 if (context_equiv(ctx, next_ctx)) { 3800 3801 perf_ctx_disable(ctx, 0); 3802 3803 /* PMIs are disabled; ctx->nr_no_switch_fast is stable. */ 3804 if (local_read(&ctx->nr_no_switch_fast) || 3805 local_read(&next_ctx->nr_no_switch_fast)) { 3806 /* 3807 * Must not swap out ctx when there's pending 3808 * events that rely on the ctx->task relation. 3809 * 3810 * Likewise, when a context contains inherit + 3811 * SAMPLE_READ events they should be switched 3812 * out using the slow path so that they are 3813 * treated as if they were distinct contexts. 3814 */ 3815 raw_spin_unlock(&next_ctx->lock); 3816 rcu_read_unlock(); 3817 goto inside_switch; 3818 } 3819 3820 WRITE_ONCE(ctx->task, next); 3821 WRITE_ONCE(next_ctx->task, task); 3822 3823 perf_ctx_sched_task_cb(ctx, task, false); 3824 3825 perf_ctx_enable(ctx, 0); 3826 3827 /* 3828 * RCU_INIT_POINTER here is safe because we've not 3829 * modified the ctx and the above modification of 3830 * ctx->task is immaterial since this value is 3831 * always verified under ctx->lock which we're now 3832 * holding. 3833 */ 3834 RCU_INIT_POINTER(task->perf_event_ctxp, next_ctx); 3835 RCU_INIT_POINTER(next->perf_event_ctxp, ctx); 3836 3837 do_switch = 0; 3838 3839 perf_event_sync_stat(ctx, next_ctx); 3840 } 3841 raw_spin_unlock(&next_ctx->lock); 3842 raw_spin_unlock(&ctx->lock); 3843 } 3844 unlock: 3845 rcu_read_unlock(); 3846 3847 if (do_switch) { 3848 raw_spin_lock(&ctx->lock); 3849 perf_ctx_disable(ctx, 0); 3850 3851 inside_switch: 3852 perf_ctx_sched_task_cb(ctx, task, false); 3853 task_ctx_sched_out(ctx, NULL, EVENT_ALL); 3854 3855 perf_ctx_enable(ctx, 0); 3856 raw_spin_unlock(&ctx->lock); 3857 } 3858 } 3859 3860 static DEFINE_PER_CPU(struct list_head, sched_cb_list); 3861 static DEFINE_PER_CPU(int, perf_sched_cb_usages); 3862 3863 void perf_sched_cb_dec(struct pmu *pmu) 3864 { 3865 struct perf_cpu_pmu_context *cpc = this_cpc(pmu); 3866 3867 this_cpu_dec(perf_sched_cb_usages); 3868 barrier(); 3869 3870 if (!--cpc->sched_cb_usage) 3871 list_del(&cpc->sched_cb_entry); 3872 } 3873 3874 3875 void perf_sched_cb_inc(struct pmu *pmu) 3876 { 3877 struct perf_cpu_pmu_context *cpc = this_cpc(pmu); 3878 3879 if (!cpc->sched_cb_usage++) 3880 list_add(&cpc->sched_cb_entry, this_cpu_ptr(&sched_cb_list)); 3881 3882 barrier(); 3883 this_cpu_inc(perf_sched_cb_usages); 3884 } 3885 3886 /* 3887 * This function provides the context switch callback to the lower code 3888 * layer. It is invoked ONLY when the context switch callback is enabled. 3889 * 3890 * This callback is relevant even to per-cpu events; for example multi event 3891 * PEBS requires this to provide PID/TID information. This requires we flush 3892 * all queued PEBS records before we context switch to a new task. 3893 */ 3894 static void __perf_pmu_sched_task(struct perf_cpu_pmu_context *cpc, 3895 struct task_struct *task, bool sched_in) 3896 { 3897 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 3898 struct pmu *pmu; 3899 3900 pmu = cpc->epc.pmu; 3901 3902 /* software PMUs will not have sched_task */ 3903 if (WARN_ON_ONCE(!pmu->sched_task)) 3904 return; 3905 3906 perf_ctx_lock(cpuctx, cpuctx->task_ctx); 3907 perf_pmu_disable(pmu); 3908 3909 pmu->sched_task(cpc->task_epc, task, sched_in); 3910 3911 perf_pmu_enable(pmu); 3912 perf_ctx_unlock(cpuctx, cpuctx->task_ctx); 3913 } 3914 3915 static void perf_pmu_sched_task(struct task_struct *prev, 3916 struct task_struct *next, 3917 bool sched_in) 3918 { 3919 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 3920 struct perf_cpu_pmu_context *cpc; 3921 3922 /* cpuctx->task_ctx will be handled in perf_event_context_sched_in/out */ 3923 if (prev == next || cpuctx->task_ctx) 3924 return; 3925 3926 list_for_each_entry(cpc, this_cpu_ptr(&sched_cb_list), sched_cb_entry) 3927 __perf_pmu_sched_task(cpc, sched_in ? next : prev, sched_in); 3928 } 3929 3930 static void perf_event_switch(struct task_struct *task, 3931 struct task_struct *next_prev, bool sched_in); 3932 3933 /* 3934 * Called from scheduler to remove the events of the current task, 3935 * with interrupts disabled. 3936 * 3937 * We stop each event and update the event value in event->count. 3938 * 3939 * This does not protect us against NMI, but disable() 3940 * sets the disabled bit in the control field of event _before_ 3941 * accessing the event control register. If a NMI hits, then it will 3942 * not restart the event. 3943 */ 3944 void __perf_event_task_sched_out(struct task_struct *task, 3945 struct task_struct *next) 3946 { 3947 if (__this_cpu_read(perf_sched_cb_usages)) 3948 perf_pmu_sched_task(task, next, false); 3949 3950 if (atomic_read(&nr_switch_events)) 3951 perf_event_switch(task, next, false); 3952 3953 perf_event_context_sched_out(task, next); 3954 3955 /* 3956 * if cgroup events exist on this CPU, then we need 3957 * to check if we have to switch out PMU state. 3958 * cgroup event are system-wide mode only 3959 */ 3960 perf_cgroup_switch(next); 3961 } 3962 3963 static bool perf_less_group_idx(const void *l, const void *r, void __always_unused *args) 3964 { 3965 const struct perf_event *le = *(const struct perf_event **)l; 3966 const struct perf_event *re = *(const struct perf_event **)r; 3967 3968 return le->group_index < re->group_index; 3969 } 3970 3971 DEFINE_MIN_HEAP(struct perf_event *, perf_event_min_heap); 3972 3973 static const struct min_heap_callbacks perf_min_heap = { 3974 .less = perf_less_group_idx, 3975 .swp = NULL, 3976 }; 3977 3978 static void __heap_add(struct perf_event_min_heap *heap, struct perf_event *event) 3979 { 3980 struct perf_event **itrs = heap->data; 3981 3982 if (event) { 3983 itrs[heap->nr] = event; 3984 heap->nr++; 3985 } 3986 } 3987 3988 static void __link_epc(struct perf_event_pmu_context *pmu_ctx) 3989 { 3990 struct perf_cpu_pmu_context *cpc; 3991 3992 if (!pmu_ctx->ctx->task) 3993 return; 3994 3995 cpc = this_cpc(pmu_ctx->pmu); 3996 WARN_ON_ONCE(cpc->task_epc && cpc->task_epc != pmu_ctx); 3997 cpc->task_epc = pmu_ctx; 3998 } 3999 4000 static noinline int visit_groups_merge(struct perf_event_context *ctx, 4001 struct perf_event_groups *groups, int cpu, 4002 struct pmu *pmu, 4003 int (*func)(struct perf_event *, void *), 4004 void *data) 4005 { 4006 #ifdef CONFIG_CGROUP_PERF 4007 struct cgroup_subsys_state *css = NULL; 4008 #endif 4009 struct perf_cpu_context *cpuctx = NULL; 4010 /* Space for per CPU and/or any CPU event iterators. */ 4011 struct perf_event *itrs[2]; 4012 struct perf_event_min_heap event_heap; 4013 struct perf_event **evt; 4014 int ret; 4015 4016 if (pmu->filter && pmu->filter(pmu, cpu)) 4017 return 0; 4018 4019 if (!ctx->task) { 4020 cpuctx = this_cpu_ptr(&perf_cpu_context); 4021 event_heap = (struct perf_event_min_heap){ 4022 .data = cpuctx->heap, 4023 .nr = 0, 4024 .size = cpuctx->heap_size, 4025 }; 4026 4027 lockdep_assert_held(&cpuctx->ctx.lock); 4028 4029 #ifdef CONFIG_CGROUP_PERF 4030 if (cpuctx->cgrp) 4031 css = &cpuctx->cgrp->css; 4032 #endif 4033 } else { 4034 event_heap = (struct perf_event_min_heap){ 4035 .data = itrs, 4036 .nr = 0, 4037 .size = ARRAY_SIZE(itrs), 4038 }; 4039 /* Events not within a CPU context may be on any CPU. */ 4040 __heap_add(&event_heap, perf_event_groups_first(groups, -1, pmu, NULL)); 4041 } 4042 evt = event_heap.data; 4043 4044 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, pmu, NULL)); 4045 4046 #ifdef CONFIG_CGROUP_PERF 4047 for (; css; css = css->parent) 4048 __heap_add(&event_heap, perf_event_groups_first(groups, cpu, pmu, css->cgroup)); 4049 #endif 4050 4051 if (event_heap.nr) { 4052 __link_epc((*evt)->pmu_ctx); 4053 perf_assert_pmu_disabled((*evt)->pmu_ctx->pmu); 4054 } 4055 4056 min_heapify_all_inline(&event_heap, &perf_min_heap, NULL); 4057 4058 while (event_heap.nr) { 4059 ret = func(*evt, data); 4060 if (ret) 4061 return ret; 4062 4063 *evt = perf_event_groups_next(*evt, pmu); 4064 if (*evt) 4065 min_heap_sift_down_inline(&event_heap, 0, &perf_min_heap, NULL); 4066 else 4067 min_heap_pop_inline(&event_heap, &perf_min_heap, NULL); 4068 } 4069 4070 return 0; 4071 } 4072 4073 /* 4074 * Because the userpage is strictly per-event (there is no concept of context, 4075 * so there cannot be a context indirection), every userpage must be updated 4076 * when context time starts :-( 4077 * 4078 * IOW, we must not miss EVENT_TIME edges. 4079 */ 4080 static inline bool event_update_userpage(struct perf_event *event) 4081 { 4082 if (likely(!refcount_read(&event->mmap_count))) 4083 return false; 4084 4085 perf_event_update_time(event); 4086 perf_event_update_userpage(event); 4087 4088 return true; 4089 } 4090 4091 static inline void group_update_userpage(struct perf_event *group_event) 4092 { 4093 struct perf_event *event; 4094 4095 if (!event_update_userpage(group_event)) 4096 return; 4097 4098 for_each_sibling_event(event, group_event) 4099 event_update_userpage(event); 4100 } 4101 4102 struct merge_sched_data { 4103 int can_add_hw; 4104 enum event_type_t event_type; 4105 }; 4106 4107 static int merge_sched_in(struct perf_event *event, void *data) 4108 { 4109 struct perf_event_context *ctx = event->ctx; 4110 struct merge_sched_data *msd = data; 4111 4112 if (event->state <= PERF_EVENT_STATE_OFF) 4113 return 0; 4114 4115 if (!event_filter_match(event)) 4116 return 0; 4117 4118 /* 4119 * Don't schedule in any host events from PMU with 4120 * PERF_PMU_CAP_MEDIATED_VPMU, while a guest is running. 4121 */ 4122 if (is_guest_mediated_pmu_loaded() && 4123 event->pmu_ctx->pmu->capabilities & PERF_PMU_CAP_MEDIATED_VPMU && 4124 !(msd->event_type & EVENT_GUEST)) 4125 return 0; 4126 4127 if (group_can_go_on(event, msd->can_add_hw)) { 4128 if (!group_sched_in(event, ctx)) 4129 list_add_tail(&event->active_list, get_event_list(event)); 4130 } 4131 4132 if (event->state == PERF_EVENT_STATE_INACTIVE) { 4133 msd->can_add_hw = 0; 4134 if (event->attr.pinned) { 4135 perf_cgroup_event_disable(event, ctx); 4136 perf_event_set_state(event, PERF_EVENT_STATE_ERROR); 4137 4138 if (*perf_event_fasync(event)) 4139 event->pending_kill = POLL_ERR; 4140 4141 event->pending_wakeup = 1; 4142 irq_work_queue(&event->pending_irq); 4143 } else { 4144 struct perf_cpu_pmu_context *cpc = this_cpc(event->pmu_ctx->pmu); 4145 4146 event->pmu_ctx->rotate_necessary = 1; 4147 perf_mux_hrtimer_restart(cpc); 4148 group_update_userpage(event); 4149 } 4150 } 4151 4152 return 0; 4153 } 4154 4155 static void pmu_groups_sched_in(struct perf_event_context *ctx, 4156 struct perf_event_groups *groups, 4157 struct pmu *pmu, 4158 enum event_type_t event_type) 4159 { 4160 struct merge_sched_data msd = { 4161 .can_add_hw = 1, 4162 .event_type = event_type, 4163 }; 4164 visit_groups_merge(ctx, groups, smp_processor_id(), pmu, 4165 merge_sched_in, &msd); 4166 } 4167 4168 static void __pmu_ctx_sched_in(struct perf_event_pmu_context *pmu_ctx, 4169 enum event_type_t event_type) 4170 { 4171 struct perf_event_context *ctx = pmu_ctx->ctx; 4172 4173 if (event_type & EVENT_PINNED) 4174 pmu_groups_sched_in(ctx, &ctx->pinned_groups, pmu_ctx->pmu, event_type); 4175 if (event_type & EVENT_FLEXIBLE) 4176 pmu_groups_sched_in(ctx, &ctx->flexible_groups, pmu_ctx->pmu, event_type); 4177 } 4178 4179 static void 4180 ctx_sched_in(struct perf_event_context *ctx, struct pmu *pmu, enum event_type_t event_type) 4181 { 4182 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 4183 enum event_type_t active_type = event_type & ~EVENT_FLAGS; 4184 struct perf_event_pmu_context *pmu_ctx; 4185 int is_active = ctx->is_active; 4186 4187 lockdep_assert_held(&ctx->lock); 4188 4189 if (likely(!ctx->nr_events)) 4190 return; 4191 4192 if (!(is_active & EVENT_TIME)) { 4193 /* EVENT_TIME should be active while the guest runs */ 4194 WARN_ON_ONCE(event_type & EVENT_GUEST); 4195 /* start ctx time */ 4196 __update_context_time(ctx, false); 4197 perf_cgroup_set_timestamp(cpuctx, false); 4198 /* 4199 * CPU-release for the below ->is_active store, 4200 * see __load_acquire() in perf_event_time_now() 4201 */ 4202 barrier(); 4203 } 4204 4205 ctx->is_active |= active_type | EVENT_TIME; 4206 if (ctx->task) { 4207 if (!(is_active & EVENT_ALL)) 4208 cpuctx->task_ctx = ctx; 4209 else 4210 WARN_ON_ONCE(cpuctx->task_ctx != ctx); 4211 } 4212 4213 if (event_type & EVENT_GUEST) { 4214 /* 4215 * Schedule in the required exclude_guest events of PMU 4216 * with PERF_PMU_CAP_MEDIATED_VPMU. 4217 */ 4218 is_active = event_type & EVENT_ALL; 4219 4220 /* 4221 * Update ctx time to set the new start time for 4222 * the exclude_guest events. 4223 */ 4224 update_context_time(ctx); 4225 update_cgrp_time_from_cpuctx(cpuctx, false); 4226 barrier(); 4227 } else { 4228 is_active ^= ctx->is_active; /* changed bits */ 4229 } 4230 4231 /* 4232 * First go through the list and put on any pinned groups 4233 * in order to give them the best chance of going on. 4234 */ 4235 if (is_active & EVENT_PINNED) { 4236 for_each_epc(pmu_ctx, ctx, pmu, event_type) 4237 __pmu_ctx_sched_in(pmu_ctx, EVENT_PINNED | (event_type & EVENT_GUEST)); 4238 } 4239 4240 /* Then walk through the lower prio flexible groups */ 4241 if (is_active & EVENT_FLEXIBLE) { 4242 for_each_epc(pmu_ctx, ctx, pmu, event_type) 4243 __pmu_ctx_sched_in(pmu_ctx, EVENT_FLEXIBLE | (event_type & EVENT_GUEST)); 4244 } 4245 } 4246 4247 static void perf_event_context_sched_in(struct task_struct *task) 4248 { 4249 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 4250 struct perf_event_context *ctx; 4251 4252 rcu_read_lock(); 4253 ctx = rcu_dereference(task->perf_event_ctxp); 4254 if (!ctx) 4255 goto rcu_unlock; 4256 4257 if (cpuctx->task_ctx == ctx) { 4258 perf_ctx_lock(cpuctx, ctx); 4259 perf_ctx_disable(ctx, 0); 4260 4261 perf_ctx_sched_task_cb(ctx, task, true); 4262 4263 perf_ctx_enable(ctx, 0); 4264 perf_ctx_unlock(cpuctx, ctx); 4265 goto rcu_unlock; 4266 } 4267 4268 perf_ctx_lock(cpuctx, ctx); 4269 /* 4270 * We must check ctx->nr_events while holding ctx->lock, such 4271 * that we serialize against perf_install_in_context(). 4272 */ 4273 if (!ctx->nr_events) 4274 goto unlock; 4275 4276 perf_ctx_disable(ctx, 0); 4277 /* 4278 * We want to keep the following priority order: 4279 * cpu pinned (that don't need to move), task pinned, 4280 * cpu flexible, task flexible. 4281 * 4282 * However, if task's ctx is not carrying any pinned 4283 * events, no need to flip the cpuctx's events around. 4284 */ 4285 if (!RB_EMPTY_ROOT(&ctx->pinned_groups.tree)) { 4286 perf_ctx_disable(&cpuctx->ctx, 0); 4287 ctx_sched_out(&cpuctx->ctx, NULL, EVENT_FLEXIBLE); 4288 } 4289 4290 perf_event_sched_in(cpuctx, ctx, NULL, 0); 4291 4292 perf_ctx_sched_task_cb(cpuctx->task_ctx, task, true); 4293 4294 if (!RB_EMPTY_ROOT(&ctx->pinned_groups.tree)) 4295 perf_ctx_enable(&cpuctx->ctx, 0); 4296 4297 perf_ctx_enable(ctx, 0); 4298 4299 unlock: 4300 perf_ctx_unlock(cpuctx, ctx); 4301 rcu_unlock: 4302 rcu_read_unlock(); 4303 } 4304 4305 /* 4306 * Called from scheduler to add the events of the current task 4307 * with interrupts disabled. 4308 * 4309 * We restore the event value and then enable it. 4310 * 4311 * This does not protect us against NMI, but enable() 4312 * sets the enabled bit in the control field of event _before_ 4313 * accessing the event control register. If a NMI hits, then it will 4314 * keep the event running. 4315 */ 4316 void __perf_event_task_sched_in(struct task_struct *prev, 4317 struct task_struct *task) 4318 { 4319 perf_event_context_sched_in(task); 4320 4321 if (atomic_read(&nr_switch_events)) 4322 perf_event_switch(task, prev, true); 4323 4324 if (__this_cpu_read(perf_sched_cb_usages)) 4325 perf_pmu_sched_task(prev, task, true); 4326 } 4327 4328 static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count) 4329 { 4330 u64 frequency = event->attr.sample_freq; 4331 u64 sec = NSEC_PER_SEC; 4332 u64 divisor, dividend; 4333 4334 int count_fls, nsec_fls, frequency_fls, sec_fls; 4335 4336 count_fls = fls64(count); 4337 nsec_fls = fls64(nsec); 4338 frequency_fls = fls64(frequency); 4339 sec_fls = 30; 4340 4341 /* 4342 * We got @count in @nsec, with a target of sample_freq HZ 4343 * the target period becomes: 4344 * 4345 * @count * 10^9 4346 * period = ------------------- 4347 * @nsec * sample_freq 4348 * 4349 */ 4350 4351 /* 4352 * Reduce accuracy by one bit such that @a and @b converge 4353 * to a similar magnitude. 4354 */ 4355 #define REDUCE_FLS(a, b) \ 4356 do { \ 4357 if (a##_fls > b##_fls) { \ 4358 a >>= 1; \ 4359 a##_fls--; \ 4360 } else { \ 4361 b >>= 1; \ 4362 b##_fls--; \ 4363 } \ 4364 } while (0) 4365 4366 /* 4367 * Reduce accuracy until either term fits in a u64, then proceed with 4368 * the other, so that finally we can do a u64/u64 division. 4369 */ 4370 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) { 4371 REDUCE_FLS(nsec, frequency); 4372 REDUCE_FLS(sec, count); 4373 } 4374 4375 if (count_fls + sec_fls > 64) { 4376 divisor = nsec * frequency; 4377 4378 while (count_fls + sec_fls > 64) { 4379 REDUCE_FLS(count, sec); 4380 divisor >>= 1; 4381 } 4382 4383 dividend = count * sec; 4384 } else { 4385 dividend = count * sec; 4386 4387 while (nsec_fls + frequency_fls > 64) { 4388 REDUCE_FLS(nsec, frequency); 4389 dividend >>= 1; 4390 } 4391 4392 divisor = nsec * frequency; 4393 } 4394 4395 if (!divisor) 4396 return dividend; 4397 4398 return div64_u64(dividend, divisor); 4399 } 4400 4401 static DEFINE_PER_CPU(int, perf_throttled_count); 4402 static DEFINE_PER_CPU(u64, perf_throttled_seq); 4403 4404 static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable) 4405 { 4406 struct hw_perf_event *hwc = &event->hw; 4407 s64 period, sample_period; 4408 s64 delta; 4409 4410 period = perf_calculate_period(event, nsec, count); 4411 4412 delta = (s64)(period - hwc->sample_period); 4413 if (delta >= 0) 4414 delta += 7; 4415 else 4416 delta -= 7; 4417 delta /= 8; /* low pass filter */ 4418 4419 sample_period = hwc->sample_period + delta; 4420 4421 if (!sample_period) 4422 sample_period = 1; 4423 4424 hwc->sample_period = sample_period; 4425 4426 if (local64_read(&hwc->period_left) > 8*sample_period) { 4427 if (disable) 4428 event->pmu->stop(event, PERF_EF_UPDATE); 4429 4430 local64_set(&hwc->period_left, 0); 4431 4432 if (disable) 4433 event->pmu->start(event, PERF_EF_RELOAD); 4434 } 4435 } 4436 4437 static void perf_adjust_freq_unthr_events(struct list_head *event_list) 4438 { 4439 struct perf_event *event; 4440 struct hw_perf_event *hwc; 4441 u64 now, period = TICK_NSEC; 4442 s64 delta; 4443 4444 list_for_each_entry(event, event_list, active_list) { 4445 if (event->state != PERF_EVENT_STATE_ACTIVE) 4446 continue; 4447 4448 // XXX use visit thingy to avoid the -1,cpu match 4449 if (!event_filter_match(event)) 4450 continue; 4451 4452 hwc = &event->hw; 4453 4454 if (hwc->interrupts == MAX_INTERRUPTS) 4455 perf_event_unthrottle_group(event, is_event_in_freq_mode(event)); 4456 4457 if (!is_event_in_freq_mode(event)) 4458 continue; 4459 4460 /* 4461 * stop the event and update event->count 4462 */ 4463 event->pmu->stop(event, PERF_EF_UPDATE); 4464 4465 now = local64_read(&event->count); 4466 delta = now - hwc->freq_count_stamp; 4467 hwc->freq_count_stamp = now; 4468 4469 /* 4470 * restart the event 4471 * reload only if value has changed 4472 * we have stopped the event so tell that 4473 * to perf_adjust_period() to avoid stopping it 4474 * twice. 4475 */ 4476 if (delta > 0) 4477 perf_adjust_period(event, period, delta, false); 4478 4479 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0); 4480 } 4481 } 4482 4483 /* 4484 * combine freq adjustment with unthrottling to avoid two passes over the 4485 * events. At the same time, make sure, having freq events does not change 4486 * the rate of unthrottling as that would introduce bias. 4487 */ 4488 static void 4489 perf_adjust_freq_unthr_context(struct perf_event_context *ctx, bool unthrottle) 4490 { 4491 struct perf_event_pmu_context *pmu_ctx; 4492 4493 /* 4494 * only need to iterate over all events iff: 4495 * - context have events in frequency mode (needs freq adjust) 4496 * - there are events to unthrottle on this cpu 4497 */ 4498 if (!(ctx->nr_freq || unthrottle)) 4499 return; 4500 4501 raw_spin_lock(&ctx->lock); 4502 4503 list_for_each_entry(pmu_ctx, &ctx->pmu_ctx_list, pmu_ctx_entry) { 4504 if (!(pmu_ctx->nr_freq || unthrottle)) 4505 continue; 4506 if (!perf_pmu_ctx_is_active(pmu_ctx)) 4507 continue; 4508 if (pmu_ctx->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) 4509 continue; 4510 4511 perf_pmu_disable(pmu_ctx->pmu); 4512 perf_adjust_freq_unthr_events(&pmu_ctx->pinned_active); 4513 perf_adjust_freq_unthr_events(&pmu_ctx->flexible_active); 4514 perf_pmu_enable(pmu_ctx->pmu); 4515 } 4516 4517 raw_spin_unlock(&ctx->lock); 4518 } 4519 4520 /* 4521 * Move @event to the tail of the @ctx's elegible events. 4522 */ 4523 static void rotate_ctx(struct perf_event_context *ctx, struct perf_event *event) 4524 { 4525 /* 4526 * Rotate the first entry last of non-pinned groups. Rotation might be 4527 * disabled by the inheritance code. 4528 */ 4529 if (ctx->rotate_disable) 4530 return; 4531 4532 perf_event_groups_delete(&ctx->flexible_groups, event); 4533 perf_event_groups_insert(&ctx->flexible_groups, event); 4534 } 4535 4536 /* pick an event from the flexible_groups to rotate */ 4537 static inline struct perf_event * 4538 ctx_event_to_rotate(struct perf_event_pmu_context *pmu_ctx) 4539 { 4540 struct perf_event *event; 4541 struct rb_node *node; 4542 struct rb_root *tree; 4543 struct __group_key key = { 4544 .pmu = pmu_ctx->pmu, 4545 }; 4546 4547 /* pick the first active flexible event */ 4548 event = list_first_entry_or_null(&pmu_ctx->flexible_active, 4549 struct perf_event, active_list); 4550 if (event) 4551 goto out; 4552 4553 /* if no active flexible event, pick the first event */ 4554 tree = &pmu_ctx->ctx->flexible_groups.tree; 4555 4556 if (!pmu_ctx->ctx->task) { 4557 key.cpu = smp_processor_id(); 4558 4559 node = rb_find_first(&key, tree, __group_cmp_ignore_cgroup); 4560 if (node) 4561 event = __node_2_pe(node); 4562 goto out; 4563 } 4564 4565 key.cpu = -1; 4566 node = rb_find_first(&key, tree, __group_cmp_ignore_cgroup); 4567 if (node) { 4568 event = __node_2_pe(node); 4569 goto out; 4570 } 4571 4572 key.cpu = smp_processor_id(); 4573 node = rb_find_first(&key, tree, __group_cmp_ignore_cgroup); 4574 if (node) 4575 event = __node_2_pe(node); 4576 4577 out: 4578 /* 4579 * Unconditionally clear rotate_necessary; if ctx_flexible_sched_in() 4580 * finds there are unschedulable events, it will set it again. 4581 */ 4582 pmu_ctx->rotate_necessary = 0; 4583 4584 return event; 4585 } 4586 4587 static bool perf_rotate_context(struct perf_cpu_pmu_context *cpc) 4588 { 4589 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 4590 struct perf_event_pmu_context *cpu_epc, *task_epc = NULL; 4591 struct perf_event *cpu_event = NULL, *task_event = NULL; 4592 int cpu_rotate, task_rotate; 4593 struct pmu *pmu; 4594 4595 /* 4596 * Since we run this from IRQ context, nobody can install new 4597 * events, thus the event count values are stable. 4598 */ 4599 4600 cpu_epc = &cpc->epc; 4601 pmu = cpu_epc->pmu; 4602 task_epc = cpc->task_epc; 4603 4604 cpu_rotate = cpu_epc->rotate_necessary; 4605 task_rotate = task_epc ? task_epc->rotate_necessary : 0; 4606 4607 if (!(cpu_rotate || task_rotate)) 4608 return false; 4609 4610 perf_ctx_lock(cpuctx, cpuctx->task_ctx); 4611 perf_pmu_disable(pmu); 4612 4613 if (task_rotate) 4614 task_event = ctx_event_to_rotate(task_epc); 4615 if (cpu_rotate) 4616 cpu_event = ctx_event_to_rotate(cpu_epc); 4617 4618 /* 4619 * As per the order given at ctx_resched() first 'pop' task flexible 4620 * and then, if needed CPU flexible. 4621 */ 4622 if (task_event || (task_epc && cpu_event)) { 4623 update_context_time(task_epc->ctx); 4624 __pmu_ctx_sched_out(task_epc, EVENT_FLEXIBLE); 4625 } 4626 4627 if (cpu_event) { 4628 update_context_time(&cpuctx->ctx); 4629 __pmu_ctx_sched_out(cpu_epc, EVENT_FLEXIBLE); 4630 rotate_ctx(&cpuctx->ctx, cpu_event); 4631 __pmu_ctx_sched_in(cpu_epc, EVENT_FLEXIBLE); 4632 } 4633 4634 if (task_event) 4635 rotate_ctx(task_epc->ctx, task_event); 4636 4637 if (task_event || (task_epc && cpu_event)) 4638 __pmu_ctx_sched_in(task_epc, EVENT_FLEXIBLE); 4639 4640 perf_pmu_enable(pmu); 4641 perf_ctx_unlock(cpuctx, cpuctx->task_ctx); 4642 4643 return true; 4644 } 4645 4646 void perf_event_task_tick(void) 4647 { 4648 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 4649 struct perf_event_context *ctx; 4650 int throttled; 4651 4652 lockdep_assert_irqs_disabled(); 4653 4654 __this_cpu_inc(perf_throttled_seq); 4655 throttled = __this_cpu_xchg(perf_throttled_count, 0); 4656 tick_dep_clear_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS); 4657 4658 perf_adjust_freq_unthr_context(&cpuctx->ctx, !!throttled); 4659 4660 rcu_read_lock(); 4661 ctx = rcu_dereference(current->perf_event_ctxp); 4662 if (ctx) 4663 perf_adjust_freq_unthr_context(ctx, !!throttled); 4664 rcu_read_unlock(); 4665 } 4666 4667 static int event_enable_on_exec(struct perf_event *event, 4668 struct perf_event_context *ctx) 4669 { 4670 if (!event->attr.enable_on_exec) 4671 return 0; 4672 4673 event->attr.enable_on_exec = 0; 4674 if (event->state >= PERF_EVENT_STATE_INACTIVE) 4675 return 0; 4676 4677 perf_event_set_state(event, PERF_EVENT_STATE_INACTIVE); 4678 4679 return 1; 4680 } 4681 4682 /* 4683 * Enable all of a task's events that have been marked enable-on-exec. 4684 * This expects task == current. 4685 */ 4686 static void perf_event_enable_on_exec(struct perf_event_context *ctx) 4687 { 4688 struct perf_event_context *clone_ctx = NULL; 4689 enum event_type_t event_type = 0; 4690 struct perf_cpu_context *cpuctx; 4691 struct perf_event *event; 4692 unsigned long flags; 4693 int enabled = 0; 4694 4695 local_irq_save(flags); 4696 if (WARN_ON_ONCE(current->perf_event_ctxp != ctx)) 4697 goto out; 4698 4699 if (!ctx->nr_events) 4700 goto out; 4701 4702 cpuctx = this_cpu_ptr(&perf_cpu_context); 4703 perf_ctx_lock(cpuctx, ctx); 4704 ctx_time_freeze(cpuctx, ctx); 4705 4706 list_for_each_entry(event, &ctx->event_list, event_entry) { 4707 enabled |= event_enable_on_exec(event, ctx); 4708 event_type |= get_event_type(event); 4709 } 4710 4711 /* 4712 * Unclone and reschedule this context if we enabled any event. 4713 */ 4714 if (enabled) { 4715 clone_ctx = unclone_ctx(ctx); 4716 ctx_resched(cpuctx, ctx, NULL, event_type); 4717 } 4718 perf_ctx_unlock(cpuctx, ctx); 4719 4720 out: 4721 local_irq_restore(flags); 4722 4723 if (clone_ctx) 4724 put_ctx(clone_ctx); 4725 } 4726 4727 static void perf_remove_from_owner(struct perf_event *event); 4728 static void perf_event_exit_event(struct perf_event *event, 4729 struct perf_event_context *ctx, 4730 struct task_struct *task, 4731 bool revoke); 4732 4733 /* 4734 * Removes all events from the current task that have been marked 4735 * remove-on-exec, and feeds their values back to parent events. 4736 */ 4737 static void perf_event_remove_on_exec(struct perf_event_context *ctx) 4738 { 4739 struct perf_event_context *clone_ctx = NULL; 4740 struct perf_event *event, *next; 4741 unsigned long flags; 4742 bool modified = false; 4743 4744 mutex_lock(&ctx->mutex); 4745 4746 if (WARN_ON_ONCE(ctx->task != current)) 4747 goto unlock; 4748 4749 list_for_each_entry_safe(event, next, &ctx->event_list, event_entry) { 4750 if (!event->attr.remove_on_exec) 4751 continue; 4752 4753 if (!is_kernel_event(event)) 4754 perf_remove_from_owner(event); 4755 4756 modified = true; 4757 4758 perf_event_exit_event(event, ctx, ctx->task, false); 4759 } 4760 4761 raw_spin_lock_irqsave(&ctx->lock, flags); 4762 if (modified) 4763 clone_ctx = unclone_ctx(ctx); 4764 raw_spin_unlock_irqrestore(&ctx->lock, flags); 4765 4766 unlock: 4767 mutex_unlock(&ctx->mutex); 4768 4769 if (clone_ctx) 4770 put_ctx(clone_ctx); 4771 } 4772 4773 struct perf_read_data { 4774 struct perf_event *event; 4775 bool group; 4776 int ret; 4777 }; 4778 4779 static inline const struct cpumask *perf_scope_cpu_topology_cpumask(unsigned int scope, int cpu); 4780 4781 static int __perf_event_read_cpu(struct perf_event *event, int event_cpu) 4782 { 4783 int local_cpu = smp_processor_id(); 4784 u16 local_pkg, event_pkg; 4785 4786 if ((unsigned)event_cpu >= nr_cpu_ids) 4787 return event_cpu; 4788 4789 if (event->group_caps & PERF_EV_CAP_READ_SCOPE) { 4790 const struct cpumask *cpumask = perf_scope_cpu_topology_cpumask(event->pmu->scope, event_cpu); 4791 4792 if (cpumask && cpumask_test_cpu(local_cpu, cpumask)) 4793 return local_cpu; 4794 } 4795 4796 if (event->group_caps & PERF_EV_CAP_READ_ACTIVE_PKG) { 4797 event_pkg = topology_physical_package_id(event_cpu); 4798 local_pkg = topology_physical_package_id(local_cpu); 4799 4800 if (event_pkg == local_pkg) 4801 return local_cpu; 4802 } 4803 4804 return event_cpu; 4805 } 4806 4807 /* 4808 * Cross CPU call to read the hardware event 4809 */ 4810 static void __perf_event_read(void *info) 4811 { 4812 struct perf_read_data *data = info; 4813 struct perf_event *sub, *event = data->event; 4814 struct perf_event_context *ctx = event->ctx; 4815 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 4816 struct pmu *pmu; 4817 4818 /* 4819 * If this is a task context, we need to check whether it is 4820 * the current task context of this cpu. If not it has been 4821 * scheduled out before the smp call arrived. In that case 4822 * event->count would have been updated to a recent sample 4823 * when the event was scheduled out. 4824 */ 4825 if (ctx->task && cpuctx->task_ctx != ctx) 4826 return; 4827 4828 guard(raw_spinlock)(&ctx->lock); 4829 ctx_time_update_event(ctx, event); 4830 4831 perf_event_update_time(event); 4832 if (data->group) 4833 perf_event_update_sibling_time(event); 4834 4835 if (event->state != PERF_EVENT_STATE_ACTIVE) 4836 return; 4837 4838 if (!data->group) { 4839 perf_pmu_read(event); 4840 data->ret = 0; 4841 return; 4842 } 4843 4844 pmu = event->pmu_ctx->pmu; 4845 pmu->start_txn(pmu, PERF_PMU_TXN_READ); 4846 4847 perf_pmu_read(event); 4848 for_each_sibling_event(sub, event) 4849 perf_pmu_read(sub); 4850 4851 data->ret = pmu->commit_txn(pmu); 4852 } 4853 4854 static inline u64 perf_event_count(struct perf_event *event, bool self) 4855 { 4856 if (self) 4857 return local64_read(&event->count); 4858 4859 return local64_read(&event->count) + atomic64_read(&event->child_count); 4860 } 4861 4862 static void calc_timer_values(struct perf_event *event, 4863 u64 *now, 4864 u64 *enabled, 4865 u64 *running) 4866 { 4867 u64 ctx_time; 4868 4869 *now = perf_clock(); 4870 ctx_time = perf_event_time_now(event, *now); 4871 __perf_update_times(event, ctx_time, enabled, running); 4872 } 4873 4874 /* 4875 * NMI-safe method to read a local event, that is an event that 4876 * is: 4877 * - either for the current task, or for this CPU 4878 * - does not have inherit set, for inherited task events 4879 * will not be local and we cannot read them atomically 4880 * - must not have a pmu::count method 4881 */ 4882 int perf_event_read_local(struct perf_event *event, u64 *value, 4883 u64 *enabled, u64 *running) 4884 { 4885 unsigned long flags; 4886 int event_oncpu; 4887 int event_cpu; 4888 int ret = 0; 4889 4890 /* 4891 * Disabling interrupts avoids all counter scheduling (context 4892 * switches, timer based rotation and IPIs). 4893 */ 4894 local_irq_save(flags); 4895 4896 /* 4897 * It must not be an event with inherit set, we cannot read 4898 * all child counters from atomic context. 4899 */ 4900 if (event->attr.inherit) { 4901 ret = -EOPNOTSUPP; 4902 goto out; 4903 } 4904 4905 /* If this is a per-task event, it must be for current */ 4906 if ((event->attach_state & PERF_ATTACH_TASK) && 4907 event->hw.target != current) { 4908 ret = -EINVAL; 4909 goto out; 4910 } 4911 4912 /* 4913 * Get the event CPU numbers, and adjust them to local if the event is 4914 * a per-package event that can be read locally 4915 */ 4916 event_oncpu = __perf_event_read_cpu(event, event->oncpu); 4917 event_cpu = __perf_event_read_cpu(event, event->cpu); 4918 4919 /* If this is a per-CPU event, it must be for this CPU */ 4920 if (!(event->attach_state & PERF_ATTACH_TASK) && 4921 event_cpu != smp_processor_id()) { 4922 ret = -EINVAL; 4923 goto out; 4924 } 4925 4926 /* If this is a pinned event it must be running on this CPU */ 4927 if (event->attr.pinned && event_oncpu != smp_processor_id()) { 4928 ret = -EBUSY; 4929 goto out; 4930 } 4931 4932 /* 4933 * If the event is currently on this CPU, its either a per-task event, 4934 * or local to this CPU. Furthermore it means its ACTIVE (otherwise 4935 * oncpu == -1). 4936 */ 4937 if (event_oncpu == smp_processor_id()) 4938 event->pmu->read(event); 4939 4940 *value = local64_read(&event->count); 4941 if (enabled || running) { 4942 u64 __enabled, __running, __now; 4943 4944 calc_timer_values(event, &__now, &__enabled, &__running); 4945 if (enabled) 4946 *enabled = __enabled; 4947 if (running) 4948 *running = __running; 4949 } 4950 out: 4951 local_irq_restore(flags); 4952 4953 return ret; 4954 } 4955 4956 static int perf_event_read(struct perf_event *event, bool group) 4957 { 4958 enum perf_event_state state = READ_ONCE(event->state); 4959 int event_cpu, ret = 0; 4960 4961 /* 4962 * If event is enabled and currently active on a CPU, update the 4963 * value in the event structure: 4964 */ 4965 again: 4966 if (state == PERF_EVENT_STATE_ACTIVE) { 4967 struct perf_read_data data; 4968 4969 /* 4970 * Orders the ->state and ->oncpu loads such that if we see 4971 * ACTIVE we must also see the right ->oncpu. 4972 * 4973 * Matches the smp_wmb() from event_sched_in(). 4974 */ 4975 smp_rmb(); 4976 4977 event_cpu = READ_ONCE(event->oncpu); 4978 if ((unsigned)event_cpu >= nr_cpu_ids) 4979 return 0; 4980 4981 data = (struct perf_read_data){ 4982 .event = event, 4983 .group = group, 4984 .ret = 0, 4985 }; 4986 4987 preempt_disable(); 4988 event_cpu = __perf_event_read_cpu(event, event_cpu); 4989 4990 /* 4991 * Purposely ignore the smp_call_function_single() return 4992 * value. 4993 * 4994 * If event_cpu isn't a valid CPU it means the event got 4995 * scheduled out and that will have updated the event count. 4996 * 4997 * Therefore, either way, we'll have an up-to-date event count 4998 * after this. 4999 */ 5000 (void)smp_call_function_single(event_cpu, __perf_event_read, &data, 1); 5001 preempt_enable(); 5002 ret = data.ret; 5003 5004 } else if (state == PERF_EVENT_STATE_INACTIVE) { 5005 struct perf_event_context *ctx = event->ctx; 5006 unsigned long flags; 5007 5008 raw_spin_lock_irqsave(&ctx->lock, flags); 5009 state = event->state; 5010 if (state != PERF_EVENT_STATE_INACTIVE) { 5011 raw_spin_unlock_irqrestore(&ctx->lock, flags); 5012 goto again; 5013 } 5014 5015 /* 5016 * May read while context is not active (e.g., thread is 5017 * blocked), in that case we cannot update context time 5018 */ 5019 ctx_time_update_event(ctx, event); 5020 5021 perf_event_update_time(event); 5022 if (group) 5023 perf_event_update_sibling_time(event); 5024 raw_spin_unlock_irqrestore(&ctx->lock, flags); 5025 } 5026 5027 return ret; 5028 } 5029 5030 /* 5031 * Initialize the perf_event context in a task_struct: 5032 */ 5033 static void __perf_event_init_context(struct perf_event_context *ctx) 5034 { 5035 raw_spin_lock_init(&ctx->lock); 5036 mutex_init(&ctx->mutex); 5037 INIT_LIST_HEAD(&ctx->pmu_ctx_list); 5038 perf_event_groups_init(&ctx->pinned_groups); 5039 perf_event_groups_init(&ctx->flexible_groups); 5040 INIT_LIST_HEAD(&ctx->event_list); 5041 refcount_set(&ctx->refcount, 1); 5042 } 5043 5044 static void 5045 __perf_init_event_pmu_context(struct perf_event_pmu_context *epc, struct pmu *pmu) 5046 { 5047 epc->pmu = pmu; 5048 INIT_LIST_HEAD(&epc->pmu_ctx_entry); 5049 INIT_LIST_HEAD(&epc->pinned_active); 5050 INIT_LIST_HEAD(&epc->flexible_active); 5051 atomic_set(&epc->refcount, 1); 5052 } 5053 5054 static struct perf_event_context * 5055 alloc_perf_context(struct task_struct *task) 5056 { 5057 struct perf_event_context *ctx; 5058 5059 ctx = kzalloc_obj(struct perf_event_context); 5060 if (!ctx) 5061 return NULL; 5062 5063 __perf_event_init_context(ctx); 5064 if (task) 5065 ctx->task = get_task_struct(task); 5066 5067 return ctx; 5068 } 5069 5070 static struct task_struct * 5071 find_lively_task_by_vpid(pid_t vpid) 5072 { 5073 struct task_struct *task; 5074 5075 rcu_read_lock(); 5076 if (!vpid) 5077 task = current; 5078 else 5079 task = find_task_by_vpid(vpid); 5080 if (task) 5081 get_task_struct(task); 5082 rcu_read_unlock(); 5083 5084 if (!task) 5085 return ERR_PTR(-ESRCH); 5086 5087 return task; 5088 } 5089 5090 /* 5091 * Returns a matching context with refcount and pincount. 5092 */ 5093 static struct perf_event_context * 5094 find_get_context(struct task_struct *task, struct perf_event *event) 5095 { 5096 struct perf_event_context *ctx, *clone_ctx = NULL; 5097 struct perf_cpu_context *cpuctx; 5098 unsigned long flags; 5099 int err; 5100 5101 if (!task) { 5102 /* Must be root to operate on a CPU event: */ 5103 err = perf_allow_cpu(); 5104 if (err) 5105 return ERR_PTR(err); 5106 5107 cpuctx = per_cpu_ptr(&perf_cpu_context, event->cpu); 5108 ctx = &cpuctx->ctx; 5109 get_ctx(ctx); 5110 raw_spin_lock_irqsave(&ctx->lock, flags); 5111 ++ctx->pin_count; 5112 raw_spin_unlock_irqrestore(&ctx->lock, flags); 5113 5114 return ctx; 5115 } 5116 5117 err = -EINVAL; 5118 retry: 5119 ctx = perf_lock_task_context(task, &flags); 5120 if (ctx) { 5121 clone_ctx = unclone_ctx(ctx); 5122 ++ctx->pin_count; 5123 5124 raw_spin_unlock_irqrestore(&ctx->lock, flags); 5125 5126 if (clone_ctx) 5127 put_ctx(clone_ctx); 5128 } else { 5129 ctx = alloc_perf_context(task); 5130 err = -ENOMEM; 5131 if (!ctx) 5132 goto errout; 5133 5134 err = 0; 5135 mutex_lock(&task->perf_event_mutex); 5136 /* 5137 * If it has already passed perf_event_exit_task(). 5138 * we must see PF_EXITING, it takes this mutex too. 5139 */ 5140 if (task->flags & PF_EXITING) 5141 err = -ESRCH; 5142 else if (task->perf_event_ctxp) 5143 err = -EAGAIN; 5144 else { 5145 get_ctx(ctx); 5146 ++ctx->pin_count; 5147 rcu_assign_pointer(task->perf_event_ctxp, ctx); 5148 } 5149 mutex_unlock(&task->perf_event_mutex); 5150 5151 if (unlikely(err)) { 5152 put_ctx(ctx); 5153 5154 if (err == -EAGAIN) 5155 goto retry; 5156 goto errout; 5157 } 5158 } 5159 5160 return ctx; 5161 5162 errout: 5163 return ERR_PTR(err); 5164 } 5165 5166 static struct perf_event_pmu_context * 5167 find_get_pmu_context(struct pmu *pmu, struct perf_event_context *ctx, 5168 struct perf_event *event) 5169 { 5170 struct perf_event_pmu_context *new = NULL, *pos = NULL, *epc; 5171 5172 if (!ctx->task) { 5173 /* 5174 * perf_pmu_migrate_context() / __perf_pmu_install_event() 5175 * relies on the fact that find_get_pmu_context() cannot fail 5176 * for CPU contexts. 5177 */ 5178 struct perf_cpu_pmu_context *cpc; 5179 5180 cpc = *per_cpu_ptr(pmu->cpu_pmu_context, event->cpu); 5181 epc = &cpc->epc; 5182 raw_spin_lock_irq(&ctx->lock); 5183 if (!epc->ctx) { 5184 /* 5185 * One extra reference for the pmu; see perf_pmu_free(). 5186 */ 5187 atomic_set(&epc->refcount, 2); 5188 epc->embedded = 1; 5189 list_add(&epc->pmu_ctx_entry, &ctx->pmu_ctx_list); 5190 epc->ctx = ctx; 5191 } else { 5192 WARN_ON_ONCE(epc->ctx != ctx); 5193 atomic_inc(&epc->refcount); 5194 } 5195 raw_spin_unlock_irq(&ctx->lock); 5196 return epc; 5197 } 5198 5199 new = kzalloc_obj(*epc); 5200 if (!new) 5201 return ERR_PTR(-ENOMEM); 5202 5203 __perf_init_event_pmu_context(new, pmu); 5204 5205 /* 5206 * XXX 5207 * 5208 * lockdep_assert_held(&ctx->mutex); 5209 * 5210 * can't because perf_event_init_task() doesn't actually hold the 5211 * child_ctx->mutex. 5212 */ 5213 5214 raw_spin_lock_irq(&ctx->lock); 5215 list_for_each_entry(epc, &ctx->pmu_ctx_list, pmu_ctx_entry) { 5216 if (epc->pmu == pmu) { 5217 WARN_ON_ONCE(epc->ctx != ctx); 5218 atomic_inc(&epc->refcount); 5219 goto found_epc; 5220 } 5221 /* Make sure the pmu_ctx_list is sorted by PMU type: */ 5222 if (!pos && epc->pmu->type > pmu->type) 5223 pos = epc; 5224 } 5225 5226 epc = new; 5227 new = NULL; 5228 5229 if (!pos) 5230 list_add_tail(&epc->pmu_ctx_entry, &ctx->pmu_ctx_list); 5231 else 5232 list_add(&epc->pmu_ctx_entry, pos->pmu_ctx_entry.prev); 5233 5234 epc->ctx = ctx; 5235 5236 found_epc: 5237 raw_spin_unlock_irq(&ctx->lock); 5238 kfree(new); 5239 5240 return epc; 5241 } 5242 5243 static void get_pmu_ctx(struct perf_event_pmu_context *epc) 5244 { 5245 WARN_ON_ONCE(!atomic_inc_not_zero(&epc->refcount)); 5246 } 5247 5248 static void free_cpc_rcu(struct rcu_head *head) 5249 { 5250 struct perf_cpu_pmu_context *cpc = 5251 container_of(head, typeof(*cpc), epc.rcu_head); 5252 5253 kfree(cpc); 5254 } 5255 5256 static void free_epc_rcu(struct rcu_head *head) 5257 { 5258 struct perf_event_pmu_context *epc = container_of(head, typeof(*epc), rcu_head); 5259 5260 kfree(epc); 5261 } 5262 5263 static void put_pmu_ctx(struct perf_event_pmu_context *epc) 5264 { 5265 struct perf_event_context *ctx = epc->ctx; 5266 unsigned long flags; 5267 5268 /* 5269 * XXX 5270 * 5271 * lockdep_assert_held(&ctx->mutex); 5272 * 5273 * can't because of the call-site in _free_event()/put_event() 5274 * which isn't always called under ctx->mutex. 5275 */ 5276 if (!atomic_dec_and_raw_lock_irqsave(&epc->refcount, &ctx->lock, flags)) 5277 return; 5278 5279 WARN_ON_ONCE(list_empty(&epc->pmu_ctx_entry)); 5280 5281 list_del_init(&epc->pmu_ctx_entry); 5282 epc->ctx = NULL; 5283 5284 WARN_ON_ONCE(!list_empty(&epc->pinned_active)); 5285 WARN_ON_ONCE(!list_empty(&epc->flexible_active)); 5286 5287 raw_spin_unlock_irqrestore(&ctx->lock, flags); 5288 5289 if (epc->embedded) { 5290 call_rcu(&epc->rcu_head, free_cpc_rcu); 5291 return; 5292 } 5293 5294 call_rcu(&epc->rcu_head, free_epc_rcu); 5295 } 5296 5297 static void perf_event_free_filter(struct perf_event *event); 5298 5299 static void free_event_rcu(struct rcu_head *head) 5300 { 5301 struct perf_event *event = container_of(head, typeof(*event), rcu_head); 5302 5303 if (event->ns) 5304 put_pid_ns(event->ns); 5305 perf_event_free_filter(event); 5306 kmem_cache_free(perf_event_cache, event); 5307 } 5308 5309 static void ring_buffer_attach(struct perf_event *event, 5310 struct perf_buffer *rb); 5311 5312 static void detach_sb_event(struct perf_event *event) 5313 { 5314 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu); 5315 5316 raw_spin_lock(&pel->lock); 5317 list_del_rcu(&event->sb_list); 5318 raw_spin_unlock(&pel->lock); 5319 } 5320 5321 static bool is_sb_event(struct perf_event *event) 5322 { 5323 struct perf_event_attr *attr = &event->attr; 5324 5325 if (event->parent) 5326 return false; 5327 5328 if (event->attach_state & PERF_ATTACH_TASK) 5329 return false; 5330 5331 if (attr->mmap || attr->mmap_data || attr->mmap2 || 5332 attr->comm || attr->comm_exec || 5333 attr->task || attr->ksymbol || 5334 attr->context_switch || attr->text_poke || 5335 attr->bpf_event) 5336 return true; 5337 5338 return false; 5339 } 5340 5341 static void unaccount_pmu_sb_event(struct perf_event *event) 5342 { 5343 if (is_sb_event(event)) 5344 detach_sb_event(event); 5345 } 5346 5347 #ifdef CONFIG_NO_HZ_FULL 5348 static DEFINE_SPINLOCK(nr_freq_lock); 5349 #endif 5350 5351 static void unaccount_freq_event_nohz(void) 5352 { 5353 #ifdef CONFIG_NO_HZ_FULL 5354 spin_lock(&nr_freq_lock); 5355 if (atomic_dec_and_test(&nr_freq_events)) 5356 tick_nohz_dep_clear(TICK_DEP_BIT_PERF_EVENTS); 5357 spin_unlock(&nr_freq_lock); 5358 #endif 5359 } 5360 5361 static void unaccount_freq_event(void) 5362 { 5363 if (tick_nohz_full_enabled()) 5364 unaccount_freq_event_nohz(); 5365 else 5366 atomic_dec(&nr_freq_events); 5367 } 5368 5369 5370 static struct perf_ctx_data * 5371 alloc_perf_ctx_data(struct kmem_cache *ctx_cache, bool global, gfp_t gfp_flags) 5372 { 5373 struct perf_ctx_data *cd; 5374 5375 cd = kzalloc_obj(*cd, gfp_flags); 5376 if (!cd) 5377 return NULL; 5378 5379 cd->data = kmem_cache_zalloc(ctx_cache, gfp_flags); 5380 if (!cd->data) { 5381 kfree(cd); 5382 return NULL; 5383 } 5384 5385 cd->global = global; 5386 cd->ctx_cache = ctx_cache; 5387 refcount_set(&cd->refcount, 1); 5388 5389 return cd; 5390 } 5391 5392 static void free_perf_ctx_data(struct perf_ctx_data *cd) 5393 { 5394 kmem_cache_free(cd->ctx_cache, cd->data); 5395 kfree(cd); 5396 } 5397 5398 static void __free_perf_ctx_data_rcu(struct rcu_head *rcu_head) 5399 { 5400 struct perf_ctx_data *cd; 5401 5402 cd = container_of(rcu_head, struct perf_ctx_data, rcu_head); 5403 free_perf_ctx_data(cd); 5404 } 5405 5406 static inline void perf_free_ctx_data_rcu(struct perf_ctx_data *cd) 5407 { 5408 call_rcu(&cd->rcu_head, __free_perf_ctx_data_rcu); 5409 } 5410 5411 static int 5412 attach_task_ctx_data(struct task_struct *task, struct kmem_cache *ctx_cache, 5413 bool global, gfp_t gfp_flags) 5414 { 5415 struct perf_ctx_data *cd, *old = NULL; 5416 5417 cd = alloc_perf_ctx_data(ctx_cache, global, gfp_flags); 5418 if (!cd) 5419 return -ENOMEM; 5420 5421 for (;;) { 5422 if (try_cmpxchg(&task->perf_ctx_data, &old, cd)) { 5423 if (old) 5424 perf_free_ctx_data_rcu(old); 5425 /* 5426 * Above try_cmpxchg() pairs with try_cmpxchg() from 5427 * detach_task_ctx_data() such that 5428 * if we race with perf_event_exit_task(), we must 5429 * observe PF_EXITING. 5430 */ 5431 if (task->flags & PF_EXITING) { 5432 /* detach_task_ctx_data() may free it already */ 5433 if (try_cmpxchg(&task->perf_ctx_data, &cd, NULL)) 5434 perf_free_ctx_data_rcu(cd); 5435 } 5436 return 0; 5437 } 5438 5439 if (!old) { 5440 /* 5441 * After seeing a dead @old, we raced with 5442 * removal and lost, try again to install @cd. 5443 */ 5444 continue; 5445 } 5446 5447 if (refcount_inc_not_zero(&old->refcount)) { 5448 free_perf_ctx_data(cd); /* unused */ 5449 return 0; 5450 } 5451 5452 /* 5453 * @old is a dead object, refcount==0 is stable, try and 5454 * replace it with @cd. 5455 */ 5456 } 5457 return 0; 5458 } 5459 5460 static void __detach_global_ctx_data(void); 5461 DEFINE_STATIC_PERCPU_RWSEM(global_ctx_data_rwsem); 5462 static refcount_t global_ctx_data_ref; 5463 5464 static int 5465 attach_global_ctx_data(struct kmem_cache *ctx_cache) 5466 { 5467 struct task_struct *g, *p; 5468 struct perf_ctx_data *cd; 5469 int ret; 5470 5471 if (refcount_inc_not_zero(&global_ctx_data_ref)) 5472 return 0; 5473 5474 guard(percpu_write)(&global_ctx_data_rwsem); 5475 if (refcount_inc_not_zero(&global_ctx_data_ref)) 5476 return 0; 5477 again: 5478 /* Allocate everything */ 5479 scoped_guard (rcu) { 5480 for_each_process_thread(g, p) { 5481 if (p->flags & PF_EXITING) 5482 continue; 5483 cd = rcu_dereference(p->perf_ctx_data); 5484 if (cd && !cd->global) { 5485 cd->global = 1; 5486 if (!refcount_inc_not_zero(&cd->refcount)) 5487 cd = NULL; 5488 } 5489 if (!cd) { 5490 /* 5491 * Try to allocate context quickly before 5492 * traversing the whole thread list again. 5493 */ 5494 if (!attach_task_ctx_data(p, ctx_cache, true, GFP_NOWAIT)) 5495 continue; 5496 get_task_struct(p); 5497 goto alloc; 5498 } 5499 } 5500 } 5501 5502 refcount_set(&global_ctx_data_ref, 1); 5503 5504 return 0; 5505 alloc: 5506 ret = attach_task_ctx_data(p, ctx_cache, true, GFP_KERNEL); 5507 put_task_struct(p); 5508 if (ret) { 5509 __detach_global_ctx_data(); 5510 return ret; 5511 } 5512 goto again; 5513 } 5514 5515 static int 5516 attach_perf_ctx_data(struct perf_event *event) 5517 { 5518 struct task_struct *task = event->hw.target; 5519 struct kmem_cache *ctx_cache = event->pmu->task_ctx_cache; 5520 int ret; 5521 5522 if (!ctx_cache) 5523 return -ENOMEM; 5524 5525 if (task) 5526 return attach_task_ctx_data(task, ctx_cache, false, GFP_KERNEL); 5527 5528 ret = attach_global_ctx_data(ctx_cache); 5529 if (ret) 5530 return ret; 5531 5532 event->attach_state |= PERF_ATTACH_GLOBAL_DATA; 5533 return 0; 5534 } 5535 5536 static void 5537 detach_task_ctx_data(struct task_struct *p) 5538 { 5539 struct perf_ctx_data *cd; 5540 5541 scoped_guard (rcu) { 5542 cd = rcu_dereference(p->perf_ctx_data); 5543 if (!cd || !refcount_dec_and_test(&cd->refcount)) 5544 return; 5545 } 5546 5547 /* 5548 * The old ctx_data may be lost because of the race. 5549 * Nothing is required to do for the case. 5550 * See attach_task_ctx_data(). 5551 */ 5552 if (try_cmpxchg((struct perf_ctx_data **)&p->perf_ctx_data, &cd, NULL)) 5553 perf_free_ctx_data_rcu(cd); 5554 } 5555 5556 static void __detach_global_ctx_data(void) 5557 { 5558 struct task_struct *g, *p; 5559 struct perf_ctx_data *cd; 5560 5561 scoped_guard (rcu) { 5562 for_each_process_thread(g, p) { 5563 cd = rcu_dereference(p->perf_ctx_data); 5564 if (cd && cd->global) { 5565 cd->global = 0; 5566 detach_task_ctx_data(p); 5567 } 5568 } 5569 } 5570 } 5571 5572 static void detach_global_ctx_data(void) 5573 { 5574 if (refcount_dec_not_one(&global_ctx_data_ref)) 5575 return; 5576 5577 guard(percpu_write)(&global_ctx_data_rwsem); 5578 if (!refcount_dec_and_test(&global_ctx_data_ref)) 5579 return; 5580 5581 /* remove everything */ 5582 __detach_global_ctx_data(); 5583 } 5584 5585 static void detach_perf_ctx_data(struct perf_event *event) 5586 { 5587 struct task_struct *task = event->hw.target; 5588 5589 event->attach_state &= ~PERF_ATTACH_TASK_DATA; 5590 5591 if (task) 5592 return detach_task_ctx_data(task); 5593 5594 if (event->attach_state & PERF_ATTACH_GLOBAL_DATA) { 5595 detach_global_ctx_data(); 5596 event->attach_state &= ~PERF_ATTACH_GLOBAL_DATA; 5597 } 5598 } 5599 5600 static void unaccount_event(struct perf_event *event) 5601 { 5602 bool dec = false; 5603 5604 if (event->parent) 5605 return; 5606 5607 if (event->attach_state & (PERF_ATTACH_TASK | PERF_ATTACH_SCHED_CB)) 5608 dec = true; 5609 if (event->attr.mmap || event->attr.mmap_data) 5610 atomic_dec(&nr_mmap_events); 5611 if (event->attr.build_id) 5612 atomic_dec(&nr_build_id_events); 5613 if (event->attr.comm) 5614 atomic_dec(&nr_comm_events); 5615 if (event->attr.namespaces) 5616 atomic_dec(&nr_namespaces_events); 5617 if (event->attr.cgroup) 5618 atomic_dec(&nr_cgroup_events); 5619 if (event->attr.task) 5620 atomic_dec(&nr_task_events); 5621 if (event->attr.freq) 5622 unaccount_freq_event(); 5623 if (event->attr.context_switch) { 5624 dec = true; 5625 atomic_dec(&nr_switch_events); 5626 } 5627 if (is_cgroup_event(event)) 5628 dec = true; 5629 if (has_branch_stack(event)) 5630 dec = true; 5631 if (event->attr.ksymbol) 5632 atomic_dec(&nr_ksymbol_events); 5633 if (event->attr.bpf_event) 5634 atomic_dec(&nr_bpf_events); 5635 if (event->attr.text_poke) 5636 atomic_dec(&nr_text_poke_events); 5637 5638 if (dec) { 5639 if (!atomic_add_unless(&perf_sched_count, -1, 1)) 5640 schedule_delayed_work(&perf_sched_work, HZ); 5641 } 5642 5643 unaccount_pmu_sb_event(event); 5644 } 5645 5646 static void perf_sched_delayed(struct work_struct *work) 5647 { 5648 mutex_lock(&perf_sched_mutex); 5649 if (atomic_dec_and_test(&perf_sched_count)) 5650 static_branch_disable(&perf_sched_events); 5651 mutex_unlock(&perf_sched_mutex); 5652 } 5653 5654 /* 5655 * The following implement mutual exclusion of events on "exclusive" pmus 5656 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled 5657 * at a time, so we disallow creating events that might conflict, namely: 5658 * 5659 * 1) cpu-wide events in the presence of per-task events, 5660 * 2) per-task events in the presence of cpu-wide events, 5661 * 3) two matching events on the same perf_event_context. 5662 * 5663 * The former two cases are handled in the allocation path (perf_event_alloc(), 5664 * _free_event()), the latter -- before the first perf_install_in_context(). 5665 */ 5666 static int exclusive_event_init(struct perf_event *event) 5667 { 5668 struct pmu *pmu = event->pmu; 5669 5670 if (!is_exclusive_pmu(pmu)) 5671 return 0; 5672 5673 /* 5674 * Prevent co-existence of per-task and cpu-wide events on the 5675 * same exclusive pmu. 5676 * 5677 * Negative pmu::exclusive_cnt means there are cpu-wide 5678 * events on this "exclusive" pmu, positive means there are 5679 * per-task events. 5680 * 5681 * Since this is called in perf_event_alloc() path, event::ctx 5682 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK 5683 * to mean "per-task event", because unlike other attach states it 5684 * never gets cleared. 5685 */ 5686 if (event->attach_state & PERF_ATTACH_TASK) { 5687 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt)) 5688 return -EBUSY; 5689 } else { 5690 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt)) 5691 return -EBUSY; 5692 } 5693 5694 event->attach_state |= PERF_ATTACH_EXCLUSIVE; 5695 5696 return 0; 5697 } 5698 5699 static void exclusive_event_destroy(struct perf_event *event) 5700 { 5701 struct pmu *pmu = event->pmu; 5702 5703 /* see comment in exclusive_event_init() */ 5704 if (event->attach_state & PERF_ATTACH_TASK) 5705 atomic_dec(&pmu->exclusive_cnt); 5706 else 5707 atomic_inc(&pmu->exclusive_cnt); 5708 5709 event->attach_state &= ~PERF_ATTACH_EXCLUSIVE; 5710 } 5711 5712 static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2) 5713 { 5714 if ((e1->pmu == e2->pmu) && 5715 (e1->cpu == e2->cpu || 5716 e1->cpu == -1 || 5717 e2->cpu == -1)) 5718 return true; 5719 return false; 5720 } 5721 5722 static bool exclusive_event_installable(struct perf_event *event, 5723 struct perf_event_context *ctx) 5724 { 5725 struct perf_event *iter_event; 5726 struct pmu *pmu = event->pmu; 5727 5728 lockdep_assert_held(&ctx->mutex); 5729 5730 if (!is_exclusive_pmu(pmu)) 5731 return true; 5732 5733 list_for_each_entry(iter_event, &ctx->event_list, event_entry) { 5734 if (exclusive_event_match(iter_event, event)) 5735 return false; 5736 } 5737 5738 return true; 5739 } 5740 5741 static void perf_free_addr_filters(struct perf_event *event); 5742 5743 /* vs perf_event_alloc() error */ 5744 static void __free_event(struct perf_event *event) 5745 { 5746 struct pmu *pmu = event->pmu; 5747 5748 security_perf_event_free(event); 5749 5750 if (event->attach_state & PERF_ATTACH_CALLCHAIN) 5751 put_callchain_buffers(); 5752 5753 kfree(event->addr_filter_ranges); 5754 5755 if (event->attach_state & PERF_ATTACH_EXCLUSIVE) 5756 exclusive_event_destroy(event); 5757 5758 if (is_cgroup_event(event)) 5759 perf_detach_cgroup(event); 5760 5761 if (event->attach_state & PERF_ATTACH_TASK_DATA) 5762 detach_perf_ctx_data(event); 5763 5764 if (event->destroy) 5765 event->destroy(event); 5766 5767 /* 5768 * Must be after ->destroy(), due to uprobe_perf_close() using 5769 * hw.target. 5770 */ 5771 if (event->hw.target) 5772 put_task_struct(event->hw.target); 5773 5774 if (event->pmu_ctx) { 5775 /* 5776 * put_pmu_ctx() needs an event->ctx reference, because of 5777 * epc->ctx. 5778 */ 5779 WARN_ON_ONCE(!pmu); 5780 WARN_ON_ONCE(!event->ctx); 5781 WARN_ON_ONCE(event->pmu_ctx->ctx != event->ctx); 5782 put_pmu_ctx(event->pmu_ctx); 5783 } 5784 5785 /* 5786 * perf_event_free_task() relies on put_ctx() being 'last', in 5787 * particular all task references must be cleaned up. 5788 */ 5789 if (event->ctx) 5790 put_ctx(event->ctx); 5791 5792 if (pmu) { 5793 module_put(pmu->module); 5794 scoped_guard (spinlock, &pmu->events_lock) { 5795 list_del(&event->pmu_list); 5796 wake_up_var(pmu); 5797 } 5798 } 5799 5800 call_rcu(&event->rcu_head, free_event_rcu); 5801 } 5802 5803 static void mediated_pmu_unaccount_event(struct perf_event *event); 5804 5805 DEFINE_FREE(__free_event, struct perf_event *, if (_T) __free_event(_T)) 5806 5807 /* vs perf_event_alloc() success */ 5808 static void _free_event(struct perf_event *event) 5809 { 5810 irq_work_sync(&event->pending_irq); 5811 irq_work_sync(&event->pending_disable_irq); 5812 5813 unaccount_event(event); 5814 mediated_pmu_unaccount_event(event); 5815 5816 if (event->rb) { 5817 /* 5818 * Can happen when we close an event with re-directed output. 5819 * 5820 * Since we have a 0 refcount, perf_mmap_close() will skip 5821 * over us; possibly making our ring_buffer_put() the last. 5822 */ 5823 mutex_lock(&event->mmap_mutex); 5824 ring_buffer_attach(event, NULL); 5825 mutex_unlock(&event->mmap_mutex); 5826 } 5827 5828 perf_event_free_bpf_prog(event); 5829 perf_free_addr_filters(event); 5830 5831 __free_event(event); 5832 } 5833 5834 /* 5835 * Used to free events which have a known refcount of 1, such as in error paths 5836 * of inherited events. 5837 */ 5838 static void free_event(struct perf_event *event) 5839 { 5840 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1, 5841 "unexpected event refcount: %ld; ptr=%p\n", 5842 atomic_long_read(&event->refcount), event)) { 5843 /* leak to avoid use-after-free */ 5844 return; 5845 } 5846 5847 _free_event(event); 5848 } 5849 5850 /* 5851 * Remove user event from the owner task. 5852 */ 5853 static void perf_remove_from_owner(struct perf_event *event) 5854 { 5855 struct task_struct *owner; 5856 5857 rcu_read_lock(); 5858 /* 5859 * Matches the smp_store_release() in perf_event_exit_task(). If we 5860 * observe !owner it means the list deletion is complete and we can 5861 * indeed free this event, otherwise we need to serialize on 5862 * owner->perf_event_mutex. 5863 */ 5864 owner = READ_ONCE(event->owner); 5865 if (owner) { 5866 /* 5867 * Since delayed_put_task_struct() also drops the last 5868 * task reference we can safely take a new reference 5869 * while holding the rcu_read_lock(). 5870 */ 5871 get_task_struct(owner); 5872 } 5873 rcu_read_unlock(); 5874 5875 if (owner) { 5876 /* 5877 * If we're here through perf_event_exit_task() we're already 5878 * holding ctx->mutex which would be an inversion wrt. the 5879 * normal lock order. 5880 * 5881 * However we can safely take this lock because its the child 5882 * ctx->mutex. 5883 */ 5884 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING); 5885 5886 /* 5887 * We have to re-check the event->owner field, if it is cleared 5888 * we raced with perf_event_exit_task(), acquiring the mutex 5889 * ensured they're done, and we can proceed with freeing the 5890 * event. 5891 */ 5892 if (event->owner) { 5893 list_del_init(&event->owner_entry); 5894 smp_store_release(&event->owner, NULL); 5895 } 5896 mutex_unlock(&owner->perf_event_mutex); 5897 put_task_struct(owner); 5898 } 5899 } 5900 5901 static void put_event(struct perf_event *event) 5902 { 5903 struct perf_event *parent; 5904 5905 if (!atomic_long_dec_and_test(&event->refcount)) 5906 return; 5907 5908 parent = event->parent; 5909 _free_event(event); 5910 5911 /* Matches the refcount bump in inherit_event() */ 5912 if (parent) 5913 put_event(parent); 5914 } 5915 5916 /* 5917 * Kill an event dead; while event:refcount will preserve the event 5918 * object, it will not preserve its functionality. Once the last 'user' 5919 * gives up the object, we'll destroy the thing. 5920 */ 5921 int perf_event_release_kernel(struct perf_event *event) 5922 { 5923 struct perf_event_context *ctx = event->ctx; 5924 struct perf_event *child, *tmp; 5925 5926 /* 5927 * If we got here through err_alloc: free_event(event); we will not 5928 * have attached to a context yet. 5929 */ 5930 if (!ctx) { 5931 WARN_ON_ONCE(event->attach_state & 5932 (PERF_ATTACH_CONTEXT|PERF_ATTACH_GROUP)); 5933 goto no_ctx; 5934 } 5935 5936 if (!is_kernel_event(event)) 5937 perf_remove_from_owner(event); 5938 5939 ctx = perf_event_ctx_lock(event); 5940 WARN_ON_ONCE(ctx->parent_ctx); 5941 5942 /* 5943 * Mark this event as STATE_DEAD, there is no external reference to it 5944 * anymore. 5945 * 5946 * Anybody acquiring event->child_mutex after the below loop _must_ 5947 * also see this, most importantly inherit_event() which will avoid 5948 * placing more children on the list. 5949 * 5950 * Thus this guarantees that we will in fact observe and kill _ALL_ 5951 * child events. 5952 */ 5953 if (event->state > PERF_EVENT_STATE_REVOKED) { 5954 perf_remove_from_context(event, DETACH_GROUP|DETACH_DEAD); 5955 } else { 5956 event->state = PERF_EVENT_STATE_DEAD; 5957 } 5958 5959 perf_event_ctx_unlock(event, ctx); 5960 5961 again: 5962 mutex_lock(&event->child_mutex); 5963 list_for_each_entry(child, &event->child_list, child_list) { 5964 /* 5965 * Cannot change, child events are not migrated, see the 5966 * comment with perf_event_ctx_lock_nested(). 5967 */ 5968 ctx = READ_ONCE(child->ctx); 5969 /* 5970 * Since child_mutex nests inside ctx::mutex, we must jump 5971 * through hoops. We start by grabbing a reference on the ctx. 5972 * 5973 * Since the event cannot get freed while we hold the 5974 * child_mutex, the context must also exist and have a !0 5975 * reference count. 5976 */ 5977 get_ctx(ctx); 5978 5979 /* 5980 * Now that we have a ctx ref, we can drop child_mutex, and 5981 * acquire ctx::mutex without fear of it going away. Then we 5982 * can re-acquire child_mutex. 5983 */ 5984 mutex_unlock(&event->child_mutex); 5985 mutex_lock(&ctx->mutex); 5986 mutex_lock(&event->child_mutex); 5987 5988 /* 5989 * Now that we hold ctx::mutex and child_mutex, revalidate our 5990 * state, if child is still the first entry, it didn't get freed 5991 * and we can continue doing so. 5992 */ 5993 tmp = list_first_entry_or_null(&event->child_list, 5994 struct perf_event, child_list); 5995 if (tmp == child) { 5996 perf_remove_from_context(child, DETACH_GROUP | DETACH_CHILD); 5997 } else { 5998 child = NULL; 5999 } 6000 6001 mutex_unlock(&event->child_mutex); 6002 mutex_unlock(&ctx->mutex); 6003 6004 if (child) { 6005 /* Last reference unless ->pending_task work is pending */ 6006 put_event(child); 6007 } 6008 put_ctx(ctx); 6009 6010 goto again; 6011 } 6012 mutex_unlock(&event->child_mutex); 6013 6014 no_ctx: 6015 /* 6016 * Last reference unless ->pending_task work is pending on this event 6017 * or any of its children. 6018 */ 6019 put_event(event); 6020 return 0; 6021 } 6022 EXPORT_SYMBOL_GPL(perf_event_release_kernel); 6023 6024 /* 6025 * Called when the last reference to the file is gone. 6026 */ 6027 static int perf_release(struct inode *inode, struct file *file) 6028 { 6029 perf_event_release_kernel(file->private_data); 6030 return 0; 6031 } 6032 6033 static u64 __perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running) 6034 { 6035 struct perf_event *child; 6036 u64 total = 0; 6037 6038 *enabled = 0; 6039 *running = 0; 6040 6041 mutex_lock(&event->child_mutex); 6042 6043 (void)perf_event_read(event, false); 6044 total += perf_event_count(event, false); 6045 6046 *enabled += event->total_time_enabled + 6047 atomic64_read(&event->child_total_time_enabled); 6048 *running += event->total_time_running + 6049 atomic64_read(&event->child_total_time_running); 6050 6051 list_for_each_entry(child, &event->child_list, child_list) { 6052 (void)perf_event_read(child, false); 6053 total += perf_event_count(child, false); 6054 *enabled += child->total_time_enabled; 6055 *running += child->total_time_running; 6056 } 6057 mutex_unlock(&event->child_mutex); 6058 6059 return total; 6060 } 6061 6062 u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running) 6063 { 6064 struct perf_event_context *ctx; 6065 u64 count; 6066 6067 ctx = perf_event_ctx_lock(event); 6068 count = __perf_event_read_value(event, enabled, running); 6069 perf_event_ctx_unlock(event, ctx); 6070 6071 return count; 6072 } 6073 EXPORT_SYMBOL_GPL(perf_event_read_value); 6074 6075 static int __perf_read_group_add(struct perf_event *leader, 6076 u64 read_format, u64 *values) 6077 { 6078 struct perf_event_context *ctx = leader->ctx; 6079 struct perf_event *sub, *parent; 6080 unsigned long flags; 6081 int n = 1; /* skip @nr */ 6082 int ret; 6083 6084 ret = perf_event_read(leader, true); 6085 if (ret) 6086 return ret; 6087 6088 raw_spin_lock_irqsave(&ctx->lock, flags); 6089 /* 6090 * Verify the grouping between the parent and child (inherited) 6091 * events is still in tact. 6092 * 6093 * Specifically: 6094 * - leader->ctx->lock pins leader->sibling_list 6095 * - parent->child_mutex pins parent->child_list 6096 * - parent->ctx->mutex pins parent->sibling_list 6097 * 6098 * Because parent->ctx != leader->ctx (and child_list nests inside 6099 * ctx->mutex), group destruction is not atomic between children, also 6100 * see perf_event_release_kernel(). Additionally, parent can grow the 6101 * group. 6102 * 6103 * Therefore it is possible to have parent and child groups in a 6104 * different configuration and summing over such a beast makes no sense 6105 * what so ever. 6106 * 6107 * Reject this. 6108 */ 6109 parent = leader->parent; 6110 if (parent && 6111 (parent->group_generation != leader->group_generation || 6112 parent->nr_siblings != leader->nr_siblings)) { 6113 ret = -ECHILD; 6114 goto unlock; 6115 } 6116 6117 /* 6118 * Since we co-schedule groups, {enabled,running} times of siblings 6119 * will be identical to those of the leader, so we only publish one 6120 * set. 6121 */ 6122 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) { 6123 values[n++] += leader->total_time_enabled + 6124 atomic64_read(&leader->child_total_time_enabled); 6125 } 6126 6127 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) { 6128 values[n++] += leader->total_time_running + 6129 atomic64_read(&leader->child_total_time_running); 6130 } 6131 6132 /* 6133 * Write {count,id} tuples for every sibling. 6134 */ 6135 values[n++] += perf_event_count(leader, false); 6136 if (read_format & PERF_FORMAT_ID) 6137 values[n++] = primary_event_id(leader); 6138 if (read_format & PERF_FORMAT_LOST) 6139 values[n++] = atomic64_read(&leader->lost_samples); 6140 6141 for_each_sibling_event(sub, leader) { 6142 values[n++] += perf_event_count(sub, false); 6143 if (read_format & PERF_FORMAT_ID) 6144 values[n++] = primary_event_id(sub); 6145 if (read_format & PERF_FORMAT_LOST) 6146 values[n++] = atomic64_read(&sub->lost_samples); 6147 } 6148 6149 unlock: 6150 raw_spin_unlock_irqrestore(&ctx->lock, flags); 6151 return ret; 6152 } 6153 6154 static int perf_read_group(struct perf_event *event, 6155 u64 read_format, char __user *buf) 6156 { 6157 struct perf_event *leader = event->group_leader, *child; 6158 struct perf_event_context *ctx = leader->ctx; 6159 int ret; 6160 u64 *values; 6161 6162 lockdep_assert_held(&ctx->mutex); 6163 6164 values = kzalloc(event->read_size, GFP_KERNEL); 6165 if (!values) 6166 return -ENOMEM; 6167 6168 values[0] = 1 + leader->nr_siblings; 6169 6170 mutex_lock(&leader->child_mutex); 6171 6172 ret = __perf_read_group_add(leader, read_format, values); 6173 if (ret) 6174 goto unlock; 6175 6176 list_for_each_entry(child, &leader->child_list, child_list) { 6177 ret = __perf_read_group_add(child, read_format, values); 6178 if (ret) 6179 goto unlock; 6180 } 6181 6182 mutex_unlock(&leader->child_mutex); 6183 6184 ret = event->read_size; 6185 if (copy_to_user(buf, values, event->read_size)) 6186 ret = -EFAULT; 6187 goto out; 6188 6189 unlock: 6190 mutex_unlock(&leader->child_mutex); 6191 out: 6192 kfree(values); 6193 return ret; 6194 } 6195 6196 static int perf_read_one(struct perf_event *event, 6197 u64 read_format, char __user *buf) 6198 { 6199 u64 enabled, running; 6200 u64 values[5]; 6201 int n = 0; 6202 6203 values[n++] = __perf_event_read_value(event, &enabled, &running); 6204 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) 6205 values[n++] = enabled; 6206 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) 6207 values[n++] = running; 6208 if (read_format & PERF_FORMAT_ID) 6209 values[n++] = primary_event_id(event); 6210 if (read_format & PERF_FORMAT_LOST) 6211 values[n++] = atomic64_read(&event->lost_samples); 6212 6213 if (copy_to_user(buf, values, n * sizeof(u64))) 6214 return -EFAULT; 6215 6216 return n * sizeof(u64); 6217 } 6218 6219 static bool is_event_hup(struct perf_event *event) 6220 { 6221 bool no_children; 6222 6223 if (event->state > PERF_EVENT_STATE_EXIT) 6224 return false; 6225 6226 mutex_lock(&event->child_mutex); 6227 no_children = list_empty(&event->child_list); 6228 mutex_unlock(&event->child_mutex); 6229 return no_children; 6230 } 6231 6232 /* 6233 * Read the performance event - simple non blocking version for now 6234 */ 6235 static ssize_t 6236 __perf_read(struct perf_event *event, char __user *buf, size_t count) 6237 { 6238 u64 read_format = event->attr.read_format; 6239 int ret; 6240 6241 /* 6242 * Return end-of-file for a read on an event that is in 6243 * error state (i.e. because it was pinned but it couldn't be 6244 * scheduled on to the CPU at some point). 6245 */ 6246 if (event->state == PERF_EVENT_STATE_ERROR) 6247 return 0; 6248 6249 if (count < event->read_size) 6250 return -ENOSPC; 6251 6252 WARN_ON_ONCE(event->ctx->parent_ctx); 6253 if (read_format & PERF_FORMAT_GROUP) 6254 ret = perf_read_group(event, read_format, buf); 6255 else 6256 ret = perf_read_one(event, read_format, buf); 6257 6258 return ret; 6259 } 6260 6261 static ssize_t 6262 perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) 6263 { 6264 struct perf_event *event = file->private_data; 6265 struct perf_event_context *ctx; 6266 int ret; 6267 6268 ret = security_perf_event_read(event); 6269 if (ret) 6270 return ret; 6271 6272 ctx = perf_event_ctx_lock(event); 6273 ret = __perf_read(event, buf, count); 6274 perf_event_ctx_unlock(event, ctx); 6275 6276 return ret; 6277 } 6278 6279 static __poll_t perf_poll(struct file *file, poll_table *wait) 6280 { 6281 struct perf_event *event = file->private_data; 6282 struct perf_buffer *rb; 6283 __poll_t events = EPOLLHUP; 6284 6285 if (event->state <= PERF_EVENT_STATE_REVOKED) 6286 return EPOLLERR; 6287 6288 poll_wait(file, &event->waitq, wait); 6289 6290 if (event->state <= PERF_EVENT_STATE_REVOKED) 6291 return EPOLLERR; 6292 6293 if (is_event_hup(event)) 6294 return events; 6295 6296 if (unlikely(READ_ONCE(event->state) == PERF_EVENT_STATE_ERROR && 6297 event->attr.pinned)) 6298 return EPOLLERR; 6299 6300 /* 6301 * Pin the event->rb by taking event->mmap_mutex; otherwise 6302 * perf_event_set_output() can swizzle our rb and make us miss wakeups. 6303 */ 6304 mutex_lock(&event->mmap_mutex); 6305 rb = event->rb; 6306 if (rb) 6307 events = atomic_xchg(&rb->poll, 0); 6308 mutex_unlock(&event->mmap_mutex); 6309 return events; 6310 } 6311 6312 static void _perf_event_reset(struct perf_event *event) 6313 { 6314 (void)perf_event_read(event, false); 6315 local64_set(&event->count, 0); 6316 perf_event_update_userpage(event); 6317 } 6318 6319 /* Assume it's not an event with inherit set. */ 6320 u64 perf_event_pause(struct perf_event *event, bool reset) 6321 { 6322 struct perf_event_context *ctx; 6323 u64 count; 6324 6325 ctx = perf_event_ctx_lock(event); 6326 WARN_ON_ONCE(event->attr.inherit); 6327 _perf_event_disable(event); 6328 count = local64_read(&event->count); 6329 if (reset) 6330 local64_set(&event->count, 0); 6331 perf_event_ctx_unlock(event, ctx); 6332 6333 return count; 6334 } 6335 EXPORT_SYMBOL_GPL(perf_event_pause); 6336 6337 #ifdef CONFIG_PERF_GUEST_MEDIATED_PMU 6338 static atomic_t nr_include_guest_events __read_mostly; 6339 6340 static atomic_t nr_mediated_pmu_vms __read_mostly; 6341 static DEFINE_MUTEX(perf_mediated_pmu_mutex); 6342 6343 /* !exclude_guest event of PMU with PERF_PMU_CAP_MEDIATED_VPMU */ 6344 static inline bool is_include_guest_event(struct perf_event *event) 6345 { 6346 if ((event->pmu->capabilities & PERF_PMU_CAP_MEDIATED_VPMU) && 6347 !event->attr.exclude_guest) 6348 return true; 6349 6350 return false; 6351 } 6352 6353 static int mediated_pmu_account_event(struct perf_event *event) 6354 { 6355 if (!is_include_guest_event(event)) 6356 return 0; 6357 6358 if (atomic_inc_not_zero(&nr_include_guest_events)) 6359 return 0; 6360 6361 guard(mutex)(&perf_mediated_pmu_mutex); 6362 if (atomic_read(&nr_mediated_pmu_vms)) 6363 return -EOPNOTSUPP; 6364 6365 atomic_inc(&nr_include_guest_events); 6366 return 0; 6367 } 6368 6369 static void mediated_pmu_unaccount_event(struct perf_event *event) 6370 { 6371 if (!is_include_guest_event(event)) 6372 return; 6373 6374 if (WARN_ON_ONCE(!atomic_read(&nr_include_guest_events))) 6375 return; 6376 6377 atomic_dec(&nr_include_guest_events); 6378 } 6379 6380 /* 6381 * Currently invoked at VM creation to 6382 * - Check whether there are existing !exclude_guest events of PMU with 6383 * PERF_PMU_CAP_MEDIATED_VPMU 6384 * - Set nr_mediated_pmu_vms to prevent !exclude_guest event creation on 6385 * PMUs with PERF_PMU_CAP_MEDIATED_VPMU 6386 * 6387 * No impact for the PMU without PERF_PMU_CAP_MEDIATED_VPMU. The perf 6388 * still owns all the PMU resources. 6389 */ 6390 int perf_create_mediated_pmu(void) 6391 { 6392 if (atomic_inc_not_zero(&nr_mediated_pmu_vms)) 6393 return 0; 6394 6395 guard(mutex)(&perf_mediated_pmu_mutex); 6396 if (atomic_read(&nr_include_guest_events)) 6397 return -EBUSY; 6398 6399 atomic_inc(&nr_mediated_pmu_vms); 6400 return 0; 6401 } 6402 EXPORT_SYMBOL_FOR_KVM(perf_create_mediated_pmu); 6403 6404 void perf_release_mediated_pmu(void) 6405 { 6406 if (WARN_ON_ONCE(!atomic_read(&nr_mediated_pmu_vms))) 6407 return; 6408 6409 atomic_dec(&nr_mediated_pmu_vms); 6410 } 6411 EXPORT_SYMBOL_FOR_KVM(perf_release_mediated_pmu); 6412 6413 /* When loading a guest's mediated PMU, schedule out all exclude_guest events. */ 6414 void perf_load_guest_context(void) 6415 { 6416 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 6417 6418 lockdep_assert_irqs_disabled(); 6419 6420 guard(perf_ctx_lock)(cpuctx, cpuctx->task_ctx); 6421 6422 if (WARN_ON_ONCE(__this_cpu_read(guest_ctx_loaded))) 6423 return; 6424 6425 perf_ctx_disable(&cpuctx->ctx, EVENT_GUEST); 6426 ctx_sched_out(&cpuctx->ctx, NULL, EVENT_GUEST); 6427 if (cpuctx->task_ctx) { 6428 perf_ctx_disable(cpuctx->task_ctx, EVENT_GUEST); 6429 task_ctx_sched_out(cpuctx->task_ctx, NULL, EVENT_GUEST); 6430 } 6431 6432 perf_ctx_enable(&cpuctx->ctx, EVENT_GUEST); 6433 if (cpuctx->task_ctx) 6434 perf_ctx_enable(cpuctx->task_ctx, EVENT_GUEST); 6435 6436 __this_cpu_write(guest_ctx_loaded, true); 6437 } 6438 EXPORT_SYMBOL_GPL(perf_load_guest_context); 6439 6440 void perf_put_guest_context(void) 6441 { 6442 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 6443 6444 lockdep_assert_irqs_disabled(); 6445 6446 guard(perf_ctx_lock)(cpuctx, cpuctx->task_ctx); 6447 6448 if (WARN_ON_ONCE(!__this_cpu_read(guest_ctx_loaded))) 6449 return; 6450 6451 perf_ctx_disable(&cpuctx->ctx, EVENT_GUEST); 6452 if (cpuctx->task_ctx) 6453 perf_ctx_disable(cpuctx->task_ctx, EVENT_GUEST); 6454 6455 perf_event_sched_in(cpuctx, cpuctx->task_ctx, NULL, EVENT_GUEST); 6456 6457 if (cpuctx->task_ctx) 6458 perf_ctx_enable(cpuctx->task_ctx, EVENT_GUEST); 6459 perf_ctx_enable(&cpuctx->ctx, EVENT_GUEST); 6460 6461 __this_cpu_write(guest_ctx_loaded, false); 6462 } 6463 EXPORT_SYMBOL_GPL(perf_put_guest_context); 6464 #else 6465 static int mediated_pmu_account_event(struct perf_event *event) { return 0; } 6466 static void mediated_pmu_unaccount_event(struct perf_event *event) {} 6467 #endif 6468 6469 /* 6470 * Holding the top-level event's child_mutex means that any 6471 * descendant process that has inherited this event will block 6472 * in perf_event_exit_event() if it goes to exit, thus satisfying the 6473 * task existence requirements of perf_event_enable/disable. 6474 */ 6475 static void perf_event_for_each_child(struct perf_event *event, 6476 void (*func)(struct perf_event *)) 6477 { 6478 struct perf_event *child; 6479 6480 WARN_ON_ONCE(event->ctx->parent_ctx); 6481 6482 mutex_lock(&event->child_mutex); 6483 func(event); 6484 list_for_each_entry(child, &event->child_list, child_list) 6485 func(child); 6486 mutex_unlock(&event->child_mutex); 6487 } 6488 6489 static void perf_event_for_each(struct perf_event *event, 6490 void (*func)(struct perf_event *)) 6491 { 6492 struct perf_event_context *ctx = event->ctx; 6493 struct perf_event *sibling; 6494 6495 lockdep_assert_held(&ctx->mutex); 6496 6497 event = event->group_leader; 6498 6499 perf_event_for_each_child(event, func); 6500 for_each_sibling_event(sibling, event) 6501 perf_event_for_each_child(sibling, func); 6502 } 6503 6504 static void __perf_event_period(struct perf_event *event, 6505 struct perf_cpu_context *cpuctx, 6506 struct perf_event_context *ctx, 6507 void *info) 6508 { 6509 u64 value = *((u64 *)info); 6510 bool active; 6511 6512 if (event->attr.freq) { 6513 event->attr.sample_freq = value; 6514 } else { 6515 event->attr.sample_period = value; 6516 event->hw.sample_period = value; 6517 } 6518 6519 active = (event->state == PERF_EVENT_STATE_ACTIVE); 6520 if (active) { 6521 perf_pmu_disable(event->pmu); 6522 event->pmu->stop(event, PERF_EF_UPDATE); 6523 } 6524 6525 local64_set(&event->hw.period_left, 0); 6526 6527 if (active) { 6528 event->pmu->start(event, PERF_EF_RELOAD); 6529 /* 6530 * Once the period is force-reset, the event starts immediately. 6531 * But the event/group could be throttled. Unthrottle the 6532 * event/group now to avoid the next tick trying to unthrottle 6533 * while we already re-started the event/group. 6534 */ 6535 if (event->hw.interrupts == MAX_INTERRUPTS) 6536 perf_event_unthrottle_group(event, true); 6537 perf_pmu_enable(event->pmu); 6538 } 6539 } 6540 6541 static int perf_event_check_period(struct perf_event *event, u64 value) 6542 { 6543 return event->pmu->check_period(event, value); 6544 } 6545 6546 static int _perf_event_period(struct perf_event *event, u64 value) 6547 { 6548 if (!is_sampling_event(event)) 6549 return -EINVAL; 6550 6551 if (!value) 6552 return -EINVAL; 6553 6554 if (event->attr.freq) { 6555 if (value > sysctl_perf_event_sample_rate) 6556 return -EINVAL; 6557 } else { 6558 if (perf_event_check_period(event, value)) 6559 return -EINVAL; 6560 if (value & (1ULL << 63)) 6561 return -EINVAL; 6562 } 6563 6564 event_function_call(event, __perf_event_period, &value); 6565 6566 return 0; 6567 } 6568 6569 int perf_event_period(struct perf_event *event, u64 value) 6570 { 6571 struct perf_event_context *ctx; 6572 int ret; 6573 6574 ctx = perf_event_ctx_lock(event); 6575 ret = _perf_event_period(event, value); 6576 perf_event_ctx_unlock(event, ctx); 6577 6578 return ret; 6579 } 6580 EXPORT_SYMBOL_GPL(perf_event_period); 6581 6582 static const struct file_operations perf_fops; 6583 6584 static inline bool is_perf_file(struct fd f) 6585 { 6586 return !fd_empty(f) && fd_file(f)->f_op == &perf_fops; 6587 } 6588 6589 static int perf_event_set_output(struct perf_event *event, 6590 struct perf_event *output_event); 6591 static int perf_event_set_filter(struct perf_event *event, void __user *arg); 6592 static int perf_copy_attr(struct perf_event_attr __user *uattr, 6593 struct perf_event_attr *attr); 6594 static int __perf_event_set_bpf_prog(struct perf_event *event, 6595 struct bpf_prog *prog, 6596 u64 bpf_cookie); 6597 6598 static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg) 6599 { 6600 void (*func)(struct perf_event *); 6601 u32 flags = arg; 6602 6603 if (event->state <= PERF_EVENT_STATE_REVOKED) 6604 return -ENODEV; 6605 6606 switch (cmd) { 6607 case PERF_EVENT_IOC_ENABLE: 6608 func = _perf_event_enable; 6609 break; 6610 case PERF_EVENT_IOC_DISABLE: 6611 func = _perf_event_disable; 6612 break; 6613 case PERF_EVENT_IOC_RESET: 6614 func = _perf_event_reset; 6615 break; 6616 6617 case PERF_EVENT_IOC_REFRESH: 6618 return _perf_event_refresh(event, arg); 6619 6620 case PERF_EVENT_IOC_PERIOD: 6621 { 6622 u64 value; 6623 6624 if (copy_from_user(&value, (u64 __user *)arg, sizeof(value))) 6625 return -EFAULT; 6626 6627 return _perf_event_period(event, value); 6628 } 6629 case PERF_EVENT_IOC_ID: 6630 { 6631 u64 id = primary_event_id(event); 6632 6633 if (copy_to_user((void __user *)arg, &id, sizeof(id))) 6634 return -EFAULT; 6635 return 0; 6636 } 6637 6638 case PERF_EVENT_IOC_SET_OUTPUT: 6639 { 6640 CLASS(fd, output)(arg); // arg == -1 => empty 6641 struct perf_event *output_event = NULL; 6642 if (arg != -1) { 6643 if (!is_perf_file(output)) 6644 return -EBADF; 6645 output_event = fd_file(output)->private_data; 6646 } 6647 return perf_event_set_output(event, output_event); 6648 } 6649 6650 case PERF_EVENT_IOC_SET_FILTER: 6651 return perf_event_set_filter(event, (void __user *)arg); 6652 6653 case PERF_EVENT_IOC_SET_BPF: 6654 { 6655 struct bpf_prog *prog; 6656 int err; 6657 6658 prog = bpf_prog_get(arg); 6659 if (IS_ERR(prog)) 6660 return PTR_ERR(prog); 6661 6662 err = __perf_event_set_bpf_prog(event, prog, 0); 6663 if (err) { 6664 bpf_prog_put(prog); 6665 return err; 6666 } 6667 6668 return 0; 6669 } 6670 6671 case PERF_EVENT_IOC_PAUSE_OUTPUT: { 6672 struct perf_buffer *rb; 6673 6674 rcu_read_lock(); 6675 rb = rcu_dereference(event->rb); 6676 if (!rb || !rb->nr_pages) { 6677 rcu_read_unlock(); 6678 return -EINVAL; 6679 } 6680 rb_toggle_paused(rb, !!arg); 6681 rcu_read_unlock(); 6682 return 0; 6683 } 6684 6685 case PERF_EVENT_IOC_QUERY_BPF: 6686 return perf_event_query_prog_array(event, (void __user *)arg); 6687 6688 case PERF_EVENT_IOC_MODIFY_ATTRIBUTES: { 6689 struct perf_event_attr new_attr; 6690 int err = perf_copy_attr((struct perf_event_attr __user *)arg, 6691 &new_attr); 6692 6693 if (err) 6694 return err; 6695 6696 return perf_event_modify_attr(event, &new_attr); 6697 } 6698 default: 6699 return -ENOTTY; 6700 } 6701 6702 if (flags & PERF_IOC_FLAG_GROUP) 6703 perf_event_for_each(event, func); 6704 else 6705 perf_event_for_each_child(event, func); 6706 6707 return 0; 6708 } 6709 6710 static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg) 6711 { 6712 struct perf_event *event = file->private_data; 6713 struct perf_event_context *ctx; 6714 long ret; 6715 6716 /* Treat ioctl like writes as it is likely a mutating operation. */ 6717 ret = security_perf_event_write(event); 6718 if (ret) 6719 return ret; 6720 6721 ctx = perf_event_ctx_lock(event); 6722 ret = _perf_ioctl(event, cmd, arg); 6723 perf_event_ctx_unlock(event, ctx); 6724 6725 return ret; 6726 } 6727 6728 #ifdef CONFIG_COMPAT 6729 static long perf_compat_ioctl(struct file *file, unsigned int cmd, 6730 unsigned long arg) 6731 { 6732 switch (_IOC_NR(cmd)) { 6733 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER): 6734 case _IOC_NR(PERF_EVENT_IOC_ID): 6735 case _IOC_NR(PERF_EVENT_IOC_QUERY_BPF): 6736 case _IOC_NR(PERF_EVENT_IOC_MODIFY_ATTRIBUTES): 6737 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */ 6738 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) { 6739 cmd &= ~IOCSIZE_MASK; 6740 cmd |= sizeof(void *) << IOCSIZE_SHIFT; 6741 } 6742 break; 6743 } 6744 return perf_ioctl(file, cmd, arg); 6745 } 6746 #else 6747 # define perf_compat_ioctl NULL 6748 #endif 6749 6750 int perf_event_task_enable(void) 6751 { 6752 struct perf_event_context *ctx; 6753 struct perf_event *event; 6754 6755 mutex_lock(¤t->perf_event_mutex); 6756 list_for_each_entry(event, ¤t->perf_event_list, owner_entry) { 6757 ctx = perf_event_ctx_lock(event); 6758 perf_event_for_each_child(event, _perf_event_enable); 6759 perf_event_ctx_unlock(event, ctx); 6760 } 6761 mutex_unlock(¤t->perf_event_mutex); 6762 6763 return 0; 6764 } 6765 6766 int perf_event_task_disable(void) 6767 { 6768 struct perf_event_context *ctx; 6769 struct perf_event *event; 6770 6771 mutex_lock(¤t->perf_event_mutex); 6772 list_for_each_entry(event, ¤t->perf_event_list, owner_entry) { 6773 ctx = perf_event_ctx_lock(event); 6774 perf_event_for_each_child(event, _perf_event_disable); 6775 perf_event_ctx_unlock(event, ctx); 6776 } 6777 mutex_unlock(¤t->perf_event_mutex); 6778 6779 return 0; 6780 } 6781 6782 static int perf_event_index(struct perf_event *event) 6783 { 6784 if (event->hw.state & PERF_HES_STOPPED) 6785 return 0; 6786 6787 if (event->state != PERF_EVENT_STATE_ACTIVE) 6788 return 0; 6789 6790 return event->pmu->event_idx(event); 6791 } 6792 6793 static void perf_event_init_userpage(struct perf_event *event) 6794 { 6795 struct perf_event_mmap_page *userpg; 6796 struct perf_buffer *rb; 6797 6798 rcu_read_lock(); 6799 rb = rcu_dereference(event->rb); 6800 if (!rb) 6801 goto unlock; 6802 6803 userpg = rb->user_page; 6804 6805 /* Allow new userspace to detect that bit 0 is deprecated */ 6806 userpg->cap_bit0_is_deprecated = 1; 6807 userpg->size = offsetof(struct perf_event_mmap_page, __reserved); 6808 userpg->data_offset = PAGE_SIZE; 6809 userpg->data_size = perf_data_size(rb); 6810 6811 unlock: 6812 rcu_read_unlock(); 6813 } 6814 6815 void __weak arch_perf_update_userpage( 6816 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now) 6817 { 6818 } 6819 6820 /* 6821 * Callers need to ensure there can be no nesting of this function, otherwise 6822 * the seqlock logic goes bad. We can not serialize this because the arch 6823 * code calls this from NMI context. 6824 */ 6825 void perf_event_update_userpage(struct perf_event *event) 6826 { 6827 struct perf_event_mmap_page *userpg; 6828 struct perf_buffer *rb; 6829 u64 enabled, running, now; 6830 6831 rcu_read_lock(); 6832 rb = rcu_dereference(event->rb); 6833 if (!rb) 6834 goto unlock; 6835 6836 /* 6837 * Disable preemption to guarantee consistent time stamps are stored to 6838 * the user page. 6839 */ 6840 preempt_disable(); 6841 6842 /* 6843 * Compute total_time_enabled, total_time_running based on snapshot 6844 * values taken when the event was last scheduled in. 6845 * 6846 * We cannot simply call update_context_time() because doing so would 6847 * lead to deadlock when called from NMI context. 6848 */ 6849 calc_timer_values(event, &now, &enabled, &running); 6850 6851 userpg = rb->user_page; 6852 6853 ++userpg->lock; 6854 barrier(); 6855 userpg->index = perf_event_index(event); 6856 userpg->offset = perf_event_count(event, false); 6857 if (userpg->index) 6858 userpg->offset -= local64_read(&event->hw.prev_count); 6859 6860 userpg->time_enabled = enabled + 6861 atomic64_read(&event->child_total_time_enabled); 6862 6863 userpg->time_running = running + 6864 atomic64_read(&event->child_total_time_running); 6865 6866 arch_perf_update_userpage(event, userpg, now); 6867 6868 barrier(); 6869 ++userpg->lock; 6870 preempt_enable(); 6871 unlock: 6872 rcu_read_unlock(); 6873 } 6874 EXPORT_SYMBOL_GPL(perf_event_update_userpage); 6875 6876 static void ring_buffer_attach(struct perf_event *event, 6877 struct perf_buffer *rb) 6878 { 6879 struct perf_buffer *old_rb = NULL; 6880 unsigned long flags; 6881 6882 WARN_ON_ONCE(event->parent); 6883 6884 if (event->rb) { 6885 /* 6886 * Should be impossible, we set this when removing 6887 * event->rb_entry and wait/clear when adding event->rb_entry. 6888 */ 6889 WARN_ON_ONCE(event->rcu_pending); 6890 6891 old_rb = event->rb; 6892 spin_lock_irqsave(&old_rb->event_lock, flags); 6893 list_del_rcu(&event->rb_entry); 6894 spin_unlock_irqrestore(&old_rb->event_lock, flags); 6895 6896 event->rcu_batches = get_state_synchronize_rcu(); 6897 event->rcu_pending = 1; 6898 } 6899 6900 if (rb) { 6901 if (event->rcu_pending) { 6902 cond_synchronize_rcu(event->rcu_batches); 6903 event->rcu_pending = 0; 6904 } 6905 6906 spin_lock_irqsave(&rb->event_lock, flags); 6907 list_add_rcu(&event->rb_entry, &rb->event_list); 6908 spin_unlock_irqrestore(&rb->event_lock, flags); 6909 } 6910 6911 /* 6912 * Avoid racing with perf_mmap_close(AUX): stop the event 6913 * before swizzling the event::rb pointer; if it's getting 6914 * unmapped, its aux_mmap_count will be 0 and it won't 6915 * restart. See the comment in __perf_pmu_output_stop(). 6916 * 6917 * Data will inevitably be lost when set_output is done in 6918 * mid-air, but then again, whoever does it like this is 6919 * not in for the data anyway. 6920 */ 6921 if (has_aux(event)) 6922 perf_event_stop(event, 0); 6923 6924 rcu_assign_pointer(event->rb, rb); 6925 6926 if (old_rb) { 6927 ring_buffer_put(old_rb); 6928 /* 6929 * Since we detached before setting the new rb, so that we 6930 * could attach the new rb, we could have missed a wakeup. 6931 * Provide it now. 6932 */ 6933 wake_up_all(&event->waitq); 6934 } 6935 } 6936 6937 static void ring_buffer_wakeup(struct perf_event *event) 6938 { 6939 struct perf_buffer *rb; 6940 6941 if (event->parent) 6942 event = event->parent; 6943 6944 rcu_read_lock(); 6945 rb = rcu_dereference(event->rb); 6946 if (rb) { 6947 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) 6948 wake_up_all(&event->waitq); 6949 } 6950 rcu_read_unlock(); 6951 } 6952 6953 struct perf_buffer *ring_buffer_get(struct perf_event *event) 6954 { 6955 struct perf_buffer *rb; 6956 6957 if (event->parent) 6958 event = event->parent; 6959 6960 rcu_read_lock(); 6961 rb = rcu_dereference(event->rb); 6962 if (rb) { 6963 if (!refcount_inc_not_zero(&rb->refcount)) 6964 rb = NULL; 6965 } 6966 rcu_read_unlock(); 6967 6968 return rb; 6969 } 6970 6971 void ring_buffer_put(struct perf_buffer *rb) 6972 { 6973 if (!refcount_dec_and_test(&rb->refcount)) 6974 return; 6975 6976 WARN_ON_ONCE(!list_empty(&rb->event_list)); 6977 6978 call_rcu(&rb->rcu_head, rb_free_rcu); 6979 } 6980 6981 typedef void (*mapped_f)(struct perf_event *event, struct mm_struct *mm); 6982 6983 #define get_mapped(event, func) \ 6984 ({ struct pmu *pmu; \ 6985 mapped_f f = NULL; \ 6986 guard(rcu)(); \ 6987 pmu = READ_ONCE(event->pmu); \ 6988 if (pmu) \ 6989 f = pmu->func; \ 6990 f; \ 6991 }) 6992 6993 static void perf_mmap_open(struct vm_area_struct *vma) 6994 { 6995 struct perf_event *event = vma->vm_file->private_data; 6996 mapped_f mapped = get_mapped(event, event_mapped); 6997 6998 refcount_inc(&event->mmap_count); 6999 refcount_inc(&event->rb->mmap_count); 7000 7001 if (vma->vm_pgoff) 7002 refcount_inc(&event->rb->aux_mmap_count); 7003 7004 if (mapped) 7005 mapped(event, vma->vm_mm); 7006 } 7007 7008 static void perf_pmu_output_stop(struct perf_event *event); 7009 static void perf_mmap_unaccount(struct vm_area_struct *vma, struct perf_buffer *rb); 7010 7011 /* 7012 * A buffer can be mmap()ed multiple times; either directly through the same 7013 * event, or through other events by use of perf_event_set_output(). 7014 * 7015 * In order to undo the VM accounting done by perf_mmap() we need to destroy 7016 * the buffer here, where we still have a VM context. This means we need 7017 * to detach all events redirecting to us. 7018 */ 7019 static void perf_mmap_close(struct vm_area_struct *vma) 7020 { 7021 struct perf_event *event = vma->vm_file->private_data; 7022 mapped_f unmapped = get_mapped(event, event_unmapped); 7023 struct perf_buffer *rb = ring_buffer_get(event); 7024 struct user_struct *mmap_user = rb->mmap_user; 7025 bool detach_rest = false; 7026 7027 /* FIXIES vs perf_pmu_unregister() */ 7028 if (unmapped) 7029 unmapped(event, vma->vm_mm); 7030 7031 /* 7032 * The AUX buffer is strictly a sub-buffer, serialize using aux_mutex 7033 * to avoid complications. 7034 */ 7035 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff && 7036 refcount_dec_and_mutex_lock(&rb->aux_mmap_count, &rb->aux_mutex)) { 7037 /* 7038 * Stop all AUX events that are writing to this buffer, 7039 * so that we can free its AUX pages and corresponding PMU 7040 * data. Note that after rb::aux_mmap_count dropped to zero, 7041 * they won't start any more (see perf_aux_output_begin()). 7042 */ 7043 perf_pmu_output_stop(event); 7044 7045 /* now it's safe to free the pages */ 7046 atomic_long_sub(rb->aux_nr_pages - rb->aux_mmap_locked, &mmap_user->locked_vm); 7047 atomic64_sub(rb->aux_mmap_locked, &vma->vm_mm->pinned_vm); 7048 7049 /* this has to be the last one */ 7050 rb_free_aux(rb); 7051 WARN_ON_ONCE(refcount_read(&rb->aux_refcount)); 7052 7053 mutex_unlock(&rb->aux_mutex); 7054 } 7055 7056 if (refcount_dec_and_test(&rb->mmap_count)) 7057 detach_rest = true; 7058 7059 if (!refcount_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex)) 7060 goto out_put; 7061 7062 ring_buffer_attach(event, NULL); 7063 mutex_unlock(&event->mmap_mutex); 7064 7065 /* If there's still other mmap()s of this buffer, we're done. */ 7066 if (!detach_rest) 7067 goto out_put; 7068 7069 /* 7070 * No other mmap()s, detach from all other events that might redirect 7071 * into the now unreachable buffer. Somewhat complicated by the 7072 * fact that rb::event_lock otherwise nests inside mmap_mutex. 7073 */ 7074 again: 7075 rcu_read_lock(); 7076 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) { 7077 if (!atomic_long_inc_not_zero(&event->refcount)) { 7078 /* 7079 * This event is en-route to free_event() which will 7080 * detach it and remove it from the list. 7081 */ 7082 continue; 7083 } 7084 rcu_read_unlock(); 7085 7086 mutex_lock(&event->mmap_mutex); 7087 /* 7088 * Check we didn't race with perf_event_set_output() which can 7089 * swizzle the rb from under us while we were waiting to 7090 * acquire mmap_mutex. 7091 * 7092 * If we find a different rb; ignore this event, a next 7093 * iteration will no longer find it on the list. We have to 7094 * still restart the iteration to make sure we're not now 7095 * iterating the wrong list. 7096 */ 7097 if (event->rb == rb) 7098 ring_buffer_attach(event, NULL); 7099 7100 mutex_unlock(&event->mmap_mutex); 7101 put_event(event); 7102 7103 /* 7104 * Restart the iteration; either we're on the wrong list or 7105 * destroyed its integrity by doing a deletion. 7106 */ 7107 goto again; 7108 } 7109 rcu_read_unlock(); 7110 7111 /* 7112 * It could be there's still a few 0-ref events on the list; they'll 7113 * get cleaned up by free_event() -- they'll also still have their 7114 * ref on the rb and will free it whenever they are done with it. 7115 * 7116 * Aside from that, this buffer is 'fully' detached and unmapped, 7117 * undo the VM accounting. 7118 */ 7119 perf_mmap_unaccount(vma, rb); 7120 7121 out_put: 7122 ring_buffer_put(rb); /* could be last */ 7123 } 7124 7125 static vm_fault_t perf_mmap_pfn_mkwrite(struct vm_fault *vmf) 7126 { 7127 /* The first page is the user control page, others are read-only. */ 7128 return vmf->pgoff == 0 ? 0 : VM_FAULT_SIGBUS; 7129 } 7130 7131 static int perf_mmap_may_split(struct vm_area_struct *vma, unsigned long addr) 7132 { 7133 /* 7134 * Forbid splitting perf mappings to prevent refcount leaks due to 7135 * the resulting non-matching offsets and sizes. See open()/close(). 7136 */ 7137 return -EINVAL; 7138 } 7139 7140 static const struct vm_operations_struct perf_mmap_vmops = { 7141 .open = perf_mmap_open, 7142 .close = perf_mmap_close, /* non mergeable */ 7143 .pfn_mkwrite = perf_mmap_pfn_mkwrite, 7144 .may_split = perf_mmap_may_split, 7145 }; 7146 7147 static int map_range(struct perf_buffer *rb, struct vm_area_struct *vma) 7148 { 7149 unsigned long nr_pages = vma_pages(vma); 7150 int err = 0; 7151 unsigned long pagenum; 7152 7153 /* 7154 * We map this as a VM_PFNMAP VMA. 7155 * 7156 * This is not ideal as this is designed broadly for mappings of PFNs 7157 * referencing memory-mapped I/O ranges or non-system RAM i.e. for which 7158 * !pfn_valid(pfn). 7159 * 7160 * We are mapping kernel-allocated memory (memory we manage ourselves) 7161 * which would more ideally be mapped using vm_insert_page() or a 7162 * similar mechanism, that is as a VM_MIXEDMAP mapping. 7163 * 7164 * However this won't work here, because: 7165 * 7166 * 1. It uses vma->vm_page_prot, but this field has not been completely 7167 * setup at the point of the f_op->mmp() hook, so we are unable to 7168 * indicate that this should be mapped CoW in order that the 7169 * mkwrite() hook can be invoked to make the first page R/W and the 7170 * rest R/O as desired. 7171 * 7172 * 2. Anything other than a VM_PFNMAP of valid PFNs will result in 7173 * vm_normal_page() returning a struct page * pointer, which means 7174 * vm_ops->page_mkwrite() will be invoked rather than 7175 * vm_ops->pfn_mkwrite(), and this means we have to set page->mapping 7176 * to work around retry logic in the fault handler, however this 7177 * field is no longer allowed to be used within struct page. 7178 * 7179 * 3. Having a struct page * made available in the fault logic also 7180 * means that the page gets put on the rmap and becomes 7181 * inappropriately accessible and subject to map and ref counting. 7182 * 7183 * Ideally we would have a mechanism that could explicitly express our 7184 * desires, but this is not currently the case, so we instead use 7185 * VM_PFNMAP. 7186 * 7187 * We manage the lifetime of these mappings with internal refcounts (see 7188 * perf_mmap_open() and perf_mmap_close()) so we ensure the lifetime of 7189 * this mapping is maintained correctly. 7190 */ 7191 for (pagenum = 0; pagenum < nr_pages; pagenum++) { 7192 unsigned long va = vma->vm_start + PAGE_SIZE * pagenum; 7193 struct page *page = perf_mmap_to_page(rb, vma->vm_pgoff + pagenum); 7194 7195 if (page == NULL) { 7196 err = -EINVAL; 7197 break; 7198 } 7199 7200 /* Map readonly, perf_mmap_pfn_mkwrite() called on write fault. */ 7201 err = remap_pfn_range(vma, va, page_to_pfn(page), PAGE_SIZE, 7202 vm_get_page_prot(vma->vm_flags & ~VM_SHARED)); 7203 if (err) 7204 break; 7205 } 7206 7207 #ifdef CONFIG_MMU 7208 /* Clear any partial mappings on error. */ 7209 if (err) 7210 zap_vma_range(vma, vma->vm_start, nr_pages * PAGE_SIZE); 7211 #endif 7212 7213 return err; 7214 } 7215 7216 static bool perf_mmap_calc_limits(struct vm_area_struct *vma, long *user_extra, long *extra) 7217 { 7218 unsigned long user_locked, user_lock_limit, locked, lock_limit; 7219 struct user_struct *user = current_user(); 7220 7221 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10); 7222 /* Increase the limit linearly with more CPUs */ 7223 user_lock_limit *= num_online_cpus(); 7224 7225 user_locked = atomic_long_read(&user->locked_vm); 7226 7227 /* 7228 * sysctl_perf_event_mlock may have changed, so that 7229 * user->locked_vm > user_lock_limit 7230 */ 7231 if (user_locked > user_lock_limit) 7232 user_locked = user_lock_limit; 7233 user_locked += *user_extra; 7234 7235 if (user_locked > user_lock_limit) { 7236 /* 7237 * charge locked_vm until it hits user_lock_limit; 7238 * charge the rest from pinned_vm 7239 */ 7240 *extra = user_locked - user_lock_limit; 7241 *user_extra -= *extra; 7242 } 7243 7244 lock_limit = rlimit(RLIMIT_MEMLOCK); 7245 lock_limit >>= PAGE_SHIFT; 7246 locked = atomic64_read(&vma->vm_mm->pinned_vm) + *extra; 7247 7248 return locked <= lock_limit || !perf_is_paranoid() || capable(CAP_IPC_LOCK); 7249 } 7250 7251 static void perf_mmap_account(struct vm_area_struct *vma, long user_extra, long extra) 7252 { 7253 struct user_struct *user = current_user(); 7254 7255 atomic_long_add(user_extra, &user->locked_vm); 7256 atomic64_add(extra, &vma->vm_mm->pinned_vm); 7257 } 7258 7259 static void perf_mmap_unaccount(struct vm_area_struct *vma, struct perf_buffer *rb) 7260 { 7261 struct user_struct *user = rb->mmap_user; 7262 7263 atomic_long_sub((perf_data_size(rb) >> PAGE_SHIFT) + 1 - rb->mmap_locked, 7264 &user->locked_vm); 7265 atomic64_sub(rb->mmap_locked, &vma->vm_mm->pinned_vm); 7266 } 7267 7268 static int perf_mmap_rb(struct vm_area_struct *vma, struct perf_event *event, 7269 unsigned long nr_pages) 7270 { 7271 long extra = 0, user_extra = nr_pages; 7272 struct perf_buffer *rb; 7273 int rb_flags = 0; 7274 7275 nr_pages -= 1; 7276 7277 /* 7278 * If we have rb pages ensure they're a power-of-two number, so we 7279 * can do bitmasks instead of modulo. 7280 */ 7281 if (nr_pages != 0 && !is_power_of_2(nr_pages)) 7282 return -EINVAL; 7283 7284 WARN_ON_ONCE(event->ctx->parent_ctx); 7285 7286 if (event->rb) { 7287 if (data_page_nr(event->rb) != nr_pages) 7288 return -EINVAL; 7289 7290 /* 7291 * If this event doesn't have mmap_count, we're attempting to 7292 * create an alias of another event's mmap(); this would mean 7293 * both events will end up scribbling the same user_page; 7294 * which makes no sense. 7295 */ 7296 if (!refcount_read(&event->mmap_count)) 7297 return -EBUSY; 7298 7299 if (refcount_inc_not_zero(&event->rb->mmap_count)) { 7300 /* 7301 * Success -- managed to mmap() the same buffer 7302 * multiple times. 7303 */ 7304 perf_mmap_account(vma, user_extra, extra); 7305 refcount_inc(&event->mmap_count); 7306 return 0; 7307 } 7308 7309 /* 7310 * Raced against perf_mmap_close()'s 7311 * refcount_dec_and_mutex_lock() remove the 7312 * event and continue as if !event->rb 7313 */ 7314 ring_buffer_attach(event, NULL); 7315 } 7316 7317 if (!perf_mmap_calc_limits(vma, &user_extra, &extra)) 7318 return -EPERM; 7319 7320 if (vma->vm_flags & VM_WRITE) 7321 rb_flags |= RING_BUFFER_WRITABLE; 7322 7323 rb = rb_alloc(nr_pages, 7324 event->attr.watermark ? event->attr.wakeup_watermark : 0, 7325 event->cpu, rb_flags); 7326 7327 if (!rb) 7328 return -ENOMEM; 7329 7330 rb->mmap_locked = extra; 7331 7332 ring_buffer_attach(event, rb); 7333 7334 perf_event_update_time(event); 7335 perf_event_init_userpage(event); 7336 perf_event_update_userpage(event); 7337 7338 perf_mmap_account(vma, user_extra, extra); 7339 refcount_set(&event->mmap_count, 1); 7340 7341 return 0; 7342 } 7343 7344 static int perf_mmap_aux(struct vm_area_struct *vma, struct perf_event *event, 7345 unsigned long nr_pages) 7346 { 7347 long extra = 0, user_extra = nr_pages; 7348 u64 aux_offset, aux_size; 7349 struct perf_buffer *rb; 7350 int ret, rb_flags = 0; 7351 7352 rb = event->rb; 7353 if (!rb) 7354 return -EINVAL; 7355 7356 guard(mutex)(&rb->aux_mutex); 7357 7358 /* 7359 * AUX area mapping: if rb->aux_nr_pages != 0, it's already 7360 * mapped, all subsequent mappings should have the same size 7361 * and offset. Must be above the normal perf buffer. 7362 */ 7363 aux_offset = READ_ONCE(rb->user_page->aux_offset); 7364 aux_size = READ_ONCE(rb->user_page->aux_size); 7365 7366 if (aux_offset < perf_data_size(rb) + PAGE_SIZE) 7367 return -EINVAL; 7368 7369 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT) 7370 return -EINVAL; 7371 7372 /* already mapped with a different offset */ 7373 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff) 7374 return -EINVAL; 7375 7376 if (aux_size != nr_pages * PAGE_SIZE) 7377 return -EINVAL; 7378 7379 /* already mapped with a different size */ 7380 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages) 7381 return -EINVAL; 7382 7383 if (!is_power_of_2(nr_pages)) 7384 return -EINVAL; 7385 7386 if (!refcount_inc_not_zero(&rb->mmap_count)) 7387 return -EINVAL; 7388 7389 if (rb_has_aux(rb)) { 7390 refcount_inc(&rb->aux_mmap_count); 7391 7392 } else { 7393 if (!perf_mmap_calc_limits(vma, &user_extra, &extra)) { 7394 refcount_dec(&rb->mmap_count); 7395 return -EPERM; 7396 } 7397 7398 WARN_ON(!rb && event->rb); 7399 7400 if (vma->vm_flags & VM_WRITE) 7401 rb_flags |= RING_BUFFER_WRITABLE; 7402 7403 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages, 7404 event->attr.aux_watermark, rb_flags); 7405 if (ret) { 7406 refcount_dec(&rb->mmap_count); 7407 return ret; 7408 } 7409 7410 refcount_set(&rb->aux_mmap_count, 1); 7411 rb->aux_mmap_locked = extra; 7412 } 7413 7414 perf_mmap_account(vma, user_extra, extra); 7415 refcount_inc(&event->mmap_count); 7416 7417 return 0; 7418 } 7419 7420 static int perf_mmap(struct file *file, struct vm_area_struct *vma) 7421 { 7422 struct perf_event *event = file->private_data; 7423 unsigned long vma_size, nr_pages; 7424 mapped_f mapped; 7425 int ret; 7426 7427 /* 7428 * Don't allow mmap() of inherited per-task counters. This would 7429 * create a performance issue due to all children writing to the 7430 * same rb. 7431 */ 7432 if (event->cpu == -1 && event->attr.inherit) 7433 return -EINVAL; 7434 7435 if (!(vma->vm_flags & VM_SHARED)) 7436 return -EINVAL; 7437 7438 ret = security_perf_event_read(event); 7439 if (ret) 7440 return ret; 7441 7442 vma_size = vma->vm_end - vma->vm_start; 7443 nr_pages = vma_size / PAGE_SIZE; 7444 7445 if (nr_pages > INT_MAX) 7446 return -ENOMEM; 7447 7448 if (vma_size != PAGE_SIZE * nr_pages) 7449 return -EINVAL; 7450 7451 scoped_guard (mutex, &event->mmap_mutex) { 7452 /* 7453 * This relies on __pmu_detach_event() taking mmap_mutex after marking 7454 * the event REVOKED. Either we observe the state, or __pmu_detach_event() 7455 * will detach the rb created here. 7456 */ 7457 if (event->state <= PERF_EVENT_STATE_REVOKED) 7458 return -ENODEV; 7459 7460 if (vma->vm_pgoff == 0) 7461 ret = perf_mmap_rb(vma, event, nr_pages); 7462 else 7463 ret = perf_mmap_aux(vma, event, nr_pages); 7464 if (ret) 7465 return ret; 7466 7467 /* 7468 * Since pinned accounting is per vm we cannot allow fork() to copy our 7469 * vma. 7470 */ 7471 vm_flags_set(vma, VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP); 7472 vma->vm_ops = &perf_mmap_vmops; 7473 7474 mapped = get_mapped(event, event_mapped); 7475 if (mapped) 7476 mapped(event, vma->vm_mm); 7477 7478 /* 7479 * Try to map it into the page table. On fail undo the above, 7480 * as the callsite expects full cleanup in this case and 7481 * therefore does not invoke vmops::close(). 7482 */ 7483 ret = map_range(event->rb, vma); 7484 if (likely(!ret)) 7485 return 0; 7486 7487 /* Error path */ 7488 7489 /* 7490 * If this is the first mmap(), then event->mmap_count should 7491 * be stable at 1. It is only modified by: 7492 * perf_mmap_{open,close}() and perf_mmap(). 7493 * 7494 * The former are not possible because this mmap() hasn't been 7495 * successful yet, and the latter is serialized by 7496 * event->mmap_mutex which we still hold (note that mmap_lock 7497 * is not strictly sufficient here, because the event fd can 7498 * be passed to another process through trivial means like 7499 * fork(), leading to concurrent mmap() from different mm). 7500 * 7501 * Make sure to remove event->rb before releasing 7502 * event->mmap_mutex, such that any concurrent mmap() will not 7503 * attempt use this failed buffer. 7504 */ 7505 if (refcount_read(&event->mmap_count) == 1) { 7506 /* 7507 * Minimal perf_mmap_close(); there can't be AUX or 7508 * other events on account of this being the first. 7509 */ 7510 mapped = get_mapped(event, event_unmapped); 7511 if (mapped) 7512 mapped(event, vma->vm_mm); 7513 perf_mmap_unaccount(vma, event->rb); 7514 ring_buffer_attach(event, NULL); /* drops last rb->refcount */ 7515 refcount_set(&event->mmap_count, 0); 7516 return ret; 7517 } 7518 7519 /* 7520 * Otherwise this is an already existing buffer, and there is 7521 * no race vs first exposure, so fall-through and call 7522 * perf_mmap_close(). 7523 */ 7524 } 7525 7526 perf_mmap_close(vma); 7527 return ret; 7528 } 7529 7530 static int perf_fasync(int fd, struct file *filp, int on) 7531 { 7532 struct inode *inode = file_inode(filp); 7533 struct perf_event *event = filp->private_data; 7534 int retval; 7535 7536 if (event->state <= PERF_EVENT_STATE_REVOKED) 7537 return -ENODEV; 7538 7539 inode_lock(inode); 7540 retval = fasync_helper(fd, filp, on, &event->fasync); 7541 inode_unlock(inode); 7542 7543 if (retval < 0) 7544 return retval; 7545 7546 return 0; 7547 } 7548 7549 static const struct file_operations perf_fops = { 7550 .release = perf_release, 7551 .read = perf_read, 7552 .poll = perf_poll, 7553 .unlocked_ioctl = perf_ioctl, 7554 .compat_ioctl = perf_compat_ioctl, 7555 .mmap = perf_mmap, 7556 .fasync = perf_fasync, 7557 }; 7558 7559 /* 7560 * Perf event wakeup 7561 * 7562 * If there's data, ensure we set the poll() state and publish everything 7563 * to user-space before waking everybody up. 7564 */ 7565 7566 void perf_event_wakeup(struct perf_event *event) 7567 { 7568 ring_buffer_wakeup(event); 7569 7570 if (event->pending_kill) { 7571 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill); 7572 event->pending_kill = 0; 7573 } 7574 } 7575 7576 static void perf_sigtrap(struct perf_event *event) 7577 { 7578 /* 7579 * Both perf_pending_task() and perf_pending_irq() can race with the 7580 * task exiting. 7581 */ 7582 if (current->flags & PF_EXITING) 7583 return; 7584 7585 /* 7586 * We'd expect this to only occur if the irq_work is delayed and either 7587 * ctx->task or current has changed in the meantime. This can be the 7588 * case on architectures that do not implement arch_irq_work_raise(). 7589 */ 7590 if (WARN_ON_ONCE(event->ctx->task != current)) 7591 return; 7592 7593 send_sig_perf((void __user *)event->pending_addr, 7594 event->orig_type, event->attr.sig_data); 7595 } 7596 7597 /* 7598 * Deliver the pending work in-event-context or follow the context. 7599 */ 7600 static void __perf_pending_disable(struct perf_event *event) 7601 { 7602 int cpu = READ_ONCE(event->oncpu); 7603 7604 /* 7605 * If the event isn't running; we done. event_sched_out() will have 7606 * taken care of things. 7607 */ 7608 if (cpu < 0) 7609 return; 7610 7611 /* 7612 * Yay, we hit home and are in the context of the event. 7613 */ 7614 if (cpu == smp_processor_id()) { 7615 if (event->pending_disable) { 7616 event->pending_disable = 0; 7617 perf_event_disable_local(event); 7618 } 7619 return; 7620 } 7621 7622 /* 7623 * CPU-A CPU-B 7624 * 7625 * perf_event_disable_inatomic() 7626 * @pending_disable = 1; 7627 * irq_work_queue(); 7628 * 7629 * sched-out 7630 * @pending_disable = 0; 7631 * 7632 * sched-in 7633 * perf_event_disable_inatomic() 7634 * @pending_disable = 1; 7635 * irq_work_queue(); // FAILS 7636 * 7637 * irq_work_run() 7638 * perf_pending_disable() 7639 * 7640 * But the event runs on CPU-B and wants disabling there. 7641 */ 7642 irq_work_queue_on(&event->pending_disable_irq, cpu); 7643 } 7644 7645 static void perf_pending_disable(struct irq_work *entry) 7646 { 7647 struct perf_event *event = container_of(entry, struct perf_event, pending_disable_irq); 7648 int rctx; 7649 7650 /* 7651 * If we 'fail' here, that's OK, it means recursion is already disabled 7652 * and we won't recurse 'further'. 7653 */ 7654 rctx = perf_swevent_get_recursion_context(); 7655 __perf_pending_disable(event); 7656 if (rctx >= 0) 7657 perf_swevent_put_recursion_context(rctx); 7658 } 7659 7660 static void perf_pending_irq(struct irq_work *entry) 7661 { 7662 struct perf_event *event = container_of(entry, struct perf_event, pending_irq); 7663 int rctx; 7664 7665 /* 7666 * If we 'fail' here, that's OK, it means recursion is already disabled 7667 * and we won't recurse 'further'. 7668 */ 7669 rctx = perf_swevent_get_recursion_context(); 7670 7671 /* 7672 * The wakeup isn't bound to the context of the event -- it can happen 7673 * irrespective of where the event is. 7674 */ 7675 if (event->pending_wakeup) { 7676 event->pending_wakeup = 0; 7677 perf_event_wakeup(event); 7678 } 7679 7680 if (rctx >= 0) 7681 perf_swevent_put_recursion_context(rctx); 7682 } 7683 7684 static void perf_pending_task(struct callback_head *head) 7685 { 7686 struct perf_event *event = container_of(head, struct perf_event, pending_task); 7687 int rctx; 7688 7689 /* 7690 * If we 'fail' here, that's OK, it means recursion is already disabled 7691 * and we won't recurse 'further'. 7692 */ 7693 rctx = perf_swevent_get_recursion_context(); 7694 7695 if (event->pending_work) { 7696 event->pending_work = 0; 7697 perf_sigtrap(event); 7698 local_dec(&event->ctx->nr_no_switch_fast); 7699 } 7700 put_event(event); 7701 7702 if (rctx >= 0) 7703 perf_swevent_put_recursion_context(rctx); 7704 } 7705 7706 #ifdef CONFIG_GUEST_PERF_EVENTS 7707 struct perf_guest_info_callbacks __rcu *perf_guest_cbs; 7708 7709 DEFINE_STATIC_CALL_RET0(__perf_guest_state, *perf_guest_cbs->state); 7710 DEFINE_STATIC_CALL_RET0(__perf_guest_get_ip, *perf_guest_cbs->get_ip); 7711 DEFINE_STATIC_CALL_RET0(__perf_guest_handle_intel_pt_intr, *perf_guest_cbs->handle_intel_pt_intr); 7712 DEFINE_STATIC_CALL_RET0(__perf_guest_handle_mediated_pmi, *perf_guest_cbs->handle_mediated_pmi); 7713 7714 void perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs) 7715 { 7716 if (WARN_ON_ONCE(rcu_access_pointer(perf_guest_cbs))) 7717 return; 7718 7719 rcu_assign_pointer(perf_guest_cbs, cbs); 7720 static_call_update(__perf_guest_state, cbs->state); 7721 static_call_update(__perf_guest_get_ip, cbs->get_ip); 7722 7723 /* Implementing ->handle_intel_pt_intr is optional. */ 7724 if (cbs->handle_intel_pt_intr) 7725 static_call_update(__perf_guest_handle_intel_pt_intr, 7726 cbs->handle_intel_pt_intr); 7727 7728 if (cbs->handle_mediated_pmi) 7729 static_call_update(__perf_guest_handle_mediated_pmi, 7730 cbs->handle_mediated_pmi); 7731 } 7732 EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks); 7733 7734 void perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs) 7735 { 7736 if (WARN_ON_ONCE(rcu_access_pointer(perf_guest_cbs) != cbs)) 7737 return; 7738 7739 rcu_assign_pointer(perf_guest_cbs, NULL); 7740 static_call_update(__perf_guest_state, (void *)&__static_call_return0); 7741 static_call_update(__perf_guest_get_ip, (void *)&__static_call_return0); 7742 static_call_update(__perf_guest_handle_intel_pt_intr, (void *)&__static_call_return0); 7743 static_call_update(__perf_guest_handle_mediated_pmi, (void *)&__static_call_return0); 7744 synchronize_rcu(); 7745 } 7746 EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks); 7747 #endif 7748 7749 static bool should_sample_guest(struct perf_event *event) 7750 { 7751 return !event->attr.exclude_guest && perf_guest_state(); 7752 } 7753 7754 unsigned long perf_misc_flags(struct perf_event *event, 7755 struct pt_regs *regs) 7756 { 7757 if (should_sample_guest(event)) 7758 return perf_arch_guest_misc_flags(regs); 7759 7760 return perf_arch_misc_flags(regs); 7761 } 7762 7763 unsigned long perf_instruction_pointer(struct perf_event *event, 7764 struct pt_regs *regs) 7765 { 7766 if (should_sample_guest(event)) 7767 return perf_guest_get_ip(); 7768 7769 return perf_arch_instruction_pointer(regs); 7770 } 7771 7772 static void 7773 perf_output_sample_regs(struct perf_output_handle *handle, 7774 struct pt_regs *regs, u64 mask) 7775 { 7776 int bit; 7777 DECLARE_BITMAP(_mask, 64); 7778 7779 bitmap_from_u64(_mask, mask); 7780 for_each_set_bit(bit, _mask, sizeof(mask) * BITS_PER_BYTE) { 7781 u64 val; 7782 7783 val = perf_reg_value(regs, bit); 7784 perf_output_put(handle, val); 7785 } 7786 } 7787 7788 static void perf_sample_regs_user(struct perf_regs *regs_user, 7789 struct pt_regs *regs) 7790 { 7791 if (user_mode(regs)) { 7792 regs_user->abi = perf_reg_abi(current); 7793 regs_user->regs = regs; 7794 } else if (is_user_task(current)) { 7795 perf_get_regs_user(regs_user, regs); 7796 } else { 7797 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE; 7798 regs_user->regs = NULL; 7799 } 7800 } 7801 7802 static void perf_sample_regs_intr(struct perf_regs *regs_intr, 7803 struct pt_regs *regs) 7804 { 7805 regs_intr->regs = regs; 7806 regs_intr->abi = perf_reg_abi(current); 7807 } 7808 7809 7810 /* 7811 * Get remaining task size from user stack pointer. 7812 * 7813 * It'd be better to take stack vma map and limit this more 7814 * precisely, but there's no way to get it safely under interrupt, 7815 * so using TASK_SIZE as limit. 7816 */ 7817 static u64 perf_ustack_task_size(struct pt_regs *regs) 7818 { 7819 unsigned long addr = perf_user_stack_pointer(regs); 7820 7821 if (!addr || addr >= TASK_SIZE) 7822 return 0; 7823 7824 return TASK_SIZE - addr; 7825 } 7826 7827 static u16 7828 perf_sample_ustack_size(u16 stack_size, u16 header_size, 7829 struct pt_regs *regs) 7830 { 7831 u64 task_size; 7832 7833 /* No regs, no stack pointer, no dump. */ 7834 if (!regs) 7835 return 0; 7836 7837 /* No mm, no stack, no dump. */ 7838 if (!current->mm) 7839 return 0; 7840 7841 /* 7842 * Check if we fit in with the requested stack size into the: 7843 * - TASK_SIZE 7844 * If we don't, we limit the size to the TASK_SIZE. 7845 * 7846 * - remaining sample size 7847 * If we don't, we customize the stack size to 7848 * fit in to the remaining sample size. 7849 */ 7850 7851 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs)); 7852 stack_size = min(stack_size, (u16) task_size); 7853 7854 /* Current header size plus static size and dynamic size. */ 7855 header_size += 2 * sizeof(u64); 7856 7857 /* Do we fit in with the current stack dump size? */ 7858 if ((u16) (header_size + stack_size) < header_size) { 7859 /* 7860 * If we overflow the maximum size for the sample, 7861 * we customize the stack dump size to fit in. 7862 */ 7863 stack_size = USHRT_MAX - header_size - sizeof(u64); 7864 stack_size = round_up(stack_size, sizeof(u64)); 7865 } 7866 7867 return stack_size; 7868 } 7869 7870 static void 7871 perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size, 7872 struct pt_regs *regs) 7873 { 7874 /* Case of a kernel thread, nothing to dump */ 7875 if (!regs) { 7876 u64 size = 0; 7877 perf_output_put(handle, size); 7878 } else { 7879 unsigned long sp; 7880 unsigned int rem; 7881 u64 dyn_size; 7882 7883 /* 7884 * We dump: 7885 * static size 7886 * - the size requested by user or the best one we can fit 7887 * in to the sample max size 7888 * data 7889 * - user stack dump data 7890 * dynamic size 7891 * - the actual dumped size 7892 */ 7893 7894 /* Static size. */ 7895 perf_output_put(handle, dump_size); 7896 7897 /* Data. */ 7898 sp = perf_user_stack_pointer(regs); 7899 rem = __output_copy_user(handle, (void *) sp, dump_size); 7900 dyn_size = dump_size - rem; 7901 7902 perf_output_skip(handle, rem); 7903 7904 /* Dynamic size. */ 7905 perf_output_put(handle, dyn_size); 7906 } 7907 } 7908 7909 static unsigned long perf_prepare_sample_aux(struct perf_event *event, 7910 struct perf_sample_data *data, 7911 size_t size) 7912 { 7913 struct perf_event *sampler = event->aux_event; 7914 struct perf_buffer *rb; 7915 7916 data->aux_size = 0; 7917 7918 if (!sampler) 7919 goto out; 7920 7921 if (WARN_ON_ONCE(READ_ONCE(sampler->state) != PERF_EVENT_STATE_ACTIVE)) 7922 goto out; 7923 7924 if (WARN_ON_ONCE(READ_ONCE(sampler->oncpu) != smp_processor_id())) 7925 goto out; 7926 7927 rb = ring_buffer_get(sampler); 7928 if (!rb) 7929 goto out; 7930 7931 /* 7932 * If this is an NMI hit inside sampling code, don't take 7933 * the sample. See also perf_aux_sample_output(). 7934 */ 7935 if (READ_ONCE(rb->aux_in_sampling)) { 7936 data->aux_size = 0; 7937 } else { 7938 size = min_t(size_t, size, perf_aux_size(rb)); 7939 data->aux_size = ALIGN(size, sizeof(u64)); 7940 } 7941 ring_buffer_put(rb); 7942 7943 out: 7944 return data->aux_size; 7945 } 7946 7947 static long perf_pmu_snapshot_aux(struct perf_buffer *rb, 7948 struct perf_event *event, 7949 struct perf_output_handle *handle, 7950 unsigned long size) 7951 { 7952 unsigned long flags; 7953 long ret; 7954 7955 /* 7956 * Normal ->start()/->stop() callbacks run in IRQ mode in scheduler 7957 * paths. If we start calling them in NMI context, they may race with 7958 * the IRQ ones, that is, for example, re-starting an event that's just 7959 * been stopped, which is why we're using a separate callback that 7960 * doesn't change the event state. 7961 * 7962 * IRQs need to be disabled to prevent IPIs from racing with us. 7963 */ 7964 local_irq_save(flags); 7965 /* 7966 * Guard against NMI hits inside the critical section; 7967 * see also perf_prepare_sample_aux(). 7968 */ 7969 WRITE_ONCE(rb->aux_in_sampling, 1); 7970 barrier(); 7971 7972 ret = event->pmu->snapshot_aux(event, handle, size); 7973 7974 barrier(); 7975 WRITE_ONCE(rb->aux_in_sampling, 0); 7976 local_irq_restore(flags); 7977 7978 return ret; 7979 } 7980 7981 static void perf_aux_sample_output(struct perf_event *event, 7982 struct perf_output_handle *handle, 7983 struct perf_sample_data *data) 7984 { 7985 struct perf_event *sampler = event->aux_event; 7986 struct perf_buffer *rb; 7987 unsigned long pad; 7988 long size; 7989 7990 if (WARN_ON_ONCE(!sampler || !data->aux_size)) 7991 return; 7992 7993 rb = ring_buffer_get(sampler); 7994 if (!rb) 7995 return; 7996 7997 size = perf_pmu_snapshot_aux(rb, sampler, handle, data->aux_size); 7998 7999 /* 8000 * An error here means that perf_output_copy() failed (returned a 8001 * non-zero surplus that it didn't copy), which in its current 8002 * enlightened implementation is not possible. If that changes, we'd 8003 * like to know. 8004 */ 8005 if (WARN_ON_ONCE(size < 0)) 8006 goto out_put; 8007 8008 /* 8009 * The pad comes from ALIGN()ing data->aux_size up to u64 in 8010 * perf_prepare_sample_aux(), so should not be more than that. 8011 */ 8012 pad = data->aux_size - size; 8013 if (WARN_ON_ONCE(pad >= sizeof(u64))) 8014 pad = 8; 8015 8016 if (pad) { 8017 u64 zero = 0; 8018 perf_output_copy(handle, &zero, pad); 8019 } 8020 8021 out_put: 8022 ring_buffer_put(rb); 8023 } 8024 8025 /* 8026 * A set of common sample data types saved even for non-sample records 8027 * when event->attr.sample_id_all is set. 8028 */ 8029 #define PERF_SAMPLE_ID_ALL (PERF_SAMPLE_TID | PERF_SAMPLE_TIME | \ 8030 PERF_SAMPLE_ID | PERF_SAMPLE_STREAM_ID | \ 8031 PERF_SAMPLE_CPU | PERF_SAMPLE_IDENTIFIER) 8032 8033 static void __perf_event_header__init_id(struct perf_sample_data *data, 8034 struct perf_event *event, 8035 u64 sample_type) 8036 { 8037 data->type = event->attr.sample_type; 8038 data->sample_flags |= data->type & PERF_SAMPLE_ID_ALL; 8039 8040 if (sample_type & PERF_SAMPLE_TID) { 8041 /* namespace issues */ 8042 data->tid_entry.pid = perf_event_pid(event, current); 8043 data->tid_entry.tid = perf_event_tid(event, current); 8044 } 8045 8046 if (sample_type & PERF_SAMPLE_TIME) 8047 data->time = perf_event_clock(event); 8048 8049 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER)) 8050 data->id = primary_event_id(event); 8051 8052 if (sample_type & PERF_SAMPLE_STREAM_ID) 8053 data->stream_id = event->id; 8054 8055 if (sample_type & PERF_SAMPLE_CPU) { 8056 data->cpu_entry.cpu = raw_smp_processor_id(); 8057 data->cpu_entry.reserved = 0; 8058 } 8059 } 8060 8061 void perf_event_header__init_id(struct perf_event_header *header, 8062 struct perf_sample_data *data, 8063 struct perf_event *event) 8064 { 8065 if (event->attr.sample_id_all) { 8066 header->size += event->id_header_size; 8067 __perf_event_header__init_id(data, event, event->attr.sample_type); 8068 } 8069 } 8070 8071 static void __perf_event__output_id_sample(struct perf_output_handle *handle, 8072 struct perf_sample_data *data) 8073 { 8074 u64 sample_type = data->type; 8075 8076 if (sample_type & PERF_SAMPLE_TID) 8077 perf_output_put(handle, data->tid_entry); 8078 8079 if (sample_type & PERF_SAMPLE_TIME) 8080 perf_output_put(handle, data->time); 8081 8082 if (sample_type & PERF_SAMPLE_ID) 8083 perf_output_put(handle, data->id); 8084 8085 if (sample_type & PERF_SAMPLE_STREAM_ID) 8086 perf_output_put(handle, data->stream_id); 8087 8088 if (sample_type & PERF_SAMPLE_CPU) 8089 perf_output_put(handle, data->cpu_entry); 8090 8091 if (sample_type & PERF_SAMPLE_IDENTIFIER) 8092 perf_output_put(handle, data->id); 8093 } 8094 8095 void perf_event__output_id_sample(struct perf_event *event, 8096 struct perf_output_handle *handle, 8097 struct perf_sample_data *sample) 8098 { 8099 if (event->attr.sample_id_all) 8100 __perf_event__output_id_sample(handle, sample); 8101 } 8102 8103 static void perf_output_read_one(struct perf_output_handle *handle, 8104 struct perf_event *event, 8105 u64 enabled, u64 running) 8106 { 8107 u64 read_format = event->attr.read_format; 8108 u64 values[5]; 8109 int n = 0; 8110 8111 values[n++] = perf_event_count(event, has_inherit_and_sample_read(&event->attr)); 8112 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) { 8113 values[n++] = enabled + 8114 atomic64_read(&event->child_total_time_enabled); 8115 } 8116 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) { 8117 values[n++] = running + 8118 atomic64_read(&event->child_total_time_running); 8119 } 8120 if (read_format & PERF_FORMAT_ID) 8121 values[n++] = primary_event_id(event); 8122 if (read_format & PERF_FORMAT_LOST) 8123 values[n++] = atomic64_read(&event->lost_samples); 8124 8125 __output_copy(handle, values, n * sizeof(u64)); 8126 } 8127 8128 static void perf_output_read_group(struct perf_output_handle *handle, 8129 struct perf_event *event, 8130 u64 enabled, u64 running) 8131 { 8132 struct perf_event *leader = event->group_leader, *sub; 8133 u64 read_format = event->attr.read_format; 8134 unsigned long flags; 8135 u64 values[6]; 8136 int n = 0; 8137 bool self = has_inherit_and_sample_read(&event->attr); 8138 8139 /* 8140 * Disabling interrupts avoids all counter scheduling 8141 * (context switches, timer based rotation and IPIs). 8142 */ 8143 local_irq_save(flags); 8144 8145 values[n++] = 1 + leader->nr_siblings; 8146 8147 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) 8148 values[n++] = enabled; 8149 8150 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) 8151 values[n++] = running; 8152 8153 if ((leader != event) && !handle->skip_read) 8154 perf_pmu_read(leader); 8155 8156 values[n++] = perf_event_count(leader, self); 8157 if (read_format & PERF_FORMAT_ID) 8158 values[n++] = primary_event_id(leader); 8159 if (read_format & PERF_FORMAT_LOST) 8160 values[n++] = atomic64_read(&leader->lost_samples); 8161 8162 __output_copy(handle, values, n * sizeof(u64)); 8163 8164 for_each_sibling_event(sub, leader) { 8165 n = 0; 8166 8167 if ((sub != event) && !handle->skip_read) 8168 perf_pmu_read(sub); 8169 8170 values[n++] = perf_event_count(sub, self); 8171 if (read_format & PERF_FORMAT_ID) 8172 values[n++] = primary_event_id(sub); 8173 if (read_format & PERF_FORMAT_LOST) 8174 values[n++] = atomic64_read(&sub->lost_samples); 8175 8176 __output_copy(handle, values, n * sizeof(u64)); 8177 } 8178 8179 local_irq_restore(flags); 8180 } 8181 8182 #define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\ 8183 PERF_FORMAT_TOTAL_TIME_RUNNING) 8184 8185 /* 8186 * XXX PERF_SAMPLE_READ vs inherited events seems difficult. 8187 * 8188 * The problem is that its both hard and excessively expensive to iterate the 8189 * child list, not to mention that its impossible to IPI the children running 8190 * on another CPU, from interrupt/NMI context. 8191 * 8192 * Instead the combination of PERF_SAMPLE_READ and inherit will track per-thread 8193 * counts rather than attempting to accumulate some value across all children on 8194 * all cores. 8195 */ 8196 static void perf_output_read(struct perf_output_handle *handle, 8197 struct perf_event *event) 8198 { 8199 u64 enabled = 0, running = 0, now; 8200 u64 read_format = event->attr.read_format; 8201 8202 /* 8203 * Compute total_time_enabled, total_time_running based on snapshot 8204 * values taken when the event was last scheduled in. 8205 * 8206 * We cannot simply call update_context_time() because doing so would 8207 * lead to deadlock when called from NMI context. 8208 */ 8209 if (read_format & PERF_FORMAT_TOTAL_TIMES) 8210 calc_timer_values(event, &now, &enabled, &running); 8211 8212 if (event->attr.read_format & PERF_FORMAT_GROUP) 8213 perf_output_read_group(handle, event, enabled, running); 8214 else 8215 perf_output_read_one(handle, event, enabled, running); 8216 } 8217 8218 void perf_output_sample(struct perf_output_handle *handle, 8219 struct perf_event_header *header, 8220 struct perf_sample_data *data, 8221 struct perf_event *event) 8222 { 8223 u64 sample_type = data->type; 8224 8225 if (data->sample_flags & PERF_SAMPLE_READ) 8226 handle->skip_read = 1; 8227 8228 perf_output_put(handle, *header); 8229 8230 if (sample_type & PERF_SAMPLE_IDENTIFIER) 8231 perf_output_put(handle, data->id); 8232 8233 if (sample_type & PERF_SAMPLE_IP) 8234 perf_output_put(handle, data->ip); 8235 8236 if (sample_type & PERF_SAMPLE_TID) 8237 perf_output_put(handle, data->tid_entry); 8238 8239 if (sample_type & PERF_SAMPLE_TIME) 8240 perf_output_put(handle, data->time); 8241 8242 if (sample_type & PERF_SAMPLE_ADDR) 8243 perf_output_put(handle, data->addr); 8244 8245 if (sample_type & PERF_SAMPLE_ID) 8246 perf_output_put(handle, data->id); 8247 8248 if (sample_type & PERF_SAMPLE_STREAM_ID) 8249 perf_output_put(handle, data->stream_id); 8250 8251 if (sample_type & PERF_SAMPLE_CPU) 8252 perf_output_put(handle, data->cpu_entry); 8253 8254 if (sample_type & PERF_SAMPLE_PERIOD) 8255 perf_output_put(handle, data->period); 8256 8257 if (sample_type & PERF_SAMPLE_READ) 8258 perf_output_read(handle, event); 8259 8260 if (sample_type & PERF_SAMPLE_CALLCHAIN) { 8261 int size = 1; 8262 8263 size += data->callchain->nr; 8264 size *= sizeof(u64); 8265 __output_copy(handle, data->callchain, size); 8266 } 8267 8268 if (sample_type & PERF_SAMPLE_RAW) { 8269 struct perf_raw_record *raw = data->raw; 8270 8271 if (raw) { 8272 struct perf_raw_frag *frag = &raw->frag; 8273 8274 perf_output_put(handle, raw->size); 8275 do { 8276 if (frag->copy) { 8277 __output_custom(handle, frag->copy, 8278 frag->data, frag->size); 8279 } else { 8280 __output_copy(handle, frag->data, 8281 frag->size); 8282 } 8283 if (perf_raw_frag_last(frag)) 8284 break; 8285 frag = frag->next; 8286 } while (1); 8287 if (frag->pad) 8288 __output_skip(handle, NULL, frag->pad); 8289 } else { 8290 struct { 8291 u32 size; 8292 u32 data; 8293 } raw = { 8294 .size = sizeof(u32), 8295 .data = 0, 8296 }; 8297 perf_output_put(handle, raw); 8298 } 8299 } 8300 8301 if (sample_type & PERF_SAMPLE_BRANCH_STACK) { 8302 if (data->br_stack) { 8303 size_t size; 8304 8305 size = data->br_stack->nr 8306 * sizeof(struct perf_branch_entry); 8307 8308 perf_output_put(handle, data->br_stack->nr); 8309 if (branch_sample_hw_index(event)) 8310 perf_output_put(handle, data->br_stack->hw_idx); 8311 perf_output_copy(handle, data->br_stack->entries, size); 8312 /* 8313 * Add the extension space which is appended 8314 * right after the struct perf_branch_stack. 8315 */ 8316 if (data->br_stack_cntr) { 8317 size = data->br_stack->nr * sizeof(u64); 8318 perf_output_copy(handle, data->br_stack_cntr, size); 8319 } 8320 } else { 8321 /* 8322 * we always store at least the value of nr 8323 */ 8324 u64 nr = 0; 8325 perf_output_put(handle, nr); 8326 } 8327 } 8328 8329 if (sample_type & PERF_SAMPLE_REGS_USER) { 8330 u64 abi = data->regs_user.abi; 8331 8332 /* 8333 * If there are no regs to dump, notice it through 8334 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE). 8335 */ 8336 perf_output_put(handle, abi); 8337 8338 if (abi) { 8339 u64 mask = event->attr.sample_regs_user; 8340 perf_output_sample_regs(handle, 8341 data->regs_user.regs, 8342 mask); 8343 } 8344 } 8345 8346 if (sample_type & PERF_SAMPLE_STACK_USER) { 8347 perf_output_sample_ustack(handle, 8348 data->stack_user_size, 8349 data->regs_user.regs); 8350 } 8351 8352 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE) 8353 perf_output_put(handle, data->weight.full); 8354 8355 if (sample_type & PERF_SAMPLE_DATA_SRC) 8356 perf_output_put(handle, data->data_src.val); 8357 8358 if (sample_type & PERF_SAMPLE_TRANSACTION) 8359 perf_output_put(handle, data->txn); 8360 8361 if (sample_type & PERF_SAMPLE_REGS_INTR) { 8362 u64 abi = data->regs_intr.abi; 8363 /* 8364 * If there are no regs to dump, notice it through 8365 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE). 8366 */ 8367 perf_output_put(handle, abi); 8368 8369 if (abi) { 8370 u64 mask = event->attr.sample_regs_intr; 8371 8372 perf_output_sample_regs(handle, 8373 data->regs_intr.regs, 8374 mask); 8375 } 8376 } 8377 8378 if (sample_type & PERF_SAMPLE_PHYS_ADDR) 8379 perf_output_put(handle, data->phys_addr); 8380 8381 if (sample_type & PERF_SAMPLE_CGROUP) 8382 perf_output_put(handle, data->cgroup); 8383 8384 if (sample_type & PERF_SAMPLE_DATA_PAGE_SIZE) 8385 perf_output_put(handle, data->data_page_size); 8386 8387 if (sample_type & PERF_SAMPLE_CODE_PAGE_SIZE) 8388 perf_output_put(handle, data->code_page_size); 8389 8390 if (sample_type & PERF_SAMPLE_AUX) { 8391 perf_output_put(handle, data->aux_size); 8392 8393 if (data->aux_size) 8394 perf_aux_sample_output(event, handle, data); 8395 } 8396 8397 if (!event->attr.watermark) { 8398 int wakeup_events = event->attr.wakeup_events; 8399 8400 if (wakeup_events) { 8401 struct perf_buffer *rb = handle->rb; 8402 int events = local_inc_return(&rb->events); 8403 8404 if (events >= wakeup_events) { 8405 local_sub(wakeup_events, &rb->events); 8406 local_inc(&rb->wakeup); 8407 } 8408 } 8409 } 8410 } 8411 8412 static u64 perf_virt_to_phys(u64 virt) 8413 { 8414 u64 phys_addr = 0; 8415 8416 if (!virt) 8417 return 0; 8418 8419 if (virt >= TASK_SIZE) { 8420 /* If it's vmalloc()d memory, leave phys_addr as 0 */ 8421 if (virt_addr_valid((void *)(uintptr_t)virt) && 8422 !(virt >= VMALLOC_START && virt < VMALLOC_END)) 8423 phys_addr = (u64)virt_to_phys((void *)(uintptr_t)virt); 8424 } else { 8425 /* 8426 * Walking the pages tables for user address. 8427 * Interrupts are disabled, so it prevents any tear down 8428 * of the page tables. 8429 * Try IRQ-safe get_user_page_fast_only first. 8430 * If failed, leave phys_addr as 0. 8431 */ 8432 if (is_user_task(current)) { 8433 struct page *p; 8434 8435 pagefault_disable(); 8436 if (get_user_page_fast_only(virt, 0, &p)) { 8437 phys_addr = page_to_phys(p) + virt % PAGE_SIZE; 8438 put_page(p); 8439 } 8440 pagefault_enable(); 8441 } 8442 } 8443 8444 return phys_addr; 8445 } 8446 8447 /* 8448 * Return the pagetable size of a given virtual address. 8449 */ 8450 static u64 perf_get_pgtable_size(struct mm_struct *mm, unsigned long addr) 8451 { 8452 u64 size = 0; 8453 8454 #ifdef CONFIG_HAVE_GUP_FAST 8455 pgd_t *pgdp, pgd; 8456 p4d_t *p4dp, p4d; 8457 pud_t *pudp, pud; 8458 pmd_t *pmdp, pmd; 8459 pte_t *ptep, pte; 8460 8461 pgdp = pgd_offset(mm, addr); 8462 pgd = pgdp_get(pgdp); 8463 if (pgd_none(pgd)) 8464 return 0; 8465 8466 if (pgd_leaf(pgd)) 8467 return pgd_leaf_size(pgd); 8468 8469 p4dp = p4d_offset_lockless(pgdp, pgd, addr); 8470 p4d = p4dp_get(p4dp); 8471 if (!p4d_present(p4d)) 8472 return 0; 8473 8474 if (p4d_leaf(p4d)) 8475 return p4d_leaf_size(p4d); 8476 8477 pudp = pud_offset_lockless(p4dp, p4d, addr); 8478 pud = pudp_get(pudp); 8479 if (!pud_present(pud)) 8480 return 0; 8481 8482 if (pud_leaf(pud)) 8483 return pud_leaf_size(pud); 8484 8485 pmdp = pmd_offset_lockless(pudp, pud, addr); 8486 again: 8487 pmd = pmdp_get_lockless(pmdp); 8488 if (!pmd_present(pmd)) 8489 return 0; 8490 8491 if (pmd_leaf(pmd)) 8492 return pmd_leaf_size(pmd); 8493 8494 ptep = pte_offset_map(&pmd, addr); 8495 if (!ptep) 8496 goto again; 8497 8498 pte = ptep_get_lockless(ptep); 8499 if (pte_present(pte)) 8500 size = __pte_leaf_size(pmd, pte); 8501 pte_unmap(ptep); 8502 #endif /* CONFIG_HAVE_GUP_FAST */ 8503 8504 return size; 8505 } 8506 8507 static u64 perf_get_page_size(unsigned long addr) 8508 { 8509 struct mm_struct *mm; 8510 unsigned long flags; 8511 u64 size; 8512 8513 if (!addr) 8514 return 0; 8515 8516 /* 8517 * Software page-table walkers must disable IRQs, 8518 * which prevents any tear down of the page tables. 8519 */ 8520 local_irq_save(flags); 8521 8522 mm = current->mm; 8523 if (!mm) { 8524 /* 8525 * For kernel threads and the like, use init_mm so that 8526 * we can find kernel memory. 8527 */ 8528 mm = &init_mm; 8529 } 8530 8531 size = perf_get_pgtable_size(mm, addr); 8532 8533 local_irq_restore(flags); 8534 8535 return size; 8536 } 8537 8538 static struct perf_callchain_entry __empty_callchain = { .nr = 0, }; 8539 8540 static struct unwind_work perf_unwind_work; 8541 8542 struct perf_callchain_entry * 8543 perf_callchain(struct perf_event *event, struct pt_regs *regs) 8544 { 8545 bool kernel = !event->attr.exclude_callchain_kernel; 8546 bool user = !event->attr.exclude_callchain_user && 8547 is_user_task(current); 8548 /* Disallow cross-task user callchains. */ 8549 bool crosstask = event->ctx->task && event->ctx->task != current; 8550 bool defer_user = IS_ENABLED(CONFIG_UNWIND_USER) && user && 8551 event->attr.defer_callchain; 8552 const u32 max_stack = event->attr.sample_max_stack; 8553 struct perf_callchain_entry *callchain; 8554 u64 defer_cookie; 8555 8556 if (!current->mm) 8557 user = false; 8558 8559 if (!kernel && !user) 8560 return &__empty_callchain; 8561 8562 if (!(user && defer_user && !crosstask && 8563 unwind_deferred_request(&perf_unwind_work, &defer_cookie) >= 0)) 8564 defer_cookie = 0; 8565 8566 callchain = get_perf_callchain(regs, kernel, user, max_stack, 8567 crosstask, true, defer_cookie); 8568 8569 return callchain ?: &__empty_callchain; 8570 } 8571 8572 static __always_inline u64 __cond_set(u64 flags, u64 s, u64 d) 8573 { 8574 return d * !!(flags & s); 8575 } 8576 8577 void perf_prepare_sample(struct perf_sample_data *data, 8578 struct perf_event *event, 8579 struct pt_regs *regs) 8580 { 8581 u64 sample_type = event->attr.sample_type; 8582 u64 filtered_sample_type; 8583 8584 /* 8585 * Add the sample flags that are dependent to others. And clear the 8586 * sample flags that have already been done by the PMU driver. 8587 */ 8588 filtered_sample_type = sample_type; 8589 filtered_sample_type |= __cond_set(sample_type, PERF_SAMPLE_CODE_PAGE_SIZE, 8590 PERF_SAMPLE_IP); 8591 filtered_sample_type |= __cond_set(sample_type, PERF_SAMPLE_DATA_PAGE_SIZE | 8592 PERF_SAMPLE_PHYS_ADDR, PERF_SAMPLE_ADDR); 8593 filtered_sample_type |= __cond_set(sample_type, PERF_SAMPLE_STACK_USER, 8594 PERF_SAMPLE_REGS_USER); 8595 filtered_sample_type &= ~data->sample_flags; 8596 8597 if (filtered_sample_type == 0) { 8598 /* Make sure it has the correct data->type for output */ 8599 data->type = event->attr.sample_type; 8600 return; 8601 } 8602 8603 __perf_event_header__init_id(data, event, filtered_sample_type); 8604 8605 if (filtered_sample_type & PERF_SAMPLE_IP) { 8606 data->ip = perf_instruction_pointer(event, regs); 8607 data->sample_flags |= PERF_SAMPLE_IP; 8608 } 8609 8610 if (filtered_sample_type & PERF_SAMPLE_CALLCHAIN) 8611 perf_sample_save_callchain(data, event, regs); 8612 8613 if (filtered_sample_type & PERF_SAMPLE_RAW) { 8614 data->raw = NULL; 8615 data->dyn_size += sizeof(u64); 8616 data->sample_flags |= PERF_SAMPLE_RAW; 8617 } 8618 8619 if (filtered_sample_type & PERF_SAMPLE_BRANCH_STACK) { 8620 data->br_stack = NULL; 8621 data->dyn_size += sizeof(u64); 8622 data->sample_flags |= PERF_SAMPLE_BRANCH_STACK; 8623 } 8624 8625 if (filtered_sample_type & PERF_SAMPLE_REGS_USER) 8626 perf_sample_regs_user(&data->regs_user, regs); 8627 8628 /* 8629 * It cannot use the filtered_sample_type here as REGS_USER can be set 8630 * by STACK_USER (using __cond_set() above) and we don't want to update 8631 * the dyn_size if it's not requested by users. 8632 */ 8633 if ((sample_type & ~data->sample_flags) & PERF_SAMPLE_REGS_USER) { 8634 /* regs dump ABI info */ 8635 int size = sizeof(u64); 8636 8637 if (data->regs_user.regs) { 8638 u64 mask = event->attr.sample_regs_user; 8639 size += hweight64(mask) * sizeof(u64); 8640 } 8641 8642 data->dyn_size += size; 8643 data->sample_flags |= PERF_SAMPLE_REGS_USER; 8644 } 8645 8646 if (filtered_sample_type & PERF_SAMPLE_STACK_USER) { 8647 /* 8648 * Either we need PERF_SAMPLE_STACK_USER bit to be always 8649 * processed as the last one or have additional check added 8650 * in case new sample type is added, because we could eat 8651 * up the rest of the sample size. 8652 */ 8653 u16 stack_size = event->attr.sample_stack_user; 8654 u16 header_size = perf_sample_data_size(data, event); 8655 u16 size = sizeof(u64); 8656 8657 stack_size = perf_sample_ustack_size(stack_size, header_size, 8658 data->regs_user.regs); 8659 8660 /* 8661 * If there is something to dump, add space for the dump 8662 * itself and for the field that tells the dynamic size, 8663 * which is how many have been actually dumped. 8664 */ 8665 if (stack_size) 8666 size += sizeof(u64) + stack_size; 8667 8668 data->stack_user_size = stack_size; 8669 data->dyn_size += size; 8670 data->sample_flags |= PERF_SAMPLE_STACK_USER; 8671 } 8672 8673 if (filtered_sample_type & PERF_SAMPLE_WEIGHT_TYPE) { 8674 data->weight.full = 0; 8675 data->sample_flags |= PERF_SAMPLE_WEIGHT_TYPE; 8676 } 8677 8678 if (filtered_sample_type & PERF_SAMPLE_DATA_SRC) { 8679 data->data_src.val = PERF_MEM_NA; 8680 data->sample_flags |= PERF_SAMPLE_DATA_SRC; 8681 } 8682 8683 if (filtered_sample_type & PERF_SAMPLE_TRANSACTION) { 8684 data->txn = 0; 8685 data->sample_flags |= PERF_SAMPLE_TRANSACTION; 8686 } 8687 8688 if (filtered_sample_type & PERF_SAMPLE_ADDR) { 8689 data->addr = 0; 8690 data->sample_flags |= PERF_SAMPLE_ADDR; 8691 } 8692 8693 if (filtered_sample_type & PERF_SAMPLE_REGS_INTR) { 8694 /* regs dump ABI info */ 8695 int size = sizeof(u64); 8696 8697 perf_sample_regs_intr(&data->regs_intr, regs); 8698 8699 if (data->regs_intr.regs) { 8700 u64 mask = event->attr.sample_regs_intr; 8701 8702 size += hweight64(mask) * sizeof(u64); 8703 } 8704 8705 data->dyn_size += size; 8706 data->sample_flags |= PERF_SAMPLE_REGS_INTR; 8707 } 8708 8709 if (filtered_sample_type & PERF_SAMPLE_PHYS_ADDR) { 8710 data->phys_addr = perf_virt_to_phys(data->addr); 8711 data->sample_flags |= PERF_SAMPLE_PHYS_ADDR; 8712 } 8713 8714 #ifdef CONFIG_CGROUP_PERF 8715 if (filtered_sample_type & PERF_SAMPLE_CGROUP) { 8716 struct cgroup *cgrp; 8717 8718 /* protected by RCU */ 8719 cgrp = task_css_check(current, perf_event_cgrp_id, 1)->cgroup; 8720 data->cgroup = cgroup_id(cgrp); 8721 data->sample_flags |= PERF_SAMPLE_CGROUP; 8722 } 8723 #endif 8724 8725 /* 8726 * PERF_DATA_PAGE_SIZE requires PERF_SAMPLE_ADDR. If the user doesn't 8727 * require PERF_SAMPLE_ADDR, kernel implicitly retrieve the data->addr, 8728 * but the value will not dump to the userspace. 8729 */ 8730 if (filtered_sample_type & PERF_SAMPLE_DATA_PAGE_SIZE) { 8731 data->data_page_size = perf_get_page_size(data->addr); 8732 data->sample_flags |= PERF_SAMPLE_DATA_PAGE_SIZE; 8733 } 8734 8735 if (filtered_sample_type & PERF_SAMPLE_CODE_PAGE_SIZE) { 8736 data->code_page_size = perf_get_page_size(data->ip); 8737 data->sample_flags |= PERF_SAMPLE_CODE_PAGE_SIZE; 8738 } 8739 8740 if (filtered_sample_type & PERF_SAMPLE_AUX) { 8741 u64 size; 8742 u16 header_size = perf_sample_data_size(data, event); 8743 8744 header_size += sizeof(u64); /* size */ 8745 8746 /* 8747 * Given the 16bit nature of header::size, an AUX sample can 8748 * easily overflow it, what with all the preceding sample bits. 8749 * Make sure this doesn't happen by using up to U16_MAX bytes 8750 * per sample in total (rounded down to 8 byte boundary). 8751 */ 8752 size = min_t(size_t, U16_MAX - header_size, 8753 event->attr.aux_sample_size); 8754 size = rounddown(size, 8); 8755 size = perf_prepare_sample_aux(event, data, size); 8756 8757 WARN_ON_ONCE(size + header_size > U16_MAX); 8758 data->dyn_size += size + sizeof(u64); /* size above */ 8759 data->sample_flags |= PERF_SAMPLE_AUX; 8760 } 8761 } 8762 8763 void perf_prepare_header(struct perf_event_header *header, 8764 struct perf_sample_data *data, 8765 struct perf_event *event, 8766 struct pt_regs *regs) 8767 { 8768 header->type = PERF_RECORD_SAMPLE; 8769 header->size = perf_sample_data_size(data, event); 8770 header->misc = perf_misc_flags(event, regs); 8771 8772 /* 8773 * If you're adding more sample types here, you likely need to do 8774 * something about the overflowing header::size, like repurpose the 8775 * lowest 3 bits of size, which should be always zero at the moment. 8776 * This raises a more important question, do we really need 512k sized 8777 * samples and why, so good argumentation is in order for whatever you 8778 * do here next. 8779 */ 8780 WARN_ON_ONCE(header->size & 7); 8781 } 8782 8783 static void __perf_event_aux_pause(struct perf_event *event, bool pause) 8784 { 8785 if (pause) { 8786 if (!event->hw.aux_paused) { 8787 event->hw.aux_paused = 1; 8788 event->pmu->stop(event, PERF_EF_PAUSE); 8789 } 8790 } else { 8791 if (event->hw.aux_paused) { 8792 event->hw.aux_paused = 0; 8793 event->pmu->start(event, PERF_EF_RESUME); 8794 } 8795 } 8796 } 8797 8798 static void perf_event_aux_pause(struct perf_event *event, bool pause) 8799 { 8800 struct perf_buffer *rb; 8801 8802 if (WARN_ON_ONCE(!event)) 8803 return; 8804 8805 rb = ring_buffer_get(event); 8806 if (!rb) 8807 return; 8808 8809 scoped_guard (irqsave) { 8810 /* 8811 * Guard against self-recursion here. Another event could trip 8812 * this same from NMI context. 8813 */ 8814 if (READ_ONCE(rb->aux_in_pause_resume)) 8815 break; 8816 8817 WRITE_ONCE(rb->aux_in_pause_resume, 1); 8818 barrier(); 8819 __perf_event_aux_pause(event, pause); 8820 barrier(); 8821 WRITE_ONCE(rb->aux_in_pause_resume, 0); 8822 } 8823 ring_buffer_put(rb); 8824 } 8825 8826 static __always_inline int 8827 __perf_event_output(struct perf_event *event, 8828 struct perf_sample_data *data, 8829 struct pt_regs *regs, 8830 int (*output_begin)(struct perf_output_handle *, 8831 struct perf_sample_data *, 8832 struct perf_event *, 8833 unsigned int)) 8834 { 8835 struct perf_output_handle handle; 8836 struct perf_event_header header; 8837 int err; 8838 8839 /* protect the callchain buffers */ 8840 rcu_read_lock(); 8841 8842 perf_prepare_sample(data, event, regs); 8843 perf_prepare_header(&header, data, event, regs); 8844 8845 err = output_begin(&handle, data, event, header.size); 8846 if (err) 8847 goto exit; 8848 8849 perf_output_sample(&handle, &header, data, event); 8850 8851 perf_output_end(&handle); 8852 8853 exit: 8854 rcu_read_unlock(); 8855 return err; 8856 } 8857 8858 void 8859 perf_event_output_forward(struct perf_event *event, 8860 struct perf_sample_data *data, 8861 struct pt_regs *regs) 8862 { 8863 __perf_event_output(event, data, regs, perf_output_begin_forward); 8864 } 8865 8866 void 8867 perf_event_output_backward(struct perf_event *event, 8868 struct perf_sample_data *data, 8869 struct pt_regs *regs) 8870 { 8871 __perf_event_output(event, data, regs, perf_output_begin_backward); 8872 } 8873 8874 int 8875 perf_event_output(struct perf_event *event, 8876 struct perf_sample_data *data, 8877 struct pt_regs *regs) 8878 { 8879 return __perf_event_output(event, data, regs, perf_output_begin); 8880 } 8881 8882 /* 8883 * read event_id 8884 */ 8885 8886 struct perf_read_event { 8887 struct perf_event_header header; 8888 8889 u32 pid; 8890 u32 tid; 8891 }; 8892 8893 static void 8894 perf_event_read_event(struct perf_event *event, 8895 struct task_struct *task) 8896 { 8897 struct perf_output_handle handle; 8898 struct perf_sample_data sample; 8899 struct perf_read_event read_event = { 8900 .header = { 8901 .type = PERF_RECORD_READ, 8902 .misc = 0, 8903 .size = sizeof(read_event) + event->read_size, 8904 }, 8905 .pid = perf_event_pid(event, task), 8906 .tid = perf_event_tid(event, task), 8907 }; 8908 int ret; 8909 8910 perf_event_header__init_id(&read_event.header, &sample, event); 8911 ret = perf_output_begin(&handle, &sample, event, read_event.header.size); 8912 if (ret) 8913 return; 8914 8915 perf_output_put(&handle, read_event); 8916 perf_output_read(&handle, event); 8917 perf_event__output_id_sample(event, &handle, &sample); 8918 8919 perf_output_end(&handle); 8920 } 8921 8922 typedef void (perf_iterate_f)(struct perf_event *event, void *data); 8923 8924 static void 8925 perf_iterate_ctx(struct perf_event_context *ctx, 8926 perf_iterate_f output, 8927 void *data, bool all) 8928 { 8929 struct perf_event *event; 8930 8931 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) { 8932 if (!all) { 8933 if (event->state < PERF_EVENT_STATE_INACTIVE) 8934 continue; 8935 if (!event_filter_match(event)) 8936 continue; 8937 } 8938 8939 output(event, data); 8940 } 8941 } 8942 8943 static void perf_iterate_sb_cpu(perf_iterate_f output, void *data) 8944 { 8945 struct pmu_event_list *pel = this_cpu_ptr(&pmu_sb_events); 8946 struct perf_event *event; 8947 8948 list_for_each_entry_rcu(event, &pel->list, sb_list) { 8949 /* 8950 * Skip events that are not fully formed yet; ensure that 8951 * if we observe event->ctx, both event and ctx will be 8952 * complete enough. See perf_install_in_context(). 8953 */ 8954 if (!smp_load_acquire(&event->ctx)) 8955 continue; 8956 8957 if (event->state < PERF_EVENT_STATE_INACTIVE) 8958 continue; 8959 if (!event_filter_match(event)) 8960 continue; 8961 output(event, data); 8962 } 8963 } 8964 8965 /* 8966 * Iterate all events that need to receive side-band events. 8967 * 8968 * For new callers; ensure that account_pmu_sb_event() includes 8969 * your event, otherwise it might not get delivered. 8970 */ 8971 static void 8972 perf_iterate_sb(perf_iterate_f output, void *data, 8973 struct perf_event_context *task_ctx) 8974 { 8975 struct perf_event_context *ctx; 8976 8977 rcu_read_lock(); 8978 preempt_disable(); 8979 8980 /* 8981 * If we have task_ctx != NULL we only notify the task context itself. 8982 * The task_ctx is set only for EXIT events before releasing task 8983 * context. 8984 */ 8985 if (task_ctx) { 8986 perf_iterate_ctx(task_ctx, output, data, false); 8987 goto done; 8988 } 8989 8990 perf_iterate_sb_cpu(output, data); 8991 8992 ctx = rcu_dereference(current->perf_event_ctxp); 8993 if (ctx) 8994 perf_iterate_ctx(ctx, output, data, false); 8995 done: 8996 preempt_enable(); 8997 rcu_read_unlock(); 8998 } 8999 9000 /* 9001 * Clear all file-based filters at exec, they'll have to be 9002 * re-instated when/if these objects are mmapped again. 9003 */ 9004 static void perf_event_addr_filters_exec(struct perf_event *event, void *data) 9005 { 9006 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); 9007 struct perf_addr_filter *filter; 9008 unsigned int restart = 0, count = 0; 9009 unsigned long flags; 9010 9011 if (!has_addr_filter(event)) 9012 return; 9013 9014 raw_spin_lock_irqsave(&ifh->lock, flags); 9015 list_for_each_entry(filter, &ifh->list, entry) { 9016 if (filter->path.dentry) { 9017 event->addr_filter_ranges[count].start = 0; 9018 event->addr_filter_ranges[count].size = 0; 9019 restart++; 9020 } 9021 9022 count++; 9023 } 9024 9025 if (restart) 9026 event->addr_filters_gen++; 9027 raw_spin_unlock_irqrestore(&ifh->lock, flags); 9028 9029 if (restart) 9030 perf_event_stop(event, 1); 9031 } 9032 9033 void perf_event_exec(void) 9034 { 9035 struct perf_event_context *ctx; 9036 9037 ctx = perf_pin_task_context(current); 9038 if (!ctx) 9039 return; 9040 9041 perf_event_enable_on_exec(ctx); 9042 perf_event_remove_on_exec(ctx); 9043 scoped_guard(rcu) 9044 perf_iterate_ctx(ctx, perf_event_addr_filters_exec, NULL, true); 9045 9046 perf_unpin_context(ctx); 9047 put_ctx(ctx); 9048 } 9049 9050 struct remote_output { 9051 struct perf_buffer *rb; 9052 int err; 9053 }; 9054 9055 static void __perf_event_output_stop(struct perf_event *event, void *data) 9056 { 9057 struct perf_event *parent = event->parent; 9058 struct remote_output *ro = data; 9059 struct perf_buffer *rb = ro->rb; 9060 struct stop_event_data sd = { 9061 .event = event, 9062 }; 9063 9064 if (!has_aux(event)) 9065 return; 9066 9067 if (!parent) 9068 parent = event; 9069 9070 /* 9071 * In case of inheritance, it will be the parent that links to the 9072 * ring-buffer, but it will be the child that's actually using it. 9073 * 9074 * We are using event::rb to determine if the event should be stopped, 9075 * however this may race with ring_buffer_attach() (through set_output), 9076 * which will make us skip the event that actually needs to be stopped. 9077 * So ring_buffer_attach() has to stop an aux event before re-assigning 9078 * its rb pointer. 9079 */ 9080 if (rcu_dereference(parent->rb) == rb) 9081 ro->err = __perf_event_stop(&sd); 9082 } 9083 9084 static int __perf_pmu_output_stop(void *info) 9085 { 9086 struct perf_event *event = info; 9087 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 9088 struct remote_output ro = { 9089 .rb = event->rb, 9090 }; 9091 9092 rcu_read_lock(); 9093 perf_iterate_ctx(&cpuctx->ctx, __perf_event_output_stop, &ro, false); 9094 if (cpuctx->task_ctx) 9095 perf_iterate_ctx(cpuctx->task_ctx, __perf_event_output_stop, 9096 &ro, false); 9097 rcu_read_unlock(); 9098 9099 return ro.err; 9100 } 9101 9102 static void perf_pmu_output_stop(struct perf_event *event) 9103 { 9104 struct perf_event *iter; 9105 int err, cpu; 9106 9107 restart: 9108 rcu_read_lock(); 9109 list_for_each_entry_rcu(iter, &event->rb->event_list, rb_entry) { 9110 /* 9111 * For per-CPU events, we need to make sure that neither they 9112 * nor their children are running; for cpu==-1 events it's 9113 * sufficient to stop the event itself if it's active, since 9114 * it can't have children. 9115 */ 9116 cpu = iter->cpu; 9117 if (cpu == -1) 9118 cpu = READ_ONCE(iter->oncpu); 9119 9120 if (cpu == -1) 9121 continue; 9122 9123 err = cpu_function_call(cpu, __perf_pmu_output_stop, event); 9124 if (err == -EAGAIN) { 9125 rcu_read_unlock(); 9126 goto restart; 9127 } 9128 } 9129 rcu_read_unlock(); 9130 } 9131 9132 /* 9133 * task tracking -- fork/exit 9134 * 9135 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task 9136 */ 9137 9138 struct perf_task_event { 9139 struct task_struct *task; 9140 struct perf_event_context *task_ctx; 9141 9142 struct { 9143 struct perf_event_header header; 9144 9145 u32 pid; 9146 u32 ppid; 9147 u32 tid; 9148 u32 ptid; 9149 u64 time; 9150 } event_id; 9151 }; 9152 9153 static int perf_event_task_match(struct perf_event *event) 9154 { 9155 return event->attr.comm || event->attr.mmap || 9156 event->attr.mmap2 || event->attr.mmap_data || 9157 event->attr.task; 9158 } 9159 9160 static void perf_event_task_output(struct perf_event *event, 9161 void *data) 9162 { 9163 struct perf_task_event *task_event = data; 9164 struct perf_output_handle handle; 9165 struct perf_sample_data sample; 9166 struct task_struct *task = task_event->task; 9167 int ret, size = task_event->event_id.header.size; 9168 9169 if (!perf_event_task_match(event)) 9170 return; 9171 9172 perf_event_header__init_id(&task_event->event_id.header, &sample, event); 9173 9174 ret = perf_output_begin(&handle, &sample, event, 9175 task_event->event_id.header.size); 9176 if (ret) 9177 goto out; 9178 9179 task_event->event_id.pid = perf_event_pid(event, task); 9180 task_event->event_id.tid = perf_event_tid(event, task); 9181 9182 if (task_event->event_id.header.type == PERF_RECORD_EXIT) { 9183 task_event->event_id.ppid = perf_event_pid(event, 9184 task->real_parent); 9185 task_event->event_id.ptid = perf_event_pid(event, 9186 task->real_parent); 9187 } else { /* PERF_RECORD_FORK */ 9188 task_event->event_id.ppid = perf_event_pid(event, current); 9189 task_event->event_id.ptid = perf_event_tid(event, current); 9190 } 9191 9192 task_event->event_id.time = perf_event_clock(event); 9193 9194 perf_output_put(&handle, task_event->event_id); 9195 9196 perf_event__output_id_sample(event, &handle, &sample); 9197 9198 perf_output_end(&handle); 9199 out: 9200 task_event->event_id.header.size = size; 9201 } 9202 9203 static void perf_event_task(struct task_struct *task, 9204 struct perf_event_context *task_ctx, 9205 int new) 9206 { 9207 struct perf_task_event task_event; 9208 9209 if (!atomic_read(&nr_comm_events) && 9210 !atomic_read(&nr_mmap_events) && 9211 !atomic_read(&nr_task_events)) 9212 return; 9213 9214 task_event = (struct perf_task_event){ 9215 .task = task, 9216 .task_ctx = task_ctx, 9217 .event_id = { 9218 .header = { 9219 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT, 9220 .misc = 0, 9221 .size = sizeof(task_event.event_id), 9222 }, 9223 /* .pid */ 9224 /* .ppid */ 9225 /* .tid */ 9226 /* .ptid */ 9227 /* .time */ 9228 }, 9229 }; 9230 9231 perf_iterate_sb(perf_event_task_output, 9232 &task_event, 9233 task_ctx); 9234 } 9235 9236 /* 9237 * Allocate data for a new task when profiling system-wide 9238 * events which require PMU specific data 9239 */ 9240 static void 9241 perf_event_alloc_task_data(struct task_struct *child, 9242 struct task_struct *parent) 9243 { 9244 struct kmem_cache *ctx_cache = NULL; 9245 struct perf_ctx_data *cd; 9246 9247 if (!refcount_read(&global_ctx_data_ref)) 9248 return; 9249 9250 scoped_guard (rcu) { 9251 cd = rcu_dereference(parent->perf_ctx_data); 9252 if (cd) 9253 ctx_cache = cd->ctx_cache; 9254 } 9255 9256 if (!ctx_cache) 9257 return; 9258 9259 guard(percpu_read)(&global_ctx_data_rwsem); 9260 scoped_guard (rcu) { 9261 cd = rcu_dereference(child->perf_ctx_data); 9262 if (!cd) { 9263 /* 9264 * A system-wide event may be unaccount, 9265 * when attaching the perf_ctx_data. 9266 */ 9267 if (!refcount_read(&global_ctx_data_ref)) 9268 return; 9269 goto attach; 9270 } 9271 9272 if (!cd->global) { 9273 cd->global = 1; 9274 refcount_inc(&cd->refcount); 9275 } 9276 } 9277 9278 return; 9279 attach: 9280 attach_task_ctx_data(child, ctx_cache, true, GFP_KERNEL); 9281 } 9282 9283 void perf_event_fork(struct task_struct *task) 9284 { 9285 perf_event_task(task, NULL, 1); 9286 perf_event_namespaces(task); 9287 perf_event_alloc_task_data(task, current); 9288 } 9289 9290 /* 9291 * comm tracking 9292 */ 9293 9294 struct perf_comm_event { 9295 struct task_struct *task; 9296 char *comm; 9297 int comm_size; 9298 9299 struct { 9300 struct perf_event_header header; 9301 9302 u32 pid; 9303 u32 tid; 9304 } event_id; 9305 }; 9306 9307 static int perf_event_comm_match(struct perf_event *event) 9308 { 9309 return event->attr.comm; 9310 } 9311 9312 static void perf_event_comm_output(struct perf_event *event, 9313 void *data) 9314 { 9315 struct perf_comm_event *comm_event = data; 9316 struct perf_output_handle handle; 9317 struct perf_sample_data sample; 9318 int size = comm_event->event_id.header.size; 9319 int ret; 9320 9321 if (!perf_event_comm_match(event)) 9322 return; 9323 9324 perf_event_header__init_id(&comm_event->event_id.header, &sample, event); 9325 ret = perf_output_begin(&handle, &sample, event, 9326 comm_event->event_id.header.size); 9327 9328 if (ret) 9329 goto out; 9330 9331 comm_event->event_id.pid = perf_event_pid(event, comm_event->task); 9332 comm_event->event_id.tid = perf_event_tid(event, comm_event->task); 9333 9334 perf_output_put(&handle, comm_event->event_id); 9335 __output_copy(&handle, comm_event->comm, 9336 comm_event->comm_size); 9337 9338 perf_event__output_id_sample(event, &handle, &sample); 9339 9340 perf_output_end(&handle); 9341 out: 9342 comm_event->event_id.header.size = size; 9343 } 9344 9345 static void perf_event_comm_event(struct perf_comm_event *comm_event) 9346 { 9347 char comm[TASK_COMM_LEN]; 9348 unsigned int size; 9349 9350 memset(comm, 0, sizeof(comm)); 9351 strscpy(comm, comm_event->task->comm); 9352 size = ALIGN(strlen(comm)+1, sizeof(u64)); 9353 9354 comm_event->comm = comm; 9355 comm_event->comm_size = size; 9356 9357 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size; 9358 9359 perf_iterate_sb(perf_event_comm_output, 9360 comm_event, 9361 NULL); 9362 } 9363 9364 void perf_event_comm(struct task_struct *task, bool exec) 9365 { 9366 struct perf_comm_event comm_event; 9367 9368 if (!atomic_read(&nr_comm_events)) 9369 return; 9370 9371 comm_event = (struct perf_comm_event){ 9372 .task = task, 9373 /* .comm */ 9374 /* .comm_size */ 9375 .event_id = { 9376 .header = { 9377 .type = PERF_RECORD_COMM, 9378 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0, 9379 /* .size */ 9380 }, 9381 /* .pid */ 9382 /* .tid */ 9383 }, 9384 }; 9385 9386 perf_event_comm_event(&comm_event); 9387 } 9388 9389 /* 9390 * namespaces tracking 9391 */ 9392 9393 struct perf_namespaces_event { 9394 struct task_struct *task; 9395 9396 struct { 9397 struct perf_event_header header; 9398 9399 u32 pid; 9400 u32 tid; 9401 u64 nr_namespaces; 9402 struct perf_ns_link_info link_info[NR_NAMESPACES]; 9403 } event_id; 9404 }; 9405 9406 static int perf_event_namespaces_match(struct perf_event *event) 9407 { 9408 return event->attr.namespaces; 9409 } 9410 9411 static void perf_event_namespaces_output(struct perf_event *event, 9412 void *data) 9413 { 9414 struct perf_namespaces_event *namespaces_event = data; 9415 struct perf_output_handle handle; 9416 struct perf_sample_data sample; 9417 u16 header_size = namespaces_event->event_id.header.size; 9418 int ret; 9419 9420 if (!perf_event_namespaces_match(event)) 9421 return; 9422 9423 perf_event_header__init_id(&namespaces_event->event_id.header, 9424 &sample, event); 9425 ret = perf_output_begin(&handle, &sample, event, 9426 namespaces_event->event_id.header.size); 9427 if (ret) 9428 goto out; 9429 9430 namespaces_event->event_id.pid = perf_event_pid(event, 9431 namespaces_event->task); 9432 namespaces_event->event_id.tid = perf_event_tid(event, 9433 namespaces_event->task); 9434 9435 perf_output_put(&handle, namespaces_event->event_id); 9436 9437 perf_event__output_id_sample(event, &handle, &sample); 9438 9439 perf_output_end(&handle); 9440 out: 9441 namespaces_event->event_id.header.size = header_size; 9442 } 9443 9444 static void perf_fill_ns_link_info(struct perf_ns_link_info *ns_link_info, 9445 struct task_struct *task, 9446 const struct proc_ns_operations *ns_ops) 9447 { 9448 struct path ns_path; 9449 struct inode *ns_inode; 9450 int error; 9451 9452 error = ns_get_path(&ns_path, task, ns_ops); 9453 if (!error) { 9454 ns_inode = ns_path.dentry->d_inode; 9455 ns_link_info->dev = new_encode_dev(ns_inode->i_sb->s_dev); 9456 ns_link_info->ino = ns_inode->i_ino; 9457 path_put(&ns_path); 9458 } 9459 } 9460 9461 void perf_event_namespaces(struct task_struct *task) 9462 { 9463 struct perf_namespaces_event namespaces_event; 9464 struct perf_ns_link_info *ns_link_info; 9465 9466 if (!atomic_read(&nr_namespaces_events)) 9467 return; 9468 9469 namespaces_event = (struct perf_namespaces_event){ 9470 .task = task, 9471 .event_id = { 9472 .header = { 9473 .type = PERF_RECORD_NAMESPACES, 9474 .misc = 0, 9475 .size = sizeof(namespaces_event.event_id), 9476 }, 9477 /* .pid */ 9478 /* .tid */ 9479 .nr_namespaces = NR_NAMESPACES, 9480 /* .link_info[NR_NAMESPACES] */ 9481 }, 9482 }; 9483 9484 ns_link_info = namespaces_event.event_id.link_info; 9485 9486 perf_fill_ns_link_info(&ns_link_info[MNT_NS_INDEX], 9487 task, &mntns_operations); 9488 9489 #ifdef CONFIG_USER_NS 9490 perf_fill_ns_link_info(&ns_link_info[USER_NS_INDEX], 9491 task, &userns_operations); 9492 #endif 9493 #ifdef CONFIG_NET_NS 9494 perf_fill_ns_link_info(&ns_link_info[NET_NS_INDEX], 9495 task, &netns_operations); 9496 #endif 9497 #ifdef CONFIG_UTS_NS 9498 perf_fill_ns_link_info(&ns_link_info[UTS_NS_INDEX], 9499 task, &utsns_operations); 9500 #endif 9501 #ifdef CONFIG_IPC_NS 9502 perf_fill_ns_link_info(&ns_link_info[IPC_NS_INDEX], 9503 task, &ipcns_operations); 9504 #endif 9505 #ifdef CONFIG_PID_NS 9506 perf_fill_ns_link_info(&ns_link_info[PID_NS_INDEX], 9507 task, &pidns_operations); 9508 #endif 9509 #ifdef CONFIG_CGROUPS 9510 perf_fill_ns_link_info(&ns_link_info[CGROUP_NS_INDEX], 9511 task, &cgroupns_operations); 9512 #endif 9513 9514 perf_iterate_sb(perf_event_namespaces_output, 9515 &namespaces_event, 9516 NULL); 9517 } 9518 9519 /* 9520 * cgroup tracking 9521 */ 9522 #ifdef CONFIG_CGROUP_PERF 9523 9524 struct perf_cgroup_event { 9525 char *path; 9526 int path_size; 9527 struct { 9528 struct perf_event_header header; 9529 u64 id; 9530 char path[]; 9531 } event_id; 9532 }; 9533 9534 static int perf_event_cgroup_match(struct perf_event *event) 9535 { 9536 return event->attr.cgroup; 9537 } 9538 9539 static void perf_event_cgroup_output(struct perf_event *event, void *data) 9540 { 9541 struct perf_cgroup_event *cgroup_event = data; 9542 struct perf_output_handle handle; 9543 struct perf_sample_data sample; 9544 u16 header_size = cgroup_event->event_id.header.size; 9545 int ret; 9546 9547 if (!perf_event_cgroup_match(event)) 9548 return; 9549 9550 perf_event_header__init_id(&cgroup_event->event_id.header, 9551 &sample, event); 9552 ret = perf_output_begin(&handle, &sample, event, 9553 cgroup_event->event_id.header.size); 9554 if (ret) 9555 goto out; 9556 9557 perf_output_put(&handle, cgroup_event->event_id); 9558 __output_copy(&handle, cgroup_event->path, cgroup_event->path_size); 9559 9560 perf_event__output_id_sample(event, &handle, &sample); 9561 9562 perf_output_end(&handle); 9563 out: 9564 cgroup_event->event_id.header.size = header_size; 9565 } 9566 9567 static void perf_event_cgroup(struct cgroup *cgrp) 9568 { 9569 struct perf_cgroup_event cgroup_event; 9570 char path_enomem[16] = "//enomem"; 9571 char *pathname; 9572 size_t size; 9573 9574 if (!atomic_read(&nr_cgroup_events)) 9575 return; 9576 9577 cgroup_event = (struct perf_cgroup_event){ 9578 .event_id = { 9579 .header = { 9580 .type = PERF_RECORD_CGROUP, 9581 .misc = 0, 9582 .size = sizeof(cgroup_event.event_id), 9583 }, 9584 .id = cgroup_id(cgrp), 9585 }, 9586 }; 9587 9588 pathname = kmalloc(PATH_MAX, GFP_KERNEL); 9589 if (pathname == NULL) { 9590 cgroup_event.path = path_enomem; 9591 } else { 9592 /* just to be sure to have enough space for alignment */ 9593 cgroup_path(cgrp, pathname, PATH_MAX - sizeof(u64)); 9594 cgroup_event.path = pathname; 9595 } 9596 9597 /* 9598 * Since our buffer works in 8 byte units we need to align our string 9599 * size to a multiple of 8. However, we must guarantee the tail end is 9600 * zero'd out to avoid leaking random bits to userspace. 9601 */ 9602 size = strlen(cgroup_event.path) + 1; 9603 while (!IS_ALIGNED(size, sizeof(u64))) 9604 cgroup_event.path[size++] = '\0'; 9605 9606 cgroup_event.event_id.header.size += size; 9607 cgroup_event.path_size = size; 9608 9609 perf_iterate_sb(perf_event_cgroup_output, 9610 &cgroup_event, 9611 NULL); 9612 9613 kfree(pathname); 9614 } 9615 9616 #endif 9617 9618 /* 9619 * mmap tracking 9620 */ 9621 9622 struct perf_mmap_event { 9623 struct vm_area_struct *vma; 9624 9625 const char *file_name; 9626 int file_size; 9627 int maj, min; 9628 u64 ino; 9629 u64 ino_generation; 9630 u32 prot, flags; 9631 u8 build_id[BUILD_ID_SIZE_MAX]; 9632 u32 build_id_size; 9633 9634 struct { 9635 struct perf_event_header header; 9636 9637 u32 pid; 9638 u32 tid; 9639 u64 start; 9640 u64 len; 9641 u64 pgoff; 9642 } event_id; 9643 }; 9644 9645 static int perf_event_mmap_match(struct perf_event *event, 9646 void *data) 9647 { 9648 struct perf_mmap_event *mmap_event = data; 9649 struct vm_area_struct *vma = mmap_event->vma; 9650 int executable = vma->vm_flags & VM_EXEC; 9651 9652 return (!executable && event->attr.mmap_data) || 9653 (executable && (event->attr.mmap || event->attr.mmap2)); 9654 } 9655 9656 static void perf_event_mmap_output(struct perf_event *event, 9657 void *data) 9658 { 9659 struct perf_mmap_event *mmap_event = data; 9660 struct perf_output_handle handle; 9661 struct perf_sample_data sample; 9662 int size = mmap_event->event_id.header.size; 9663 u32 type = mmap_event->event_id.header.type; 9664 bool use_build_id; 9665 int ret; 9666 9667 if (!perf_event_mmap_match(event, data)) 9668 return; 9669 9670 if (event->attr.mmap2) { 9671 mmap_event->event_id.header.type = PERF_RECORD_MMAP2; 9672 mmap_event->event_id.header.size += sizeof(mmap_event->maj); 9673 mmap_event->event_id.header.size += sizeof(mmap_event->min); 9674 mmap_event->event_id.header.size += sizeof(mmap_event->ino); 9675 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation); 9676 mmap_event->event_id.header.size += sizeof(mmap_event->prot); 9677 mmap_event->event_id.header.size += sizeof(mmap_event->flags); 9678 } 9679 9680 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event); 9681 ret = perf_output_begin(&handle, &sample, event, 9682 mmap_event->event_id.header.size); 9683 if (ret) 9684 goto out; 9685 9686 mmap_event->event_id.pid = perf_event_pid(event, current); 9687 mmap_event->event_id.tid = perf_event_tid(event, current); 9688 9689 use_build_id = event->attr.build_id && mmap_event->build_id_size; 9690 9691 if (event->attr.mmap2 && use_build_id) 9692 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_BUILD_ID; 9693 9694 perf_output_put(&handle, mmap_event->event_id); 9695 9696 if (event->attr.mmap2) { 9697 if (use_build_id) { 9698 u8 size[4] = { (u8) mmap_event->build_id_size, 0, 0, 0 }; 9699 9700 __output_copy(&handle, size, 4); 9701 __output_copy(&handle, mmap_event->build_id, BUILD_ID_SIZE_MAX); 9702 } else { 9703 perf_output_put(&handle, mmap_event->maj); 9704 perf_output_put(&handle, mmap_event->min); 9705 perf_output_put(&handle, mmap_event->ino); 9706 perf_output_put(&handle, mmap_event->ino_generation); 9707 } 9708 perf_output_put(&handle, mmap_event->prot); 9709 perf_output_put(&handle, mmap_event->flags); 9710 } 9711 9712 __output_copy(&handle, mmap_event->file_name, 9713 mmap_event->file_size); 9714 9715 perf_event__output_id_sample(event, &handle, &sample); 9716 9717 perf_output_end(&handle); 9718 out: 9719 mmap_event->event_id.header.size = size; 9720 mmap_event->event_id.header.type = type; 9721 } 9722 9723 static void perf_event_mmap_event(struct perf_mmap_event *mmap_event) 9724 { 9725 struct vm_area_struct *vma = mmap_event->vma; 9726 struct file *file = vma->vm_file; 9727 int maj = 0, min = 0; 9728 u64 ino = 0, gen = 0; 9729 u32 prot = 0, flags = 0; 9730 unsigned int size; 9731 char tmp[16]; 9732 char *buf = NULL; 9733 char *name = NULL; 9734 9735 if (vma->vm_flags & VM_READ) 9736 prot |= PROT_READ; 9737 if (vma->vm_flags & VM_WRITE) 9738 prot |= PROT_WRITE; 9739 if (vma->vm_flags & VM_EXEC) 9740 prot |= PROT_EXEC; 9741 9742 if (vma->vm_flags & VM_MAYSHARE) 9743 flags = MAP_SHARED; 9744 else 9745 flags = MAP_PRIVATE; 9746 9747 if (vma->vm_flags & VM_LOCKED) 9748 flags |= MAP_LOCKED; 9749 if (is_vm_hugetlb_page(vma)) 9750 flags |= MAP_HUGETLB; 9751 9752 if (file) { 9753 const struct inode *inode; 9754 dev_t dev; 9755 9756 buf = kmalloc(PATH_MAX, GFP_KERNEL); 9757 if (!buf) { 9758 name = "//enomem"; 9759 goto cpy_name; 9760 } 9761 /* 9762 * d_path() works from the end of the rb backwards, so we 9763 * need to add enough zero bytes after the string to handle 9764 * the 64bit alignment we do later. 9765 */ 9766 name = d_path(file_user_path(file), buf, PATH_MAX - sizeof(u64)); 9767 if (IS_ERR(name)) { 9768 name = "//toolong"; 9769 goto cpy_name; 9770 } 9771 inode = file_user_inode(vma->vm_file); 9772 dev = inode->i_sb->s_dev; 9773 ino = inode->i_ino; 9774 gen = inode->i_generation; 9775 maj = MAJOR(dev); 9776 min = MINOR(dev); 9777 9778 goto got_name; 9779 } else { 9780 if (vma->vm_ops && vma->vm_ops->name) 9781 name = (char *) vma->vm_ops->name(vma); 9782 if (!name) 9783 name = (char *)arch_vma_name(vma); 9784 if (!name) { 9785 if (vma_is_initial_heap(vma)) 9786 name = "[heap]"; 9787 else if (vma_is_initial_stack(vma)) 9788 name = "[stack]"; 9789 else 9790 name = "//anon"; 9791 } 9792 } 9793 9794 cpy_name: 9795 strscpy(tmp, name); 9796 name = tmp; 9797 got_name: 9798 /* 9799 * Since our buffer works in 8 byte units we need to align our string 9800 * size to a multiple of 8. However, we must guarantee the tail end is 9801 * zero'd out to avoid leaking random bits to userspace. 9802 */ 9803 size = strlen(name)+1; 9804 while (!IS_ALIGNED(size, sizeof(u64))) 9805 name[size++] = '\0'; 9806 9807 mmap_event->file_name = name; 9808 mmap_event->file_size = size; 9809 mmap_event->maj = maj; 9810 mmap_event->min = min; 9811 mmap_event->ino = ino; 9812 mmap_event->ino_generation = gen; 9813 mmap_event->prot = prot; 9814 mmap_event->flags = flags; 9815 9816 if (!(vma->vm_flags & VM_EXEC)) 9817 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA; 9818 9819 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size; 9820 9821 if (atomic_read(&nr_build_id_events)) 9822 build_id_parse_nofault(vma, mmap_event->build_id, &mmap_event->build_id_size); 9823 9824 perf_iterate_sb(perf_event_mmap_output, 9825 mmap_event, 9826 NULL); 9827 9828 kfree(buf); 9829 } 9830 9831 /* 9832 * Check whether inode and address range match filter criteria. 9833 */ 9834 static bool perf_addr_filter_match(struct perf_addr_filter *filter, 9835 struct file *file, unsigned long offset, 9836 unsigned long size) 9837 { 9838 /* d_inode(NULL) won't be equal to any mapped user-space file */ 9839 if (!filter->path.dentry) 9840 return false; 9841 9842 if (d_inode(filter->path.dentry) != file_user_inode(file)) 9843 return false; 9844 9845 if (filter->offset > offset + size) 9846 return false; 9847 9848 if (filter->offset + filter->size < offset) 9849 return false; 9850 9851 return true; 9852 } 9853 9854 static bool perf_addr_filter_vma_adjust(struct perf_addr_filter *filter, 9855 struct vm_area_struct *vma, 9856 struct perf_addr_filter_range *fr) 9857 { 9858 unsigned long vma_size = vma->vm_end - vma->vm_start; 9859 unsigned long off = vma->vm_pgoff << PAGE_SHIFT; 9860 struct file *file = vma->vm_file; 9861 9862 if (!perf_addr_filter_match(filter, file, off, vma_size)) 9863 return false; 9864 9865 if (filter->offset < off) { 9866 fr->start = vma->vm_start; 9867 fr->size = min(vma_size, filter->size - (off - filter->offset)); 9868 } else { 9869 fr->start = vma->vm_start + filter->offset - off; 9870 fr->size = min(vma->vm_end - fr->start, filter->size); 9871 } 9872 9873 return true; 9874 } 9875 9876 static void __perf_addr_filters_adjust(struct perf_event *event, void *data) 9877 { 9878 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); 9879 struct vm_area_struct *vma = data; 9880 struct perf_addr_filter *filter; 9881 unsigned int restart = 0, count = 0; 9882 unsigned long flags; 9883 9884 if (!has_addr_filter(event)) 9885 return; 9886 9887 if (!vma->vm_file) 9888 return; 9889 9890 raw_spin_lock_irqsave(&ifh->lock, flags); 9891 list_for_each_entry(filter, &ifh->list, entry) { 9892 if (perf_addr_filter_vma_adjust(filter, vma, 9893 &event->addr_filter_ranges[count])) 9894 restart++; 9895 9896 count++; 9897 } 9898 9899 if (restart) 9900 event->addr_filters_gen++; 9901 raw_spin_unlock_irqrestore(&ifh->lock, flags); 9902 9903 if (restart) 9904 perf_event_stop(event, 1); 9905 } 9906 9907 /* 9908 * Adjust all task's events' filters to the new vma 9909 */ 9910 static void perf_addr_filters_adjust(struct vm_area_struct *vma) 9911 { 9912 struct perf_event_context *ctx; 9913 9914 /* 9915 * Data tracing isn't supported yet and as such there is no need 9916 * to keep track of anything that isn't related to executable code: 9917 */ 9918 if (!(vma->vm_flags & VM_EXEC)) 9919 return; 9920 9921 rcu_read_lock(); 9922 ctx = rcu_dereference(current->perf_event_ctxp); 9923 if (ctx) 9924 perf_iterate_ctx(ctx, __perf_addr_filters_adjust, vma, true); 9925 rcu_read_unlock(); 9926 } 9927 9928 void perf_event_mmap(struct vm_area_struct *vma) 9929 { 9930 struct perf_mmap_event mmap_event; 9931 9932 if (!atomic_read(&nr_mmap_events)) 9933 return; 9934 9935 mmap_event = (struct perf_mmap_event){ 9936 .vma = vma, 9937 /* .file_name */ 9938 /* .file_size */ 9939 .event_id = { 9940 .header = { 9941 .type = PERF_RECORD_MMAP, 9942 .misc = PERF_RECORD_MISC_USER, 9943 /* .size */ 9944 }, 9945 /* .pid */ 9946 /* .tid */ 9947 .start = vma->vm_start, 9948 .len = vma->vm_end - vma->vm_start, 9949 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT, 9950 }, 9951 /* .maj (attr_mmap2 only) */ 9952 /* .min (attr_mmap2 only) */ 9953 /* .ino (attr_mmap2 only) */ 9954 /* .ino_generation (attr_mmap2 only) */ 9955 /* .prot (attr_mmap2 only) */ 9956 /* .flags (attr_mmap2 only) */ 9957 }; 9958 9959 perf_addr_filters_adjust(vma); 9960 perf_event_mmap_event(&mmap_event); 9961 } 9962 9963 void perf_event_aux_event(struct perf_event *event, unsigned long head, 9964 unsigned long size, u64 flags) 9965 { 9966 struct perf_output_handle handle; 9967 struct perf_sample_data sample; 9968 struct perf_aux_event { 9969 struct perf_event_header header; 9970 u64 offset; 9971 u64 size; 9972 u64 flags; 9973 } rec = { 9974 .header = { 9975 .type = PERF_RECORD_AUX, 9976 .misc = 0, 9977 .size = sizeof(rec), 9978 }, 9979 .offset = head, 9980 .size = size, 9981 .flags = flags, 9982 }; 9983 int ret; 9984 9985 perf_event_header__init_id(&rec.header, &sample, event); 9986 ret = perf_output_begin(&handle, &sample, event, rec.header.size); 9987 9988 if (ret) 9989 return; 9990 9991 perf_output_put(&handle, rec); 9992 perf_event__output_id_sample(event, &handle, &sample); 9993 9994 perf_output_end(&handle); 9995 } 9996 9997 /* 9998 * Lost/dropped samples logging 9999 */ 10000 void perf_log_lost_samples(struct perf_event *event, u64 lost) 10001 { 10002 struct perf_output_handle handle; 10003 struct perf_sample_data sample; 10004 int ret; 10005 10006 struct { 10007 struct perf_event_header header; 10008 u64 lost; 10009 } lost_samples_event = { 10010 .header = { 10011 .type = PERF_RECORD_LOST_SAMPLES, 10012 .misc = 0, 10013 .size = sizeof(lost_samples_event), 10014 }, 10015 .lost = lost, 10016 }; 10017 10018 perf_event_header__init_id(&lost_samples_event.header, &sample, event); 10019 10020 ret = perf_output_begin(&handle, &sample, event, 10021 lost_samples_event.header.size); 10022 if (ret) 10023 return; 10024 10025 perf_output_put(&handle, lost_samples_event); 10026 perf_event__output_id_sample(event, &handle, &sample); 10027 perf_output_end(&handle); 10028 } 10029 10030 /* 10031 * context_switch tracking 10032 */ 10033 10034 struct perf_switch_event { 10035 struct task_struct *task; 10036 struct task_struct *next_prev; 10037 10038 struct { 10039 struct perf_event_header header; 10040 u32 next_prev_pid; 10041 u32 next_prev_tid; 10042 } event_id; 10043 }; 10044 10045 static int perf_event_switch_match(struct perf_event *event) 10046 { 10047 return event->attr.context_switch; 10048 } 10049 10050 static void perf_event_switch_output(struct perf_event *event, void *data) 10051 { 10052 struct perf_switch_event *se = data; 10053 struct perf_output_handle handle; 10054 struct perf_sample_data sample; 10055 int ret; 10056 10057 if (!perf_event_switch_match(event)) 10058 return; 10059 10060 /* Only CPU-wide events are allowed to see next/prev pid/tid */ 10061 if (event->ctx->task) { 10062 se->event_id.header.type = PERF_RECORD_SWITCH; 10063 se->event_id.header.size = sizeof(se->event_id.header); 10064 } else { 10065 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE; 10066 se->event_id.header.size = sizeof(se->event_id); 10067 se->event_id.next_prev_pid = 10068 perf_event_pid(event, se->next_prev); 10069 se->event_id.next_prev_tid = 10070 perf_event_tid(event, se->next_prev); 10071 } 10072 10073 perf_event_header__init_id(&se->event_id.header, &sample, event); 10074 10075 ret = perf_output_begin(&handle, &sample, event, se->event_id.header.size); 10076 if (ret) 10077 return; 10078 10079 if (event->ctx->task) 10080 perf_output_put(&handle, se->event_id.header); 10081 else 10082 perf_output_put(&handle, se->event_id); 10083 10084 perf_event__output_id_sample(event, &handle, &sample); 10085 10086 perf_output_end(&handle); 10087 } 10088 10089 static void perf_event_switch(struct task_struct *task, 10090 struct task_struct *next_prev, bool sched_in) 10091 { 10092 struct perf_switch_event switch_event; 10093 10094 /* N.B. caller checks nr_switch_events != 0 */ 10095 10096 switch_event = (struct perf_switch_event){ 10097 .task = task, 10098 .next_prev = next_prev, 10099 .event_id = { 10100 .header = { 10101 /* .type */ 10102 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT, 10103 /* .size */ 10104 }, 10105 /* .next_prev_pid */ 10106 /* .next_prev_tid */ 10107 }, 10108 }; 10109 10110 if (!sched_in && task_is_runnable(task)) { 10111 switch_event.event_id.header.misc |= 10112 PERF_RECORD_MISC_SWITCH_OUT_PREEMPT; 10113 } 10114 10115 perf_iterate_sb(perf_event_switch_output, &switch_event, NULL); 10116 } 10117 10118 /* 10119 * IRQ throttle logging 10120 */ 10121 10122 static void perf_log_throttle(struct perf_event *event, int enable) 10123 { 10124 struct perf_output_handle handle; 10125 struct perf_sample_data sample; 10126 int ret; 10127 10128 struct { 10129 struct perf_event_header header; 10130 u64 time; 10131 u64 id; 10132 u64 stream_id; 10133 } throttle_event = { 10134 .header = { 10135 .type = PERF_RECORD_THROTTLE, 10136 .misc = 0, 10137 .size = sizeof(throttle_event), 10138 }, 10139 .time = perf_event_clock(event), 10140 .id = primary_event_id(event), 10141 .stream_id = event->id, 10142 }; 10143 10144 if (enable) 10145 throttle_event.header.type = PERF_RECORD_UNTHROTTLE; 10146 10147 perf_event_header__init_id(&throttle_event.header, &sample, event); 10148 10149 ret = perf_output_begin(&handle, &sample, event, 10150 throttle_event.header.size); 10151 if (ret) 10152 return; 10153 10154 perf_output_put(&handle, throttle_event); 10155 perf_event__output_id_sample(event, &handle, &sample); 10156 perf_output_end(&handle); 10157 } 10158 10159 /* 10160 * ksymbol register/unregister tracking 10161 */ 10162 10163 struct perf_ksymbol_event { 10164 const char *name; 10165 int name_len; 10166 struct { 10167 struct perf_event_header header; 10168 u64 addr; 10169 u32 len; 10170 u16 ksym_type; 10171 u16 flags; 10172 } event_id; 10173 }; 10174 10175 static int perf_event_ksymbol_match(struct perf_event *event) 10176 { 10177 return event->attr.ksymbol; 10178 } 10179 10180 static void perf_event_ksymbol_output(struct perf_event *event, void *data) 10181 { 10182 struct perf_ksymbol_event *ksymbol_event = data; 10183 struct perf_output_handle handle; 10184 struct perf_sample_data sample; 10185 int ret; 10186 10187 if (!perf_event_ksymbol_match(event)) 10188 return; 10189 10190 perf_event_header__init_id(&ksymbol_event->event_id.header, 10191 &sample, event); 10192 ret = perf_output_begin(&handle, &sample, event, 10193 ksymbol_event->event_id.header.size); 10194 if (ret) 10195 return; 10196 10197 perf_output_put(&handle, ksymbol_event->event_id); 10198 __output_copy(&handle, ksymbol_event->name, ksymbol_event->name_len); 10199 perf_event__output_id_sample(event, &handle, &sample); 10200 10201 perf_output_end(&handle); 10202 } 10203 10204 void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len, bool unregister, 10205 const char *sym) 10206 { 10207 struct perf_ksymbol_event ksymbol_event; 10208 char name[KSYM_NAME_LEN]; 10209 u16 flags = 0; 10210 int name_len; 10211 10212 if (!atomic_read(&nr_ksymbol_events)) 10213 return; 10214 10215 if (ksym_type >= PERF_RECORD_KSYMBOL_TYPE_MAX || 10216 ksym_type == PERF_RECORD_KSYMBOL_TYPE_UNKNOWN) 10217 goto err; 10218 10219 strscpy(name, sym); 10220 name_len = strlen(name) + 1; 10221 while (!IS_ALIGNED(name_len, sizeof(u64))) 10222 name[name_len++] = '\0'; 10223 BUILD_BUG_ON(KSYM_NAME_LEN % sizeof(u64)); 10224 10225 if (unregister) 10226 flags |= PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER; 10227 10228 ksymbol_event = (struct perf_ksymbol_event){ 10229 .name = name, 10230 .name_len = name_len, 10231 .event_id = { 10232 .header = { 10233 .type = PERF_RECORD_KSYMBOL, 10234 .size = sizeof(ksymbol_event.event_id) + 10235 name_len, 10236 }, 10237 .addr = addr, 10238 .len = len, 10239 .ksym_type = ksym_type, 10240 .flags = flags, 10241 }, 10242 }; 10243 10244 perf_iterate_sb(perf_event_ksymbol_output, &ksymbol_event, NULL); 10245 return; 10246 err: 10247 WARN_ONCE(1, "%s: Invalid KSYMBOL type 0x%x\n", __func__, ksym_type); 10248 } 10249 10250 /* 10251 * bpf program load/unload tracking 10252 */ 10253 10254 struct perf_bpf_event { 10255 struct bpf_prog *prog; 10256 struct { 10257 struct perf_event_header header; 10258 u16 type; 10259 u16 flags; 10260 u32 id; 10261 u8 tag[BPF_TAG_SIZE]; 10262 } event_id; 10263 }; 10264 10265 static int perf_event_bpf_match(struct perf_event *event) 10266 { 10267 return event->attr.bpf_event; 10268 } 10269 10270 static void perf_event_bpf_output(struct perf_event *event, void *data) 10271 { 10272 struct perf_bpf_event *bpf_event = data; 10273 struct perf_output_handle handle; 10274 struct perf_sample_data sample; 10275 int ret; 10276 10277 if (!perf_event_bpf_match(event)) 10278 return; 10279 10280 perf_event_header__init_id(&bpf_event->event_id.header, 10281 &sample, event); 10282 ret = perf_output_begin(&handle, &sample, event, 10283 bpf_event->event_id.header.size); 10284 if (ret) 10285 return; 10286 10287 perf_output_put(&handle, bpf_event->event_id); 10288 perf_event__output_id_sample(event, &handle, &sample); 10289 10290 perf_output_end(&handle); 10291 } 10292 10293 static void perf_event_bpf_emit_ksymbols(struct bpf_prog *prog, 10294 enum perf_bpf_event_type type) 10295 { 10296 bool unregister = type == PERF_BPF_EVENT_PROG_UNLOAD; 10297 int i; 10298 10299 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_BPF, 10300 (u64)(unsigned long)prog->bpf_func, 10301 prog->jited_len, unregister, 10302 prog->aux->ksym.name); 10303 10304 for (i = 1; i < prog->aux->func_cnt; i++) { 10305 struct bpf_prog *subprog = prog->aux->func[i]; 10306 10307 perf_event_ksymbol( 10308 PERF_RECORD_KSYMBOL_TYPE_BPF, 10309 (u64)(unsigned long)subprog->bpf_func, 10310 subprog->jited_len, unregister, 10311 subprog->aux->ksym.name); 10312 } 10313 } 10314 10315 void perf_event_bpf_event(struct bpf_prog *prog, 10316 enum perf_bpf_event_type type, 10317 u16 flags) 10318 { 10319 struct perf_bpf_event bpf_event; 10320 10321 switch (type) { 10322 case PERF_BPF_EVENT_PROG_LOAD: 10323 case PERF_BPF_EVENT_PROG_UNLOAD: 10324 if (atomic_read(&nr_ksymbol_events)) 10325 perf_event_bpf_emit_ksymbols(prog, type); 10326 break; 10327 default: 10328 return; 10329 } 10330 10331 if (!atomic_read(&nr_bpf_events)) 10332 return; 10333 10334 bpf_event = (struct perf_bpf_event){ 10335 .prog = prog, 10336 .event_id = { 10337 .header = { 10338 .type = PERF_RECORD_BPF_EVENT, 10339 .size = sizeof(bpf_event.event_id), 10340 }, 10341 .type = type, 10342 .flags = flags, 10343 .id = prog->aux->id, 10344 }, 10345 }; 10346 10347 BUILD_BUG_ON(BPF_TAG_SIZE % sizeof(u64)); 10348 10349 memcpy(bpf_event.event_id.tag, prog->tag, BPF_TAG_SIZE); 10350 perf_iterate_sb(perf_event_bpf_output, &bpf_event, NULL); 10351 } 10352 10353 struct perf_callchain_deferred_event { 10354 struct unwind_stacktrace *trace; 10355 struct { 10356 struct perf_event_header header; 10357 u64 cookie; 10358 u64 nr; 10359 u64 ips[]; 10360 } event; 10361 }; 10362 10363 static void perf_callchain_deferred_output(struct perf_event *event, void *data) 10364 { 10365 struct perf_callchain_deferred_event *deferred_event = data; 10366 struct perf_output_handle handle; 10367 struct perf_sample_data sample; 10368 int ret, size = deferred_event->event.header.size; 10369 10370 if (!event->attr.defer_output) 10371 return; 10372 10373 /* XXX do we really need sample_id_all for this ??? */ 10374 perf_event_header__init_id(&deferred_event->event.header, &sample, event); 10375 10376 ret = perf_output_begin(&handle, &sample, event, 10377 deferred_event->event.header.size); 10378 if (ret) 10379 goto out; 10380 10381 perf_output_put(&handle, deferred_event->event); 10382 for (int i = 0; i < deferred_event->trace->nr; i++) { 10383 u64 entry = deferred_event->trace->entries[i]; 10384 perf_output_put(&handle, entry); 10385 } 10386 perf_event__output_id_sample(event, &handle, &sample); 10387 10388 perf_output_end(&handle); 10389 out: 10390 deferred_event->event.header.size = size; 10391 } 10392 10393 static void perf_unwind_deferred_callback(struct unwind_work *work, 10394 struct unwind_stacktrace *trace, u64 cookie) 10395 { 10396 struct perf_callchain_deferred_event deferred_event = { 10397 .trace = trace, 10398 .event = { 10399 .header = { 10400 .type = PERF_RECORD_CALLCHAIN_DEFERRED, 10401 .misc = PERF_RECORD_MISC_USER, 10402 .size = sizeof(deferred_event.event) + 10403 (trace->nr * sizeof(u64)), 10404 }, 10405 .cookie = cookie, 10406 .nr = trace->nr, 10407 }, 10408 }; 10409 10410 perf_iterate_sb(perf_callchain_deferred_output, &deferred_event, NULL); 10411 } 10412 10413 struct perf_text_poke_event { 10414 const void *old_bytes; 10415 const void *new_bytes; 10416 size_t pad; 10417 u16 old_len; 10418 u16 new_len; 10419 10420 struct { 10421 struct perf_event_header header; 10422 10423 u64 addr; 10424 } event_id; 10425 }; 10426 10427 static int perf_event_text_poke_match(struct perf_event *event) 10428 { 10429 return event->attr.text_poke; 10430 } 10431 10432 static void perf_event_text_poke_output(struct perf_event *event, void *data) 10433 { 10434 struct perf_text_poke_event *text_poke_event = data; 10435 struct perf_output_handle handle; 10436 struct perf_sample_data sample; 10437 u64 padding = 0; 10438 int ret; 10439 10440 if (!perf_event_text_poke_match(event)) 10441 return; 10442 10443 perf_event_header__init_id(&text_poke_event->event_id.header, &sample, event); 10444 10445 ret = perf_output_begin(&handle, &sample, event, 10446 text_poke_event->event_id.header.size); 10447 if (ret) 10448 return; 10449 10450 perf_output_put(&handle, text_poke_event->event_id); 10451 perf_output_put(&handle, text_poke_event->old_len); 10452 perf_output_put(&handle, text_poke_event->new_len); 10453 10454 __output_copy(&handle, text_poke_event->old_bytes, text_poke_event->old_len); 10455 __output_copy(&handle, text_poke_event->new_bytes, text_poke_event->new_len); 10456 10457 if (text_poke_event->pad) 10458 __output_copy(&handle, &padding, text_poke_event->pad); 10459 10460 perf_event__output_id_sample(event, &handle, &sample); 10461 10462 perf_output_end(&handle); 10463 } 10464 10465 void perf_event_text_poke(const void *addr, const void *old_bytes, 10466 size_t old_len, const void *new_bytes, size_t new_len) 10467 { 10468 struct perf_text_poke_event text_poke_event; 10469 size_t tot, pad; 10470 10471 if (!atomic_read(&nr_text_poke_events)) 10472 return; 10473 10474 tot = sizeof(text_poke_event.old_len) + old_len; 10475 tot += sizeof(text_poke_event.new_len) + new_len; 10476 pad = ALIGN(tot, sizeof(u64)) - tot; 10477 10478 text_poke_event = (struct perf_text_poke_event){ 10479 .old_bytes = old_bytes, 10480 .new_bytes = new_bytes, 10481 .pad = pad, 10482 .old_len = old_len, 10483 .new_len = new_len, 10484 .event_id = { 10485 .header = { 10486 .type = PERF_RECORD_TEXT_POKE, 10487 .misc = PERF_RECORD_MISC_KERNEL, 10488 .size = sizeof(text_poke_event.event_id) + tot + pad, 10489 }, 10490 .addr = (unsigned long)addr, 10491 }, 10492 }; 10493 10494 perf_iterate_sb(perf_event_text_poke_output, &text_poke_event, NULL); 10495 } 10496 10497 void perf_event_itrace_started(struct perf_event *event) 10498 { 10499 WRITE_ONCE(event->attach_state, event->attach_state | PERF_ATTACH_ITRACE); 10500 } 10501 10502 static void perf_log_itrace_start(struct perf_event *event) 10503 { 10504 struct perf_output_handle handle; 10505 struct perf_sample_data sample; 10506 struct perf_aux_event { 10507 struct perf_event_header header; 10508 u32 pid; 10509 u32 tid; 10510 } rec; 10511 int ret; 10512 10513 if (event->parent) 10514 event = event->parent; 10515 10516 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) || 10517 event->attach_state & PERF_ATTACH_ITRACE) 10518 return; 10519 10520 rec.header.type = PERF_RECORD_ITRACE_START; 10521 rec.header.misc = 0; 10522 rec.header.size = sizeof(rec); 10523 rec.pid = perf_event_pid(event, current); 10524 rec.tid = perf_event_tid(event, current); 10525 10526 perf_event_header__init_id(&rec.header, &sample, event); 10527 ret = perf_output_begin(&handle, &sample, event, rec.header.size); 10528 10529 if (ret) 10530 return; 10531 10532 perf_output_put(&handle, rec); 10533 perf_event__output_id_sample(event, &handle, &sample); 10534 10535 perf_output_end(&handle); 10536 } 10537 10538 void perf_report_aux_output_id(struct perf_event *event, u64 hw_id) 10539 { 10540 struct perf_output_handle handle; 10541 struct perf_sample_data sample; 10542 struct perf_aux_event { 10543 struct perf_event_header header; 10544 u64 hw_id; 10545 } rec; 10546 int ret; 10547 10548 if (event->parent) 10549 event = event->parent; 10550 10551 rec.header.type = PERF_RECORD_AUX_OUTPUT_HW_ID; 10552 rec.header.misc = 0; 10553 rec.header.size = sizeof(rec); 10554 rec.hw_id = hw_id; 10555 10556 perf_event_header__init_id(&rec.header, &sample, event); 10557 ret = perf_output_begin(&handle, &sample, event, rec.header.size); 10558 10559 if (ret) 10560 return; 10561 10562 perf_output_put(&handle, rec); 10563 perf_event__output_id_sample(event, &handle, &sample); 10564 10565 perf_output_end(&handle); 10566 } 10567 EXPORT_SYMBOL_GPL(perf_report_aux_output_id); 10568 10569 static int 10570 __perf_event_account_interrupt(struct perf_event *event, int throttle) 10571 { 10572 struct hw_perf_event *hwc = &event->hw; 10573 int ret = 0; 10574 u64 seq; 10575 10576 seq = __this_cpu_read(perf_throttled_seq); 10577 if (seq != hwc->interrupts_seq) { 10578 hwc->interrupts_seq = seq; 10579 hwc->interrupts = 1; 10580 } else { 10581 hwc->interrupts++; 10582 } 10583 10584 if (unlikely(throttle && hwc->interrupts >= max_samples_per_tick)) { 10585 __this_cpu_inc(perf_throttled_count); 10586 tick_dep_set_cpu(smp_processor_id(), TICK_DEP_BIT_PERF_EVENTS); 10587 perf_event_throttle_group(event); 10588 ret = 1; 10589 } 10590 10591 if (event->attr.freq) { 10592 u64 now = perf_clock(); 10593 s64 delta = now - hwc->freq_time_stamp; 10594 10595 hwc->freq_time_stamp = now; 10596 10597 if (delta > 0 && delta < 2*TICK_NSEC) 10598 perf_adjust_period(event, delta, hwc->last_period, true); 10599 } 10600 10601 return ret; 10602 } 10603 10604 int perf_event_account_interrupt(struct perf_event *event) 10605 { 10606 return __perf_event_account_interrupt(event, 1); 10607 } 10608 10609 static inline bool sample_is_allowed(struct perf_event *event, struct pt_regs *regs) 10610 { 10611 /* 10612 * Due to interrupt latency (AKA "skid"), we may enter the 10613 * kernel before taking an overflow, even if the PMU is only 10614 * counting user events. 10615 */ 10616 if (event->attr.exclude_kernel && !user_mode(regs)) 10617 return false; 10618 10619 return true; 10620 } 10621 10622 #ifdef CONFIG_BPF_SYSCALL 10623 static int bpf_overflow_handler(struct perf_event *event, 10624 struct perf_sample_data *data, 10625 struct pt_regs *regs) 10626 { 10627 struct bpf_perf_event_data_kern ctx = { 10628 .data = data, 10629 .event = event, 10630 }; 10631 struct bpf_prog *prog; 10632 int ret = 0; 10633 10634 ctx.regs = perf_arch_bpf_user_pt_regs(regs); 10635 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1)) 10636 goto out; 10637 rcu_read_lock(); 10638 prog = READ_ONCE(event->prog); 10639 if (prog) { 10640 perf_prepare_sample(data, event, regs); 10641 ret = bpf_prog_run(prog, &ctx); 10642 } 10643 rcu_read_unlock(); 10644 out: 10645 __this_cpu_dec(bpf_prog_active); 10646 10647 return ret; 10648 } 10649 10650 static inline int perf_event_set_bpf_handler(struct perf_event *event, 10651 struct bpf_prog *prog, 10652 u64 bpf_cookie) 10653 { 10654 if (event->overflow_handler_context) 10655 /* hw breakpoint or kernel counter */ 10656 return -EINVAL; 10657 10658 if (event->prog) 10659 return -EEXIST; 10660 10661 if (prog->type != BPF_PROG_TYPE_PERF_EVENT) 10662 return -EINVAL; 10663 10664 if (event->attr.precise_ip && 10665 prog->call_get_stack && 10666 (!(event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) || 10667 event->attr.exclude_callchain_kernel || 10668 event->attr.exclude_callchain_user)) { 10669 /* 10670 * On perf_event with precise_ip, calling bpf_get_stack() 10671 * may trigger unwinder warnings and occasional crashes. 10672 * bpf_get_[stack|stackid] works around this issue by using 10673 * callchain attached to perf_sample_data. If the 10674 * perf_event does not full (kernel and user) callchain 10675 * attached to perf_sample_data, do not allow attaching BPF 10676 * program that calls bpf_get_[stack|stackid]. 10677 */ 10678 return -EPROTO; 10679 } 10680 10681 event->prog = prog; 10682 event->bpf_cookie = bpf_cookie; 10683 return 0; 10684 } 10685 10686 static inline void perf_event_free_bpf_handler(struct perf_event *event) 10687 { 10688 struct bpf_prog *prog = event->prog; 10689 10690 if (!prog) 10691 return; 10692 10693 event->prog = NULL; 10694 bpf_prog_put(prog); 10695 } 10696 #else 10697 static inline int bpf_overflow_handler(struct perf_event *event, 10698 struct perf_sample_data *data, 10699 struct pt_regs *regs) 10700 { 10701 return 1; 10702 } 10703 10704 static inline int perf_event_set_bpf_handler(struct perf_event *event, 10705 struct bpf_prog *prog, 10706 u64 bpf_cookie) 10707 { 10708 return -EOPNOTSUPP; 10709 } 10710 10711 static inline void perf_event_free_bpf_handler(struct perf_event *event) 10712 { 10713 } 10714 #endif 10715 10716 /* 10717 * Generic event overflow handling, sampling. 10718 */ 10719 10720 static int __perf_event_overflow(struct perf_event *event, 10721 int throttle, struct perf_sample_data *data, 10722 struct pt_regs *regs) 10723 { 10724 int events = atomic_read(&event->event_limit); 10725 int ret = 0; 10726 10727 /* 10728 * Non-sampling counters might still use the PMI to fold short 10729 * hardware counters, ignore those. 10730 */ 10731 if (unlikely(!is_sampling_event(event))) 10732 return 0; 10733 10734 ret = __perf_event_account_interrupt(event, throttle); 10735 10736 if (event->attr.aux_pause) 10737 perf_event_aux_pause(event->aux_event, true); 10738 10739 if (event->prog && event->prog->type == BPF_PROG_TYPE_PERF_EVENT && 10740 !bpf_overflow_handler(event, data, regs)) 10741 goto out; 10742 10743 /* 10744 * XXX event_limit might not quite work as expected on inherited 10745 * events 10746 */ 10747 10748 event->pending_kill = POLL_IN; 10749 if (events && atomic_dec_and_test(&event->event_limit)) { 10750 ret = 1; 10751 event->pending_kill = POLL_HUP; 10752 perf_event_disable_inatomic(event); 10753 event->pmu->stop(event, 0); 10754 } 10755 10756 if (event->attr.sigtrap) { 10757 /* 10758 * The desired behaviour of sigtrap vs invalid samples is a bit 10759 * tricky; on the one hand, one should not loose the SIGTRAP if 10760 * it is the first event, on the other hand, we should also not 10761 * trigger the WARN or override the data address. 10762 */ 10763 bool valid_sample = sample_is_allowed(event, regs); 10764 unsigned int pending_id = 1; 10765 enum task_work_notify_mode notify_mode; 10766 10767 if (regs) 10768 pending_id = hash32_ptr((void *)instruction_pointer(regs)) ?: 1; 10769 10770 notify_mode = in_nmi() ? TWA_NMI_CURRENT : TWA_RESUME; 10771 10772 if (!event->pending_work && 10773 !task_work_add(current, &event->pending_task, notify_mode)) { 10774 event->pending_work = pending_id; 10775 local_inc(&event->ctx->nr_no_switch_fast); 10776 WARN_ON_ONCE(!atomic_long_inc_not_zero(&event->refcount)); 10777 10778 event->pending_addr = 0; 10779 if (valid_sample && (data->sample_flags & PERF_SAMPLE_ADDR)) 10780 event->pending_addr = data->addr; 10781 10782 } else if (event->attr.exclude_kernel && valid_sample) { 10783 /* 10784 * Should not be able to return to user space without 10785 * consuming pending_work; with exceptions: 10786 * 10787 * 1. Where !exclude_kernel, events can overflow again 10788 * in the kernel without returning to user space. 10789 * 10790 * 2. Events that can overflow again before the IRQ- 10791 * work without user space progress (e.g. hrtimer). 10792 * To approximate progress (with false negatives), 10793 * check 32-bit hash of the current IP. 10794 */ 10795 WARN_ON_ONCE(event->pending_work != pending_id); 10796 } 10797 } 10798 10799 READ_ONCE(event->overflow_handler)(event, data, regs); 10800 10801 if (*perf_event_fasync(event) && event->pending_kill) { 10802 event->pending_wakeup = 1; 10803 irq_work_queue(&event->pending_irq); 10804 } 10805 out: 10806 if (event->attr.aux_resume) 10807 perf_event_aux_pause(event->aux_event, false); 10808 10809 return ret; 10810 } 10811 10812 int perf_event_overflow(struct perf_event *event, 10813 struct perf_sample_data *data, 10814 struct pt_regs *regs) 10815 { 10816 /* 10817 * Entry point from hardware PMI, interrupts should be disabled here. 10818 * This serializes us against perf_event_remove_from_context() in 10819 * things like perf_event_release_kernel(). 10820 */ 10821 lockdep_assert_irqs_disabled(); 10822 10823 return __perf_event_overflow(event, 1, data, regs); 10824 } 10825 10826 /* 10827 * Generic software event infrastructure 10828 */ 10829 10830 struct swevent_htable { 10831 struct swevent_hlist *swevent_hlist; 10832 struct mutex hlist_mutex; 10833 int hlist_refcount; 10834 }; 10835 static DEFINE_PER_CPU(struct swevent_htable, swevent_htable); 10836 10837 /* 10838 * We directly increment event->count and keep a second value in 10839 * event->hw.period_left to count intervals. This period event 10840 * is kept in the range [-sample_period, 0] so that we can use the 10841 * sign as trigger. 10842 */ 10843 10844 u64 perf_swevent_set_period(struct perf_event *event) 10845 { 10846 struct hw_perf_event *hwc = &event->hw; 10847 u64 period = hwc->last_period; 10848 u64 nr, offset; 10849 s64 old, val; 10850 10851 hwc->last_period = hwc->sample_period; 10852 10853 old = local64_read(&hwc->period_left); 10854 do { 10855 val = old; 10856 if (val < 0) 10857 return 0; 10858 10859 nr = div64_u64(period + val, period); 10860 offset = nr * period; 10861 val -= offset; 10862 } while (!local64_try_cmpxchg(&hwc->period_left, &old, val)); 10863 10864 return nr; 10865 } 10866 10867 static void perf_swevent_overflow(struct perf_event *event, u64 overflow, 10868 struct perf_sample_data *data, 10869 struct pt_regs *regs) 10870 { 10871 struct hw_perf_event *hwc = &event->hw; 10872 int throttle = 0; 10873 10874 if (!overflow) 10875 overflow = perf_swevent_set_period(event); 10876 10877 if (hwc->interrupts == MAX_INTERRUPTS) 10878 return; 10879 10880 for (; overflow; overflow--) { 10881 if (__perf_event_overflow(event, throttle, 10882 data, regs)) { 10883 /* 10884 * We inhibit the overflow from happening when 10885 * hwc->interrupts == MAX_INTERRUPTS. 10886 */ 10887 break; 10888 } 10889 throttle = 1; 10890 } 10891 } 10892 10893 static void perf_swevent_event(struct perf_event *event, u64 nr, 10894 struct perf_sample_data *data, 10895 struct pt_regs *regs) 10896 { 10897 struct hw_perf_event *hwc = &event->hw; 10898 10899 /* 10900 * This is: 10901 * - software preempt 10902 * - tracepoint preempt 10903 * - tp_target_task irq (ctx->lock) 10904 * - uprobes preempt/irq 10905 * - kprobes preempt/irq 10906 * - hw_breakpoint irq 10907 * 10908 * Any of these are sufficient to hold off RCU and thus ensure @event 10909 * exists. 10910 */ 10911 lockdep_assert_preemption_disabled(); 10912 local64_add(nr, &event->count); 10913 10914 if (!regs) 10915 return; 10916 10917 if (!is_sampling_event(event)) 10918 return; 10919 10920 /* 10921 * Serialize against event_function_call() IPIs like normal overflow 10922 * event handling. Specifically, must not allow 10923 * perf_event_release_kernel() -> perf_remove_from_context() to make 10924 * progress and 'release' the event from under us. 10925 */ 10926 guard(irqsave)(); 10927 if (event->state != PERF_EVENT_STATE_ACTIVE) 10928 return; 10929 10930 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) { 10931 data->period = nr; 10932 return perf_swevent_overflow(event, 1, data, regs); 10933 } else 10934 data->period = event->hw.last_period; 10935 10936 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq) 10937 return perf_swevent_overflow(event, 1, data, regs); 10938 10939 if (local64_add_negative(nr, &hwc->period_left)) 10940 return; 10941 10942 perf_swevent_overflow(event, 0, data, regs); 10943 } 10944 10945 int perf_exclude_event(struct perf_event *event, struct pt_regs *regs) 10946 { 10947 if (event->hw.state & PERF_HES_STOPPED) 10948 return 1; 10949 10950 if (regs) { 10951 if (event->attr.exclude_user && user_mode(regs)) 10952 return 1; 10953 10954 if (event->attr.exclude_kernel && !user_mode(regs)) 10955 return 1; 10956 } 10957 10958 return 0; 10959 } 10960 10961 static int perf_swevent_match(struct perf_event *event, 10962 enum perf_type_id type, 10963 u32 event_id, 10964 struct perf_sample_data *data, 10965 struct pt_regs *regs) 10966 { 10967 if (event->attr.type != type) 10968 return 0; 10969 10970 if (event->attr.config != event_id) 10971 return 0; 10972 10973 if (perf_exclude_event(event, regs)) 10974 return 0; 10975 10976 return 1; 10977 } 10978 10979 static inline u64 swevent_hash(u64 type, u32 event_id) 10980 { 10981 u64 val = event_id | (type << 32); 10982 10983 return hash_64(val, SWEVENT_HLIST_BITS); 10984 } 10985 10986 static inline struct hlist_head * 10987 __find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id) 10988 { 10989 u64 hash = swevent_hash(type, event_id); 10990 10991 return &hlist->heads[hash]; 10992 } 10993 10994 /* For the read side: events when they trigger */ 10995 static inline struct hlist_head * 10996 find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id) 10997 { 10998 struct swevent_hlist *hlist; 10999 11000 hlist = rcu_dereference(swhash->swevent_hlist); 11001 if (!hlist) 11002 return NULL; 11003 11004 return __find_swevent_head(hlist, type, event_id); 11005 } 11006 11007 /* For the event head insertion and removal in the hlist */ 11008 static inline struct hlist_head * 11009 find_swevent_head(struct swevent_htable *swhash, struct perf_event *event) 11010 { 11011 struct swevent_hlist *hlist; 11012 u32 event_id = event->attr.config; 11013 u64 type = event->attr.type; 11014 11015 /* 11016 * Event scheduling is always serialized against hlist allocation 11017 * and release. Which makes the protected version suitable here. 11018 * The context lock guarantees that. 11019 */ 11020 hlist = rcu_dereference_protected(swhash->swevent_hlist, 11021 lockdep_is_held(&event->ctx->lock)); 11022 if (!hlist) 11023 return NULL; 11024 11025 return __find_swevent_head(hlist, type, event_id); 11026 } 11027 11028 static void do_perf_sw_event(enum perf_type_id type, u32 event_id, 11029 u64 nr, 11030 struct perf_sample_data *data, 11031 struct pt_regs *regs) 11032 { 11033 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable); 11034 struct perf_event *event; 11035 struct hlist_head *head; 11036 11037 rcu_read_lock(); 11038 head = find_swevent_head_rcu(swhash, type, event_id); 11039 if (!head) 11040 goto end; 11041 11042 hlist_for_each_entry_rcu(event, head, hlist_entry) { 11043 if (perf_swevent_match(event, type, event_id, data, regs)) 11044 perf_swevent_event(event, nr, data, regs); 11045 } 11046 end: 11047 rcu_read_unlock(); 11048 } 11049 11050 DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]); 11051 11052 int perf_swevent_get_recursion_context(void) 11053 { 11054 return get_recursion_context(current->perf_recursion); 11055 } 11056 EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context); 11057 11058 void perf_swevent_put_recursion_context(int rctx) 11059 { 11060 put_recursion_context(current->perf_recursion, rctx); 11061 } 11062 11063 void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) 11064 { 11065 struct perf_sample_data data; 11066 11067 if (WARN_ON_ONCE(!regs)) 11068 return; 11069 11070 perf_sample_data_init(&data, addr, 0); 11071 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs); 11072 } 11073 11074 void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) 11075 { 11076 int rctx; 11077 11078 preempt_disable_notrace(); 11079 rctx = perf_swevent_get_recursion_context(); 11080 if (unlikely(rctx < 0)) 11081 goto fail; 11082 11083 ___perf_sw_event(event_id, nr, regs, addr); 11084 11085 perf_swevent_put_recursion_context(rctx); 11086 fail: 11087 preempt_enable_notrace(); 11088 } 11089 11090 static void perf_swevent_read(struct perf_event *event) 11091 { 11092 } 11093 11094 static int perf_swevent_add(struct perf_event *event, int flags) 11095 { 11096 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable); 11097 struct hw_perf_event *hwc = &event->hw; 11098 struct hlist_head *head; 11099 11100 if (is_sampling_event(event)) { 11101 hwc->last_period = hwc->sample_period; 11102 perf_swevent_set_period(event); 11103 } 11104 11105 hwc->state = !(flags & PERF_EF_START); 11106 11107 head = find_swevent_head(swhash, event); 11108 if (WARN_ON_ONCE(!head)) 11109 return -EINVAL; 11110 11111 hlist_add_head_rcu(&event->hlist_entry, head); 11112 perf_event_update_userpage(event); 11113 11114 return 0; 11115 } 11116 11117 static void perf_swevent_del(struct perf_event *event, int flags) 11118 { 11119 hlist_del_rcu(&event->hlist_entry); 11120 } 11121 11122 static void perf_swevent_start(struct perf_event *event, int flags) 11123 { 11124 event->hw.state = 0; 11125 } 11126 11127 static void perf_swevent_stop(struct perf_event *event, int flags) 11128 { 11129 event->hw.state = PERF_HES_STOPPED; 11130 } 11131 11132 /* Deref the hlist from the update side */ 11133 static inline struct swevent_hlist * 11134 swevent_hlist_deref(struct swevent_htable *swhash) 11135 { 11136 return rcu_dereference_protected(swhash->swevent_hlist, 11137 lockdep_is_held(&swhash->hlist_mutex)); 11138 } 11139 11140 static void swevent_hlist_release(struct swevent_htable *swhash) 11141 { 11142 struct swevent_hlist *hlist = swevent_hlist_deref(swhash); 11143 11144 if (!hlist) 11145 return; 11146 11147 RCU_INIT_POINTER(swhash->swevent_hlist, NULL); 11148 kfree_rcu(hlist, rcu_head); 11149 } 11150 11151 static void swevent_hlist_put_cpu(int cpu) 11152 { 11153 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu); 11154 11155 mutex_lock(&swhash->hlist_mutex); 11156 11157 if (!--swhash->hlist_refcount) 11158 swevent_hlist_release(swhash); 11159 11160 mutex_unlock(&swhash->hlist_mutex); 11161 } 11162 11163 static void swevent_hlist_put(void) 11164 { 11165 int cpu; 11166 11167 for_each_possible_cpu(cpu) 11168 swevent_hlist_put_cpu(cpu); 11169 } 11170 11171 static int swevent_hlist_get_cpu(int cpu) 11172 { 11173 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu); 11174 int err = 0; 11175 11176 mutex_lock(&swhash->hlist_mutex); 11177 if (!swevent_hlist_deref(swhash) && 11178 cpumask_test_cpu(cpu, perf_online_mask)) { 11179 struct swevent_hlist *hlist; 11180 11181 hlist = kzalloc_obj(*hlist); 11182 if (!hlist) { 11183 err = -ENOMEM; 11184 goto exit; 11185 } 11186 rcu_assign_pointer(swhash->swevent_hlist, hlist); 11187 } 11188 swhash->hlist_refcount++; 11189 exit: 11190 mutex_unlock(&swhash->hlist_mutex); 11191 11192 return err; 11193 } 11194 11195 static int swevent_hlist_get(void) 11196 { 11197 int err, cpu, failed_cpu; 11198 11199 mutex_lock(&pmus_lock); 11200 for_each_possible_cpu(cpu) { 11201 err = swevent_hlist_get_cpu(cpu); 11202 if (err) { 11203 failed_cpu = cpu; 11204 goto fail; 11205 } 11206 } 11207 mutex_unlock(&pmus_lock); 11208 return 0; 11209 fail: 11210 for_each_possible_cpu(cpu) { 11211 if (cpu == failed_cpu) 11212 break; 11213 swevent_hlist_put_cpu(cpu); 11214 } 11215 mutex_unlock(&pmus_lock); 11216 return err; 11217 } 11218 11219 struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX]; 11220 11221 static void sw_perf_event_destroy(struct perf_event *event) 11222 { 11223 u64 event_id = event->attr.config; 11224 11225 WARN_ON(event->parent); 11226 11227 static_key_slow_dec(&perf_swevent_enabled[event_id]); 11228 swevent_hlist_put(); 11229 } 11230 11231 static struct pmu perf_cpu_clock; /* fwd declaration */ 11232 static struct pmu perf_task_clock; 11233 11234 static int perf_swevent_init(struct perf_event *event) 11235 { 11236 u64 event_id = event->attr.config; 11237 11238 if (event->attr.type != PERF_TYPE_SOFTWARE) 11239 return -ENOENT; 11240 11241 /* 11242 * no branch sampling for software events 11243 */ 11244 if (has_branch_stack(event)) 11245 return -EOPNOTSUPP; 11246 11247 switch (event_id) { 11248 case PERF_COUNT_SW_CPU_CLOCK: 11249 event->attr.type = perf_cpu_clock.type; 11250 return -ENOENT; 11251 case PERF_COUNT_SW_TASK_CLOCK: 11252 event->attr.type = perf_task_clock.type; 11253 return -ENOENT; 11254 11255 default: 11256 break; 11257 } 11258 11259 if (event_id >= PERF_COUNT_SW_MAX) 11260 return -ENOENT; 11261 11262 if (!event->parent) { 11263 int err; 11264 11265 err = swevent_hlist_get(); 11266 if (err) 11267 return err; 11268 11269 static_key_slow_inc(&perf_swevent_enabled[event_id]); 11270 event->destroy = sw_perf_event_destroy; 11271 } 11272 11273 return 0; 11274 } 11275 11276 static struct pmu perf_swevent = { 11277 .task_ctx_nr = perf_sw_context, 11278 11279 .capabilities = PERF_PMU_CAP_NO_NMI, 11280 11281 .event_init = perf_swevent_init, 11282 .add = perf_swevent_add, 11283 .del = perf_swevent_del, 11284 .start = perf_swevent_start, 11285 .stop = perf_swevent_stop, 11286 .read = perf_swevent_read, 11287 }; 11288 11289 #ifdef CONFIG_EVENT_TRACING 11290 11291 static void tp_perf_event_destroy(struct perf_event *event) 11292 { 11293 perf_trace_destroy(event); 11294 } 11295 11296 static int perf_tp_event_init(struct perf_event *event) 11297 { 11298 int err; 11299 11300 if (event->attr.type != PERF_TYPE_TRACEPOINT) 11301 return -ENOENT; 11302 11303 /* 11304 * no branch sampling for tracepoint events 11305 */ 11306 if (has_branch_stack(event)) 11307 return -EOPNOTSUPP; 11308 11309 err = perf_trace_init(event); 11310 if (err) 11311 return err; 11312 11313 event->destroy = tp_perf_event_destroy; 11314 11315 return 0; 11316 } 11317 11318 static struct pmu perf_tracepoint = { 11319 .task_ctx_nr = perf_sw_context, 11320 11321 .event_init = perf_tp_event_init, 11322 .add = perf_trace_add, 11323 .del = perf_trace_del, 11324 .start = perf_swevent_start, 11325 .stop = perf_swevent_stop, 11326 .read = perf_swevent_read, 11327 }; 11328 11329 static int perf_tp_filter_match(struct perf_event *event, 11330 struct perf_raw_record *raw) 11331 { 11332 void *record = raw->frag.data; 11333 11334 /* only top level events have filters set */ 11335 if (event->parent) 11336 event = event->parent; 11337 11338 if (likely(!event->filter) || filter_match_preds(event->filter, record)) 11339 return 1; 11340 return 0; 11341 } 11342 11343 static int perf_tp_event_match(struct perf_event *event, 11344 struct perf_raw_record *raw, 11345 struct pt_regs *regs) 11346 { 11347 if (event->hw.state & PERF_HES_STOPPED) 11348 return 0; 11349 /* 11350 * If exclude_kernel, only trace user-space tracepoints (uprobes) 11351 */ 11352 if (event->attr.exclude_kernel && !user_mode(regs)) 11353 return 0; 11354 11355 if (!perf_tp_filter_match(event, raw)) 11356 return 0; 11357 11358 return 1; 11359 } 11360 11361 void perf_trace_run_bpf_submit(void *raw_data, int size, int rctx, 11362 struct trace_event_call *call, u64 count, 11363 struct pt_regs *regs, struct hlist_head *head, 11364 struct task_struct *task) 11365 { 11366 if (bpf_prog_array_valid(call)) { 11367 *(struct pt_regs **)raw_data = regs; 11368 if (!trace_call_bpf(call, raw_data) || hlist_empty(head)) { 11369 perf_swevent_put_recursion_context(rctx); 11370 return; 11371 } 11372 } 11373 perf_tp_event(call->event.type, count, raw_data, size, regs, head, 11374 rctx, task); 11375 } 11376 EXPORT_SYMBOL_GPL(perf_trace_run_bpf_submit); 11377 11378 static void __perf_tp_event_target_task(u64 count, void *record, 11379 struct pt_regs *regs, 11380 struct perf_sample_data *data, 11381 struct perf_raw_record *raw, 11382 struct perf_event *event) 11383 { 11384 struct trace_entry *entry = record; 11385 11386 if (event->attr.config != entry->type) 11387 return; 11388 /* Cannot deliver synchronous signal to other task. */ 11389 if (event->attr.sigtrap) 11390 return; 11391 if (perf_tp_event_match(event, raw, regs)) { 11392 perf_sample_data_init(data, 0, 0); 11393 perf_sample_save_raw_data(data, event, raw); 11394 perf_swevent_event(event, count, data, regs); 11395 } 11396 } 11397 11398 static void perf_tp_event_target_task(u64 count, void *record, 11399 struct pt_regs *regs, 11400 struct perf_sample_data *data, 11401 struct perf_raw_record *raw, 11402 struct perf_event_context *ctx) 11403 { 11404 unsigned int cpu = smp_processor_id(); 11405 struct pmu *pmu = &perf_tracepoint; 11406 struct perf_event *event, *sibling; 11407 11408 perf_event_groups_for_cpu_pmu(event, &ctx->pinned_groups, cpu, pmu) { 11409 __perf_tp_event_target_task(count, record, regs, data, raw, event); 11410 for_each_sibling_event(sibling, event) 11411 __perf_tp_event_target_task(count, record, regs, data, raw, sibling); 11412 } 11413 11414 perf_event_groups_for_cpu_pmu(event, &ctx->flexible_groups, cpu, pmu) { 11415 __perf_tp_event_target_task(count, record, regs, data, raw, event); 11416 for_each_sibling_event(sibling, event) 11417 __perf_tp_event_target_task(count, record, regs, data, raw, sibling); 11418 } 11419 } 11420 11421 void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size, 11422 struct pt_regs *regs, struct hlist_head *head, int rctx, 11423 struct task_struct *task) 11424 { 11425 struct perf_sample_data data; 11426 struct perf_event *event; 11427 11428 /* 11429 * Per being a tracepoint, this runs with preemption disabled. 11430 */ 11431 lockdep_assert_preemption_disabled(); 11432 11433 struct perf_raw_record raw = { 11434 .frag = { 11435 .size = entry_size, 11436 .data = record, 11437 }, 11438 }; 11439 11440 perf_trace_buf_update(record, event_type); 11441 11442 hlist_for_each_entry_rcu(event, head, hlist_entry) { 11443 if (perf_tp_event_match(event, &raw, regs)) { 11444 /* 11445 * Here use the same on-stack perf_sample_data, 11446 * some members in data are event-specific and 11447 * need to be re-computed for different sweveents. 11448 * Re-initialize data->sample_flags safely to avoid 11449 * the problem that next event skips preparing data 11450 * because data->sample_flags is set. 11451 */ 11452 perf_sample_data_init(&data, 0, 0); 11453 perf_sample_save_raw_data(&data, event, &raw); 11454 perf_swevent_event(event, count, &data, regs); 11455 } 11456 } 11457 11458 /* 11459 * If we got specified a target task, also iterate its context and 11460 * deliver this event there too. 11461 */ 11462 if (task && task != current) { 11463 struct perf_event_context *ctx; 11464 11465 rcu_read_lock(); 11466 ctx = rcu_dereference(task->perf_event_ctxp); 11467 if (!ctx) 11468 goto unlock; 11469 11470 raw_spin_lock(&ctx->lock); 11471 perf_tp_event_target_task(count, record, regs, &data, &raw, ctx); 11472 raw_spin_unlock(&ctx->lock); 11473 unlock: 11474 rcu_read_unlock(); 11475 } 11476 11477 perf_swevent_put_recursion_context(rctx); 11478 } 11479 EXPORT_SYMBOL_GPL(perf_tp_event); 11480 11481 #if defined(CONFIG_KPROBE_EVENTS) || defined(CONFIG_UPROBE_EVENTS) 11482 /* 11483 * Flags in config, used by dynamic PMU kprobe and uprobe 11484 * The flags should match following PMU_FORMAT_ATTR(). 11485 * 11486 * PERF_PROBE_CONFIG_IS_RETPROBE if set, create kretprobe/uretprobe 11487 * if not set, create kprobe/uprobe 11488 * 11489 * The following values specify a reference counter (or semaphore in the 11490 * terminology of tools like dtrace, systemtap, etc.) Userspace Statically 11491 * Defined Tracepoints (USDT). Currently, we use 40 bit for the offset. 11492 * 11493 * PERF_UPROBE_REF_CTR_OFFSET_BITS # of bits in config as th offset 11494 * PERF_UPROBE_REF_CTR_OFFSET_SHIFT # of bits to shift left 11495 */ 11496 enum perf_probe_config { 11497 PERF_PROBE_CONFIG_IS_RETPROBE = 1U << 0, /* [k,u]retprobe */ 11498 PERF_UPROBE_REF_CTR_OFFSET_BITS = 32, 11499 PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 64 - PERF_UPROBE_REF_CTR_OFFSET_BITS, 11500 }; 11501 11502 PMU_FORMAT_ATTR(retprobe, "config:0"); 11503 #endif 11504 11505 #ifdef CONFIG_KPROBE_EVENTS 11506 static struct attribute *kprobe_attrs[] = { 11507 &format_attr_retprobe.attr, 11508 NULL, 11509 }; 11510 11511 static struct attribute_group kprobe_format_group = { 11512 .name = "format", 11513 .attrs = kprobe_attrs, 11514 }; 11515 11516 static const struct attribute_group *kprobe_attr_groups[] = { 11517 &kprobe_format_group, 11518 NULL, 11519 }; 11520 11521 static int perf_kprobe_event_init(struct perf_event *event); 11522 static struct pmu perf_kprobe = { 11523 .task_ctx_nr = perf_sw_context, 11524 .event_init = perf_kprobe_event_init, 11525 .add = perf_trace_add, 11526 .del = perf_trace_del, 11527 .start = perf_swevent_start, 11528 .stop = perf_swevent_stop, 11529 .read = perf_swevent_read, 11530 .attr_groups = kprobe_attr_groups, 11531 }; 11532 11533 static int perf_kprobe_event_init(struct perf_event *event) 11534 { 11535 int err; 11536 bool is_retprobe; 11537 11538 if (event->attr.type != perf_kprobe.type) 11539 return -ENOENT; 11540 11541 if (!perfmon_capable()) 11542 return -EACCES; 11543 11544 /* 11545 * no branch sampling for probe events 11546 */ 11547 if (has_branch_stack(event)) 11548 return -EOPNOTSUPP; 11549 11550 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE; 11551 err = perf_kprobe_init(event, is_retprobe); 11552 if (err) 11553 return err; 11554 11555 event->destroy = perf_kprobe_destroy; 11556 11557 return 0; 11558 } 11559 #endif /* CONFIG_KPROBE_EVENTS */ 11560 11561 #ifdef CONFIG_UPROBE_EVENTS 11562 PMU_FORMAT_ATTR(ref_ctr_offset, "config:32-63"); 11563 11564 static struct attribute *uprobe_attrs[] = { 11565 &format_attr_retprobe.attr, 11566 &format_attr_ref_ctr_offset.attr, 11567 NULL, 11568 }; 11569 11570 static struct attribute_group uprobe_format_group = { 11571 .name = "format", 11572 .attrs = uprobe_attrs, 11573 }; 11574 11575 static const struct attribute_group *uprobe_attr_groups[] = { 11576 &uprobe_format_group, 11577 NULL, 11578 }; 11579 11580 static int perf_uprobe_event_init(struct perf_event *event); 11581 static struct pmu perf_uprobe = { 11582 .task_ctx_nr = perf_sw_context, 11583 .event_init = perf_uprobe_event_init, 11584 .add = perf_trace_add, 11585 .del = perf_trace_del, 11586 .start = perf_swevent_start, 11587 .stop = perf_swevent_stop, 11588 .read = perf_swevent_read, 11589 .attr_groups = uprobe_attr_groups, 11590 }; 11591 11592 static int perf_uprobe_event_init(struct perf_event *event) 11593 { 11594 int err; 11595 unsigned long ref_ctr_offset; 11596 bool is_retprobe; 11597 11598 if (event->attr.type != perf_uprobe.type) 11599 return -ENOENT; 11600 11601 if (!capable(CAP_SYS_ADMIN)) 11602 return -EACCES; 11603 11604 /* 11605 * no branch sampling for probe events 11606 */ 11607 if (has_branch_stack(event)) 11608 return -EOPNOTSUPP; 11609 11610 is_retprobe = event->attr.config & PERF_PROBE_CONFIG_IS_RETPROBE; 11611 ref_ctr_offset = event->attr.config >> PERF_UPROBE_REF_CTR_OFFSET_SHIFT; 11612 err = perf_uprobe_init(event, ref_ctr_offset, is_retprobe); 11613 if (err) 11614 return err; 11615 11616 event->destroy = perf_uprobe_destroy; 11617 11618 return 0; 11619 } 11620 #endif /* CONFIG_UPROBE_EVENTS */ 11621 11622 static inline void perf_tp_register(void) 11623 { 11624 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT); 11625 #ifdef CONFIG_KPROBE_EVENTS 11626 perf_pmu_register(&perf_kprobe, "kprobe", -1); 11627 #endif 11628 #ifdef CONFIG_UPROBE_EVENTS 11629 perf_pmu_register(&perf_uprobe, "uprobe", -1); 11630 #endif 11631 } 11632 11633 static void perf_event_free_filter(struct perf_event *event) 11634 { 11635 ftrace_profile_free_filter(event); 11636 } 11637 11638 /* 11639 * returns true if the event is a tracepoint, or a kprobe/upprobe created 11640 * with perf_event_open() 11641 */ 11642 static inline bool perf_event_is_tracing(struct perf_event *event) 11643 { 11644 if (event->pmu == &perf_tracepoint) 11645 return true; 11646 #ifdef CONFIG_KPROBE_EVENTS 11647 if (event->pmu == &perf_kprobe) 11648 return true; 11649 #endif 11650 #ifdef CONFIG_UPROBE_EVENTS 11651 if (event->pmu == &perf_uprobe) 11652 return true; 11653 #endif 11654 return false; 11655 } 11656 11657 static int __perf_event_set_bpf_prog(struct perf_event *event, 11658 struct bpf_prog *prog, 11659 u64 bpf_cookie) 11660 { 11661 bool is_kprobe, is_uprobe, is_tracepoint, is_syscall_tp; 11662 11663 if (event->state <= PERF_EVENT_STATE_REVOKED) 11664 return -ENODEV; 11665 11666 if (!perf_event_is_tracing(event)) 11667 return perf_event_set_bpf_handler(event, prog, bpf_cookie); 11668 11669 is_kprobe = event->tp_event->flags & TRACE_EVENT_FL_KPROBE; 11670 is_uprobe = event->tp_event->flags & TRACE_EVENT_FL_UPROBE; 11671 is_tracepoint = event->tp_event->flags & TRACE_EVENT_FL_TRACEPOINT; 11672 is_syscall_tp = is_syscall_trace_event(event->tp_event); 11673 if (!is_kprobe && !is_uprobe && !is_tracepoint && !is_syscall_tp) 11674 /* bpf programs can only be attached to u/kprobe or tracepoint */ 11675 return -EINVAL; 11676 11677 if (((is_kprobe || is_uprobe) && prog->type != BPF_PROG_TYPE_KPROBE) || 11678 (is_tracepoint && prog->type != BPF_PROG_TYPE_TRACEPOINT) || 11679 (is_syscall_tp && prog->type != BPF_PROG_TYPE_TRACEPOINT)) 11680 return -EINVAL; 11681 11682 if (prog->type == BPF_PROG_TYPE_KPROBE && prog->sleepable && !is_uprobe) 11683 /* only uprobe programs are allowed to be sleepable */ 11684 return -EINVAL; 11685 11686 /* Kprobe override only works for kprobes, not uprobes. */ 11687 if (prog->kprobe_override && !is_kprobe) 11688 return -EINVAL; 11689 11690 /* Writing to context allowed only for uprobes. */ 11691 if (prog->aux->kprobe_write_ctx && !is_uprobe) 11692 return -EINVAL; 11693 11694 if (is_tracepoint || is_syscall_tp) { 11695 int off = trace_event_get_offsets(event->tp_event); 11696 11697 if (prog->aux->max_ctx_offset > off) 11698 return -EACCES; 11699 } 11700 11701 return perf_event_attach_bpf_prog(event, prog, bpf_cookie); 11702 } 11703 11704 int perf_event_set_bpf_prog(struct perf_event *event, 11705 struct bpf_prog *prog, 11706 u64 bpf_cookie) 11707 { 11708 struct perf_event_context *ctx; 11709 int ret; 11710 11711 ctx = perf_event_ctx_lock(event); 11712 ret = __perf_event_set_bpf_prog(event, prog, bpf_cookie); 11713 perf_event_ctx_unlock(event, ctx); 11714 11715 return ret; 11716 } 11717 11718 void perf_event_free_bpf_prog(struct perf_event *event) 11719 { 11720 if (!event->prog) 11721 return; 11722 11723 if (!perf_event_is_tracing(event)) { 11724 perf_event_free_bpf_handler(event); 11725 return; 11726 } 11727 perf_event_detach_bpf_prog(event); 11728 } 11729 11730 #else 11731 11732 static inline void perf_tp_register(void) 11733 { 11734 } 11735 11736 static void perf_event_free_filter(struct perf_event *event) 11737 { 11738 } 11739 11740 static int __perf_event_set_bpf_prog(struct perf_event *event, 11741 struct bpf_prog *prog, 11742 u64 bpf_cookie) 11743 { 11744 return -ENOENT; 11745 } 11746 11747 int perf_event_set_bpf_prog(struct perf_event *event, 11748 struct bpf_prog *prog, 11749 u64 bpf_cookie) 11750 { 11751 return -ENOENT; 11752 } 11753 11754 void perf_event_free_bpf_prog(struct perf_event *event) 11755 { 11756 } 11757 #endif /* CONFIG_EVENT_TRACING */ 11758 11759 #ifdef CONFIG_HAVE_HW_BREAKPOINT 11760 void perf_bp_event(struct perf_event *bp, void *data) 11761 { 11762 struct perf_sample_data sample; 11763 struct pt_regs *regs = data; 11764 11765 /* 11766 * Exception context, will have interrupts disabled. 11767 */ 11768 lockdep_assert_irqs_disabled(); 11769 11770 perf_sample_data_init(&sample, bp->attr.bp_addr, 0); 11771 11772 if (!bp->hw.state && !perf_exclude_event(bp, regs)) 11773 perf_swevent_event(bp, 1, &sample, regs); 11774 } 11775 #endif 11776 11777 /* 11778 * Allocate a new address filter 11779 */ 11780 static struct perf_addr_filter * 11781 perf_addr_filter_new(struct perf_event *event, struct list_head *filters) 11782 { 11783 int node = cpu_to_node(event->cpu == -1 ? 0 : event->cpu); 11784 struct perf_addr_filter *filter; 11785 11786 filter = kzalloc_node(sizeof(*filter), GFP_KERNEL, node); 11787 if (!filter) 11788 return NULL; 11789 11790 INIT_LIST_HEAD(&filter->entry); 11791 list_add_tail(&filter->entry, filters); 11792 11793 return filter; 11794 } 11795 11796 static void free_filters_list(struct list_head *filters) 11797 { 11798 struct perf_addr_filter *filter, *iter; 11799 11800 list_for_each_entry_safe(filter, iter, filters, entry) { 11801 path_put(&filter->path); 11802 list_del(&filter->entry); 11803 kfree(filter); 11804 } 11805 } 11806 11807 /* 11808 * Free existing address filters and optionally install new ones 11809 */ 11810 static void perf_addr_filters_splice(struct perf_event *event, 11811 struct list_head *head) 11812 { 11813 unsigned long flags; 11814 LIST_HEAD(list); 11815 11816 if (!has_addr_filter(event)) 11817 return; 11818 11819 /* don't bother with children, they don't have their own filters */ 11820 if (event->parent) 11821 return; 11822 11823 raw_spin_lock_irqsave(&event->addr_filters.lock, flags); 11824 11825 list_splice_init(&event->addr_filters.list, &list); 11826 if (head) 11827 list_splice(head, &event->addr_filters.list); 11828 11829 raw_spin_unlock_irqrestore(&event->addr_filters.lock, flags); 11830 11831 free_filters_list(&list); 11832 } 11833 11834 static void perf_free_addr_filters(struct perf_event *event) 11835 { 11836 /* 11837 * Used during free paths, there is no concurrency. 11838 */ 11839 if (list_empty(&event->addr_filters.list)) 11840 return; 11841 11842 perf_addr_filters_splice(event, NULL); 11843 } 11844 11845 /* 11846 * Scan through mm's vmas and see if one of them matches the 11847 * @filter; if so, adjust filter's address range. 11848 * Called with mm::mmap_lock down for reading. 11849 */ 11850 static void perf_addr_filter_apply(struct perf_addr_filter *filter, 11851 struct mm_struct *mm, 11852 struct perf_addr_filter_range *fr) 11853 { 11854 struct vm_area_struct *vma; 11855 VMA_ITERATOR(vmi, mm, 0); 11856 11857 for_each_vma(vmi, vma) { 11858 if (!vma->vm_file) 11859 continue; 11860 11861 if (perf_addr_filter_vma_adjust(filter, vma, fr)) 11862 return; 11863 } 11864 } 11865 11866 /* 11867 * Update event's address range filters based on the 11868 * task's existing mappings, if any. 11869 */ 11870 static void perf_event_addr_filters_apply(struct perf_event *event) 11871 { 11872 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); 11873 struct task_struct *task = READ_ONCE(event->ctx->task); 11874 struct perf_addr_filter *filter; 11875 struct mm_struct *mm = NULL; 11876 unsigned int count = 0; 11877 unsigned long flags; 11878 11879 /* 11880 * We may observe TASK_TOMBSTONE, which means that the event tear-down 11881 * will stop on the parent's child_mutex that our caller is also holding 11882 */ 11883 if (task == TASK_TOMBSTONE) 11884 return; 11885 11886 if (ifh->nr_file_filters) { 11887 mm = get_task_mm(task); 11888 if (!mm) 11889 goto restart; 11890 11891 mmap_read_lock(mm); 11892 } 11893 11894 raw_spin_lock_irqsave(&ifh->lock, flags); 11895 list_for_each_entry(filter, &ifh->list, entry) { 11896 if (filter->path.dentry) { 11897 /* 11898 * Adjust base offset if the filter is associated to a 11899 * binary that needs to be mapped: 11900 */ 11901 event->addr_filter_ranges[count].start = 0; 11902 event->addr_filter_ranges[count].size = 0; 11903 11904 perf_addr_filter_apply(filter, mm, &event->addr_filter_ranges[count]); 11905 } else { 11906 event->addr_filter_ranges[count].start = filter->offset; 11907 event->addr_filter_ranges[count].size = filter->size; 11908 } 11909 11910 count++; 11911 } 11912 11913 event->addr_filters_gen++; 11914 raw_spin_unlock_irqrestore(&ifh->lock, flags); 11915 11916 if (ifh->nr_file_filters) { 11917 mmap_read_unlock(mm); 11918 11919 mmput(mm); 11920 } 11921 11922 restart: 11923 perf_event_stop(event, 1); 11924 } 11925 11926 /* 11927 * Address range filtering: limiting the data to certain 11928 * instruction address ranges. Filters are ioctl()ed to us from 11929 * userspace as ascii strings. 11930 * 11931 * Filter string format: 11932 * 11933 * ACTION RANGE_SPEC 11934 * where ACTION is one of the 11935 * * "filter": limit the trace to this region 11936 * * "start": start tracing from this address 11937 * * "stop": stop tracing at this address/region; 11938 * RANGE_SPEC is 11939 * * for kernel addresses: <start address>[/<size>] 11940 * * for object files: <start address>[/<size>]@</path/to/object/file> 11941 * 11942 * if <size> is not specified or is zero, the range is treated as a single 11943 * address; not valid for ACTION=="filter". 11944 */ 11945 enum { 11946 IF_ACT_NONE = -1, 11947 IF_ACT_FILTER, 11948 IF_ACT_START, 11949 IF_ACT_STOP, 11950 IF_SRC_FILE, 11951 IF_SRC_KERNEL, 11952 IF_SRC_FILEADDR, 11953 IF_SRC_KERNELADDR, 11954 }; 11955 11956 enum { 11957 IF_STATE_ACTION = 0, 11958 IF_STATE_SOURCE, 11959 IF_STATE_END, 11960 }; 11961 11962 static const match_table_t if_tokens = { 11963 { IF_ACT_FILTER, "filter" }, 11964 { IF_ACT_START, "start" }, 11965 { IF_ACT_STOP, "stop" }, 11966 { IF_SRC_FILE, "%u/%u@%s" }, 11967 { IF_SRC_KERNEL, "%u/%u" }, 11968 { IF_SRC_FILEADDR, "%u@%s" }, 11969 { IF_SRC_KERNELADDR, "%u" }, 11970 { IF_ACT_NONE, NULL }, 11971 }; 11972 11973 /* 11974 * Address filter string parser 11975 */ 11976 static int 11977 perf_event_parse_addr_filter(struct perf_event *event, char *fstr, 11978 struct list_head *filters) 11979 { 11980 struct perf_addr_filter *filter = NULL; 11981 char *start, *orig, *filename = NULL; 11982 substring_t args[MAX_OPT_ARGS]; 11983 int state = IF_STATE_ACTION, token; 11984 unsigned int kernel = 0; 11985 int ret = -EINVAL; 11986 11987 orig = fstr = kstrdup(fstr, GFP_KERNEL); 11988 if (!fstr) 11989 return -ENOMEM; 11990 11991 while ((start = strsep(&fstr, " ,\n")) != NULL) { 11992 static const enum perf_addr_filter_action_t actions[] = { 11993 [IF_ACT_FILTER] = PERF_ADDR_FILTER_ACTION_FILTER, 11994 [IF_ACT_START] = PERF_ADDR_FILTER_ACTION_START, 11995 [IF_ACT_STOP] = PERF_ADDR_FILTER_ACTION_STOP, 11996 }; 11997 ret = -EINVAL; 11998 11999 if (!*start) 12000 continue; 12001 12002 /* filter definition begins */ 12003 if (state == IF_STATE_ACTION) { 12004 filter = perf_addr_filter_new(event, filters); 12005 if (!filter) 12006 goto fail; 12007 } 12008 12009 token = match_token(start, if_tokens, args); 12010 switch (token) { 12011 case IF_ACT_FILTER: 12012 case IF_ACT_START: 12013 case IF_ACT_STOP: 12014 if (state != IF_STATE_ACTION) 12015 goto fail; 12016 12017 filter->action = actions[token]; 12018 state = IF_STATE_SOURCE; 12019 break; 12020 12021 case IF_SRC_KERNELADDR: 12022 case IF_SRC_KERNEL: 12023 kernel = 1; 12024 fallthrough; 12025 12026 case IF_SRC_FILEADDR: 12027 case IF_SRC_FILE: 12028 if (state != IF_STATE_SOURCE) 12029 goto fail; 12030 12031 *args[0].to = 0; 12032 ret = kstrtoul(args[0].from, 0, &filter->offset); 12033 if (ret) 12034 goto fail; 12035 12036 if (token == IF_SRC_KERNEL || token == IF_SRC_FILE) { 12037 *args[1].to = 0; 12038 ret = kstrtoul(args[1].from, 0, &filter->size); 12039 if (ret) 12040 goto fail; 12041 } 12042 12043 if (token == IF_SRC_FILE || token == IF_SRC_FILEADDR) { 12044 int fpos = token == IF_SRC_FILE ? 2 : 1; 12045 12046 kfree(filename); 12047 filename = match_strdup(&args[fpos]); 12048 if (!filename) { 12049 ret = -ENOMEM; 12050 goto fail; 12051 } 12052 } 12053 12054 state = IF_STATE_END; 12055 break; 12056 12057 default: 12058 goto fail; 12059 } 12060 12061 /* 12062 * Filter definition is fully parsed, validate and install it. 12063 * Make sure that it doesn't contradict itself or the event's 12064 * attribute. 12065 */ 12066 if (state == IF_STATE_END) { 12067 ret = -EINVAL; 12068 12069 /* 12070 * ACTION "filter" must have a non-zero length region 12071 * specified. 12072 */ 12073 if (filter->action == PERF_ADDR_FILTER_ACTION_FILTER && 12074 !filter->size) 12075 goto fail; 12076 12077 if (!kernel) { 12078 if (!filename) 12079 goto fail; 12080 12081 /* 12082 * For now, we only support file-based filters 12083 * in per-task events; doing so for CPU-wide 12084 * events requires additional context switching 12085 * trickery, since same object code will be 12086 * mapped at different virtual addresses in 12087 * different processes. 12088 */ 12089 ret = -EOPNOTSUPP; 12090 if (!event->ctx->task) 12091 goto fail; 12092 12093 /* look up the path and grab its inode */ 12094 ret = kern_path(filename, LOOKUP_FOLLOW, 12095 &filter->path); 12096 if (ret) 12097 goto fail; 12098 12099 ret = -EINVAL; 12100 if (!filter->path.dentry || 12101 !S_ISREG(d_inode(filter->path.dentry) 12102 ->i_mode)) 12103 goto fail; 12104 12105 event->addr_filters.nr_file_filters++; 12106 } 12107 12108 /* ready to consume more filters */ 12109 kfree(filename); 12110 filename = NULL; 12111 state = IF_STATE_ACTION; 12112 filter = NULL; 12113 kernel = 0; 12114 } 12115 } 12116 12117 if (state != IF_STATE_ACTION) 12118 goto fail; 12119 12120 kfree(filename); 12121 kfree(orig); 12122 12123 return 0; 12124 12125 fail: 12126 kfree(filename); 12127 free_filters_list(filters); 12128 kfree(orig); 12129 12130 return ret; 12131 } 12132 12133 static int 12134 perf_event_set_addr_filter(struct perf_event *event, char *filter_str) 12135 { 12136 LIST_HEAD(filters); 12137 int ret; 12138 12139 /* 12140 * Since this is called in perf_ioctl() path, we're already holding 12141 * ctx::mutex. 12142 */ 12143 lockdep_assert_held(&event->ctx->mutex); 12144 12145 if (WARN_ON_ONCE(event->parent)) 12146 return -EINVAL; 12147 12148 ret = perf_event_parse_addr_filter(event, filter_str, &filters); 12149 if (ret) 12150 goto fail_clear_files; 12151 12152 ret = event->pmu->addr_filters_validate(&filters); 12153 if (ret) 12154 goto fail_free_filters; 12155 12156 /* remove existing filters, if any */ 12157 perf_addr_filters_splice(event, &filters); 12158 12159 /* install new filters */ 12160 perf_event_for_each_child(event, perf_event_addr_filters_apply); 12161 12162 return ret; 12163 12164 fail_free_filters: 12165 free_filters_list(&filters); 12166 12167 fail_clear_files: 12168 event->addr_filters.nr_file_filters = 0; 12169 12170 return ret; 12171 } 12172 12173 static int perf_event_set_filter(struct perf_event *event, void __user *arg) 12174 { 12175 int ret = -EINVAL; 12176 char *filter_str; 12177 12178 filter_str = strndup_user(arg, PAGE_SIZE); 12179 if (IS_ERR(filter_str)) 12180 return PTR_ERR(filter_str); 12181 12182 #ifdef CONFIG_EVENT_TRACING 12183 if (perf_event_is_tracing(event)) { 12184 struct perf_event_context *ctx = event->ctx; 12185 12186 /* 12187 * Beware, here be dragons!! 12188 * 12189 * the tracepoint muck will deadlock against ctx->mutex, but 12190 * the tracepoint stuff does not actually need it. So 12191 * temporarily drop ctx->mutex. As per perf_event_ctx_lock() we 12192 * already have a reference on ctx. 12193 * 12194 * This can result in event getting moved to a different ctx, 12195 * but that does not affect the tracepoint state. 12196 */ 12197 mutex_unlock(&ctx->mutex); 12198 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str); 12199 mutex_lock(&ctx->mutex); 12200 } else 12201 #endif 12202 if (has_addr_filter(event)) 12203 ret = perf_event_set_addr_filter(event, filter_str); 12204 12205 kfree(filter_str); 12206 return ret; 12207 } 12208 12209 /* 12210 * hrtimer based swevent callback 12211 */ 12212 12213 static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer) 12214 { 12215 enum hrtimer_restart ret = HRTIMER_RESTART; 12216 struct perf_sample_data data; 12217 struct pt_regs *regs; 12218 struct perf_event *event; 12219 u64 period; 12220 12221 event = container_of(hrtimer, struct perf_event, hw.hrtimer); 12222 12223 if (event->state != PERF_EVENT_STATE_ACTIVE || 12224 event->hw.state & PERF_HES_STOPPED) 12225 return HRTIMER_NORESTART; 12226 12227 event->pmu->read(event); 12228 12229 perf_sample_data_init(&data, 0, event->hw.last_period); 12230 regs = get_irq_regs(); 12231 12232 if (regs && !perf_exclude_event(event, regs)) { 12233 if (!(event->attr.exclude_idle && is_idle_task(current))) 12234 if (perf_event_overflow(event, &data, regs)) 12235 ret = HRTIMER_NORESTART; 12236 } 12237 12238 period = max_t(u64, 10000, event->hw.sample_period); 12239 hrtimer_forward_now(hrtimer, ns_to_ktime(period)); 12240 12241 return ret; 12242 } 12243 12244 static void perf_swevent_start_hrtimer(struct perf_event *event) 12245 { 12246 struct hw_perf_event *hwc = &event->hw; 12247 s64 period; 12248 12249 if (!is_sampling_event(event)) 12250 return; 12251 12252 period = local64_read(&hwc->period_left); 12253 if (period) { 12254 if (period < 0) 12255 period = 10000; 12256 12257 local64_set(&hwc->period_left, 0); 12258 } else { 12259 period = max_t(u64, 10000, hwc->sample_period); 12260 } 12261 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period), 12262 HRTIMER_MODE_REL_PINNED_HARD); 12263 } 12264 12265 static void perf_swevent_cancel_hrtimer(struct perf_event *event) 12266 { 12267 struct hw_perf_event *hwc = &event->hw; 12268 12269 /* 12270 * Careful: this function can be triggered in the hrtimer handler, 12271 * for cpu-clock events, so hrtimer_cancel() would cause a 12272 * deadlock. 12273 * 12274 * So use hrtimer_try_to_cancel() to try to stop the hrtimer, 12275 * and the cpu-clock handler also sets the PERF_HES_STOPPED flag, 12276 * which guarantees that perf_swevent_hrtimer() will stop the 12277 * hrtimer once it sees the PERF_HES_STOPPED flag. 12278 */ 12279 if (is_sampling_event(event) && (hwc->interrupts != MAX_INTERRUPTS)) { 12280 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer); 12281 local64_set(&hwc->period_left, ktime_to_ns(remaining)); 12282 12283 hrtimer_try_to_cancel(&hwc->hrtimer); 12284 } 12285 } 12286 12287 static void perf_swevent_destroy_hrtimer(struct perf_event *event) 12288 { 12289 hrtimer_cancel(&event->hw.hrtimer); 12290 } 12291 12292 static void perf_swevent_init_hrtimer(struct perf_event *event) 12293 { 12294 struct hw_perf_event *hwc = &event->hw; 12295 12296 if (!is_sampling_event(event)) 12297 return; 12298 12299 hrtimer_setup(&hwc->hrtimer, perf_swevent_hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD); 12300 event->destroy = perf_swevent_destroy_hrtimer; 12301 12302 /* 12303 * Since hrtimers have a fixed rate, we can do a static freq->period 12304 * mapping and avoid the whole period adjust feedback stuff. 12305 */ 12306 if (event->attr.freq) { 12307 long freq = event->attr.sample_freq; 12308 12309 event->attr.sample_period = NSEC_PER_SEC / freq; 12310 hwc->sample_period = event->attr.sample_period; 12311 local64_set(&hwc->period_left, hwc->sample_period); 12312 hwc->last_period = hwc->sample_period; 12313 event->attr.freq = 0; 12314 } 12315 } 12316 12317 /* 12318 * Software event: cpu wall time clock 12319 */ 12320 12321 static void cpu_clock_event_update(struct perf_event *event) 12322 { 12323 s64 prev; 12324 u64 now; 12325 12326 now = local_clock(); 12327 prev = local64_xchg(&event->hw.prev_count, now); 12328 local64_add(now - prev, &event->count); 12329 } 12330 12331 static void cpu_clock_event_start(struct perf_event *event, int flags) 12332 { 12333 event->hw.state = 0; 12334 local64_set(&event->hw.prev_count, local_clock()); 12335 perf_swevent_start_hrtimer(event); 12336 } 12337 12338 static void cpu_clock_event_stop(struct perf_event *event, int flags) 12339 { 12340 event->hw.state = PERF_HES_STOPPED; 12341 perf_swevent_cancel_hrtimer(event); 12342 if (flags & PERF_EF_UPDATE) 12343 cpu_clock_event_update(event); 12344 } 12345 12346 static int cpu_clock_event_add(struct perf_event *event, int flags) 12347 { 12348 if (flags & PERF_EF_START) 12349 cpu_clock_event_start(event, flags); 12350 perf_event_update_userpage(event); 12351 12352 return 0; 12353 } 12354 12355 static void cpu_clock_event_del(struct perf_event *event, int flags) 12356 { 12357 cpu_clock_event_stop(event, PERF_EF_UPDATE); 12358 } 12359 12360 static void cpu_clock_event_read(struct perf_event *event) 12361 { 12362 cpu_clock_event_update(event); 12363 } 12364 12365 static int cpu_clock_event_init(struct perf_event *event) 12366 { 12367 if (event->attr.type != perf_cpu_clock.type) 12368 return -ENOENT; 12369 12370 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK) 12371 return -ENOENT; 12372 12373 /* 12374 * no branch sampling for software events 12375 */ 12376 if (has_branch_stack(event)) 12377 return -EOPNOTSUPP; 12378 12379 perf_swevent_init_hrtimer(event); 12380 12381 return 0; 12382 } 12383 12384 static struct pmu perf_cpu_clock = { 12385 .task_ctx_nr = perf_sw_context, 12386 12387 .capabilities = PERF_PMU_CAP_NO_NMI, 12388 .dev = PMU_NULL_DEV, 12389 12390 .event_init = cpu_clock_event_init, 12391 .add = cpu_clock_event_add, 12392 .del = cpu_clock_event_del, 12393 .start = cpu_clock_event_start, 12394 .stop = cpu_clock_event_stop, 12395 .read = cpu_clock_event_read, 12396 }; 12397 12398 /* 12399 * Software event: task time clock 12400 */ 12401 12402 static void task_clock_event_update(struct perf_event *event, u64 now) 12403 { 12404 u64 prev; 12405 s64 delta; 12406 12407 prev = local64_xchg(&event->hw.prev_count, now); 12408 delta = now - prev; 12409 local64_add(delta, &event->count); 12410 } 12411 12412 static void task_clock_event_start(struct perf_event *event, int flags) 12413 { 12414 event->hw.state = 0; 12415 local64_set(&event->hw.prev_count, event->ctx->time.time); 12416 perf_swevent_start_hrtimer(event); 12417 } 12418 12419 static void task_clock_event_stop(struct perf_event *event, int flags) 12420 { 12421 event->hw.state = PERF_HES_STOPPED; 12422 perf_swevent_cancel_hrtimer(event); 12423 if (flags & PERF_EF_UPDATE) 12424 task_clock_event_update(event, event->ctx->time.time); 12425 } 12426 12427 static int task_clock_event_add(struct perf_event *event, int flags) 12428 { 12429 if (flags & PERF_EF_START) 12430 task_clock_event_start(event, flags); 12431 perf_event_update_userpage(event); 12432 12433 return 0; 12434 } 12435 12436 static void task_clock_event_del(struct perf_event *event, int flags) 12437 { 12438 task_clock_event_stop(event, PERF_EF_UPDATE); 12439 } 12440 12441 static void task_clock_event_read(struct perf_event *event) 12442 { 12443 u64 now = perf_clock(); 12444 u64 delta = now - event->ctx->time.stamp; 12445 u64 time = event->ctx->time.time + delta; 12446 12447 task_clock_event_update(event, time); 12448 } 12449 12450 static int task_clock_event_init(struct perf_event *event) 12451 { 12452 if (event->attr.type != perf_task_clock.type) 12453 return -ENOENT; 12454 12455 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK) 12456 return -ENOENT; 12457 12458 /* 12459 * no branch sampling for software events 12460 */ 12461 if (has_branch_stack(event)) 12462 return -EOPNOTSUPP; 12463 12464 perf_swevent_init_hrtimer(event); 12465 12466 return 0; 12467 } 12468 12469 static struct pmu perf_task_clock = { 12470 .task_ctx_nr = perf_sw_context, 12471 12472 .capabilities = PERF_PMU_CAP_NO_NMI, 12473 .dev = PMU_NULL_DEV, 12474 12475 .event_init = task_clock_event_init, 12476 .add = task_clock_event_add, 12477 .del = task_clock_event_del, 12478 .start = task_clock_event_start, 12479 .stop = task_clock_event_stop, 12480 .read = task_clock_event_read, 12481 }; 12482 12483 static void perf_pmu_nop_void(struct pmu *pmu) 12484 { 12485 } 12486 12487 static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags) 12488 { 12489 } 12490 12491 static int perf_pmu_nop_int(struct pmu *pmu) 12492 { 12493 return 0; 12494 } 12495 12496 static int perf_event_nop_int(struct perf_event *event, u64 value) 12497 { 12498 return 0; 12499 } 12500 12501 static DEFINE_PER_CPU(unsigned int, nop_txn_flags); 12502 12503 static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags) 12504 { 12505 __this_cpu_write(nop_txn_flags, flags); 12506 12507 if (flags & ~PERF_PMU_TXN_ADD) 12508 return; 12509 12510 perf_pmu_disable(pmu); 12511 } 12512 12513 static int perf_pmu_commit_txn(struct pmu *pmu) 12514 { 12515 unsigned int flags = __this_cpu_read(nop_txn_flags); 12516 12517 __this_cpu_write(nop_txn_flags, 0); 12518 12519 if (flags & ~PERF_PMU_TXN_ADD) 12520 return 0; 12521 12522 perf_pmu_enable(pmu); 12523 return 0; 12524 } 12525 12526 static void perf_pmu_cancel_txn(struct pmu *pmu) 12527 { 12528 unsigned int flags = __this_cpu_read(nop_txn_flags); 12529 12530 __this_cpu_write(nop_txn_flags, 0); 12531 12532 if (flags & ~PERF_PMU_TXN_ADD) 12533 return; 12534 12535 perf_pmu_enable(pmu); 12536 } 12537 12538 static int perf_event_idx_default(struct perf_event *event) 12539 { 12540 return 0; 12541 } 12542 12543 /* 12544 * Let userspace know that this PMU supports address range filtering: 12545 */ 12546 static ssize_t nr_addr_filters_show(struct device *dev, 12547 struct device_attribute *attr, 12548 char *page) 12549 { 12550 struct pmu *pmu = dev_get_drvdata(dev); 12551 12552 return sysfs_emit(page, "%d\n", pmu->nr_addr_filters); 12553 } 12554 DEVICE_ATTR_RO(nr_addr_filters); 12555 12556 static struct idr pmu_idr; 12557 12558 static ssize_t 12559 type_show(struct device *dev, struct device_attribute *attr, char *page) 12560 { 12561 struct pmu *pmu = dev_get_drvdata(dev); 12562 12563 return sysfs_emit(page, "%d\n", pmu->type); 12564 } 12565 static DEVICE_ATTR_RO(type); 12566 12567 static ssize_t 12568 perf_event_mux_interval_ms_show(struct device *dev, 12569 struct device_attribute *attr, 12570 char *page) 12571 { 12572 struct pmu *pmu = dev_get_drvdata(dev); 12573 12574 return sysfs_emit(page, "%d\n", pmu->hrtimer_interval_ms); 12575 } 12576 12577 static DEFINE_MUTEX(mux_interval_mutex); 12578 12579 static ssize_t 12580 perf_event_mux_interval_ms_store(struct device *dev, 12581 struct device_attribute *attr, 12582 const char *buf, size_t count) 12583 { 12584 struct pmu *pmu = dev_get_drvdata(dev); 12585 int timer, cpu, ret; 12586 12587 ret = kstrtoint(buf, 0, &timer); 12588 if (ret) 12589 return ret; 12590 12591 if (timer < 1) 12592 return -EINVAL; 12593 12594 /* same value, noting to do */ 12595 if (timer == pmu->hrtimer_interval_ms) 12596 return count; 12597 12598 mutex_lock(&mux_interval_mutex); 12599 pmu->hrtimer_interval_ms = timer; 12600 12601 /* update all cpuctx for this PMU */ 12602 cpus_read_lock(); 12603 for_each_online_cpu(cpu) { 12604 struct perf_cpu_pmu_context *cpc; 12605 cpc = *per_cpu_ptr(pmu->cpu_pmu_context, cpu); 12606 cpc->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer); 12607 12608 cpu_function_call(cpu, perf_mux_hrtimer_restart_ipi, cpc); 12609 } 12610 cpus_read_unlock(); 12611 mutex_unlock(&mux_interval_mutex); 12612 12613 return count; 12614 } 12615 static DEVICE_ATTR_RW(perf_event_mux_interval_ms); 12616 12617 static inline const struct cpumask *perf_scope_cpu_topology_cpumask(unsigned int scope, int cpu) 12618 { 12619 switch (scope) { 12620 case PERF_PMU_SCOPE_CORE: 12621 return topology_sibling_cpumask(cpu); 12622 case PERF_PMU_SCOPE_DIE: 12623 return topology_die_cpumask(cpu); 12624 case PERF_PMU_SCOPE_CLUSTER: 12625 return topology_cluster_cpumask(cpu); 12626 case PERF_PMU_SCOPE_PKG: 12627 return topology_core_cpumask(cpu); 12628 case PERF_PMU_SCOPE_SYS_WIDE: 12629 return cpu_online_mask; 12630 } 12631 12632 return NULL; 12633 } 12634 12635 static inline struct cpumask *perf_scope_cpumask(unsigned int scope) 12636 { 12637 switch (scope) { 12638 case PERF_PMU_SCOPE_CORE: 12639 return perf_online_core_mask; 12640 case PERF_PMU_SCOPE_DIE: 12641 return perf_online_die_mask; 12642 case PERF_PMU_SCOPE_CLUSTER: 12643 return perf_online_cluster_mask; 12644 case PERF_PMU_SCOPE_PKG: 12645 return perf_online_pkg_mask; 12646 case PERF_PMU_SCOPE_SYS_WIDE: 12647 return perf_online_sys_mask; 12648 } 12649 12650 return NULL; 12651 } 12652 12653 static ssize_t cpumask_show(struct device *dev, struct device_attribute *attr, 12654 char *buf) 12655 { 12656 struct pmu *pmu = dev_get_drvdata(dev); 12657 struct cpumask *mask = perf_scope_cpumask(pmu->scope); 12658 12659 if (mask) 12660 return cpumap_print_to_pagebuf(true, buf, mask); 12661 return 0; 12662 } 12663 12664 static DEVICE_ATTR_RO(cpumask); 12665 12666 static struct attribute *pmu_dev_attrs[] = { 12667 &dev_attr_type.attr, 12668 &dev_attr_perf_event_mux_interval_ms.attr, 12669 &dev_attr_nr_addr_filters.attr, 12670 &dev_attr_cpumask.attr, 12671 NULL, 12672 }; 12673 12674 static umode_t pmu_dev_is_visible(struct kobject *kobj, struct attribute *a, int n) 12675 { 12676 struct device *dev = kobj_to_dev(kobj); 12677 struct pmu *pmu = dev_get_drvdata(dev); 12678 12679 if (n == 2 && !pmu->nr_addr_filters) 12680 return 0; 12681 12682 /* cpumask */ 12683 if (n == 3 && pmu->scope == PERF_PMU_SCOPE_NONE) 12684 return 0; 12685 12686 return a->mode; 12687 } 12688 12689 static struct attribute_group pmu_dev_attr_group = { 12690 .is_visible = pmu_dev_is_visible, 12691 .attrs = pmu_dev_attrs, 12692 }; 12693 12694 static const struct attribute_group *pmu_dev_groups[] = { 12695 &pmu_dev_attr_group, 12696 NULL, 12697 }; 12698 12699 static int pmu_bus_running; 12700 static const struct bus_type pmu_bus = { 12701 .name = "event_source", 12702 .dev_groups = pmu_dev_groups, 12703 }; 12704 12705 static void pmu_dev_release(struct device *dev) 12706 { 12707 kfree(dev); 12708 } 12709 12710 static int pmu_dev_alloc(struct pmu *pmu) 12711 { 12712 int ret = -ENOMEM; 12713 12714 pmu->dev = kzalloc_obj(struct device); 12715 if (!pmu->dev) 12716 goto out; 12717 12718 pmu->dev->groups = pmu->attr_groups; 12719 device_initialize(pmu->dev); 12720 12721 dev_set_drvdata(pmu->dev, pmu); 12722 pmu->dev->bus = &pmu_bus; 12723 pmu->dev->parent = pmu->parent; 12724 pmu->dev->release = pmu_dev_release; 12725 12726 ret = dev_set_name(pmu->dev, "%s", pmu->name); 12727 if (ret) 12728 goto free_dev; 12729 12730 ret = device_add(pmu->dev); 12731 if (ret) 12732 goto free_dev; 12733 12734 if (pmu->attr_update) { 12735 ret = sysfs_update_groups(&pmu->dev->kobj, pmu->attr_update); 12736 if (ret) 12737 goto del_dev; 12738 } 12739 12740 out: 12741 return ret; 12742 12743 del_dev: 12744 device_del(pmu->dev); 12745 12746 free_dev: 12747 put_device(pmu->dev); 12748 pmu->dev = NULL; 12749 goto out; 12750 } 12751 12752 static struct lock_class_key cpuctx_mutex; 12753 static struct lock_class_key cpuctx_lock; 12754 12755 static bool idr_cmpxchg(struct idr *idr, unsigned long id, void *old, void *new) 12756 { 12757 void *tmp, *val = idr_find(idr, id); 12758 12759 if (val != old) 12760 return false; 12761 12762 tmp = idr_replace(idr, new, id); 12763 if (IS_ERR(tmp)) 12764 return false; 12765 12766 WARN_ON_ONCE(tmp != val); 12767 return true; 12768 } 12769 12770 static void perf_pmu_free(struct pmu *pmu) 12771 { 12772 if (pmu_bus_running && pmu->dev && pmu->dev != PMU_NULL_DEV) { 12773 if (pmu->nr_addr_filters) 12774 device_remove_file(pmu->dev, &dev_attr_nr_addr_filters); 12775 device_del(pmu->dev); 12776 put_device(pmu->dev); 12777 } 12778 12779 if (pmu->cpu_pmu_context) { 12780 int cpu; 12781 12782 for_each_possible_cpu(cpu) { 12783 struct perf_cpu_pmu_context *cpc; 12784 12785 cpc = *per_cpu_ptr(pmu->cpu_pmu_context, cpu); 12786 if (!cpc) 12787 continue; 12788 if (cpc->epc.embedded) { 12789 /* refcount managed */ 12790 put_pmu_ctx(&cpc->epc); 12791 continue; 12792 } 12793 kfree(cpc); 12794 } 12795 free_percpu(pmu->cpu_pmu_context); 12796 } 12797 } 12798 12799 DEFINE_FREE(pmu_unregister, struct pmu *, if (_T) perf_pmu_free(_T)) 12800 12801 int perf_pmu_register(struct pmu *_pmu, const char *name, int type) 12802 { 12803 int cpu, max = PERF_TYPE_MAX; 12804 12805 struct pmu *pmu __free(pmu_unregister) = _pmu; 12806 guard(mutex)(&pmus_lock); 12807 12808 if (WARN_ONCE(!name, "Can not register anonymous pmu.\n")) 12809 return -EINVAL; 12810 12811 if (WARN_ONCE(pmu->scope >= PERF_PMU_MAX_SCOPE, 12812 "Can not register a pmu with an invalid scope.\n")) 12813 return -EINVAL; 12814 12815 pmu->name = name; 12816 12817 if (type >= 0) 12818 max = type; 12819 12820 CLASS(idr_alloc, pmu_type)(&pmu_idr, NULL, max, 0, GFP_KERNEL); 12821 if (pmu_type.id < 0) 12822 return pmu_type.id; 12823 12824 WARN_ON(type >= 0 && pmu_type.id != type); 12825 12826 pmu->type = pmu_type.id; 12827 atomic_set(&pmu->exclusive_cnt, 0); 12828 12829 if (pmu_bus_running && !pmu->dev) { 12830 int ret = pmu_dev_alloc(pmu); 12831 if (ret) 12832 return ret; 12833 } 12834 12835 pmu->cpu_pmu_context = alloc_percpu(struct perf_cpu_pmu_context *); 12836 if (!pmu->cpu_pmu_context) 12837 return -ENOMEM; 12838 12839 for_each_possible_cpu(cpu) { 12840 struct perf_cpu_pmu_context *cpc = 12841 kmalloc_node(sizeof(struct perf_cpu_pmu_context), 12842 GFP_KERNEL | __GFP_ZERO, 12843 cpu_to_node(cpu)); 12844 12845 if (!cpc) 12846 return -ENOMEM; 12847 12848 *per_cpu_ptr(pmu->cpu_pmu_context, cpu) = cpc; 12849 __perf_init_event_pmu_context(&cpc->epc, pmu); 12850 __perf_mux_hrtimer_init(cpc, cpu); 12851 } 12852 12853 if (!pmu->start_txn) { 12854 if (pmu->pmu_enable) { 12855 /* 12856 * If we have pmu_enable/pmu_disable calls, install 12857 * transaction stubs that use that to try and batch 12858 * hardware accesses. 12859 */ 12860 pmu->start_txn = perf_pmu_start_txn; 12861 pmu->commit_txn = perf_pmu_commit_txn; 12862 pmu->cancel_txn = perf_pmu_cancel_txn; 12863 } else { 12864 pmu->start_txn = perf_pmu_nop_txn; 12865 pmu->commit_txn = perf_pmu_nop_int; 12866 pmu->cancel_txn = perf_pmu_nop_void; 12867 } 12868 } 12869 12870 if (!pmu->pmu_enable) { 12871 pmu->pmu_enable = perf_pmu_nop_void; 12872 pmu->pmu_disable = perf_pmu_nop_void; 12873 } 12874 12875 if (!pmu->check_period) 12876 pmu->check_period = perf_event_nop_int; 12877 12878 if (!pmu->event_idx) 12879 pmu->event_idx = perf_event_idx_default; 12880 12881 INIT_LIST_HEAD(&pmu->events); 12882 spin_lock_init(&pmu->events_lock); 12883 12884 /* 12885 * Now that the PMU is complete, make it visible to perf_try_init_event(). 12886 */ 12887 if (!idr_cmpxchg(&pmu_idr, pmu->type, NULL, pmu)) 12888 return -EINVAL; 12889 list_add_rcu(&pmu->entry, &pmus); 12890 12891 take_idr_id(pmu_type); 12892 _pmu = no_free_ptr(pmu); // let it rip 12893 return 0; 12894 } 12895 EXPORT_SYMBOL_GPL(perf_pmu_register); 12896 12897 static void __pmu_detach_event(struct pmu *pmu, struct perf_event *event, 12898 struct perf_event_context *ctx) 12899 { 12900 /* 12901 * De-schedule the event and mark it REVOKED. 12902 */ 12903 perf_event_exit_event(event, ctx, ctx->task, true); 12904 12905 /* 12906 * All _free_event() bits that rely on event->pmu: 12907 * 12908 * Notably, perf_mmap() relies on the ordering here. 12909 */ 12910 scoped_guard (mutex, &event->mmap_mutex) { 12911 WARN_ON_ONCE(pmu->event_unmapped); 12912 /* 12913 * Mostly an empty lock sequence, such that perf_mmap(), which 12914 * relies on mmap_mutex, is sure to observe the state change. 12915 */ 12916 } 12917 12918 perf_event_free_bpf_prog(event); 12919 perf_free_addr_filters(event); 12920 12921 if (event->destroy) { 12922 event->destroy(event); 12923 event->destroy = NULL; 12924 } 12925 12926 if (event->pmu_ctx) { 12927 put_pmu_ctx(event->pmu_ctx); 12928 event->pmu_ctx = NULL; 12929 } 12930 12931 exclusive_event_destroy(event); 12932 module_put(pmu->module); 12933 12934 event->pmu = NULL; /* force fault instead of UAF */ 12935 } 12936 12937 static void pmu_detach_event(struct pmu *pmu, struct perf_event *event) 12938 { 12939 struct perf_event_context *ctx; 12940 12941 ctx = perf_event_ctx_lock(event); 12942 __pmu_detach_event(pmu, event, ctx); 12943 perf_event_ctx_unlock(event, ctx); 12944 12945 scoped_guard (spinlock, &pmu->events_lock) 12946 list_del(&event->pmu_list); 12947 } 12948 12949 static struct perf_event *pmu_get_event(struct pmu *pmu) 12950 { 12951 struct perf_event *event; 12952 12953 guard(spinlock)(&pmu->events_lock); 12954 list_for_each_entry(event, &pmu->events, pmu_list) { 12955 if (atomic_long_inc_not_zero(&event->refcount)) 12956 return event; 12957 } 12958 12959 return NULL; 12960 } 12961 12962 static bool pmu_empty(struct pmu *pmu) 12963 { 12964 guard(spinlock)(&pmu->events_lock); 12965 return list_empty(&pmu->events); 12966 } 12967 12968 static void pmu_detach_events(struct pmu *pmu) 12969 { 12970 struct perf_event *event; 12971 12972 for (;;) { 12973 event = pmu_get_event(pmu); 12974 if (!event) 12975 break; 12976 12977 pmu_detach_event(pmu, event); 12978 put_event(event); 12979 } 12980 12981 /* 12982 * wait for pending _free_event()s 12983 */ 12984 wait_var_event(pmu, pmu_empty(pmu)); 12985 } 12986 12987 int perf_pmu_unregister(struct pmu *pmu) 12988 { 12989 scoped_guard (mutex, &pmus_lock) { 12990 if (!idr_cmpxchg(&pmu_idr, pmu->type, pmu, NULL)) 12991 return -EINVAL; 12992 12993 list_del_rcu(&pmu->entry); 12994 } 12995 12996 /* 12997 * We dereference the pmu list under both SRCU and regular RCU, so 12998 * synchronize against both of those. 12999 * 13000 * Notably, the entirety of event creation, from perf_init_event() 13001 * (which will now fail, because of the above) until 13002 * perf_install_in_context() should be under SRCU such that 13003 * this synchronizes against event creation. This avoids trying to 13004 * detach events that are not fully formed. 13005 */ 13006 synchronize_srcu(&pmus_srcu); 13007 synchronize_rcu(); 13008 13009 if (pmu->event_unmapped && !pmu_empty(pmu)) { 13010 /* 13011 * Can't force remove events when pmu::event_unmapped() 13012 * is used in perf_mmap_close(). 13013 */ 13014 guard(mutex)(&pmus_lock); 13015 idr_cmpxchg(&pmu_idr, pmu->type, NULL, pmu); 13016 list_add_rcu(&pmu->entry, &pmus); 13017 return -EBUSY; 13018 } 13019 13020 scoped_guard (mutex, &pmus_lock) 13021 idr_remove(&pmu_idr, pmu->type); 13022 13023 /* 13024 * PMU is removed from the pmus list, so no new events will 13025 * be created, now take care of the existing ones. 13026 */ 13027 pmu_detach_events(pmu); 13028 13029 /* 13030 * PMU is unused, make it go away. 13031 */ 13032 perf_pmu_free(pmu); 13033 return 0; 13034 } 13035 EXPORT_SYMBOL_GPL(perf_pmu_unregister); 13036 13037 static inline bool has_extended_regs(struct perf_event *event) 13038 { 13039 return (event->attr.sample_regs_user & PERF_REG_EXTENDED_MASK) || 13040 (event->attr.sample_regs_intr & PERF_REG_EXTENDED_MASK); 13041 } 13042 13043 static int perf_try_init_event(struct pmu *pmu, struct perf_event *event) 13044 { 13045 struct perf_event_context *ctx = NULL; 13046 int ret; 13047 13048 if (!try_module_get(pmu->module)) 13049 return -ENODEV; 13050 13051 /* 13052 * A number of pmu->event_init() methods iterate the sibling_list to, 13053 * for example, validate if the group fits on the PMU. Therefore, 13054 * if this is a sibling event, acquire the ctx->mutex to protect 13055 * the sibling_list. 13056 */ 13057 if (event->group_leader != event && pmu->task_ctx_nr != perf_sw_context) { 13058 /* 13059 * This ctx->mutex can nest when we're called through 13060 * inheritance. See the perf_event_ctx_lock_nested() comment. 13061 */ 13062 ctx = perf_event_ctx_lock_nested(event->group_leader, 13063 SINGLE_DEPTH_NESTING); 13064 BUG_ON(!ctx); 13065 } 13066 13067 event->pmu = pmu; 13068 ret = pmu->event_init(event); 13069 13070 if (ctx) 13071 perf_event_ctx_unlock(event->group_leader, ctx); 13072 13073 if (ret) 13074 goto err_pmu; 13075 13076 if (!(pmu->capabilities & PERF_PMU_CAP_EXTENDED_REGS) && 13077 has_extended_regs(event)) { 13078 ret = -EOPNOTSUPP; 13079 goto err_destroy; 13080 } 13081 13082 if (pmu->capabilities & PERF_PMU_CAP_NO_EXCLUDE && 13083 event_has_any_exclude_flag(event)) { 13084 ret = -EINVAL; 13085 goto err_destroy; 13086 } 13087 13088 if (pmu->scope != PERF_PMU_SCOPE_NONE && event->cpu >= 0) { 13089 const struct cpumask *cpumask; 13090 struct cpumask *pmu_cpumask; 13091 int cpu; 13092 13093 cpumask = perf_scope_cpu_topology_cpumask(pmu->scope, event->cpu); 13094 pmu_cpumask = perf_scope_cpumask(pmu->scope); 13095 13096 ret = -ENODEV; 13097 if (!pmu_cpumask || !cpumask) 13098 goto err_destroy; 13099 13100 cpu = cpumask_any_and(pmu_cpumask, cpumask); 13101 if (cpu >= nr_cpu_ids) 13102 goto err_destroy; 13103 13104 event->event_caps |= PERF_EV_CAP_READ_SCOPE; 13105 } 13106 13107 return 0; 13108 13109 err_destroy: 13110 if (event->destroy) { 13111 event->destroy(event); 13112 event->destroy = NULL; 13113 } 13114 13115 err_pmu: 13116 event->pmu = NULL; 13117 module_put(pmu->module); 13118 return ret; 13119 } 13120 13121 static struct pmu *perf_init_event(struct perf_event *event) 13122 { 13123 bool extended_type = false; 13124 struct pmu *pmu; 13125 int type, ret; 13126 13127 guard(srcu)(&pmus_srcu); /* pmu idr/list access */ 13128 13129 /* 13130 * Save original type before calling pmu->event_init() since certain 13131 * pmus overwrites event->attr.type to forward event to another pmu. 13132 */ 13133 event->orig_type = event->attr.type; 13134 13135 /* Try parent's PMU first: */ 13136 if (event->parent && event->parent->pmu) { 13137 pmu = event->parent->pmu; 13138 ret = perf_try_init_event(pmu, event); 13139 if (!ret) 13140 return pmu; 13141 } 13142 13143 /* 13144 * PERF_TYPE_HARDWARE and PERF_TYPE_HW_CACHE 13145 * are often aliases for PERF_TYPE_RAW. 13146 */ 13147 type = event->attr.type; 13148 if (type == PERF_TYPE_HARDWARE || type == PERF_TYPE_HW_CACHE) { 13149 type = event->attr.config >> PERF_PMU_TYPE_SHIFT; 13150 if (!type) { 13151 type = PERF_TYPE_RAW; 13152 } else { 13153 extended_type = true; 13154 event->attr.config &= PERF_HW_EVENT_MASK; 13155 } 13156 } 13157 13158 again: 13159 scoped_guard (rcu) 13160 pmu = idr_find(&pmu_idr, type); 13161 if (pmu) { 13162 if (event->attr.type != type && type != PERF_TYPE_RAW && 13163 !(pmu->capabilities & PERF_PMU_CAP_EXTENDED_HW_TYPE)) 13164 return ERR_PTR(-ENOENT); 13165 13166 ret = perf_try_init_event(pmu, event); 13167 if (ret == -ENOENT && event->attr.type != type && !extended_type) { 13168 type = event->attr.type; 13169 goto again; 13170 } 13171 13172 if (ret) 13173 return ERR_PTR(ret); 13174 13175 return pmu; 13176 } 13177 13178 list_for_each_entry_rcu(pmu, &pmus, entry, lockdep_is_held(&pmus_srcu)) { 13179 ret = perf_try_init_event(pmu, event); 13180 if (!ret) 13181 return pmu; 13182 13183 if (ret != -ENOENT) 13184 return ERR_PTR(ret); 13185 } 13186 13187 return ERR_PTR(-ENOENT); 13188 } 13189 13190 static void attach_sb_event(struct perf_event *event) 13191 { 13192 struct pmu_event_list *pel = per_cpu_ptr(&pmu_sb_events, event->cpu); 13193 13194 raw_spin_lock(&pel->lock); 13195 list_add_rcu(&event->sb_list, &pel->list); 13196 raw_spin_unlock(&pel->lock); 13197 } 13198 13199 /* 13200 * We keep a list of all !task (and therefore per-cpu) events 13201 * that need to receive side-band records. 13202 * 13203 * This avoids having to scan all the various PMU per-cpu contexts 13204 * looking for them. 13205 */ 13206 static void account_pmu_sb_event(struct perf_event *event) 13207 { 13208 if (is_sb_event(event)) 13209 attach_sb_event(event); 13210 } 13211 13212 /* Freq events need the tick to stay alive (see perf_event_task_tick). */ 13213 static void account_freq_event_nohz(void) 13214 { 13215 #ifdef CONFIG_NO_HZ_FULL 13216 /* Lock so we don't race with concurrent unaccount */ 13217 spin_lock(&nr_freq_lock); 13218 if (atomic_inc_return(&nr_freq_events) == 1) 13219 tick_nohz_dep_set(TICK_DEP_BIT_PERF_EVENTS); 13220 spin_unlock(&nr_freq_lock); 13221 #endif 13222 } 13223 13224 static void account_freq_event(void) 13225 { 13226 if (tick_nohz_full_enabled()) 13227 account_freq_event_nohz(); 13228 else 13229 atomic_inc(&nr_freq_events); 13230 } 13231 13232 13233 static void account_event(struct perf_event *event) 13234 { 13235 bool inc = false; 13236 13237 if (event->parent) 13238 return; 13239 13240 if (event->attach_state & (PERF_ATTACH_TASK | PERF_ATTACH_SCHED_CB)) 13241 inc = true; 13242 if (event->attr.mmap || event->attr.mmap_data) 13243 atomic_inc(&nr_mmap_events); 13244 if (event->attr.build_id) 13245 atomic_inc(&nr_build_id_events); 13246 if (event->attr.comm) 13247 atomic_inc(&nr_comm_events); 13248 if (event->attr.namespaces) 13249 atomic_inc(&nr_namespaces_events); 13250 if (event->attr.cgroup) 13251 atomic_inc(&nr_cgroup_events); 13252 if (event->attr.task) 13253 atomic_inc(&nr_task_events); 13254 if (event->attr.freq) 13255 account_freq_event(); 13256 if (event->attr.context_switch) { 13257 atomic_inc(&nr_switch_events); 13258 inc = true; 13259 } 13260 if (has_branch_stack(event)) 13261 inc = true; 13262 if (is_cgroup_event(event)) 13263 inc = true; 13264 if (event->attr.ksymbol) 13265 atomic_inc(&nr_ksymbol_events); 13266 if (event->attr.bpf_event) 13267 atomic_inc(&nr_bpf_events); 13268 if (event->attr.text_poke) 13269 atomic_inc(&nr_text_poke_events); 13270 13271 if (inc) { 13272 /* 13273 * We need the mutex here because static_branch_enable() 13274 * must complete *before* the perf_sched_count increment 13275 * becomes visible. 13276 */ 13277 if (atomic_inc_not_zero(&perf_sched_count)) 13278 goto enabled; 13279 13280 mutex_lock(&perf_sched_mutex); 13281 if (!atomic_read(&perf_sched_count)) { 13282 static_branch_enable(&perf_sched_events); 13283 /* 13284 * Guarantee that all CPUs observe they key change and 13285 * call the perf scheduling hooks before proceeding to 13286 * install events that need them. 13287 */ 13288 synchronize_rcu(); 13289 } 13290 /* 13291 * Now that we have waited for the sync_sched(), allow further 13292 * increments to by-pass the mutex. 13293 */ 13294 atomic_inc(&perf_sched_count); 13295 mutex_unlock(&perf_sched_mutex); 13296 } 13297 enabled: 13298 13299 account_pmu_sb_event(event); 13300 } 13301 13302 /* 13303 * Allocate and initialize an event structure 13304 */ 13305 static struct perf_event * 13306 perf_event_alloc(struct perf_event_attr *attr, int cpu, 13307 struct task_struct *task, 13308 struct perf_event *group_leader, 13309 struct perf_event *parent_event, 13310 perf_overflow_handler_t overflow_handler, 13311 void *context, int cgroup_fd) 13312 { 13313 struct pmu *pmu; 13314 struct hw_perf_event *hwc; 13315 long err = -EINVAL; 13316 int node; 13317 13318 if ((unsigned)cpu >= nr_cpu_ids) { 13319 if (!task || cpu != -1) 13320 return ERR_PTR(-EINVAL); 13321 } 13322 if (attr->sigtrap && !task) { 13323 /* Requires a task: avoid signalling random tasks. */ 13324 return ERR_PTR(-EINVAL); 13325 } 13326 13327 node = (cpu >= 0) ? cpu_to_node(cpu) : -1; 13328 struct perf_event *event __free(__free_event) = 13329 kmem_cache_alloc_node(perf_event_cache, GFP_KERNEL | __GFP_ZERO, node); 13330 if (!event) 13331 return ERR_PTR(-ENOMEM); 13332 13333 /* 13334 * Single events are their own group leaders, with an 13335 * empty sibling list: 13336 */ 13337 if (!group_leader) 13338 group_leader = event; 13339 13340 mutex_init(&event->child_mutex); 13341 INIT_LIST_HEAD(&event->child_list); 13342 13343 INIT_LIST_HEAD(&event->event_entry); 13344 INIT_LIST_HEAD(&event->sibling_list); 13345 INIT_LIST_HEAD(&event->active_list); 13346 init_event_group(event); 13347 INIT_LIST_HEAD(&event->rb_entry); 13348 INIT_LIST_HEAD(&event->active_entry); 13349 INIT_LIST_HEAD(&event->addr_filters.list); 13350 INIT_HLIST_NODE(&event->hlist_entry); 13351 INIT_LIST_HEAD(&event->pmu_list); 13352 13353 13354 init_waitqueue_head(&event->waitq); 13355 init_irq_work(&event->pending_irq, perf_pending_irq); 13356 event->pending_disable_irq = IRQ_WORK_INIT_HARD(perf_pending_disable); 13357 init_task_work(&event->pending_task, perf_pending_task); 13358 13359 mutex_init(&event->mmap_mutex); 13360 raw_spin_lock_init(&event->addr_filters.lock); 13361 13362 atomic_long_set(&event->refcount, 1); 13363 event->cpu = cpu; 13364 event->attr = *attr; 13365 event->group_leader = group_leader; 13366 event->pmu = NULL; 13367 event->oncpu = -1; 13368 13369 event->parent = parent_event; 13370 13371 event->ns = get_pid_ns(task_active_pid_ns(current)); 13372 event->id = atomic64_inc_return(&perf_event_id); 13373 13374 event->state = PERF_EVENT_STATE_INACTIVE; 13375 13376 if (parent_event) 13377 event->event_caps = parent_event->event_caps; 13378 13379 if (task) { 13380 event->attach_state = PERF_ATTACH_TASK; 13381 /* 13382 * XXX pmu::event_init needs to know what task to account to 13383 * and we cannot use the ctx information because we need the 13384 * pmu before we get a ctx. 13385 */ 13386 event->hw.target = get_task_struct(task); 13387 } 13388 13389 event->clock = &local_clock; 13390 if (parent_event) 13391 event->clock = parent_event->clock; 13392 13393 if (!overflow_handler && parent_event) { 13394 overflow_handler = parent_event->overflow_handler; 13395 context = parent_event->overflow_handler_context; 13396 #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING) 13397 if (parent_event->prog) { 13398 struct bpf_prog *prog = parent_event->prog; 13399 13400 bpf_prog_inc(prog); 13401 event->prog = prog; 13402 } 13403 #endif 13404 } 13405 13406 if (overflow_handler) { 13407 event->overflow_handler = overflow_handler; 13408 event->overflow_handler_context = context; 13409 } else if (is_write_backward(event)){ 13410 event->overflow_handler = perf_event_output_backward; 13411 event->overflow_handler_context = NULL; 13412 } else { 13413 event->overflow_handler = perf_event_output_forward; 13414 event->overflow_handler_context = NULL; 13415 } 13416 13417 perf_event__state_init(event); 13418 13419 pmu = NULL; 13420 13421 hwc = &event->hw; 13422 hwc->sample_period = attr->sample_period; 13423 if (is_event_in_freq_mode(event)) 13424 hwc->sample_period = 1; 13425 hwc->last_period = hwc->sample_period; 13426 13427 local64_set(&hwc->period_left, hwc->sample_period); 13428 13429 /* 13430 * We do not support PERF_SAMPLE_READ on inherited events unless 13431 * PERF_SAMPLE_TID is also selected, which allows inherited events to 13432 * collect per-thread samples. 13433 * See perf_output_read(). 13434 */ 13435 if (has_inherit_and_sample_read(attr) && !(attr->sample_type & PERF_SAMPLE_TID)) 13436 return ERR_PTR(-EINVAL); 13437 13438 if (!has_branch_stack(event)) 13439 event->attr.branch_sample_type = 0; 13440 13441 pmu = perf_init_event(event); 13442 if (IS_ERR(pmu)) 13443 return (void*)pmu; 13444 13445 /* 13446 * The PERF_ATTACH_TASK_DATA is set in the event_init()->hw_config(). 13447 * The attach should be right after the perf_init_event(). 13448 * Otherwise, the __free_event() would mistakenly detach the non-exist 13449 * perf_ctx_data because of the other errors between them. 13450 */ 13451 if (event->attach_state & PERF_ATTACH_TASK_DATA) { 13452 err = attach_perf_ctx_data(event); 13453 if (err) 13454 return ERR_PTR(err); 13455 } 13456 13457 /* 13458 * Disallow uncore-task events. Similarly, disallow uncore-cgroup 13459 * events (they don't make sense as the cgroup will be different 13460 * on other CPUs in the uncore mask). 13461 */ 13462 if (pmu->task_ctx_nr == perf_invalid_context && (task || cgroup_fd != -1)) 13463 return ERR_PTR(-EINVAL); 13464 13465 if (event->attr.aux_output && 13466 (!(pmu->capabilities & PERF_PMU_CAP_AUX_OUTPUT) || 13467 event->attr.aux_pause || event->attr.aux_resume)) 13468 return ERR_PTR(-EOPNOTSUPP); 13469 13470 if (event->attr.aux_pause && event->attr.aux_resume) 13471 return ERR_PTR(-EINVAL); 13472 13473 if (event->attr.aux_start_paused) { 13474 if (!(pmu->capabilities & PERF_PMU_CAP_AUX_PAUSE)) 13475 return ERR_PTR(-EOPNOTSUPP); 13476 event->hw.aux_paused = 1; 13477 } 13478 13479 if (cgroup_fd != -1) { 13480 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader); 13481 if (err) 13482 return ERR_PTR(err); 13483 } 13484 13485 err = exclusive_event_init(event); 13486 if (err) 13487 return ERR_PTR(err); 13488 13489 if (has_addr_filter(event)) { 13490 event->addr_filter_ranges = kcalloc(pmu->nr_addr_filters, 13491 sizeof(struct perf_addr_filter_range), 13492 GFP_KERNEL); 13493 if (!event->addr_filter_ranges) 13494 return ERR_PTR(-ENOMEM); 13495 13496 /* 13497 * Clone the parent's vma offsets: they are valid until exec() 13498 * even if the mm is not shared with the parent. 13499 */ 13500 if (event->parent) { 13501 struct perf_addr_filters_head *ifh = perf_event_addr_filters(event); 13502 13503 raw_spin_lock_irq(&ifh->lock); 13504 memcpy(event->addr_filter_ranges, 13505 event->parent->addr_filter_ranges, 13506 pmu->nr_addr_filters * sizeof(struct perf_addr_filter_range)); 13507 raw_spin_unlock_irq(&ifh->lock); 13508 } 13509 13510 /* force hw sync on the address filters */ 13511 event->addr_filters_gen = 1; 13512 } 13513 13514 if (!event->parent) { 13515 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) { 13516 err = get_callchain_buffers(attr->sample_max_stack); 13517 if (err) 13518 return ERR_PTR(err); 13519 event->attach_state |= PERF_ATTACH_CALLCHAIN; 13520 } 13521 } 13522 13523 err = security_perf_event_alloc(event); 13524 if (err) 13525 return ERR_PTR(err); 13526 13527 err = mediated_pmu_account_event(event); 13528 if (err) 13529 return ERR_PTR(err); 13530 13531 /* symmetric to unaccount_event() in _free_event() */ 13532 account_event(event); 13533 13534 /* 13535 * Event creation should be under SRCU, see perf_pmu_unregister(). 13536 */ 13537 lockdep_assert_held(&pmus_srcu); 13538 scoped_guard (spinlock, &pmu->events_lock) 13539 list_add(&event->pmu_list, &pmu->events); 13540 13541 return_ptr(event); 13542 } 13543 13544 static int perf_copy_attr(struct perf_event_attr __user *uattr, 13545 struct perf_event_attr *attr) 13546 { 13547 u32 size; 13548 int ret; 13549 13550 /* Zero the full structure, so that a short copy will be nice. */ 13551 memset(attr, 0, sizeof(*attr)); 13552 13553 ret = get_user(size, &uattr->size); 13554 if (ret) 13555 return ret; 13556 13557 /* ABI compatibility quirk: */ 13558 if (!size) 13559 size = PERF_ATTR_SIZE_VER0; 13560 if (size < PERF_ATTR_SIZE_VER0 || size > PAGE_SIZE) 13561 goto err_size; 13562 13563 ret = copy_struct_from_user(attr, sizeof(*attr), uattr, size); 13564 if (ret) { 13565 if (ret == -E2BIG) 13566 goto err_size; 13567 return ret; 13568 } 13569 13570 attr->size = size; 13571 13572 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3) 13573 return -EINVAL; 13574 13575 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1)) 13576 return -EINVAL; 13577 13578 if (attr->read_format & ~(PERF_FORMAT_MAX-1)) 13579 return -EINVAL; 13580 13581 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) { 13582 u64 mask = attr->branch_sample_type; 13583 13584 /* only using defined bits */ 13585 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1)) 13586 return -EINVAL; 13587 13588 /* at least one branch bit must be set */ 13589 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL)) 13590 return -EINVAL; 13591 13592 /* propagate priv level, when not set for branch */ 13593 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) { 13594 13595 /* exclude_kernel checked on syscall entry */ 13596 if (!attr->exclude_kernel) 13597 mask |= PERF_SAMPLE_BRANCH_KERNEL; 13598 13599 if (!attr->exclude_user) 13600 mask |= PERF_SAMPLE_BRANCH_USER; 13601 13602 if (!attr->exclude_hv) 13603 mask |= PERF_SAMPLE_BRANCH_HV; 13604 /* 13605 * adjust user setting (for HW filter setup) 13606 */ 13607 attr->branch_sample_type = mask; 13608 } 13609 /* privileged levels capture (kernel, hv): check permissions */ 13610 if (mask & PERF_SAMPLE_BRANCH_PERM_PLM) { 13611 ret = perf_allow_kernel(); 13612 if (ret) 13613 return ret; 13614 } 13615 } 13616 13617 if (attr->sample_type & PERF_SAMPLE_REGS_USER) { 13618 ret = perf_reg_validate(attr->sample_regs_user); 13619 if (ret) 13620 return ret; 13621 } 13622 13623 if (attr->sample_type & PERF_SAMPLE_STACK_USER) { 13624 if (!arch_perf_have_user_stack_dump()) 13625 return -ENOSYS; 13626 13627 /* 13628 * We have __u32 type for the size, but so far 13629 * we can only use __u16 as maximum due to the 13630 * __u16 sample size limit. 13631 */ 13632 if (attr->sample_stack_user >= USHRT_MAX) 13633 return -EINVAL; 13634 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64))) 13635 return -EINVAL; 13636 } 13637 13638 if (!attr->sample_max_stack) 13639 attr->sample_max_stack = sysctl_perf_event_max_stack; 13640 13641 if (attr->sample_type & PERF_SAMPLE_REGS_INTR) 13642 ret = perf_reg_validate(attr->sample_regs_intr); 13643 13644 #ifndef CONFIG_CGROUP_PERF 13645 if (attr->sample_type & PERF_SAMPLE_CGROUP) 13646 return -EINVAL; 13647 #endif 13648 if ((attr->sample_type & PERF_SAMPLE_WEIGHT) && 13649 (attr->sample_type & PERF_SAMPLE_WEIGHT_STRUCT)) 13650 return -EINVAL; 13651 13652 if (!attr->inherit && attr->inherit_thread) 13653 return -EINVAL; 13654 13655 if (attr->remove_on_exec && attr->enable_on_exec) 13656 return -EINVAL; 13657 13658 if (attr->sigtrap && !attr->remove_on_exec) 13659 return -EINVAL; 13660 13661 out: 13662 return ret; 13663 13664 err_size: 13665 put_user(sizeof(*attr), &uattr->size); 13666 ret = -E2BIG; 13667 goto out; 13668 } 13669 13670 static void mutex_lock_double(struct mutex *a, struct mutex *b) 13671 { 13672 if (b < a) 13673 swap(a, b); 13674 13675 mutex_lock(a); 13676 mutex_lock_nested(b, SINGLE_DEPTH_NESTING); 13677 } 13678 13679 static int 13680 perf_event_set_output(struct perf_event *event, struct perf_event *output_event) 13681 { 13682 struct perf_buffer *rb = NULL; 13683 int ret = -EINVAL; 13684 13685 if (!output_event) { 13686 mutex_lock(&event->mmap_mutex); 13687 goto set; 13688 } 13689 13690 /* don't allow circular references */ 13691 if (event == output_event) 13692 goto out; 13693 13694 /* 13695 * Don't allow cross-cpu buffers 13696 */ 13697 if (output_event->cpu != event->cpu) 13698 goto out; 13699 13700 /* 13701 * If its not a per-cpu rb, it must be the same task. 13702 */ 13703 if (output_event->cpu == -1 && output_event->hw.target != event->hw.target) 13704 goto out; 13705 13706 /* 13707 * Mixing clocks in the same buffer is trouble you don't need. 13708 */ 13709 if (output_event->clock != event->clock) 13710 goto out; 13711 13712 /* 13713 * Either writing ring buffer from beginning or from end. 13714 * Mixing is not allowed. 13715 */ 13716 if (is_write_backward(output_event) != is_write_backward(event)) 13717 goto out; 13718 13719 /* 13720 * If both events generate aux data, they must be on the same PMU 13721 */ 13722 if (has_aux(event) && has_aux(output_event) && 13723 event->pmu != output_event->pmu) 13724 goto out; 13725 13726 /* 13727 * Hold both mmap_mutex to serialize against perf_mmap_close(). Since 13728 * output_event is already on rb->event_list, and the list iteration 13729 * restarts after every removal, it is guaranteed this new event is 13730 * observed *OR* if output_event is already removed, it's guaranteed we 13731 * observe !rb->mmap_count. 13732 */ 13733 mutex_lock_double(&event->mmap_mutex, &output_event->mmap_mutex); 13734 set: 13735 /* Can't redirect output if we've got an active mmap() */ 13736 if (refcount_read(&event->mmap_count)) 13737 goto unlock; 13738 13739 if (output_event) { 13740 if (output_event->state <= PERF_EVENT_STATE_REVOKED) 13741 goto unlock; 13742 13743 /* get the rb we want to redirect to */ 13744 rb = ring_buffer_get(output_event); 13745 if (!rb) 13746 goto unlock; 13747 13748 /* did we race against perf_mmap_close() */ 13749 if (!refcount_read(&rb->mmap_count)) { 13750 ring_buffer_put(rb); 13751 goto unlock; 13752 } 13753 } 13754 13755 ring_buffer_attach(event, rb); 13756 13757 ret = 0; 13758 unlock: 13759 mutex_unlock(&event->mmap_mutex); 13760 if (output_event) 13761 mutex_unlock(&output_event->mmap_mutex); 13762 13763 out: 13764 return ret; 13765 } 13766 13767 static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id) 13768 { 13769 bool nmi_safe = false; 13770 13771 switch (clk_id) { 13772 case CLOCK_MONOTONIC: 13773 event->clock = &ktime_get_mono_fast_ns; 13774 nmi_safe = true; 13775 break; 13776 13777 case CLOCK_MONOTONIC_RAW: 13778 event->clock = &ktime_get_raw_fast_ns; 13779 nmi_safe = true; 13780 break; 13781 13782 case CLOCK_REALTIME: 13783 event->clock = &ktime_get_real_ns; 13784 break; 13785 13786 case CLOCK_BOOTTIME: 13787 event->clock = &ktime_get_boottime_ns; 13788 break; 13789 13790 case CLOCK_TAI: 13791 event->clock = &ktime_get_clocktai_ns; 13792 break; 13793 13794 default: 13795 return -EINVAL; 13796 } 13797 13798 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI)) 13799 return -EINVAL; 13800 13801 return 0; 13802 } 13803 13804 static bool 13805 perf_check_permission(struct perf_event_attr *attr, struct task_struct *task) 13806 { 13807 unsigned int ptrace_mode = PTRACE_MODE_READ_REALCREDS; 13808 bool is_capable = perfmon_capable(); 13809 13810 if (attr->sigtrap) { 13811 /* 13812 * perf_event_attr::sigtrap sends signals to the other task. 13813 * Require the current task to also have CAP_KILL. 13814 */ 13815 rcu_read_lock(); 13816 is_capable &= ns_capable(__task_cred(task)->user_ns, CAP_KILL); 13817 rcu_read_unlock(); 13818 13819 /* 13820 * If the required capabilities aren't available, checks for 13821 * ptrace permissions: upgrade to ATTACH, since sending signals 13822 * can effectively change the target task. 13823 */ 13824 ptrace_mode = PTRACE_MODE_ATTACH_REALCREDS; 13825 } 13826 13827 /* 13828 * Preserve ptrace permission check for backwards compatibility. The 13829 * ptrace check also includes checks that the current task and other 13830 * task have matching uids, and is therefore not done here explicitly. 13831 */ 13832 return is_capable || ptrace_may_access(task, ptrace_mode); 13833 } 13834 13835 /** 13836 * sys_perf_event_open - open a performance event, associate it to a task/cpu 13837 * 13838 * @attr_uptr: event_id type attributes for monitoring/sampling 13839 * @pid: target pid 13840 * @cpu: target cpu 13841 * @group_fd: group leader event fd 13842 * @flags: perf event open flags 13843 */ 13844 SYSCALL_DEFINE5(perf_event_open, 13845 struct perf_event_attr __user *, attr_uptr, 13846 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags) 13847 { 13848 struct perf_event *group_leader = NULL, *output_event = NULL; 13849 struct perf_event_pmu_context *pmu_ctx; 13850 struct perf_event *event, *sibling; 13851 struct perf_event_attr attr; 13852 struct perf_event_context *ctx; 13853 struct file *event_file = NULL; 13854 struct task_struct *task = NULL; 13855 struct pmu *pmu; 13856 int event_fd; 13857 int move_group = 0; 13858 int err; 13859 int f_flags = O_RDWR; 13860 int cgroup_fd = -1; 13861 13862 /* for future expandability... */ 13863 if (flags & ~PERF_FLAG_ALL) 13864 return -EINVAL; 13865 13866 err = perf_copy_attr(attr_uptr, &attr); 13867 if (err) 13868 return err; 13869 13870 /* Do we allow access to perf_event_open(2) ? */ 13871 err = security_perf_event_open(PERF_SECURITY_OPEN); 13872 if (err) 13873 return err; 13874 13875 if (!attr.exclude_kernel) { 13876 err = perf_allow_kernel(); 13877 if (err) 13878 return err; 13879 } 13880 13881 if (attr.namespaces) { 13882 if (!perfmon_capable()) 13883 return -EACCES; 13884 } 13885 13886 if (attr.freq) { 13887 if (attr.sample_freq > sysctl_perf_event_sample_rate) 13888 return -EINVAL; 13889 } else { 13890 if (attr.sample_period & (1ULL << 63)) 13891 return -EINVAL; 13892 } 13893 13894 /* Only privileged users can get physical addresses */ 13895 if ((attr.sample_type & PERF_SAMPLE_PHYS_ADDR)) { 13896 err = perf_allow_kernel(); 13897 if (err) 13898 return err; 13899 } 13900 13901 /* REGS_INTR can leak data, lockdown must prevent this */ 13902 if (attr.sample_type & PERF_SAMPLE_REGS_INTR) { 13903 err = security_locked_down(LOCKDOWN_PERF); 13904 if (err) 13905 return err; 13906 } 13907 13908 /* 13909 * In cgroup mode, the pid argument is used to pass the fd 13910 * opened to the cgroup directory in cgroupfs. The cpu argument 13911 * designates the cpu on which to monitor threads from that 13912 * cgroup. 13913 */ 13914 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1)) 13915 return -EINVAL; 13916 13917 if (flags & PERF_FLAG_FD_CLOEXEC) 13918 f_flags |= O_CLOEXEC; 13919 13920 event_fd = get_unused_fd_flags(f_flags); 13921 if (event_fd < 0) 13922 return event_fd; 13923 13924 /* 13925 * Event creation should be under SRCU, see perf_pmu_unregister(). 13926 */ 13927 guard(srcu)(&pmus_srcu); 13928 13929 CLASS(fd, group)(group_fd); // group_fd == -1 => empty 13930 if (group_fd != -1) { 13931 if (!is_perf_file(group)) { 13932 err = -EBADF; 13933 goto err_fd; 13934 } 13935 group_leader = fd_file(group)->private_data; 13936 if (group_leader->state <= PERF_EVENT_STATE_REVOKED) { 13937 err = -ENODEV; 13938 goto err_fd; 13939 } 13940 if (flags & PERF_FLAG_FD_OUTPUT) 13941 output_event = group_leader; 13942 if (flags & PERF_FLAG_FD_NO_GROUP) 13943 group_leader = NULL; 13944 } 13945 13946 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) { 13947 task = find_lively_task_by_vpid(pid); 13948 if (IS_ERR(task)) { 13949 err = PTR_ERR(task); 13950 goto err_fd; 13951 } 13952 } 13953 13954 if (task && group_leader && 13955 group_leader->attr.inherit != attr.inherit) { 13956 err = -EINVAL; 13957 goto err_task; 13958 } 13959 13960 if (flags & PERF_FLAG_PID_CGROUP) 13961 cgroup_fd = pid; 13962 13963 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL, 13964 NULL, NULL, cgroup_fd); 13965 if (IS_ERR(event)) { 13966 err = PTR_ERR(event); 13967 goto err_task; 13968 } 13969 13970 if (is_sampling_event(event)) { 13971 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) { 13972 err = -EOPNOTSUPP; 13973 goto err_alloc; 13974 } 13975 } 13976 13977 /* 13978 * Special case software events and allow them to be part of 13979 * any hardware group. 13980 */ 13981 pmu = event->pmu; 13982 13983 if (attr.use_clockid) { 13984 err = perf_event_set_clock(event, attr.clockid); 13985 if (err) 13986 goto err_alloc; 13987 } 13988 13989 if (pmu->task_ctx_nr == perf_sw_context) 13990 event->event_caps |= PERF_EV_CAP_SOFTWARE; 13991 13992 if (task) { 13993 err = down_read_interruptible(&task->signal->exec_update_lock); 13994 if (err) 13995 goto err_alloc; 13996 13997 /* 13998 * We must hold exec_update_lock across this and any potential 13999 * perf_install_in_context() call for this new event to 14000 * serialize against exec() altering our credentials (and the 14001 * perf_event_exit_task() that could imply). 14002 */ 14003 err = -EACCES; 14004 if (!perf_check_permission(&attr, task)) 14005 goto err_cred; 14006 } 14007 14008 /* 14009 * Get the target context (task or percpu): 14010 */ 14011 ctx = find_get_context(task, event); 14012 if (IS_ERR(ctx)) { 14013 err = PTR_ERR(ctx); 14014 goto err_cred; 14015 } 14016 14017 mutex_lock(&ctx->mutex); 14018 14019 if (ctx->task == TASK_TOMBSTONE) { 14020 err = -ESRCH; 14021 goto err_locked; 14022 } 14023 14024 if (!task) { 14025 /* 14026 * Check if the @cpu we're creating an event for is online. 14027 * 14028 * We use the perf_cpu_context::ctx::mutex to serialize against 14029 * the hotplug notifiers. See perf_event_{init,exit}_cpu(). 14030 */ 14031 struct perf_cpu_context *cpuctx = per_cpu_ptr(&perf_cpu_context, event->cpu); 14032 14033 if (!cpuctx->online) { 14034 err = -ENODEV; 14035 goto err_locked; 14036 } 14037 } 14038 14039 if (group_leader) { 14040 err = -EINVAL; 14041 14042 /* 14043 * Do not allow a recursive hierarchy (this new sibling 14044 * becoming part of another group-sibling): 14045 */ 14046 if (group_leader->group_leader != group_leader) 14047 goto err_locked; 14048 14049 /* All events in a group should have the same clock */ 14050 if (group_leader->clock != event->clock) 14051 goto err_locked; 14052 14053 /* 14054 * Make sure we're both events for the same CPU; 14055 * grouping events for different CPUs is broken; since 14056 * you can never concurrently schedule them anyhow. 14057 */ 14058 if (group_leader->cpu != event->cpu) 14059 goto err_locked; 14060 14061 /* 14062 * Make sure we're both on the same context; either task or cpu. 14063 */ 14064 if (group_leader->ctx != ctx) 14065 goto err_locked; 14066 14067 /* 14068 * Only a group leader can be exclusive or pinned 14069 */ 14070 if (attr.exclusive || attr.pinned) 14071 goto err_locked; 14072 14073 if (is_software_event(event) && 14074 !in_software_context(group_leader)) { 14075 /* 14076 * If the event is a sw event, but the group_leader 14077 * is on hw context. 14078 * 14079 * Allow the addition of software events to hw 14080 * groups, this is safe because software events 14081 * never fail to schedule. 14082 * 14083 * Note the comment that goes with struct 14084 * perf_event_pmu_context. 14085 */ 14086 pmu = group_leader->pmu_ctx->pmu; 14087 } else if (!is_software_event(event)) { 14088 if (is_software_event(group_leader) && 14089 (group_leader->group_caps & PERF_EV_CAP_SOFTWARE)) { 14090 /* 14091 * In case the group is a pure software group, and we 14092 * try to add a hardware event, move the whole group to 14093 * the hardware context. 14094 */ 14095 move_group = 1; 14096 } 14097 14098 /* Don't allow group of multiple hw events from different pmus */ 14099 if (!in_software_context(group_leader) && 14100 group_leader->pmu_ctx->pmu != pmu) 14101 goto err_locked; 14102 } 14103 } 14104 14105 /* 14106 * Now that we're certain of the pmu; find the pmu_ctx. 14107 */ 14108 pmu_ctx = find_get_pmu_context(pmu, ctx, event); 14109 if (IS_ERR(pmu_ctx)) { 14110 err = PTR_ERR(pmu_ctx); 14111 goto err_locked; 14112 } 14113 event->pmu_ctx = pmu_ctx; 14114 14115 if (output_event) { 14116 err = perf_event_set_output(event, output_event); 14117 if (err) 14118 goto err_context; 14119 } 14120 14121 if (!perf_event_validate_size(event)) { 14122 err = -E2BIG; 14123 goto err_context; 14124 } 14125 14126 if (perf_need_aux_event(event) && !perf_get_aux_event(event, group_leader)) { 14127 err = -EINVAL; 14128 goto err_context; 14129 } 14130 14131 /* 14132 * Must be under the same ctx::mutex as perf_install_in_context(), 14133 * because we need to serialize with concurrent event creation. 14134 */ 14135 if (!exclusive_event_installable(event, ctx)) { 14136 err = -EBUSY; 14137 goto err_context; 14138 } 14139 14140 WARN_ON_ONCE(ctx->parent_ctx); 14141 14142 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, f_flags); 14143 if (IS_ERR(event_file)) { 14144 err = PTR_ERR(event_file); 14145 event_file = NULL; 14146 goto err_context; 14147 } 14148 14149 /* 14150 * This is the point on no return; we cannot fail hereafter. This is 14151 * where we start modifying current state. 14152 */ 14153 14154 if (move_group) { 14155 perf_remove_from_context(group_leader, 0); 14156 put_pmu_ctx(group_leader->pmu_ctx); 14157 14158 for_each_sibling_event(sibling, group_leader) { 14159 perf_remove_from_context(sibling, 0); 14160 put_pmu_ctx(sibling->pmu_ctx); 14161 } 14162 14163 /* 14164 * Install the group siblings before the group leader. 14165 * 14166 * Because a group leader will try and install the entire group 14167 * (through the sibling list, which is still in-tact), we can 14168 * end up with siblings installed in the wrong context. 14169 * 14170 * By installing siblings first we NO-OP because they're not 14171 * reachable through the group lists. 14172 */ 14173 for_each_sibling_event(sibling, group_leader) { 14174 sibling->pmu_ctx = pmu_ctx; 14175 get_pmu_ctx(pmu_ctx); 14176 perf_event__state_init(sibling); 14177 perf_install_in_context(ctx, sibling, sibling->cpu); 14178 } 14179 14180 /* 14181 * Removing from the context ends up with disabled 14182 * event. What we want here is event in the initial 14183 * startup state, ready to be add into new context. 14184 */ 14185 group_leader->pmu_ctx = pmu_ctx; 14186 get_pmu_ctx(pmu_ctx); 14187 perf_event__state_init(group_leader); 14188 perf_install_in_context(ctx, group_leader, group_leader->cpu); 14189 } 14190 14191 /* 14192 * Precalculate sample_data sizes; do while holding ctx::mutex such 14193 * that we're serialized against further additions and before 14194 * perf_install_in_context() which is the point the event is active and 14195 * can use these values. 14196 */ 14197 perf_event__header_size(event); 14198 perf_event__id_header_size(event); 14199 14200 event->owner = current; 14201 14202 perf_install_in_context(ctx, event, event->cpu); 14203 perf_unpin_context(ctx); 14204 14205 mutex_unlock(&ctx->mutex); 14206 14207 if (task) { 14208 up_read(&task->signal->exec_update_lock); 14209 put_task_struct(task); 14210 } 14211 14212 mutex_lock(¤t->perf_event_mutex); 14213 list_add_tail(&event->owner_entry, ¤t->perf_event_list); 14214 mutex_unlock(¤t->perf_event_mutex); 14215 14216 /* 14217 * File reference in group guarantees that group_leader has been 14218 * kept alive until we place the new event on the sibling_list. 14219 * This ensures destruction of the group leader will find 14220 * the pointer to itself in perf_group_detach(). 14221 */ 14222 fd_install(event_fd, event_file); 14223 return event_fd; 14224 14225 err_context: 14226 put_pmu_ctx(event->pmu_ctx); 14227 event->pmu_ctx = NULL; /* _free_event() */ 14228 err_locked: 14229 mutex_unlock(&ctx->mutex); 14230 perf_unpin_context(ctx); 14231 put_ctx(ctx); 14232 err_cred: 14233 if (task) 14234 up_read(&task->signal->exec_update_lock); 14235 err_alloc: 14236 put_event(event); 14237 err_task: 14238 if (task) 14239 put_task_struct(task); 14240 err_fd: 14241 put_unused_fd(event_fd); 14242 return err; 14243 } 14244 14245 /** 14246 * perf_event_create_kernel_counter 14247 * 14248 * @attr: attributes of the counter to create 14249 * @cpu: cpu in which the counter is bound 14250 * @task: task to profile (NULL for percpu) 14251 * @overflow_handler: callback to trigger when we hit the event 14252 * @context: context data could be used in overflow_handler callback 14253 */ 14254 struct perf_event * 14255 perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu, 14256 struct task_struct *task, 14257 perf_overflow_handler_t overflow_handler, 14258 void *context) 14259 { 14260 struct perf_event_pmu_context *pmu_ctx; 14261 struct perf_event_context *ctx; 14262 struct perf_event *event; 14263 struct pmu *pmu; 14264 int err; 14265 14266 /* 14267 * Grouping is not supported for kernel events, neither is 'AUX', 14268 * make sure the caller's intentions are adjusted. 14269 */ 14270 if (attr->aux_output || attr->aux_action) 14271 return ERR_PTR(-EINVAL); 14272 14273 /* 14274 * Event creation should be under SRCU, see perf_pmu_unregister(). 14275 */ 14276 guard(srcu)(&pmus_srcu); 14277 14278 event = perf_event_alloc(attr, cpu, task, NULL, NULL, 14279 overflow_handler, context, -1); 14280 if (IS_ERR(event)) { 14281 err = PTR_ERR(event); 14282 goto err; 14283 } 14284 14285 /* Mark owner so we could distinguish it from user events. */ 14286 event->owner = TASK_TOMBSTONE; 14287 pmu = event->pmu; 14288 14289 if (pmu->task_ctx_nr == perf_sw_context) 14290 event->event_caps |= PERF_EV_CAP_SOFTWARE; 14291 14292 /* 14293 * Get the target context (task or percpu): 14294 */ 14295 ctx = find_get_context(task, event); 14296 if (IS_ERR(ctx)) { 14297 err = PTR_ERR(ctx); 14298 goto err_alloc; 14299 } 14300 14301 WARN_ON_ONCE(ctx->parent_ctx); 14302 mutex_lock(&ctx->mutex); 14303 if (ctx->task == TASK_TOMBSTONE) { 14304 err = -ESRCH; 14305 goto err_unlock; 14306 } 14307 14308 pmu_ctx = find_get_pmu_context(pmu, ctx, event); 14309 if (IS_ERR(pmu_ctx)) { 14310 err = PTR_ERR(pmu_ctx); 14311 goto err_unlock; 14312 } 14313 event->pmu_ctx = pmu_ctx; 14314 14315 if (!task) { 14316 /* 14317 * Check if the @cpu we're creating an event for is online. 14318 * 14319 * We use the perf_cpu_context::ctx::mutex to serialize against 14320 * the hotplug notifiers. See perf_event_{init,exit}_cpu(). 14321 */ 14322 struct perf_cpu_context *cpuctx = 14323 container_of(ctx, struct perf_cpu_context, ctx); 14324 if (!cpuctx->online) { 14325 err = -ENODEV; 14326 goto err_pmu_ctx; 14327 } 14328 } 14329 14330 if (!exclusive_event_installable(event, ctx)) { 14331 err = -EBUSY; 14332 goto err_pmu_ctx; 14333 } 14334 14335 perf_install_in_context(ctx, event, event->cpu); 14336 perf_unpin_context(ctx); 14337 mutex_unlock(&ctx->mutex); 14338 14339 return event; 14340 14341 err_pmu_ctx: 14342 put_pmu_ctx(pmu_ctx); 14343 event->pmu_ctx = NULL; /* _free_event() */ 14344 err_unlock: 14345 mutex_unlock(&ctx->mutex); 14346 perf_unpin_context(ctx); 14347 put_ctx(ctx); 14348 err_alloc: 14349 put_event(event); 14350 err: 14351 return ERR_PTR(err); 14352 } 14353 EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter); 14354 14355 static void __perf_pmu_remove(struct perf_event_context *ctx, 14356 int cpu, struct pmu *pmu, 14357 struct perf_event_groups *groups, 14358 struct list_head *events) 14359 { 14360 struct perf_event *event, *sibling; 14361 14362 perf_event_groups_for_cpu_pmu(event, groups, cpu, pmu) { 14363 perf_remove_from_context(event, 0); 14364 put_pmu_ctx(event->pmu_ctx); 14365 list_add(&event->migrate_entry, events); 14366 14367 for_each_sibling_event(sibling, event) { 14368 perf_remove_from_context(sibling, 0); 14369 put_pmu_ctx(sibling->pmu_ctx); 14370 list_add(&sibling->migrate_entry, events); 14371 } 14372 } 14373 } 14374 14375 static void __perf_pmu_install_event(struct pmu *pmu, 14376 struct perf_event_context *ctx, 14377 int cpu, struct perf_event *event) 14378 { 14379 struct perf_event_pmu_context *epc; 14380 struct perf_event_context *old_ctx = event->ctx; 14381 14382 get_ctx(ctx); /* normally find_get_context() */ 14383 14384 event->cpu = cpu; 14385 epc = find_get_pmu_context(pmu, ctx, event); 14386 event->pmu_ctx = epc; 14387 14388 if (event->state >= PERF_EVENT_STATE_OFF) 14389 event->state = PERF_EVENT_STATE_INACTIVE; 14390 perf_install_in_context(ctx, event, cpu); 14391 14392 /* 14393 * Now that event->ctx is updated and visible, put the old ctx. 14394 */ 14395 put_ctx(old_ctx); 14396 } 14397 14398 static void __perf_pmu_install(struct perf_event_context *ctx, 14399 int cpu, struct pmu *pmu, struct list_head *events) 14400 { 14401 struct perf_event *event, *tmp; 14402 14403 /* 14404 * Re-instate events in 2 passes. 14405 * 14406 * Skip over group leaders and only install siblings on this first 14407 * pass, siblings will not get enabled without a leader, however a 14408 * leader will enable its siblings, even if those are still on the old 14409 * context. 14410 */ 14411 list_for_each_entry_safe(event, tmp, events, migrate_entry) { 14412 if (event->group_leader == event) 14413 continue; 14414 14415 list_del(&event->migrate_entry); 14416 __perf_pmu_install_event(pmu, ctx, cpu, event); 14417 } 14418 14419 /* 14420 * Once all the siblings are setup properly, install the group leaders 14421 * to make it go. 14422 */ 14423 list_for_each_entry_safe(event, tmp, events, migrate_entry) { 14424 list_del(&event->migrate_entry); 14425 __perf_pmu_install_event(pmu, ctx, cpu, event); 14426 } 14427 } 14428 14429 void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu) 14430 { 14431 struct perf_event_context *src_ctx, *dst_ctx; 14432 LIST_HEAD(events); 14433 14434 /* 14435 * Since per-cpu context is persistent, no need to grab an extra 14436 * reference. 14437 */ 14438 src_ctx = &per_cpu_ptr(&perf_cpu_context, src_cpu)->ctx; 14439 dst_ctx = &per_cpu_ptr(&perf_cpu_context, dst_cpu)->ctx; 14440 14441 /* 14442 * See perf_event_ctx_lock() for comments on the details 14443 * of swizzling perf_event::ctx. 14444 */ 14445 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex); 14446 14447 __perf_pmu_remove(src_ctx, src_cpu, pmu, &src_ctx->pinned_groups, &events); 14448 __perf_pmu_remove(src_ctx, src_cpu, pmu, &src_ctx->flexible_groups, &events); 14449 14450 if (!list_empty(&events)) { 14451 /* 14452 * Wait for the events to quiesce before re-instating them. 14453 */ 14454 synchronize_rcu(); 14455 14456 __perf_pmu_install(dst_ctx, dst_cpu, pmu, &events); 14457 } 14458 14459 mutex_unlock(&dst_ctx->mutex); 14460 mutex_unlock(&src_ctx->mutex); 14461 } 14462 EXPORT_SYMBOL_GPL(perf_pmu_migrate_context); 14463 14464 static void sync_child_event(struct perf_event *child_event, 14465 struct task_struct *task) 14466 { 14467 struct perf_event *parent_event = child_event->parent; 14468 u64 child_val; 14469 14470 if (child_event->attr.inherit_stat) { 14471 if (task && task != TASK_TOMBSTONE) 14472 perf_event_read_event(child_event, task); 14473 } 14474 14475 child_val = perf_event_count(child_event, false); 14476 14477 /* 14478 * Add back the child's count to the parent's count: 14479 */ 14480 atomic64_add(child_val, &parent_event->child_count); 14481 atomic64_add(child_event->total_time_enabled, 14482 &parent_event->child_total_time_enabled); 14483 atomic64_add(child_event->total_time_running, 14484 &parent_event->child_total_time_running); 14485 } 14486 14487 static void 14488 perf_event_exit_event(struct perf_event *event, 14489 struct perf_event_context *ctx, 14490 struct task_struct *task, 14491 bool revoke) 14492 { 14493 struct perf_event *parent_event = event->parent; 14494 unsigned long detach_flags = DETACH_EXIT; 14495 unsigned int attach_state; 14496 14497 if (parent_event) { 14498 /* 14499 * Do not destroy the 'original' grouping; because of the 14500 * context switch optimization the original events could've 14501 * ended up in a random child task. 14502 * 14503 * If we were to destroy the original group, all group related 14504 * operations would cease to function properly after this 14505 * random child dies. 14506 * 14507 * Do destroy all inherited groups, we don't care about those 14508 * and being thorough is better. 14509 */ 14510 detach_flags |= DETACH_GROUP | DETACH_CHILD; 14511 mutex_lock(&parent_event->child_mutex); 14512 /* PERF_ATTACH_ITRACE might be set concurrently */ 14513 attach_state = READ_ONCE(event->attach_state); 14514 14515 if (attach_state & PERF_ATTACH_CHILD) 14516 sync_child_event(event, task); 14517 } 14518 14519 if (revoke) 14520 detach_flags |= DETACH_GROUP | DETACH_REVOKE; 14521 14522 perf_remove_from_context(event, detach_flags); 14523 /* 14524 * Child events can be freed. 14525 */ 14526 if (parent_event) { 14527 mutex_unlock(&parent_event->child_mutex); 14528 14529 /* 14530 * Match the refcount initialization. Make sure it doesn't happen 14531 * twice if pmu_detach_event() calls it on an already exited task. 14532 */ 14533 if (attach_state & PERF_ATTACH_CHILD) { 14534 /* 14535 * Kick perf_poll() for is_event_hup(); 14536 */ 14537 perf_event_wakeup(parent_event); 14538 /* 14539 * pmu_detach_event() will have an extra refcount. 14540 * perf_pending_task() might have one too. 14541 */ 14542 put_event(event); 14543 } 14544 14545 return; 14546 } 14547 14548 /* 14549 * Parent events are governed by their filedesc, retain them. 14550 */ 14551 perf_event_wakeup(event); 14552 } 14553 14554 static void perf_event_exit_task_context(struct task_struct *task, bool exit) 14555 { 14556 struct perf_event_context *ctx, *clone_ctx = NULL; 14557 struct perf_event *child_event, *next; 14558 14559 ctx = perf_pin_task_context(task); 14560 if (!ctx) 14561 return; 14562 14563 /* 14564 * In order to reduce the amount of tricky in ctx tear-down, we hold 14565 * ctx::mutex over the entire thing. This serializes against almost 14566 * everything that wants to access the ctx. 14567 * 14568 * The exception is sys_perf_event_open() / 14569 * perf_event_create_kernel_count() which does find_get_context() 14570 * without ctx::mutex (it cannot because of the move_group double mutex 14571 * lock thing). See the comments in perf_install_in_context(). 14572 */ 14573 mutex_lock(&ctx->mutex); 14574 14575 /* 14576 * In a single ctx::lock section, de-schedule the events and detach the 14577 * context from the task such that we cannot ever get it scheduled back 14578 * in. 14579 */ 14580 raw_spin_lock_irq(&ctx->lock); 14581 if (exit) 14582 task_ctx_sched_out(ctx, NULL, EVENT_ALL); 14583 14584 /* 14585 * Now that the context is inactive, destroy the task <-> ctx relation 14586 * and mark the context dead. 14587 */ 14588 RCU_INIT_POINTER(task->perf_event_ctxp, NULL); 14589 put_ctx(ctx); /* cannot be last */ 14590 WRITE_ONCE(ctx->task, TASK_TOMBSTONE); 14591 put_task_struct(task); /* cannot be last */ 14592 14593 clone_ctx = unclone_ctx(ctx); 14594 raw_spin_unlock_irq(&ctx->lock); 14595 14596 if (clone_ctx) 14597 put_ctx(clone_ctx); 14598 14599 /* 14600 * Report the task dead after unscheduling the events so that we 14601 * won't get any samples after PERF_RECORD_EXIT. We can however still 14602 * get a few PERF_RECORD_READ events. 14603 */ 14604 if (exit) 14605 perf_event_task(task, ctx, 0); 14606 14607 list_for_each_entry_safe(child_event, next, &ctx->event_list, event_entry) 14608 perf_event_exit_event(child_event, ctx, exit ? task : NULL, false); 14609 14610 mutex_unlock(&ctx->mutex); 14611 14612 if (!exit) { 14613 /* 14614 * perf_event_release_kernel() could still have a reference on 14615 * this context. In that case we must wait for these events to 14616 * have been freed (in particular all their references to this 14617 * task must've been dropped). 14618 * 14619 * Without this copy_process() will unconditionally free this 14620 * task (irrespective of its reference count) and 14621 * _free_event()'s put_task_struct(event->hw.target) will be a 14622 * use-after-free. 14623 * 14624 * Wait for all events to drop their context reference. 14625 */ 14626 wait_var_event(&ctx->refcount, 14627 refcount_read(&ctx->refcount) == 1); 14628 } 14629 put_ctx(ctx); 14630 } 14631 14632 /* 14633 * When a task exits, feed back event values to parent events. 14634 * 14635 * Can be called with exec_update_lock held when called from 14636 * setup_new_exec(). 14637 */ 14638 void perf_event_exit_task(struct task_struct *task) 14639 { 14640 struct perf_event *event, *tmp; 14641 14642 WARN_ON_ONCE(task != current); 14643 14644 mutex_lock(&task->perf_event_mutex); 14645 list_for_each_entry_safe(event, tmp, &task->perf_event_list, 14646 owner_entry) { 14647 list_del_init(&event->owner_entry); 14648 14649 /* 14650 * Ensure the list deletion is visible before we clear 14651 * the owner, closes a race against perf_release() where 14652 * we need to serialize on the owner->perf_event_mutex. 14653 */ 14654 smp_store_release(&event->owner, NULL); 14655 } 14656 mutex_unlock(&task->perf_event_mutex); 14657 14658 perf_event_exit_task_context(task, true); 14659 14660 /* 14661 * The perf_event_exit_task_context calls perf_event_task 14662 * with task's task_ctx, which generates EXIT events for 14663 * task contexts and sets task->perf_event_ctxp[] to NULL. 14664 * At this point we need to send EXIT events to cpu contexts. 14665 */ 14666 perf_event_task(task, NULL, 0); 14667 14668 /* 14669 * Detach the perf_ctx_data for the system-wide event. 14670 * 14671 * Done without holding global_ctx_data_rwsem; typically 14672 * attach_global_ctx_data() will skip over this task, but otherwise 14673 * attach_task_ctx_data() will observe PF_EXITING. 14674 */ 14675 detach_task_ctx_data(task); 14676 } 14677 14678 /* 14679 * Free a context as created by inheritance by perf_event_init_task() below, 14680 * used by fork() in case of fail. 14681 * 14682 * Even though the task has never lived, the context and events have been 14683 * exposed through the child_list, so we must take care tearing it all down. 14684 */ 14685 void perf_event_free_task(struct task_struct *task) 14686 { 14687 perf_event_exit_task_context(task, false); 14688 } 14689 14690 void perf_event_delayed_put(struct task_struct *task) 14691 { 14692 WARN_ON_ONCE(task->perf_event_ctxp); 14693 } 14694 14695 struct file *perf_event_get(unsigned int fd) 14696 { 14697 struct file *file = fget(fd); 14698 if (!file) 14699 return ERR_PTR(-EBADF); 14700 14701 if (file->f_op != &perf_fops) { 14702 fput(file); 14703 return ERR_PTR(-EBADF); 14704 } 14705 14706 return file; 14707 } 14708 14709 const struct perf_event *perf_get_event(struct file *file) 14710 { 14711 if (file->f_op != &perf_fops) 14712 return ERR_PTR(-EINVAL); 14713 14714 return file->private_data; 14715 } 14716 14717 const struct perf_event_attr *perf_event_attrs(struct perf_event *event) 14718 { 14719 if (!event) 14720 return ERR_PTR(-EINVAL); 14721 14722 return &event->attr; 14723 } 14724 14725 int perf_allow_kernel(void) 14726 { 14727 if (sysctl_perf_event_paranoid > 1 && !perfmon_capable()) 14728 return -EACCES; 14729 14730 return security_perf_event_open(PERF_SECURITY_KERNEL); 14731 } 14732 EXPORT_SYMBOL_GPL(perf_allow_kernel); 14733 14734 /* 14735 * Inherit an event from parent task to child task. 14736 * 14737 * Returns: 14738 * - valid pointer on success 14739 * - NULL for orphaned events 14740 * - IS_ERR() on error 14741 */ 14742 static struct perf_event * 14743 inherit_event(struct perf_event *parent_event, 14744 struct task_struct *parent, 14745 struct perf_event_context *parent_ctx, 14746 struct task_struct *child, 14747 struct perf_event *group_leader, 14748 struct perf_event_context *child_ctx) 14749 { 14750 enum perf_event_state parent_state = parent_event->state; 14751 struct perf_event_pmu_context *pmu_ctx; 14752 struct perf_event *child_event; 14753 unsigned long flags; 14754 14755 /* 14756 * Instead of creating recursive hierarchies of events, 14757 * we link inherited events back to the original parent, 14758 * which has a filp for sure, which we use as the reference 14759 * count: 14760 */ 14761 if (parent_event->parent) 14762 parent_event = parent_event->parent; 14763 14764 if (parent_event->state <= PERF_EVENT_STATE_REVOKED) 14765 return NULL; 14766 14767 /* 14768 * Event creation should be under SRCU, see perf_pmu_unregister(). 14769 */ 14770 guard(srcu)(&pmus_srcu); 14771 14772 child_event = perf_event_alloc(&parent_event->attr, 14773 parent_event->cpu, 14774 child, 14775 group_leader, parent_event, 14776 NULL, NULL, -1); 14777 if (IS_ERR(child_event)) 14778 return child_event; 14779 14780 get_ctx(child_ctx); 14781 child_event->ctx = child_ctx; 14782 14783 pmu_ctx = find_get_pmu_context(parent_event->pmu_ctx->pmu, child_ctx, child_event); 14784 if (IS_ERR(pmu_ctx)) { 14785 free_event(child_event); 14786 return ERR_CAST(pmu_ctx); 14787 } 14788 child_event->pmu_ctx = pmu_ctx; 14789 14790 /* 14791 * is_orphaned_event() and list_add_tail(&parent_event->child_list) 14792 * must be under the same lock in order to serialize against 14793 * perf_event_release_kernel(), such that either we must observe 14794 * is_orphaned_event() or they will observe us on the child_list. 14795 */ 14796 mutex_lock(&parent_event->child_mutex); 14797 if (is_orphaned_event(parent_event) || 14798 !atomic_long_inc_not_zero(&parent_event->refcount)) { 14799 mutex_unlock(&parent_event->child_mutex); 14800 free_event(child_event); 14801 return NULL; 14802 } 14803 14804 /* 14805 * Make the child state follow the state of the parent event, 14806 * not its attr.disabled bit. We hold the parent's mutex, 14807 * so we won't race with perf_event_{en, dis}able_family. 14808 */ 14809 if (parent_state >= PERF_EVENT_STATE_INACTIVE) 14810 child_event->state = PERF_EVENT_STATE_INACTIVE; 14811 else 14812 child_event->state = PERF_EVENT_STATE_OFF; 14813 14814 if (parent_event->attr.freq) { 14815 u64 sample_period = parent_event->hw.sample_period; 14816 struct hw_perf_event *hwc = &child_event->hw; 14817 14818 hwc->sample_period = sample_period; 14819 hwc->last_period = sample_period; 14820 14821 local64_set(&hwc->period_left, sample_period); 14822 } 14823 14824 child_event->overflow_handler = parent_event->overflow_handler; 14825 child_event->overflow_handler_context 14826 = parent_event->overflow_handler_context; 14827 14828 /* 14829 * Precalculate sample_data sizes 14830 */ 14831 perf_event__header_size(child_event); 14832 perf_event__id_header_size(child_event); 14833 14834 /* 14835 * Link it up in the child's context: 14836 */ 14837 raw_spin_lock_irqsave(&child_ctx->lock, flags); 14838 add_event_to_ctx(child_event, child_ctx); 14839 child_event->attach_state |= PERF_ATTACH_CHILD; 14840 raw_spin_unlock_irqrestore(&child_ctx->lock, flags); 14841 14842 /* 14843 * Link this into the parent event's child list 14844 */ 14845 list_add_tail(&child_event->child_list, &parent_event->child_list); 14846 mutex_unlock(&parent_event->child_mutex); 14847 14848 return child_event; 14849 } 14850 14851 /* 14852 * Inherits an event group. 14853 * 14854 * This will quietly suppress orphaned events; !inherit_event() is not an error. 14855 * This matches with perf_event_release_kernel() removing all child events. 14856 * 14857 * Returns: 14858 * - 0 on success 14859 * - <0 on error 14860 */ 14861 static int inherit_group(struct perf_event *parent_event, 14862 struct task_struct *parent, 14863 struct perf_event_context *parent_ctx, 14864 struct task_struct *child, 14865 struct perf_event_context *child_ctx) 14866 { 14867 struct perf_event *leader; 14868 struct perf_event *sub; 14869 struct perf_event *child_ctr; 14870 14871 leader = inherit_event(parent_event, parent, parent_ctx, 14872 child, NULL, child_ctx); 14873 if (IS_ERR(leader)) 14874 return PTR_ERR(leader); 14875 /* 14876 * @leader can be NULL here because of is_orphaned_event(). In this 14877 * case inherit_event() will create individual events, similar to what 14878 * perf_group_detach() would do anyway. 14879 */ 14880 for_each_sibling_event(sub, parent_event) { 14881 child_ctr = inherit_event(sub, parent, parent_ctx, 14882 child, leader, child_ctx); 14883 if (IS_ERR(child_ctr)) 14884 return PTR_ERR(child_ctr); 14885 14886 if (sub->aux_event == parent_event && child_ctr && 14887 !perf_get_aux_event(child_ctr, leader)) 14888 return -EINVAL; 14889 } 14890 if (leader) 14891 leader->group_generation = parent_event->group_generation; 14892 return 0; 14893 } 14894 14895 /* 14896 * Creates the child task context and tries to inherit the event-group. 14897 * 14898 * Clears @inherited_all on !attr.inherited or error. Note that we'll leave 14899 * inherited_all set when we 'fail' to inherit an orphaned event; this is 14900 * consistent with perf_event_release_kernel() removing all child events. 14901 * 14902 * Returns: 14903 * - 0 on success 14904 * - <0 on error 14905 */ 14906 static int 14907 inherit_task_group(struct perf_event *event, struct task_struct *parent, 14908 struct perf_event_context *parent_ctx, 14909 struct task_struct *child, 14910 u64 clone_flags, int *inherited_all) 14911 { 14912 struct perf_event_context *child_ctx; 14913 int ret; 14914 14915 if (!event->attr.inherit || 14916 (event->attr.inherit_thread && !(clone_flags & CLONE_THREAD)) || 14917 /* Do not inherit if sigtrap and signal handlers were cleared. */ 14918 (event->attr.sigtrap && (clone_flags & CLONE_CLEAR_SIGHAND))) { 14919 *inherited_all = 0; 14920 return 0; 14921 } 14922 14923 child_ctx = child->perf_event_ctxp; 14924 if (!child_ctx) { 14925 /* 14926 * This is executed from the parent task context, so 14927 * inherit events that have been marked for cloning. 14928 * First allocate and initialize a context for the 14929 * child. 14930 */ 14931 child_ctx = alloc_perf_context(child); 14932 if (!child_ctx) 14933 return -ENOMEM; 14934 14935 child->perf_event_ctxp = child_ctx; 14936 } 14937 14938 ret = inherit_group(event, parent, parent_ctx, child, child_ctx); 14939 if (ret) 14940 *inherited_all = 0; 14941 14942 return ret; 14943 } 14944 14945 /* 14946 * Initialize the perf_event context in task_struct 14947 */ 14948 static int perf_event_init_context(struct task_struct *child, u64 clone_flags) 14949 { 14950 struct perf_event_context *child_ctx, *parent_ctx; 14951 struct perf_event_context *cloned_ctx; 14952 struct perf_event *event; 14953 struct task_struct *parent = current; 14954 int inherited_all = 1; 14955 unsigned long flags; 14956 int ret = 0; 14957 14958 if (likely(!parent->perf_event_ctxp)) 14959 return 0; 14960 14961 /* 14962 * If the parent's context is a clone, pin it so it won't get 14963 * swapped under us. 14964 */ 14965 parent_ctx = perf_pin_task_context(parent); 14966 if (!parent_ctx) 14967 return 0; 14968 14969 /* 14970 * No need to check if parent_ctx != NULL here; since we saw 14971 * it non-NULL earlier, the only reason for it to become NULL 14972 * is if we exit, and since we're currently in the middle of 14973 * a fork we can't be exiting at the same time. 14974 */ 14975 14976 /* 14977 * Lock the parent list. No need to lock the child - not PID 14978 * hashed yet and not running, so nobody can access it. 14979 */ 14980 mutex_lock(&parent_ctx->mutex); 14981 14982 /* 14983 * We dont have to disable NMIs - we are only looking at 14984 * the list, not manipulating it: 14985 */ 14986 perf_event_groups_for_each(event, &parent_ctx->pinned_groups) { 14987 ret = inherit_task_group(event, parent, parent_ctx, 14988 child, clone_flags, &inherited_all); 14989 if (ret) 14990 goto out_unlock; 14991 } 14992 14993 /* 14994 * We can't hold ctx->lock when iterating the ->flexible_group list due 14995 * to allocations, but we need to prevent rotation because 14996 * rotate_ctx() will change the list from interrupt context. 14997 */ 14998 raw_spin_lock_irqsave(&parent_ctx->lock, flags); 14999 parent_ctx->rotate_disable = 1; 15000 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags); 15001 15002 perf_event_groups_for_each(event, &parent_ctx->flexible_groups) { 15003 ret = inherit_task_group(event, parent, parent_ctx, 15004 child, clone_flags, &inherited_all); 15005 if (ret) 15006 goto out_unlock; 15007 } 15008 15009 raw_spin_lock_irqsave(&parent_ctx->lock, flags); 15010 parent_ctx->rotate_disable = 0; 15011 15012 child_ctx = child->perf_event_ctxp; 15013 15014 if (child_ctx && inherited_all) { 15015 /* 15016 * Mark the child context as a clone of the parent 15017 * context, or of whatever the parent is a clone of. 15018 * 15019 * Note that if the parent is a clone, the holding of 15020 * parent_ctx->lock avoids it from being uncloned. 15021 */ 15022 cloned_ctx = parent_ctx->parent_ctx; 15023 if (cloned_ctx) { 15024 child_ctx->parent_ctx = cloned_ctx; 15025 child_ctx->parent_gen = parent_ctx->parent_gen; 15026 } else { 15027 child_ctx->parent_ctx = parent_ctx; 15028 child_ctx->parent_gen = parent_ctx->generation; 15029 } 15030 get_ctx(child_ctx->parent_ctx); 15031 } 15032 15033 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags); 15034 out_unlock: 15035 mutex_unlock(&parent_ctx->mutex); 15036 15037 perf_unpin_context(parent_ctx); 15038 put_ctx(parent_ctx); 15039 15040 return ret; 15041 } 15042 15043 /* 15044 * Initialize the perf_event context in task_struct 15045 */ 15046 int perf_event_init_task(struct task_struct *child, u64 clone_flags) 15047 { 15048 int ret; 15049 15050 memset(child->perf_recursion, 0, sizeof(child->perf_recursion)); 15051 child->perf_event_ctxp = NULL; 15052 mutex_init(&child->perf_event_mutex); 15053 INIT_LIST_HEAD(&child->perf_event_list); 15054 child->perf_ctx_data = NULL; 15055 15056 ret = perf_event_init_context(child, clone_flags); 15057 if (ret) { 15058 perf_event_free_task(child); 15059 return ret; 15060 } 15061 15062 return 0; 15063 } 15064 15065 static void __init perf_event_init_all_cpus(void) 15066 { 15067 struct swevent_htable *swhash; 15068 struct perf_cpu_context *cpuctx; 15069 int cpu; 15070 15071 zalloc_cpumask_var(&perf_online_mask, GFP_KERNEL); 15072 zalloc_cpumask_var(&perf_online_core_mask, GFP_KERNEL); 15073 zalloc_cpumask_var(&perf_online_die_mask, GFP_KERNEL); 15074 zalloc_cpumask_var(&perf_online_cluster_mask, GFP_KERNEL); 15075 zalloc_cpumask_var(&perf_online_pkg_mask, GFP_KERNEL); 15076 zalloc_cpumask_var(&perf_online_sys_mask, GFP_KERNEL); 15077 15078 15079 for_each_possible_cpu(cpu) { 15080 swhash = &per_cpu(swevent_htable, cpu); 15081 mutex_init(&swhash->hlist_mutex); 15082 15083 INIT_LIST_HEAD(&per_cpu(pmu_sb_events.list, cpu)); 15084 raw_spin_lock_init(&per_cpu(pmu_sb_events.lock, cpu)); 15085 15086 INIT_LIST_HEAD(&per_cpu(sched_cb_list, cpu)); 15087 15088 cpuctx = per_cpu_ptr(&perf_cpu_context, cpu); 15089 __perf_event_init_context(&cpuctx->ctx); 15090 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex); 15091 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock); 15092 cpuctx->online = cpumask_test_cpu(cpu, perf_online_mask); 15093 cpuctx->heap_size = ARRAY_SIZE(cpuctx->heap_default); 15094 cpuctx->heap = cpuctx->heap_default; 15095 } 15096 } 15097 15098 static void perf_swevent_init_cpu(unsigned int cpu) 15099 { 15100 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu); 15101 15102 mutex_lock(&swhash->hlist_mutex); 15103 if (swhash->hlist_refcount > 0 && !swevent_hlist_deref(swhash)) { 15104 struct swevent_hlist *hlist; 15105 15106 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu)); 15107 WARN_ON(!hlist); 15108 rcu_assign_pointer(swhash->swevent_hlist, hlist); 15109 } 15110 mutex_unlock(&swhash->hlist_mutex); 15111 } 15112 15113 #if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE 15114 static void __perf_event_exit_context(void *__info) 15115 { 15116 struct perf_cpu_context *cpuctx = this_cpu_ptr(&perf_cpu_context); 15117 struct perf_event_context *ctx = __info; 15118 struct perf_event *event; 15119 15120 raw_spin_lock(&ctx->lock); 15121 ctx_sched_out(ctx, NULL, EVENT_TIME); 15122 list_for_each_entry(event, &ctx->event_list, event_entry) 15123 __perf_remove_from_context(event, cpuctx, ctx, (void *)DETACH_GROUP); 15124 raw_spin_unlock(&ctx->lock); 15125 } 15126 15127 static void perf_event_clear_cpumask(unsigned int cpu) 15128 { 15129 int target[PERF_PMU_MAX_SCOPE]; 15130 unsigned int scope; 15131 struct pmu *pmu; 15132 15133 cpumask_clear_cpu(cpu, perf_online_mask); 15134 15135 for (scope = PERF_PMU_SCOPE_NONE + 1; scope < PERF_PMU_MAX_SCOPE; scope++) { 15136 const struct cpumask *cpumask = perf_scope_cpu_topology_cpumask(scope, cpu); 15137 struct cpumask *pmu_cpumask = perf_scope_cpumask(scope); 15138 15139 target[scope] = -1; 15140 if (WARN_ON_ONCE(!pmu_cpumask || !cpumask)) 15141 continue; 15142 15143 if (!cpumask_test_and_clear_cpu(cpu, pmu_cpumask)) 15144 continue; 15145 target[scope] = cpumask_any_but(cpumask, cpu); 15146 if (target[scope] < nr_cpu_ids) 15147 cpumask_set_cpu(target[scope], pmu_cpumask); 15148 } 15149 15150 /* migrate */ 15151 list_for_each_entry(pmu, &pmus, entry) { 15152 if (pmu->scope == PERF_PMU_SCOPE_NONE || 15153 WARN_ON_ONCE(pmu->scope >= PERF_PMU_MAX_SCOPE)) 15154 continue; 15155 15156 if (target[pmu->scope] >= 0 && target[pmu->scope] < nr_cpu_ids) 15157 perf_pmu_migrate_context(pmu, cpu, target[pmu->scope]); 15158 } 15159 } 15160 15161 static void perf_event_exit_cpu_context(int cpu) 15162 { 15163 struct perf_cpu_context *cpuctx; 15164 struct perf_event_context *ctx; 15165 15166 // XXX simplify cpuctx->online 15167 mutex_lock(&pmus_lock); 15168 /* 15169 * Clear the cpumasks, and migrate to other CPUs if possible. 15170 * Must be invoked before the __perf_event_exit_context. 15171 */ 15172 perf_event_clear_cpumask(cpu); 15173 cpuctx = per_cpu_ptr(&perf_cpu_context, cpu); 15174 ctx = &cpuctx->ctx; 15175 15176 mutex_lock(&ctx->mutex); 15177 if (ctx->nr_events) 15178 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1); 15179 cpuctx->online = 0; 15180 mutex_unlock(&ctx->mutex); 15181 mutex_unlock(&pmus_lock); 15182 } 15183 #else 15184 15185 static void perf_event_exit_cpu_context(int cpu) { } 15186 15187 #endif 15188 15189 static void perf_event_setup_cpumask(unsigned int cpu) 15190 { 15191 struct cpumask *pmu_cpumask; 15192 unsigned int scope; 15193 15194 /* 15195 * Early boot stage, the cpumask hasn't been set yet. 15196 * The perf_online_<domain>_masks includes the first CPU of each domain. 15197 * Always unconditionally set the boot CPU for the perf_online_<domain>_masks. 15198 */ 15199 if (cpumask_empty(perf_online_mask)) { 15200 for (scope = PERF_PMU_SCOPE_NONE + 1; scope < PERF_PMU_MAX_SCOPE; scope++) { 15201 pmu_cpumask = perf_scope_cpumask(scope); 15202 if (WARN_ON_ONCE(!pmu_cpumask)) 15203 continue; 15204 cpumask_set_cpu(cpu, pmu_cpumask); 15205 } 15206 goto end; 15207 } 15208 15209 for (scope = PERF_PMU_SCOPE_NONE + 1; scope < PERF_PMU_MAX_SCOPE; scope++) { 15210 const struct cpumask *cpumask = perf_scope_cpu_topology_cpumask(scope, cpu); 15211 15212 pmu_cpumask = perf_scope_cpumask(scope); 15213 15214 if (WARN_ON_ONCE(!pmu_cpumask || !cpumask)) 15215 continue; 15216 15217 if (!cpumask_empty(cpumask) && 15218 cpumask_any_and(pmu_cpumask, cpumask) >= nr_cpu_ids) 15219 cpumask_set_cpu(cpu, pmu_cpumask); 15220 } 15221 end: 15222 cpumask_set_cpu(cpu, perf_online_mask); 15223 } 15224 15225 int perf_event_init_cpu(unsigned int cpu) 15226 { 15227 struct perf_cpu_context *cpuctx; 15228 struct perf_event_context *ctx; 15229 15230 perf_swevent_init_cpu(cpu); 15231 15232 mutex_lock(&pmus_lock); 15233 perf_event_setup_cpumask(cpu); 15234 cpuctx = per_cpu_ptr(&perf_cpu_context, cpu); 15235 ctx = &cpuctx->ctx; 15236 15237 mutex_lock(&ctx->mutex); 15238 cpuctx->online = 1; 15239 mutex_unlock(&ctx->mutex); 15240 mutex_unlock(&pmus_lock); 15241 15242 return 0; 15243 } 15244 15245 int perf_event_exit_cpu(unsigned int cpu) 15246 { 15247 perf_event_exit_cpu_context(cpu); 15248 return 0; 15249 } 15250 15251 static int 15252 perf_reboot(struct notifier_block *notifier, unsigned long val, void *v) 15253 { 15254 int cpu; 15255 15256 for_each_online_cpu(cpu) 15257 perf_event_exit_cpu(cpu); 15258 15259 return NOTIFY_OK; 15260 } 15261 15262 /* 15263 * Run the perf reboot notifier at the very last possible moment so that 15264 * the generic watchdog code runs as long as possible. 15265 */ 15266 static struct notifier_block perf_reboot_notifier = { 15267 .notifier_call = perf_reboot, 15268 .priority = INT_MIN, 15269 }; 15270 15271 void __init perf_event_init(void) 15272 { 15273 int ret; 15274 15275 idr_init(&pmu_idr); 15276 15277 unwind_deferred_init(&perf_unwind_work, 15278 perf_unwind_deferred_callback); 15279 15280 perf_event_init_all_cpus(); 15281 init_srcu_struct(&pmus_srcu); 15282 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE); 15283 perf_pmu_register(&perf_cpu_clock, "cpu_clock", -1); 15284 perf_pmu_register(&perf_task_clock, "task_clock", -1); 15285 perf_tp_register(); 15286 perf_event_init_cpu(smp_processor_id()); 15287 register_reboot_notifier(&perf_reboot_notifier); 15288 15289 ret = init_hw_breakpoint(); 15290 WARN(ret, "hw_breakpoint initialization failed with: %d", ret); 15291 15292 perf_event_cache = KMEM_CACHE(perf_event, SLAB_PANIC); 15293 15294 /* 15295 * Build time assertion that we keep the data_head at the intended 15296 * location. IOW, validation we got the __reserved[] size right. 15297 */ 15298 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head)) 15299 != 1024); 15300 } 15301 15302 ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr, 15303 char *page) 15304 { 15305 struct perf_pmu_events_attr *pmu_attr = 15306 container_of(attr, struct perf_pmu_events_attr, attr); 15307 15308 if (pmu_attr->event_str) 15309 return sprintf(page, "%s\n", pmu_attr->event_str); 15310 15311 return 0; 15312 } 15313 EXPORT_SYMBOL_GPL(perf_event_sysfs_show); 15314 15315 static int __init perf_event_sysfs_init(void) 15316 { 15317 struct pmu *pmu; 15318 int ret; 15319 15320 mutex_lock(&pmus_lock); 15321 15322 ret = bus_register(&pmu_bus); 15323 if (ret) 15324 goto unlock; 15325 15326 list_for_each_entry(pmu, &pmus, entry) { 15327 if (pmu->dev) 15328 continue; 15329 15330 ret = pmu_dev_alloc(pmu); 15331 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret); 15332 } 15333 pmu_bus_running = 1; 15334 ret = 0; 15335 15336 unlock: 15337 mutex_unlock(&pmus_lock); 15338 15339 return ret; 15340 } 15341 device_initcall(perf_event_sysfs_init); 15342 15343 #ifdef CONFIG_CGROUP_PERF 15344 static struct cgroup_subsys_state * 15345 perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css) 15346 { 15347 struct perf_cgroup *jc; 15348 15349 jc = kzalloc_obj(*jc); 15350 if (!jc) 15351 return ERR_PTR(-ENOMEM); 15352 15353 jc->info = alloc_percpu(struct perf_cgroup_info); 15354 if (!jc->info) { 15355 kfree(jc); 15356 return ERR_PTR(-ENOMEM); 15357 } 15358 15359 return &jc->css; 15360 } 15361 15362 static void perf_cgroup_css_free(struct cgroup_subsys_state *css) 15363 { 15364 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css); 15365 15366 free_percpu(jc->info); 15367 kfree(jc); 15368 } 15369 15370 static int perf_cgroup_css_online(struct cgroup_subsys_state *css) 15371 { 15372 perf_event_cgroup(css->cgroup); 15373 return 0; 15374 } 15375 15376 static int __perf_cgroup_move(void *info) 15377 { 15378 struct task_struct *task = info; 15379 15380 preempt_disable(); 15381 perf_cgroup_switch(task); 15382 preempt_enable(); 15383 15384 return 0; 15385 } 15386 15387 static void perf_cgroup_attach(struct cgroup_taskset *tset) 15388 { 15389 struct task_struct *task; 15390 struct cgroup_subsys_state *css; 15391 15392 cgroup_taskset_for_each(task, css, tset) 15393 task_function_call(task, __perf_cgroup_move, task); 15394 } 15395 15396 struct cgroup_subsys perf_event_cgrp_subsys = { 15397 .css_alloc = perf_cgroup_css_alloc, 15398 .css_free = perf_cgroup_css_free, 15399 .css_online = perf_cgroup_css_online, 15400 .attach = perf_cgroup_attach, 15401 /* 15402 * Implicitly enable on dfl hierarchy so that perf events can 15403 * always be filtered by cgroup2 path as long as perf_event 15404 * controller is not mounted on a legacy hierarchy. 15405 */ 15406 .implicit_on_dfl = true, 15407 .threaded = true, 15408 }; 15409 #endif /* CONFIG_CGROUP_PERF */ 15410 15411 DEFINE_STATIC_CALL_RET0(perf_snapshot_branch_stack, perf_snapshot_branch_stack_t); 15412