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 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 | /* * Copyright (c) 2017 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@ */ #include <kdp/kdp_core.h> #include <kdp/processor_core.h> #include <kern/assert.h> #include <kern/zalloc.h> #include <libkern/kernel_mach_header.h> #include <libkern/OSAtomic.h> #include <libsa/types.h> #include <pexpert/pexpert.h> #ifdef CONFIG_KDP_INTERACTIVE_DEBUGGING #define roundup(x, y) ((((x) % (y)) == 0) ? \ (x) : ((x) + ((y) - ((x) % (y))))) #define DATA_OWNER_MAIN_BIN_SPEC "main bin spec" /* * Format of the "main bin spec" LC_NOTE payload as expected by LLDB */ typedef struct { uint32_t version; // currently 1 uint32_t type; // 0 == unspecified, 1 == kernel, 2 == user process, 3 == standalone (ie FW) uint64_t address; // UINT64_MAX if address not specified uuid_t uuid; // all zero's if uuid not specified uint32_t log2_pagesize; // process page size in log base 2, e.g. 4k pages are 12. 0 for unspecified uint32_t unused; // leave set to 0 } __attribute__((packed)) main_bin_spec; #define MAIN_BIN_SPEC_VERSION 1 #define MAIN_BIN_SPEC_TYPE_KERNEL 1 #define MAIN_BIN_SPEC_TYPE_STANDALONE 3 #define DATA_OWNER_LEGACY_BIN_SPEC "kern ver str" /* * Format of the legacy bin spec (LC_IDENT-like) LC_NOTE payload as expected by LLDB */ typedef struct { uint32_t version; // currently 1 char version_string[KERN_COREDUMP_VERSIONSTRINGMAXSIZE]; } __attribute__((packed)) legacy_bin_spec; #define LEGACY_BIN_SPEC_VERSION 1 /* * The processor_core_context structure describes the current * corefile that's being generated. It also includes a pointer * to the core_outvars which is used by the KDP code for context * about the specific output mechanism being used. * * We include *remaining variables to catch inconsistencies / bugs * in the co-processor coredump callbacks. */ typedef struct { struct kdp_core_out_vars * core_outvars; /* Output procedure info (see kdp_out_stage.h) */ kern_coredump_callback_config *core_config; /* Information about core currently being dumped */ void *core_refcon; /* Reference constant associated with the coredump helper */ boolean_t core_should_be_skipped; /* Indicates whether this specific core should not be dumped */ boolean_t core_is64bit; /* Bitness of CPU */ boolean_t core_isxnu; /* Indicates whether this core is the currently running xnu */ uint32_t core_mh_magic; /* Magic for mach header */ cpu_type_t core_cpu_type; /* CPU type for mach header */ cpu_subtype_t core_cpu_subtype; /* CPU subtype for mach header */ uint64_t core_file_length; /* Overall corefile length including any zero padding */ uint64_t core_file_length_compressed; /* File length after compression */ uint64_t core_segment_count; /* Number of LC_SEGMENTs in the core currently being dumped */ uint64_t core_segments_remaining; /* Number of LC_SEGMENTs that have not been added to the header */ uint64_t core_segment_byte_total; /* Sum of all the data from the LC_SEGMENTS in the core */ uint64_t core_segment_bytes_remaining; /* Quantity of data remaining from LC_SEGMENTs that have yet to be added */ uint64_t core_thread_count; /* Number of LC_THREADs to be included */ uint64_t core_threads_remaining; /* Number of LC_THREADs that have yet to be included */ uint64_t core_thread_state_size; /* Size of each LC_THREAD */ uint64_t core_note_count; /* Number of LC_NOTEs to be included */ uint64_t core_notes_remaining; /* Number of LC_NOTEs that have not been added to the header */ uint64_t core_note_bytes_total; /* Sum of all data from the LC_NOTE segments in the core */ uint64_t core_note_bytes_remaining; /* Quantity of data remaining from LC_NOTEs that have yet to be added */ uint64_t core_cur_hoffset; /* Current offset in this core's header */ uint64_t core_cur_foffset; /* Current offset in this core's overall file */ uint64_t core_header_size; /* Size of this core's header */ uint64_t core_total_bytes; /* Total amount of data to be included in this core (excluding zero fill) */ } processor_core_context; /* * The kern_coredump_core structure describes a core that has been * registered for use by the coredump mechanism. */ struct kern_coredump_core { struct kern_coredump_core *kcc_next; /* Next processor to dump */ void *kcc_refcon; /* Reference constant to be passed to callbacks */ char kcc_corename[MACH_CORE_FILEHEADER_NAMELEN]; /* Description of this processor */ boolean_t kcc_is64bit; /* Processor bitness */ uint32_t kcc_mh_magic; /* Magic for mach header */ cpu_type_t kcc_cpu_type; /* CPU type for mach header */ cpu_subtype_t kcc_cpu_subtype; /* CPU subtype for mach header */ kern_coredump_callback_config kcc_cb; /* Registered processor callbacks for coredump */ } * kern_coredump_core_list = NULL; typedef kern_return_t (*legacy_sw_vers_registered_cb)(void *refcon, core_save_sw_vers_cb callback, void *context); uint32_t coredump_registered_count = 0; struct kern_coredump_core *kernel_helper = NULL; static struct kern_coredump_core * kern_register_coredump_helper_internal(int kern_coredump_config_vers, const kern_coredump_callback_config *kc_callbacks, void *refcon, const char *core_description, boolean_t xnu_callback, boolean_t is64bit, uint32_t mh_magic, cpu_type_t cpu_type, cpu_subtype_t cpu_subtype) { struct kern_coredump_core *core_helper = NULL; kern_coredump_callback_config *core_callbacks = NULL; if (kern_coredump_config_vers < KERN_COREDUMP_MIN_CONFIG_VERSION) { return NULL; } if (kc_callbacks == NULL) { return NULL; } ; if (core_description == NULL) { return NULL; } if (kc_callbacks->kcc_coredump_get_summary == NULL || kc_callbacks->kcc_coredump_save_segment_descriptions == NULL || kc_callbacks->kcc_coredump_save_segment_data == NULL || kc_callbacks->kcc_coredump_save_thread_state == NULL) { return NULL; } #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wdeprecated-declarations" legacy_sw_vers_registered_cb legacy_vers_callback = kc_callbacks->kcc_coredump_save_sw_vers; #pragma clang diagnostic pop if (kern_coredump_config_vers >= KERN_COREDUMP_MIN_CONFIG_NOTES) { if (legacy_vers_callback == NULL && kc_callbacks->kcc_coredump_save_sw_vers_detail == NULL) { return NULL; } } else { if (legacy_vers_callback == NULL) { return NULL; } } if (kern_coredump_config_vers >= KERN_COREDUMP_MIN_CONFIG_NOTES) { /* Either all note related callbacks should be set or none should be set */ if ((kc_callbacks->kcc_coredump_save_note_summary == NULL) != (kc_callbacks->kcc_coredump_save_note_descriptions == NULL)) { return NULL; } if ((kc_callbacks->kcc_coredump_save_note_descriptions == NULL) != (kc_callbacks->kcc_coredump_save_note_data == NULL)) { return NULL; } } #if !defined(__LP64__) /* We don't support generating 64-bit cores on 32-bit platforms */ if (is64bit) { return NULL; } #endif core_helper = zalloc_permanent_type(struct kern_coredump_core); core_helper->kcc_next = NULL; core_helper->kcc_refcon = refcon; if (xnu_callback) { snprintf((char *)&core_helper->kcc_corename, MACH_CORE_FILEHEADER_NAMELEN, "%s", core_description); } else { /* Make sure there's room for the -coproc suffix (16 - NULL char - strlen(-coproc)) */ snprintf((char *)&core_helper->kcc_corename, MACH_CORE_FILEHEADER_NAMELEN, "%.8s-coproc", core_description); } core_helper->kcc_is64bit = is64bit; core_helper->kcc_mh_magic = mh_magic; core_helper->kcc_cpu_type = cpu_type; core_helper->kcc_cpu_subtype = cpu_subtype; core_callbacks = &core_helper->kcc_cb; core_callbacks->kcc_coredump_init = kc_callbacks->kcc_coredump_init; core_callbacks->kcc_coredump_get_summary = kc_callbacks->kcc_coredump_get_summary; core_callbacks->kcc_coredump_save_segment_descriptions = kc_callbacks->kcc_coredump_save_segment_descriptions; core_callbacks->kcc_coredump_save_segment_data = kc_callbacks->kcc_coredump_save_segment_data; core_callbacks->kcc_coredump_save_thread_state = kc_callbacks->kcc_coredump_save_thread_state; #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wdeprecated-declarations" core_callbacks->kcc_coredump_save_sw_vers = kc_callbacks->kcc_coredump_save_sw_vers; #pragma clang diagnostic pop if (kern_coredump_config_vers >= KERN_COREDUMP_MIN_CONFIG_NOTES) { core_callbacks->kcc_coredump_save_note_summary = kc_callbacks->kcc_coredump_save_note_summary; core_callbacks->kcc_coredump_save_note_descriptions = kc_callbacks->kcc_coredump_save_note_descriptions; core_callbacks->kcc_coredump_save_note_data = kc_callbacks->kcc_coredump_save_note_data; core_callbacks->kcc_coredump_save_sw_vers_detail = kc_callbacks->kcc_coredump_save_sw_vers_detail; } if (xnu_callback) { assert(kernel_helper == NULL); kernel_helper = core_helper; } else { do { core_helper->kcc_next = kern_coredump_core_list; } while (!OSCompareAndSwapPtr(kern_coredump_core_list, core_helper, &kern_coredump_core_list)); } OSAddAtomic(1, &coredump_registered_count); kprintf("Registered coredump handler for %s\n", core_description); return core_helper; } kern_return_t kern_register_coredump_helper(int kern_coredump_config_vers, const kern_coredump_callback_config *kc_callbacks, void *refcon, const char *core_description, boolean_t is64bit, uint32_t mh_magic, cpu_type_t cpu_type, cpu_subtype_t cpu_subtype) { if (coredump_registered_count >= KERN_COREDUMP_MAX_CORES) { return KERN_RESOURCE_SHORTAGE; } if (kern_register_coredump_helper_internal(kern_coredump_config_vers, kc_callbacks, refcon, core_description, FALSE, is64bit, mh_magic, cpu_type, cpu_subtype) == NULL) { return KERN_INVALID_ARGUMENT; } return KERN_SUCCESS; } kern_return_t kern_register_xnu_coredump_helper(kern_coredump_callback_config *kc_callbacks) { #if defined(__LP64__) boolean_t is64bit = TRUE; #else boolean_t is64bit = FALSE; #endif if (kern_register_coredump_helper_internal(KERN_COREDUMP_CONFIG_VERSION, kc_callbacks, NULL, "kernel", TRUE, is64bit, _mh_execute_header.magic, _mh_execute_header.cputype, _mh_execute_header.cpusubtype) == NULL) { return KERN_FAILURE; } return KERN_SUCCESS; } /* * Save LC_NOTE metadata about the core we are going to write before we write the mach header */ static int coredump_save_note_summary(uint64_t core_note_count, uint64_t core_note_byte_count, void *context) { processor_core_context *core_context = (processor_core_context *)context; if (!core_note_count || !core_note_byte_count || !context) { return KERN_INVALID_ARGUMENT; } core_context->core_note_count = core_context->core_notes_remaining = core_note_count; core_context->core_note_bytes_total = core_context->core_note_bytes_remaining = core_note_byte_count; return KERN_SUCCESS; } /* * Save metadata about the core we're about to write, write out the mach header */ static int coredump_save_summary(uint64_t core_segment_count, uint64_t core_byte_count, uint64_t thread_count, uint64_t thread_state_size, __unused uint64_t misc_bytes_count, void *context) { processor_core_context *core_context = (processor_core_context *)context; uint32_t sizeofcmds = 0, numcmds = 0; bool should_skip = false; int ret = 0; if (!core_segment_count || !core_byte_count || !thread_count || !thread_state_size || (thread_state_size > KERN_COREDUMP_THREADSIZE_MAX)) { return KERN_INVALID_ARGUMENT; } /* Initialize core_context */ core_context->core_segments_remaining = core_context->core_segment_count = core_segment_count; core_context->core_segment_bytes_remaining = core_context->core_segment_byte_total = core_byte_count; core_context->core_threads_remaining = core_context->core_thread_count = thread_count; core_context->core_thread_state_size = thread_state_size; /* Account for the LC_NOTE needed to store version/load information */ core_context->core_note_count = core_context->core_notes_remaining = (core_context->core_note_count + 1); size_t vers_note_length = sizeof(main_bin_spec); if (core_context->core_config->kcc_coredump_save_sw_vers_detail == NULL) { vers_note_length = sizeof(legacy_bin_spec); } core_context->core_note_bytes_total = core_context->core_note_bytes_remaining = (core_context->core_note_bytes_total + vers_note_length); #if defined(__LP64__) if (core_context->core_is64bit) { sizeofcmds = (uint32_t)(core_context->core_segment_count * sizeof(struct segment_command_64) + (core_context->core_threads_remaining * core_context->core_thread_state_size) + (core_context->core_note_count * sizeof(struct note_command))); core_context->core_header_size = sizeofcmds + sizeof(struct mach_header_64); } else #endif /* defined(__LP64__) */ { sizeofcmds = (uint32_t)(core_context->core_segment_count * sizeof(struct segment_command) + (core_context->core_threads_remaining * core_context->core_thread_state_size) + (core_context->core_note_count * sizeof(struct note_command))); core_context->core_header_size = sizeofcmds + sizeof(struct mach_header); } core_context->core_total_bytes = core_context->core_header_size + core_context->core_segment_byte_total + core_context->core_note_bytes_total; core_context->core_file_length = round_page(core_context->core_header_size) + core_context->core_segment_byte_total + core_context->core_note_bytes_total; core_context->core_cur_foffset = round_page(core_context->core_header_size); numcmds = (uint32_t)(core_context->core_segment_count + core_context->core_thread_count + core_context->core_note_count); /* * Reset the zstream and other output context before writing any data out. We do this here * to update the total file length on the outvars before we start writing out. */ ret = kdp_reset_output_vars(core_context->core_outvars, core_context->core_file_length, true, &should_skip); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s() : failed to reset the out vars : kdp_reset_output_vars(%p, %llu, true, %p) returned error 0x%x\n", __func__, core_context->core_outvars, core_context->core_file_length, &should_skip, ret); return ret; } if (should_skip) { core_context->core_should_be_skipped = TRUE; return KERN_SUCCESS; } /* Construct core file header */ #if defined(__LP64__) if (core_context->core_is64bit) { struct mach_header_64 core_header = { }; core_header.magic = core_context->core_mh_magic; core_header.cputype = core_context->core_cpu_type; core_header.cpusubtype = core_context->core_cpu_subtype; core_header.filetype = MH_CORE; core_header.ncmds = numcmds; core_header.sizeofcmds = sizeofcmds; core_header.flags = 0; /* Send the core_header to the output procedure */ ret = kdp_core_output(core_context->core_outvars, sizeof(core_header), (caddr_t)&core_header); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s() : failed to write mach header : kdp_core_output(%p, %lu, %p) returned error 0x%x\n", __func__, core_context->core_outvars, sizeof(core_header), &core_header, ret); return ret; } core_context->core_cur_hoffset += sizeof(core_header); } else #endif /* defined(__LP64__) */ { struct mach_header core_header = { }; core_header.magic = core_context->core_mh_magic; core_header.cputype = core_context->core_cpu_type; core_header.cpusubtype = core_context->core_cpu_subtype; core_header.filetype = MH_CORE; core_header.ncmds = numcmds; core_header.sizeofcmds = sizeofcmds; core_header.flags = 0; /* Send the core_header to the output procedure */ ret = kdp_core_output(core_context->core_outvars, sizeof(core_header), (caddr_t)&core_header); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s() : failed to write mach header : kdp_core_output(%p, %lu, %p) returned error 0x%x\n", __func__, core_context->core_outvars, sizeof(core_header), &core_header, ret); return ret; } core_context->core_cur_hoffset += sizeof(core_header); } return KERN_SUCCESS; } static void coredump_set_segment_name(char *seg_name, uint64_t seg_start) { if (debug_is_in_phys_carveout(seg_start)) { strlcpy(seg_name, "pcarveout", 16); return; } if (debug_is_in_phys_carveout_metadata(seg_start)) { strlcpy(seg_name, "pcarveout_md", 16); return; } seg_name[0] = 0; } /* * Construct a segment command for the specified segment. */ static int coredump_save_segment_descriptions(uint64_t seg_start, uint64_t seg_end, void *context) { processor_core_context *core_context = (processor_core_context *)context; int ret; uint64_t size = seg_end - seg_start; if (seg_end <= seg_start) { kern_coredump_log(context, "%s(0x%llx, 0x%llx, %p) : called with invalid addresses : start 0x%llx >= end 0x%llx\n", __func__, seg_start, seg_end, context, seg_start, seg_end); return KERN_INVALID_ARGUMENT; } if (core_context->core_segments_remaining == 0) { kern_coredump_log(context, "%s(0x%llx, 0x%llx, %p) : coredump_save_segment_descriptions() called too many times, %llu segment descriptions already recorded\n", __func__, seg_start, seg_end, context, core_context->core_segment_count); return KERN_INVALID_ARGUMENT; } /* Construct segment command */ #if defined(__LP64__) if (core_context->core_is64bit) { struct segment_command_64 seg_command = { }; if (core_context->core_cur_hoffset + sizeof(seg_command) > core_context->core_header_size) { kern_coredump_log(context, "%s(0x%llx, 0x%llx, %p) : ran out of space to save commands with %llu of %llu remaining\n", __func__, seg_start, seg_end, context, core_context->core_segments_remaining, core_context->core_segment_count); return KERN_NO_SPACE; } seg_command.cmd = LC_SEGMENT_64; seg_command.cmdsize = sizeof(seg_command); coredump_set_segment_name(&seg_command.segname[0], seg_start); seg_command.vmaddr = seg_start; seg_command.vmsize = size; seg_command.fileoff = core_context->core_cur_foffset; seg_command.filesize = size; seg_command.maxprot = VM_PROT_READ; seg_command.initprot = VM_PROT_READ; /* Flush new command to output */ ret = kdp_core_output(core_context->core_outvars, sizeof(seg_command), (caddr_t)&seg_command); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s(0x%llx, 0x%llx, %p) : failed to write segment %llu of %llu. kdp_core_output(%p, %lu, %p) returned error %d\n", __func__, seg_start, seg_end, context, core_context->core_segment_count - core_context->core_segments_remaining, core_context->core_segment_count, core_context->core_outvars, sizeof(seg_command), &seg_command, ret); return ret; } core_context->core_cur_hoffset += sizeof(seg_command); } else #endif /* defined(__LP64__) */ { struct segment_command seg_command = { }; if (seg_start > UINT32_MAX || seg_end > UINT32_MAX) { kern_coredump_log(context, "%s(0x%llx, 0x%llx, %p) : called with invalid addresses for 32-bit : start 0x%llx, end 0x%llx\n", __func__, seg_start, seg_end, context, seg_start, seg_end); return KERN_INVALID_ARGUMENT; } if (core_context->core_cur_hoffset + sizeof(seg_command) > core_context->core_header_size) { kern_coredump_log(context, "%s(0x%llx, 0x%llx, %p) : ran out of space to save commands with %llu of %llu remaining\n", __func__, seg_start, seg_end, context, core_context->core_segments_remaining, core_context->core_segment_count); return KERN_NO_SPACE; } seg_command.cmd = LC_SEGMENT; seg_command.cmdsize = sizeof(seg_command); coredump_set_segment_name(&seg_command.segname[0], seg_start); seg_command.vmaddr = (uint32_t) seg_start; seg_command.vmsize = (uint32_t) size; seg_command.fileoff = (uint32_t) core_context->core_cur_foffset; seg_command.filesize = (uint32_t) size; seg_command.maxprot = VM_PROT_READ; seg_command.initprot = VM_PROT_READ; /* Flush new command to output */ ret = kdp_core_output(core_context->core_outvars, sizeof(seg_command), (caddr_t)&seg_command); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s(0x%llx, 0x%llx, %p) : failed to write segment %llu of %llu : kdp_core_output(%p, %lu, %p) returned error 0x%x\n", __func__, seg_start, seg_end, context, core_context->core_segment_count - core_context->core_segments_remaining, core_context->core_segment_count, core_context->core_outvars, sizeof(seg_command), &seg_command, ret); return ret; } core_context->core_cur_hoffset += sizeof(seg_command); } /* Update coredump context */ core_context->core_segments_remaining--; core_context->core_cur_foffset += size; return KERN_SUCCESS; } /* * Construct a LC_NOTE command for the specified note */ static int coredump_save_note_description(const char * data_owner, uint64_t length, void *context) { processor_core_context *core_context = (processor_core_context *)context; int ret; if (data_owner == NULL || (strlen(data_owner) == 0)) { kern_coredump_log(context, "%s() called with invalid data_owner\n", __func__); return KERN_INVALID_ARGUMENT; } if (core_context->core_notes_remaining == 0) { kern_coredump_log(context, "%s() called too many times, %llu note descriptions already recorded\n", __func__, core_context->core_note_count); return KERN_INVALID_ARGUMENT; } struct note_command note = { .cmd = LC_NOTE, .cmdsize = sizeof(struct note_command), .offset = core_context->core_cur_foffset, .size = length, }; strlcpy((char *) ¬e.data_owner, data_owner, sizeof(note.data_owner)); /* Flush new command to output */ ret = kdp_core_output(core_context->core_outvars, sizeof(note), (caddr_t)¬e); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s() : failed to write note %llu of %llu : kdp_core_output() returned error 0x%x\n", __func__, core_context->core_note_count - core_context->core_notes_remaining, core_context->core_note_count, ret); return ret; } /* Update coredump context */ core_context->core_cur_foffset += length; core_context->core_cur_hoffset += sizeof(note); core_context->core_notes_remaining--; return KERN_SUCCESS; } /* * Save thread state. * * Passed thread_state is expected to be a struct thread_command */ static int coredump_save_thread_state(void *thread_state, void *context) { processor_core_context *core_context = (processor_core_context *)context; struct thread_command *tc = (struct thread_command *)thread_state; int ret; if (tc->cmd != LC_THREAD) { kern_coredump_log(context, "%s() : found %d expected LC_THREAD (%d)\n", __func__, tc->cmd, LC_THREAD); return KERN_INVALID_ARGUMENT; } if (core_context->core_cur_hoffset + core_context->core_thread_state_size > core_context->core_header_size) { kern_coredump_log(context, "%s() : ran out of space to save threads with %llu of %llu remaining\n", __func__, core_context->core_threads_remaining, core_context->core_thread_count); return KERN_NO_SPACE; } ret = kdp_core_output(core_context->core_outvars, core_context->core_thread_state_size, (caddr_t)thread_state); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s() : failed to write thread data : kdp_core_output() returned 0x%x\n", __func__, ret); return ret; } core_context->core_threads_remaining--; core_context->core_cur_hoffset += core_context->core_thread_state_size; return KERN_SUCCESS; } static int coredump_save_segment_data(void *seg_data, uint64_t length, void *context) { int ret; processor_core_context *core_context = (processor_core_context *)context; if (length > core_context->core_segment_bytes_remaining) { kern_coredump_log(context, "%s(%p, %llu, %p) : called with too much data, %llu written, %llu left\n", __func__, seg_data, length, context, core_context->core_segment_byte_total - core_context->core_segment_bytes_remaining, core_context->core_segment_bytes_remaining); return KERN_INVALID_ARGUMENT; } ret = kdp_core_output(core_context->core_outvars, length, (caddr_t)seg_data); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s() : failed to write data (%llu bytes remaining) :%d\n", __func__, core_context->core_segment_bytes_remaining, ret); return ret; } core_context->core_segment_bytes_remaining -= length; core_context->core_cur_foffset += length; return KERN_SUCCESS; } static int coredump_save_note_data(void *note_data, uint64_t length, void *context) { int ret; processor_core_context *core_context = (processor_core_context *)context; if (length > core_context->core_note_bytes_remaining) { kern_coredump_log(context, "%s(%p, %llu, %p) : called with too much data, %llu written, %llu left\n", __func__, note_data, length, context, core_context->core_note_bytes_total - core_context->core_note_bytes_remaining, core_context->core_note_bytes_remaining); return KERN_INVALID_ARGUMENT; } ret = kdp_core_output(core_context->core_outvars, length, (caddr_t)note_data); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s() : failed to write data (%llu bytes remaining) :%d\n", __func__, core_context->core_note_bytes_remaining, ret); return ret; } core_context->core_note_bytes_remaining -= length; core_context->core_cur_foffset += length; return KERN_SUCCESS; } static int coredump_save_sw_vers_legacy(void *sw_vers, uint64_t length, void *context) { processor_core_context *core_context = (processor_core_context *)context; int ret; if (length > KERN_COREDUMP_VERSIONSTRINGMAXSIZE || !length) { kern_coredump_log(context, "%s(%p, %llu, %p) : called with invalid length %llu\n", __func__, sw_vers, length, context, length); return KERN_INVALID_ARGUMENT; } uint32_t version = LEGACY_BIN_SPEC_VERSION; ret = coredump_save_note_data(&version, sizeof(version), context); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s() : failed to write legacy bin spec version : coredump_save_note_data() returned 0x%x\n", __func__, ret); return ret; } ret = coredump_save_note_data(sw_vers, length, context); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s() : failed to write sw_vers string : coredump_save_note_data() returned 0x%x\n", __func__, ret); return ret; } if (length < KERN_COREDUMP_VERSIONSTRINGMAXSIZE) { /* Zero fill to the full size */ uint64_t length_to_zero = (KERN_COREDUMP_VERSIONSTRINGMAXSIZE - length); ret = kdp_core_output(core_context->core_outvars, length_to_zero, NULL); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s() : failed to write zero fill padding : kdp_core_output(%p, %llu, NULL) returned 0x%x\n", __func__, core_context->core_outvars, length_to_zero, ret); return ret; } core_context->core_note_bytes_remaining -= length_to_zero; core_context->core_cur_foffset += length_to_zero; } return KERN_SUCCESS; } static int coredump_save_sw_vers(uint64_t address, uuid_t uuid, uint32_t log2_pagesize, void *context) { processor_core_context *core_context = (processor_core_context *)context; int ret; uint32_t type = core_context->core_isxnu ? MAIN_BIN_SPEC_TYPE_KERNEL : MAIN_BIN_SPEC_TYPE_STANDALONE; main_bin_spec spec = { .version = MAIN_BIN_SPEC_VERSION, .type = type, .address = address, .log2_pagesize = log2_pagesize, }; uuid_copy(*((uuid_t *)&spec.uuid), uuid); ret = coredump_save_note_data(&spec, sizeof(spec), context); if (ret != KERN_SUCCESS) { kern_coredump_log(context, "%s() : failed to write main bin spec structure : coredump_save_note_data() returned 0x%x\n", __func__, ret); return ret; } return KERN_SUCCESS; } static kern_return_t kern_coredump_routine(void *core_outvars, struct kern_coredump_core *current_core, uint64_t core_begin_offset, uint64_t *core_file_length, boolean_t *header_update_failed, boolean_t is_xnu) { kern_return_t ret; processor_core_context context = { }; *core_file_length = 0; *header_update_failed = FALSE; /* Setup the coredump context */ context.core_outvars = core_outvars; context.core_config = ¤t_core->kcc_cb; context.core_refcon = current_core->kcc_refcon; context.core_is64bit = current_core->kcc_is64bit; context.core_mh_magic = current_core->kcc_mh_magic; context.core_cpu_type = current_core->kcc_cpu_type; context.core_cpu_subtype = current_core->kcc_cpu_subtype; context.core_isxnu = is_xnu; kern_coredump_log(&context, "\nBeginning coredump of %s\n", current_core->kcc_corename); if (current_core->kcc_cb.kcc_coredump_init != NULL) { ret = current_core->kcc_cb.kcc_coredump_init(context.core_refcon, &context); if (ret == KERN_NODE_DOWN) { kern_coredump_log(&context, "coredump_init returned KERN_NODE_DOWN, skipping this core\n"); return KERN_SUCCESS; } else if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(%s) : coredump_init failed with %d\n", __func__, ret); return ret; } } /* Retrieve information about LC_NOTE data we will write out as part of the core before we populate the general header */ if (current_core->kcc_cb.kcc_coredump_save_note_summary != NULL) { ret = current_core->kcc_cb.kcc_coredump_save_note_summary(context.core_refcon, coredump_save_note_summary, &context); if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(%s) : save_note_note_summary failed with %d\n", __func__, ret); return ret; } } /* Populate the context with metadata about the corefile (cmd info, sizes etc) */ ret = current_core->kcc_cb.kcc_coredump_get_summary(context.core_refcon, coredump_save_summary, &context); if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(%s) : get_summary failed with %d\n", __func__, ret); return ret; } if (context.core_should_be_skipped) { kern_coredump_log(&context, "Skipping coredump\n"); return KERN_SUCCESS; } if (context.core_header_size == 0) { kern_coredump_log(&context, "(%s) : header size not populated after coredump_get_summary\n", __func__); return KERN_FAILURE; } /* Save the segment descriptions for the segments to be included */ ret = current_core->kcc_cb.kcc_coredump_save_segment_descriptions(context.core_refcon, coredump_save_segment_descriptions, &context); if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(%s) : save_segment_descriptions failed with %d\n", __func__, ret); return ret; } if (context.core_segments_remaining != 0) { kern_coredump_log(&context, "(%s) : save_segment_descriptions returned without all segment descriptions written, %llu of %llu remaining\n", __func__, context.core_segments_remaining, context.core_segment_count); return KERN_FAILURE; } /* write out the LC_NOTE with the binary info */ if (current_core->kcc_cb.kcc_coredump_save_sw_vers_detail != NULL) { ret = coredump_save_note_description(DATA_OWNER_MAIN_BIN_SPEC, sizeof(main_bin_spec), &context); } else { ret = coredump_save_note_description(DATA_OWNER_LEGACY_BIN_SPEC, sizeof(legacy_bin_spec), &context); } if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(%s) : coredump_save_note_description returned %d while writing binary info LC_NOTE description", __func__, ret); return ret; } /* Save LC_NOTE desciptions for any additional notes to be included */ if (current_core->kcc_cb.kcc_coredump_save_note_descriptions != NULL) { ret = current_core->kcc_cb.kcc_coredump_save_note_descriptions(context.core_refcon, coredump_save_note_description, &context); if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(%s) : kcc_coredump_save_note_descriptions failed with %d\n", __func__, ret); return ret; } } if (context.core_notes_remaining != 0) { kern_coredump_log(&context, "(%s) : save_note_descriptions returned without all note descriptions written, %llu of %llu remaining\n", __func__, context.core_notes_remaining, context.core_note_count); return KERN_FAILURE; } /* * Save the thread commands/state * * TODO: Should this buffer be allocated at boot rather than on the stack? */ if (context.core_thread_state_size) { char threadstatebuf[context.core_thread_state_size]; ret = current_core->kcc_cb.kcc_coredump_save_thread_state(context.core_refcon, &threadstatebuf, coredump_save_thread_state, &context); if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(%s) : save_thread_state failed with %d\n", __func__, ret); return ret; } } if (context.core_threads_remaining != 0) { kern_coredump_log(&context, "(%s) : save_thread_state returned without all thread descriptions written, %llu of %llu remaining\n", __func__, context.core_threads_remaining, context.core_thread_count); return KERN_FAILURE; } assert(context.core_cur_hoffset == context.core_header_size); /* Zero fill between the end of the header and the beginning of the segment data file offset */ ret = kdp_core_output(context.core_outvars, (round_page(context.core_header_size) - context.core_header_size), NULL); if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(kern_coredump_routine) : failed to write zero fill padding (%llu bytes remaining) : kdp_core_output(%p, %llu, NULL) returned 0x%x\n", context.core_segment_bytes_remaining, context.core_outvars, (round_page(context.core_header_size) - context.core_header_size), ret); return ret; } /* Reset our local current file offset before we start writing out segment data */ context.core_cur_foffset = round_page(context.core_header_size); ret = current_core->kcc_cb.kcc_coredump_save_segment_data(context.core_refcon, coredump_save_segment_data, &context); if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "coredump_save_segment_data failed with %d\n", ret); return ret; } if (context.core_segment_bytes_remaining != 0) { kern_coredump_log(&context, "(kern_coredump_routine) : save_segment_data returned without all segment data written, %llu of %llu remaining\n", context.core_segment_bytes_remaining, context.core_segment_byte_total); return KERN_FAILURE; } /* Save out the LC_NOTE segment data, starting with the binary info / sw vers one */ if (current_core->kcc_cb.kcc_coredump_save_sw_vers_detail != NULL) { ret = current_core->kcc_cb.kcc_coredump_save_sw_vers_detail(context.core_refcon, coredump_save_sw_vers, &context); if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(%s) : kcc_coredump_save_sw_vers_detail_cb failed with 0x%x\n", __func__, ret); return ret; } } else { #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wdeprecated-declarations" ret = current_core->kcc_cb.kcc_coredump_save_sw_vers(context.core_refcon, coredump_save_sw_vers_legacy, &context); #pragma clang diagnostic pop if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(%s) : kcc_coredump_save_sw_vers failed with 0x%x\n", __func__, ret); return ret; } } if (current_core->kcc_cb.kcc_coredump_save_note_data != NULL) { ret = current_core->kcc_cb.kcc_coredump_save_note_data(context.core_refcon, coredump_save_note_data, &context); if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(%s) : kcc_coredump_save_note_data failed with 0x%x\n", __func__, ret); return ret; } } if (context.core_note_bytes_remaining != 0) { kern_coredump_log(&context, "(%s) : kcc_coredump_save_note_data returned without all note data written, %llu of %llu remaining\n", __func__, context.core_note_bytes_remaining, context.core_note_bytes_total); return KERN_FAILURE; } /* Flush the last data out */ ret = kdp_core_output(context.core_outvars, 0, NULL); if (ret != KERN_SUCCESS) { kern_coredump_log(&context, "(kern_coredump_routine) : failed to flush final core data : kdp_core_output(%p, 0, NULL) returned 0x%x\n", context.core_outvars, ret); return ret; } kern_coredump_log(&context, "Done\nCoredump complete of %s, dumped %llu segments (%llu bytes), %llu threads (%llu bytes) overall uncompressed file length %llu bytes.", current_core->kcc_corename, context.core_segment_count, context.core_segment_byte_total, context.core_thread_count, (context.core_thread_count * context.core_thread_state_size), context.core_file_length); if (core_begin_offset) { /* If we're writing to disk (we have a begin offset), we need to update the header */ ret = kern_dump_record_file(context.core_outvars, current_core->kcc_corename, core_begin_offset, &context.core_file_length_compressed); if (ret != KERN_SUCCESS) { *header_update_failed = TRUE; kern_coredump_log(&context, "\n(kern_coredump_routine) : kern_dump_record_file failed with %d\n", ret); return ret; } } kern_coredump_log(&context, " Compressed file length is %llu bytes\n", context.core_file_length_compressed); *core_file_length = context.core_file_length_compressed; return KERN_SUCCESS; } kern_return_t kern_do_coredump(void *core_outvars, boolean_t kernel_only, uint64_t first_file_offset, uint64_t *last_file_offset) { struct kern_coredump_core *current_core = NULL; uint64_t prev_core_length = 0; kern_return_t cur_ret = KERN_SUCCESS, ret = KERN_SUCCESS; boolean_t header_update_failed = FALSE; assert(last_file_offset != NULL); *last_file_offset = first_file_offset; cur_ret = kern_coredump_routine(core_outvars, kernel_helper, *last_file_offset, &prev_core_length, &header_update_failed, TRUE); if (cur_ret != KERN_SUCCESS) { // As long as we didn't fail while updating the header for the raw file, we should be able to try // to capture other corefiles. if (header_update_failed) { // The header may be in an inconsistent state, so bail now return KERN_FAILURE; } else { prev_core_length = 0; ret = KERN_FAILURE; } } *last_file_offset = roundup(((*last_file_offset) + prev_core_length), KERN_COREDUMP_BEGIN_FILEBYTES_ALIGN); prev_core_length = 0; if (kernel_only) { return ret; } current_core = kern_coredump_core_list; while (current_core) { /* Seek to the beginning of the next file */ cur_ret = kern_dump_seek_to_next_file(core_outvars, *last_file_offset); if (cur_ret != KERN_SUCCESS) { kern_coredump_log(NULL, "Failed to seek to beginning of next core\n"); return KERN_FAILURE; } cur_ret = kern_coredump_routine(core_outvars, current_core, *last_file_offset, &prev_core_length, &header_update_failed, FALSE); if (cur_ret != KERN_SUCCESS) { // As long as we didn't fail while updating the header for the raw file, we should be able to try // to capture other corefiles. if (header_update_failed) { // The header may be in an inconsistent state, so bail now return KERN_FAILURE; } else { // Try to capture other corefiles even if one failed, update the overall return // status though prev_core_length = 0; ret = KERN_FAILURE; } } /* Calculate the offset of the beginning of the next core in the raw file */ *last_file_offset = roundup(((*last_file_offset) + prev_core_length), KERN_COREDUMP_BEGIN_FILEBYTES_ALIGN); prev_core_length = 0; current_core = current_core->kcc_next; } return ret; } #else /* CONFIG_KDP_INTERACTIVE_DEBUGGING */ kern_return_t kern_register_coredump_helper(int kern_coredump_config_vers, const kern_coredump_callback_config *kc_callbacks, void* refcon, const char *core_description, boolean_t is64bit, uint32_t mh_magic, cpu_type_t cpu_type, cpu_subtype_t cpu_subtype) { #pragma unused(kern_coredump_config_vers, kc_callbacks, refcon, core_description, is64bit, mh_magic, cpu_type, cpu_subtype) return KERN_NOT_SUPPORTED; } #endif /* CONFIG_KDP_INTERACTIVE_DEBUGGING */ /* * Must be callable with a NULL context */ void kern_coredump_log(void *context, const char *string, ...) { #pragma unused(context) va_list coredump_log_args; va_start(coredump_log_args, string); _doprnt(string, &coredump_log_args, consdebug_putc, 16); va_end(coredump_log_args); #if defined(__arm__) || defined(__arm64__) paniclog_flush(); #endif } |