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