Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 | /* * Copyright (c) 2011 Apple Computer, Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * Called from a trigger. Actually takes the data from the different * modules and puts them in a buffer */ #include <mach/mach_types.h> #include <machine/machine_routines.h> #include <kern/kalloc.h> #include <kern/debug.h> /* panic */ #include <kern/thread.h> #include <sys/errno.h> #include <sys/vm.h> #include <vm/vm_object_xnu.h> #include <vm/vm_page.h> #include <vm/vm_pageout_xnu.h> #ifdef CONFIG_EXCLAVES #include <kern/exclaves.tightbeam.h> #endif /* CONFIG_EXCLAVES */ #include <kperf/action.h> #include <kperf/ast.h> #include <kperf/buffer.h> #include <kperf/callstack.h> #include <kperf/context.h> #include <kperf/kdebug_trigger.h> #include <kperf/kperf.h> #include <kperf/kperf_kpc.h> #include <kperf/kptimer.h> #include <kperf/pet.h> #include <kperf/sample.h> #include <kperf/thread_samplers.h> #define ACTION_MAX (32) /* the list of different actions to take */ struct action { uint32_t sample; uint32_t ucallstack_depth; uint32_t kcallstack_depth; uint32_t userdata; int pid_filter; }; /* the list of actions */ static unsigned int actionc = 0; static struct action *actionv = NULL; /* should emit tracepoint on context switch */ int kperf_kdebug_cswitch = 0; int kperf_max_actions = ACTION_MAX; bool kperf_action_has_non_system(unsigned int actionid) { if (actionid > actionc) { return false; } if (actionv[actionid - 1].sample & ~SAMPLER_SYS_MEM) { return true; } else { return false; } } bool kperf_action_has_task(unsigned int actionid) { if (actionid > actionc) { return false; } return actionv[actionid - 1].sample & SAMPLER_TASK_MASK; } bool kperf_action_has_thread(unsigned int actionid) { if (actionid > actionc) { return false; } return actionv[actionid - 1].sample & SAMPLER_THREAD_MASK; } static void kperf_system_memory_log(void) { extern unsigned int memorystatus_level; BUF_DATA(PERF_MI_SYS_DATA, (uintptr_t)vm_page_free_count, (uintptr_t)vm_page_wire_count, (uintptr_t)vm_page_external_count, (uintptr_t)(vm_page_active_count + vm_page_inactive_count + vm_page_speculative_count)); BUF_DATA(PERF_MI_SYS_DATA_2, (uintptr_t)vm_page_anonymous_count, (uintptr_t)vm_page_internal_count, (uintptr_t)vm_pageout_vminfo.vm_pageout_compressions, (uintptr_t)VM_PAGE_COMPRESSOR_COUNT); BUF_DATA(PERF_MI_SYS_DATA_3, #if CONFIG_SECLUDED_MEMORY (uintptr_t)vm_page_secluded_count, #else // CONFIG_SECLUDED_MEMORY 0, #endif // !CONFIG_SECLUDED_MEMORY (uintptr_t)vm_page_purgeable_count, memorystatus_level); } static void kperf_sample_user_internal(struct kperf_usample *sbuf, struct kperf_context *context, unsigned int actionid, unsigned int sample_what) { if (sample_what & SAMPLER_USTACK) { kperf_ucallstack_sample(&sbuf->ucallstack, context); } if (sample_what & SAMPLER_TH_INFO) { kperf_thread_info_sample(&sbuf->th_info, context); } boolean_t intren = ml_set_interrupts_enabled(FALSE); /* * No userdata or sample_flags for this one. */ BUF_DATA(PERF_GEN_EVENT | DBG_FUNC_START, sample_what, actionid); if (sample_what & SAMPLER_USTACK) { kperf_ucallstack_log(&sbuf->ucallstack); } if (sample_what & SAMPLER_TH_DISPATCH) { kperf_thread_dispatch_log(&sbuf->usample_min->th_dispatch); } if (sample_what & SAMPLER_TH_INFO) { kperf_thread_info_log(&sbuf->th_info); } BUF_DATA(PERF_GEN_EVENT | DBG_FUNC_END, sample_what); ml_set_interrupts_enabled(intren); } static unsigned int kperf_prepare_sample_what(unsigned int sample_what, unsigned int sample_flags) { /* callstacks should be explicitly ignored */ if (sample_flags & SAMPLE_FLAG_EMPTY_CALLSTACK) { sample_what &= ~(SAMPLER_KSTACK | SAMPLER_USTACK | SAMPLER_EXSTACK); } if (sample_flags & SAMPLE_FLAG_ONLY_SYSTEM) { sample_what &= SAMPLER_SYS_MEM; } assert((sample_flags & (SAMPLE_FLAG_THREAD_ONLY | SAMPLE_FLAG_TASK_ONLY)) != (SAMPLE_FLAG_THREAD_ONLY | SAMPLE_FLAG_TASK_ONLY)); if (sample_flags & SAMPLE_FLAG_THREAD_ONLY) { sample_what &= SAMPLER_THREAD_MASK; } if (sample_flags & SAMPLE_FLAG_TASK_ONLY) { sample_what &= SAMPLER_TASK_MASK; } return sample_what; } void kperf_sample_user(struct kperf_usample *sbuf, struct kperf_context *context, unsigned int actionid, unsigned int sample_flags) { if (actionid == 0 || actionid > actionc) { return; } unsigned int sample_what = kperf_prepare_sample_what( actionv[actionid - 1].sample, sample_flags); if (sample_what == 0) { return; } unsigned int ucallstack_depth = actionv[actionid - 1].ucallstack_depth; sbuf->ucallstack.kpuc_nframes = ucallstack_depth ?: MAX_UCALLSTACK_FRAMES; kperf_sample_user_internal(sbuf, context, actionid, sample_what); } static kern_return_t kperf_sample_internal(struct kperf_sample *sbuf, struct kperf_context *context, unsigned sample_what, unsigned sample_flags, unsigned actionid, unsigned ucallstack_depth) { int pended_ucallstack = 0; int pended_th_dispatch = 0; uint32_t userdata = actionid; bool task_only = (sample_flags & SAMPLE_FLAG_TASK_ONLY) != 0; bool pended_exclave_callstack = false; uint64_t sample_meta_flags = 0; sample_what = kperf_prepare_sample_what(sample_what, sample_flags); if (sample_what == 0) { return SAMPLE_CONTINUE; } if (!task_only) { context->cur_thread->kperf_pet_gen = os_atomic_load(&kppet_gencount, relaxed); } bool is_kernel = (context->cur_pid == 0); if (actionid && actionid <= actionc) { sbuf->kcallstack.kpkc_nframes = actionv[actionid - 1].kcallstack_depth; } else { sbuf->kcallstack.kpkc_nframes = MAX_KCALLSTACK_FRAMES; } ucallstack_depth = ucallstack_depth ?: MAX_UCALLSTACK_FRAMES; sbuf->kcallstack.kpkc_flags = 0; sbuf->usample.ucallstack.kpuc_flags = 0; if (sample_what & SAMPLER_TH_INFO) { kperf_thread_info_sample(&sbuf->th_info, context); if (!(sample_flags & SAMPLE_FLAG_IDLE_THREADS)) { if (sbuf->th_info.kpthi_runmode & 0x40) { sample_meta_flags |= SAMPLE_META_THREAD_WAS_IDLE; goto log_sample; } } } if (sample_what & SAMPLER_TH_SNAPSHOT) { kperf_thread_snapshot_sample(&(sbuf->th_snapshot), context); } if (sample_what & SAMPLER_TH_SCHEDULING) { kperf_thread_scheduling_sample(&(sbuf->th_scheduling), context); } if (sample_what & SAMPLER_KSTACK) { if (sample_flags & SAMPLE_FLAG_CONTINUATION) { kperf_continuation_sample(&(sbuf->kcallstack), context); } else if (sample_flags & SAMPLE_FLAG_NON_INTERRUPT) { /* outside of interrupt context, backtrace the current thread */ kperf_backtrace_sample(&(sbuf->kcallstack), context); } else { kperf_kcallstack_sample(&(sbuf->kcallstack), context); } } if (sample_what & SAMPLER_TK_SNAPSHOT) { kperf_task_snapshot_sample(context->cur_task, &(sbuf->tk_snapshot)); } if (!is_kernel) { if (sample_what & SAMPLER_MEMINFO) { kperf_meminfo_sample(context->cur_task, &(sbuf->meminfo)); } if (sample_flags & SAMPLE_FLAG_PEND_USER) { if (sample_what & SAMPLER_USTACK) { pended_ucallstack = kperf_ucallstack_pend(context, ucallstack_depth, actionid); } if (sample_what & SAMPLER_TH_DISPATCH) { pended_th_dispatch = kperf_thread_dispatch_pend(context, actionid); } } } #if CONFIG_EXCLAVES if (sample_what & SAMPLER_EXSTACK) { pended_exclave_callstack = kperf_exclave_callstack_pend(context, actionid); } #endif /* CONFIG_EXCLAVES */ #if CONFIG_CPU_COUNTERS if (sample_what & SAMPLER_PMC_THREAD) { kperf_kpc_thread_sample(&(sbuf->kpcdata), sample_what); } else if (sample_what & SAMPLER_PMC_CPU) { kperf_kpc_cpu_sample(&(sbuf->kpcdata), sample_what); } #endif /* CONFIG_CPU_COUNTERS */ log_sample: /* lookup the user tag, if any */ if (actionid && (actionid <= actionc)) { userdata = actionv[actionid - 1].userdata; } /* avoid logging if this sample only pended samples */ if (sample_flags & SAMPLE_FLAG_PEND_USER && !(sample_what & ~(SAMPLER_USTACK | SAMPLER_TH_DISPATCH))) { return SAMPLE_CONTINUE; } /* stash the data into the buffer * interrupts off to ensure we don't get split */ boolean_t enabled = ml_set_interrupts_enabled(FALSE); BUF_DATA(PERF_GEN_EVENT | DBG_FUNC_START, sample_what, actionid, userdata, sample_flags); if (sample_flags & SAMPLE_FLAG_SYSTEM) { if (sample_what & SAMPLER_SYS_MEM) { kperf_system_memory_log(); } } if (sample_meta_flags & SAMPLE_META_THREAD_WAS_IDLE) { goto log_sample_end; } if (sample_what & SAMPLER_TH_INFO) { kperf_thread_info_log(&sbuf->th_info); } if (sample_what & SAMPLER_TH_SCHEDULING) { kperf_thread_scheduling_log(&(sbuf->th_scheduling)); } if (sample_what & SAMPLER_TH_SNAPSHOT) { kperf_thread_snapshot_log(&(sbuf->th_snapshot)); } if (sample_what & SAMPLER_KSTACK) { kperf_kcallstack_log(&sbuf->kcallstack); } if (sample_what & SAMPLER_TH_INSCYC) { kperf_thread_inscyc_log(context); } if (sample_what & SAMPLER_TK_SNAPSHOT) { kperf_task_snapshot_log(&(sbuf->tk_snapshot)); } if (sample_what & SAMPLER_TK_INFO) { kperf_task_info_log(context); } /* dump user stuff */ if (!is_kernel) { /* dump meminfo */ if (sample_what & SAMPLER_MEMINFO) { kperf_meminfo_log(&(sbuf->meminfo)); } if (sample_flags & SAMPLE_FLAG_PEND_USER) { if (pended_ucallstack) { BUF_INFO(PERF_CS_UPEND); sample_meta_flags |= SAMPLE_META_UPEND; } if (pended_th_dispatch) { BUF_INFO(PERF_TI_DISPPEND); } } } if (pended_exclave_callstack) { sample_meta_flags |= SAMPLE_META_EXPEND; } #if CONFIG_CPU_COUNTERS if (sample_what & SAMPLER_PMC_CONFIG) { kperf_kpc_config_log(&(sbuf->kpcdata)); } if (sample_what & SAMPLER_PMC_THREAD) { kperf_kpc_thread_log(&(sbuf->kpcdata)); } else if (sample_what & SAMPLER_PMC_CPU) { kperf_kpc_cpu_log(&(sbuf->kpcdata)); } #endif /* CONFIG_CPU_COUNTERS */ log_sample_end: BUF_DATA(PERF_GEN_EVENT | DBG_FUNC_END, sample_what, sample_meta_flags); /* intrs back on */ ml_set_interrupts_enabled(enabled); return SAMPLE_CONTINUE; } /* Translate actionid into sample bits and take a sample */ kern_return_t kperf_sample(struct kperf_sample *sbuf, struct kperf_context *context, unsigned actionid, unsigned sample_flags) { /* work out what to sample, if anything */ if ((actionid > actionc) || (actionid == 0)) { return SAMPLE_SHUTDOWN; } /* check the pid filter against the context's current pid. * filter pid == -1 means any pid */ int pid_filter = actionv[actionid - 1].pid_filter; if ((pid_filter != -1) && (pid_filter != context->cur_pid)) { return SAMPLE_CONTINUE; } /* the samplers to run */ unsigned int sample_what = actionv[actionid - 1].sample; unsigned int ucallstack_depth = actionv[actionid - 1].ucallstack_depth; /* do the actual sample operation */ return kperf_sample_internal(sbuf, context, sample_what, sample_flags, actionid, ucallstack_depth); } void kperf_kdebug_handler(uint32_t debugid, uintptr_t *starting_fp) { uint32_t sample_flags = SAMPLE_FLAG_NON_INTERRUPT | SAMPLE_FLAG_PEND_USER; struct kperf_sample *sample = NULL; kern_return_t kr = KERN_SUCCESS; int s; if (!kperf_kdebug_should_trigger(debugid)) { return; } BUF_VERB(PERF_KDBG_HNDLR | DBG_FUNC_START, debugid); thread_t thread = current_thread(); task_t task = get_threadtask(thread); struct kperf_context ctx = { .cur_thread = thread, .cur_task = task, .cur_pid = task_pid(task), .trigger_type = TRIGGER_TYPE_KDEBUG, .trigger_id = 0, .starting_fp = starting_fp, }; s = ml_set_interrupts_enabled(0); sample = kperf_intr_sample_buffer(); kr = kperf_sample(sample, &ctx, kperf_kdebug_get_action(), sample_flags); ml_set_interrupts_enabled(s); BUF_VERB(PERF_KDBG_HNDLR | DBG_FUNC_END, kr); } /* * Sample using a minimum of stack space during this phase. */ static void kperf_ast_sample_min_stack_phase(struct kperf_usample_min *sbuf_min, struct kperf_context *context, unsigned int sample_what) { if (sample_what & SAMPLER_TH_DISPATCH) { kperf_thread_dispatch_sample(&sbuf_min->th_dispatch, context); } } /* * This function should not be inlined with its caller, which would pollute * the stack usage of the minimum stack phase, above. */ __attribute__((noinline)) static void kperf_ast_sample_max_stack_phase(struct kperf_usample_min *sbuf_min, struct kperf_context *context, uint32_t actionid, unsigned int sample_what, unsigned int nframes) { struct kperf_usample sbuf = { .usample_min = sbuf_min }; sbuf.ucallstack.kpuc_nframes = nframes; kperf_sample_user_internal(&sbuf, context, actionid, sample_what); } /* * This function allocates >2.3KB of the stack. Prevent the compiler from * inlining this function into ast_taken and ensure the stack memory is only * allocated for the kperf AST. */ __attribute__((noinline)) void kperf_thread_ast_handler(thread_t thread) { uint32_t ast = thread->kperf_ast; BUF_INFO(PERF_AST_HNDLR | DBG_FUNC_START, thread, ast); task_t task = get_threadtask(thread); if (task_did_exec(task) || task_is_exec_copy(task)) { BUF_INFO(PERF_AST_HNDLR | DBG_FUNC_END, SAMPLE_CONTINUE); return; } struct kperf_context ctx = { .cur_thread = thread, .cur_task = task, .cur_pid = task_pid(task), }; unsigned int sample_what = 0; if (ast & T_KPERF_AST_DISPATCH) { sample_what |= SAMPLER_TH_DISPATCH; } if (ast & T_KPERF_AST_CALLSTACK) { /* TH_INFO for backwards compatibility */ sample_what |= SAMPLER_USTACK | SAMPLER_TH_INFO; } unsigned int actionid = T_KPERF_GET_ACTIONID(ast); struct kperf_usample_min sbuf_min = { 0 }; kperf_ast_sample_min_stack_phase(&sbuf_min, &ctx, sample_what); kperf_ast_sample_max_stack_phase(&sbuf_min, &ctx, actionid, sample_what, T_KPERF_GET_CALLSTACK_DEPTH(ast) ?: MAX_UCALLSTACK_FRAMES); BUF_INFO(PERF_AST_HNDLR | DBG_FUNC_END); } #if CONFIG_EXCLAVES /* Called from Exclave inspection thread after collecting a sample */ __attribute__((noinline)) void kperf_thread_exclaves_ast_handler(thread_t thread, const stackshot_stackshotentry_s * _Nonnull entry); __attribute__((noinline)) void kperf_thread_exclaves_ast_handler(thread_t thread, const stackshot_stackshotentry_s * _Nonnull entry) { assert3u(entry->scid, ==, thread->th_exclaves_ipc_ctx.scid); uint32_t ast = thread->kperf_exclaves_ast; BUF_INFO(PERF_AST_EXCLAVES | DBG_FUNC_START, thread, ast); unsigned int actionid = T_KPERF_GET_ACTIONID(ast); boolean_t intren = ml_set_interrupts_enabled(false); __block size_t ipcstack_count = 0; BUF_DATA(PERF_GEN_EVENT | DBG_FUNC_START, SAMPLER_EXSTACK, actionid); if (entry->ipcstack.has_value) { stackshottypes_ipcstackentry__v_visit(&entry->ipcstack.value, ^(size_t __unused i, const stackshottypes_ipcstackentry_s * _Nonnull __unused ipcstack) { ipcstack_count += 1; }); BUF_DATA(PERF_CS_EXSTACKHDR, ipcstack_count, thread->thread_id, entry->scid); stackshottypes_ipcstackentry__v_visit(&entry->ipcstack.value, ^(size_t __unused j, const stackshottypes_ipcstackentry_s * _Nonnull ipcstack) { kperf_excallstack_log(ipcstack); }); } BUF_DATA(PERF_GEN_EVENT | DBG_FUNC_END, SAMPLER_EXSTACK); ml_set_interrupts_enabled(intren); BUF_INFO(PERF_AST_EXCLAVES | DBG_FUNC_END); } #endif /* CONFIG_EXCLAVES */ int kperf_ast_pend(thread_t thread, uint32_t set_flags, unsigned int set_actionid) { if (thread != current_thread()) { panic("kperf: pending AST to non-current thread"); } uint32_t ast = thread->kperf_ast; unsigned int actionid = T_KPERF_GET_ACTIONID(ast); uint32_t flags = ast & T_KPERF_AST_ALL; if ((flags | set_flags) != flags || actionid != set_actionid) { ast &= ~T_KPERF_SET_ACTIONID(actionid); ast |= T_KPERF_SET_ACTIONID(set_actionid); ast |= set_flags; thread->kperf_ast = ast; /* set the actual AST */ act_set_kperf(thread); return 1; } return 0; } void kperf_ast_set_callstack_depth(thread_t thread, uint32_t depth) { uint32_t ast = thread->kperf_ast; uint32_t existing_depth = T_KPERF_GET_CALLSTACK_DEPTH(ast); if (existing_depth < depth) { ast &= ~T_KPERF_SET_CALLSTACK_DEPTH(existing_depth); ast |= T_KPERF_SET_CALLSTACK_DEPTH(depth); thread->kperf_ast = ast; } } int kperf_kdbg_cswitch_get(void) { return kperf_kdebug_cswitch; } int kperf_kdbg_cswitch_set(int newval) { kperf_kdebug_cswitch = newval; kperf_on_cpu_update(); return 0; } /* * Action configuration */ unsigned int kperf_action_get_count(void) { return actionc; } int kperf_action_set_samplers(unsigned actionid, uint32_t samplers) { if ((actionid > actionc) || (actionid == 0)) { return EINVAL; } /* disallow both CPU and thread counters to be sampled in the same * action */ if ((samplers & SAMPLER_PMC_THREAD) && (samplers & SAMPLER_PMC_CPU)) { return EINVAL; } actionv[actionid - 1].sample = samplers; return 0; } int kperf_action_get_samplers(unsigned actionid, uint32_t *samplers_out) { if ((actionid > actionc)) { return EINVAL; } if (actionid == 0) { *samplers_out = 0; /* "NULL" action */ } else { *samplers_out = actionv[actionid - 1].sample; } return 0; } int kperf_action_set_userdata(unsigned actionid, uint32_t userdata) { if ((actionid > actionc) || (actionid == 0)) { return EINVAL; } actionv[actionid - 1].userdata = userdata; return 0; } int kperf_action_get_userdata(unsigned actionid, uint32_t *userdata_out) { if ((actionid > actionc)) { return EINVAL; } if (actionid == 0) { *userdata_out = 0; /* "NULL" action */ } else { *userdata_out = actionv[actionid - 1].userdata; } return 0; } int kperf_action_set_filter(unsigned actionid, int pid) { if ((actionid > actionc) || (actionid == 0)) { return EINVAL; } actionv[actionid - 1].pid_filter = pid; return 0; } int kperf_action_get_filter(unsigned actionid, int *pid_out) { if ((actionid > actionc)) { return EINVAL; } if (actionid == 0) { *pid_out = -1; /* "NULL" action */ } else { *pid_out = actionv[actionid - 1].pid_filter; } return 0; } void kperf_action_reset(void) { for (unsigned int i = 0; i < actionc; i++) { kperf_action_set_samplers(i + 1, 0); kperf_action_set_userdata(i + 1, 0); kperf_action_set_filter(i + 1, -1); kperf_action_set_ucallstack_depth(i + 1, MAX_UCALLSTACK_FRAMES); kperf_action_set_kcallstack_depth(i + 1, MAX_KCALLSTACK_FRAMES); } } int kperf_action_set_count(unsigned count) { struct action *new_actionv = NULL, *old_actionv = NULL; unsigned old_count; /* easy no-op */ if (count == actionc) { return 0; } /* TODO: allow shrinking? */ if (count < actionc) { return EINVAL; } /* cap it for good measure */ if (count > ACTION_MAX) { return EINVAL; } /* creating the action arror for the first time. create a few * more things, too. */ if (actionc == 0) { kperf_setup(); } /* create a new array */ new_actionv = kalloc_data_tag(count * sizeof(*new_actionv), Z_WAITOK, VM_KERN_MEMORY_DIAG); if (new_actionv == NULL) { return ENOMEM; } old_actionv = actionv; old_count = actionc; if (old_actionv != NULL) { memcpy(new_actionv, actionv, actionc * sizeof(*actionv)); } memset(&(new_actionv[actionc]), 0, (count - old_count) * sizeof(*actionv)); for (unsigned int i = old_count; i < count; i++) { new_actionv[i].pid_filter = -1; new_actionv[i].ucallstack_depth = MAX_UCALLSTACK_FRAMES; new_actionv[i].kcallstack_depth = MAX_KCALLSTACK_FRAMES; } actionv = new_actionv; actionc = count; kfree_data(old_actionv, old_count * sizeof(*actionv)); return 0; } int kperf_action_set_ucallstack_depth(unsigned action_id, uint32_t depth) { if ((action_id > actionc) || (action_id == 0)) { return EINVAL; } if (depth > MAX_UCALLSTACK_FRAMES) { return EINVAL; } if (depth < 2) { return EINVAL; } actionv[action_id - 1].ucallstack_depth = depth; return 0; } int kperf_action_set_kcallstack_depth(unsigned action_id, uint32_t depth) { if ((action_id > actionc) || (action_id == 0)) { return EINVAL; } if (depth > MAX_KCALLSTACK_FRAMES) { return EINVAL; } if (depth < 1) { return EINVAL; } actionv[action_id - 1].kcallstack_depth = depth; return 0; } int kperf_action_get_ucallstack_depth(unsigned action_id, uint32_t * depth_out) { if ((action_id > actionc)) { return EINVAL; } assert(depth_out); if (action_id == 0) { *depth_out = MAX_UCALLSTACK_FRAMES; } else { *depth_out = actionv[action_id - 1].ucallstack_depth; } return 0; } int kperf_action_get_kcallstack_depth(unsigned action_id, uint32_t * depth_out) { if ((action_id > actionc)) { return EINVAL; } assert(depth_out); if (action_id == 0) { *depth_out = MAX_KCALLSTACK_FRAMES; } else { *depth_out = actionv[action_id - 1].kcallstack_depth; } return 0; } |