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 | /* * Copyright (c) 2000-2019 Apple 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@ */ #ifndef _PEXPERT_PEXPERT_H_ #define _PEXPERT_PEXPERT_H_ #include <sys/cdefs.h> #ifdef KERNEL #include <IOKit/IOInterrupts.h> #include <kern/kern_types.h> #endif #if XNU_KERNEL_PRIVATE #include <libkern/kernel_mach_header.h> #endif __BEGIN_DECLS #include <mach/boolean.h> #include <mach/kern_return.h> #include <mach/machine/vm_types.h> #ifdef PEXPERT_KERNEL_PRIVATE #include <pexpert/protos.h> #endif #include <pexpert/boot.h> #if defined(PEXPERT_KERNEL_PRIVATE) || defined(IOKIT_KERNEL_PRIVATE) typedef void *cpu_id_t; #else typedef void *cpu_id_t; #endif #if XNU_KERNEL_PRIVATE #if defined(__arm__) || defined(__arm64__) extern struct embedded_panic_header *panic_info; extern vm_offset_t gPanicBase; extern unsigned int gPanicSize; /* * If invoked with NULL first argument, return the max buffer size that can * be saved in the second argument */ void PE_update_panic_crc( unsigned char *, unsigned int *); #else /* defined(__arm__) || defined(__arm64__) */ extern struct macos_panic_header *panic_info; #endif /* defined(__arm__) || defined(__arm64__) */ #endif /* XNU_KERNEL_PRIVATE */ extern void lpss_uart_enable(boolean_t on_off); void PE_enter_debugger( const char *cause); void PE_init_platform( boolean_t vm_initialized, void *args); /* * Copies the requested number of bytes from the "random-seed" property in * the device tree, and zeros the corresponding bytes in the device tree. * Returns the number of bytes actually copied. */ uint32_t PE_get_random_seed( unsigned char * dst_random_seed, uint32_t request_size); uint32_t PE_i_can_has_debugger( uint32_t *); int PE_stub_poll_input(unsigned int options, char *c); #if defined(__arm__) || defined(__arm64__) boolean_t PE_panic_debugging_enabled(void); void PE_mark_hwaccess(uint64_t thread); void PE_mark_hwaccess_data(uint8_t type, uint8_t size, uint64_t paddr); #if XNU_KERNEL_PRIVATE /* * Return whether the boot CPU has gotten far enough to initialize the * debug and trace infrastructure; this indicates whether it's safe to * take the full path through the debugger on a panic(), or whether we * need to take a restricted path and spin forever. */ boolean_t PE_arm_debug_and_trace_initialized(void); #endif /* XNU_KERNEL_PRIVATE */ #endif /* defined(__arm__) || defined(__arm64__) */ /* Return the offset of the specified address into the panic region */ uint32_t PE_get_offset_into_panic_region( char *location); /* Zeroes the panic header, sets the panic magic and initializes the header to be used */ void PE_init_panicheader( void); /* Updates the panic header during a nested panic */ void PE_update_panicheader_nestedpanic( void); /* Invokes AppleARMIO::handlePlatformError() if present */ bool PE_handle_platform_error( vm_offset_t far); #if KERNEL_PRIVATE /* * Kexts should consult this bitmask to change behavior, since the kernel * may be configured as RELEASE but have MACH_ASSERT enabled, or boot args * may have changed the kernel behavior for statistics and kexts should * participate similarly */ #define kPEICanHasAssertions 0x00000001 /* Exceptional conditions should panic() instead of printf() */ #define kPEICanHasStatistics 0x00000002 /* Gather expensive statistics (that don't otherwise change behavior */ #define kPEICanHasDiagnosticAPI 0x00000004 /* Vend API to userspace or kexts that introspect kernel state */ extern uint32_t PE_i_can_has_kernel_configuration(void); #endif /* KERNEL_PRIVATE */ extern int32_t gPESerialBaud; extern uint8_t gPlatformECID[8]; extern uint32_t gPlatformMemoryID; #if defined(XNU_TARGET_OS_XR) extern uint32_t gPlatformChipRole; #endif /* not XNU_TARGET_OS_XR */ unsigned int PE_init_taproot(vm_offset_t *taddr); extern void (*PE_kputc)(char c); void PE_init_printf( boolean_t vm_initialized); extern void (*PE_putc)(char c); /* * Perform pre-lockdown IOKit initialization. * This is guaranteed to execute prior to machine_lockdown(). * The precise operations performed by this function depend upon * the security model employed by the platform, but in general this * function should be expected to at least perform basic C++ runtime * and I/O registry initialization. */ void PE_init_iokit( void); /* * Perform post-lockdown IOKit initialization. * This is guaranteed to execute after machine_lockdown(). * The precise operations performed by this function depend upon * the security model employed by the platform. For example, if * the platform treats machine_lockdown() as a strict security * checkpoint, general-purpose IOKit matching may not begin until * this function is called. */ void PE_lockdown_iokit( void); struct clock_frequency_info_t { unsigned long bus_clock_rate_hz; unsigned long cpu_clock_rate_hz; unsigned long dec_clock_rate_hz; unsigned long bus_clock_rate_num; unsigned long bus_clock_rate_den; unsigned long bus_to_cpu_rate_num; unsigned long bus_to_cpu_rate_den; unsigned long bus_to_dec_rate_num; unsigned long bus_to_dec_rate_den; unsigned long timebase_frequency_hz; unsigned long timebase_frequency_num; unsigned long timebase_frequency_den; unsigned long long bus_frequency_hz; unsigned long long bus_frequency_min_hz; unsigned long long bus_frequency_max_hz; unsigned long long cpu_frequency_hz; unsigned long long cpu_frequency_min_hz; unsigned long long cpu_frequency_max_hz; unsigned long long prf_frequency_hz; unsigned long long prf_frequency_min_hz; unsigned long long prf_frequency_max_hz; unsigned long long mem_frequency_hz; unsigned long long mem_frequency_min_hz; unsigned long long mem_frequency_max_hz; unsigned long long fix_frequency_hz; }; extern int debug_cpu_performance_degradation_factor; typedef struct clock_frequency_info_t clock_frequency_info_t; extern clock_frequency_info_t gPEClockFrequencyInfo; struct timebase_freq_t { unsigned long timebase_num; unsigned long timebase_den; }; typedef void (*timebase_callback_func)(struct timebase_freq_t *timebase_freq); void PE_register_timebase_callback(timebase_callback_func callback); void PE_call_timebase_callback(void); #ifdef KERNEL void PE_install_interrupt_handler( void *nub, int source, void *target, IOInterruptHandler handler, void *refCon); #endif extern bool disable_serial_output; extern bool disable_kprintf_output; #ifndef _FN_KPRINTF #define _FN_KPRINTF void kprintf(const char *fmt, ...) __printflike(1, 2); #endif #if KERNEL_PRIVATE void _consume_kprintf_args(int, ...); #endif #if CONFIG_NO_KPRINTF_STRINGS #if KERNEL_PRIVATE #define kprintf(x, ...) _consume_kprintf_args( 0, ## __VA_ARGS__ ) #else #define kprintf(x, ...) do {} while (0) #endif #endif void init_display_putc(unsigned char *baseaddr, int rowbytes, int height); void display_putc(char c); enum { kPEReadTOD, kPEWriteTOD }; enum { kPEWaitForInput = 0x00000001, kPERawInput = 0x00000002 }; /* Private Stuff - eventually put in pexpertprivate.h */ enum { kDebugTypeNone = 0, kDebugTypeDisplay = 1, kDebugTypeSerial = 2 }; /* Scale factor values for PE_Video.v_scale */ enum { kPEScaleFactorUnknown = 0, kPEScaleFactor1x = 1, kPEScaleFactor2x = 2 }; struct PE_Video { unsigned long v_baseAddr; /* Base address of video memory */ unsigned long v_rowBytes; /* Number of bytes per pixel row */ unsigned long v_width; /* Width */ unsigned long v_height; /* Height */ unsigned long v_depth; /* Pixel Depth */ unsigned long v_display; /* Text or Graphics */ char v_pixelFormat[64]; unsigned long v_offset; /* offset into video memory to start at */ unsigned long v_length; /* length of video memory (0 for v_rowBytes * v_height) */ unsigned char v_rotate; /* Rotation: 0:normal, 1:right 90, 2:left 180, 3:left 90 */ unsigned char v_scale; /* Scale Factor for both X & Y */ char reserved1[2]; #ifdef __LP64__ long reserved2; #else long v_baseAddrHigh; #endif }; typedef struct PE_Video PE_Video; extern void initialize_screen(PE_Video *, unsigned int); extern void dim_screen(void); extern int PE_current_console( PE_Video *info); extern void PE_create_console( void); extern int PE_initialize_console( PE_Video *newInfo, int op); #define kPEGraphicsMode 1 #define kPETextMode 2 #define kPETextScreen 3 #define kPEAcquireScreen 4 #define kPEReleaseScreen 5 #define kPEEnableScreen 6 #define kPEDisableScreen 7 #define kPEBaseAddressChange 8 #define kPERefreshBootGraphics 9 extern void PE_display_icon( unsigned int flags, const char * name ); typedef struct PE_state { boolean_t initialized; PE_Video video; void *deviceTreeHead; void *bootArgs; vm_size_t deviceTreeSize; } PE_state_t; extern PE_state_t PE_state; extern char * PE_boot_args( void); extern boolean_t PE_parse_boot_argn( const char *arg_string, void *arg_ptr, int max_arg); extern boolean_t PE_boot_arg_uint64_eq(const char *arg_string, uint64_t value); extern boolean_t PE_parse_boot_arg_str( const char *arg_string, char * arg_ptr, int size); extern boolean_t PE_get_default( const char *property_name, void *property_ptr, unsigned int max_property); #define PE_default_value(_key, _variable, _default) \ do { \ if (!PE_get_default((_key), &(_variable), sizeof(_variable))) \ _variable = _default; \ } while(0) enum { kPEOptionKey = 0x3a, kPECommandKey = 0x37, kPEControlKey = 0x36, kPEShiftKey = 0x38 }; extern boolean_t PE_get_hotkey( unsigned char key); #if XNU_KERNEL_PRIVATE extern kern_return_t __abortlike PE_cpu_start_from_kext( cpu_id_t target, vm_offset_t start_paddr, vm_offset_t arg_paddr); extern void PE_cpu_start_internal( cpu_id_t target, vm_offset_t start_paddr, vm_offset_t arg_paddr); #endif /* XNU_KERNEL_PRIVATE */ #if !XNU_KERNEL_PRIVATE extern kern_return_t PE_cpu_start( cpu_id_t target, vm_offset_t start_paddr, vm_offset_t arg_paddr); #endif /* !XNU_KERNEL_PRIVATE */ extern void PE_cpu_halt( cpu_id_t target); extern bool PE_cpu_down( cpu_id_t target); extern void PE_cpu_signal( cpu_id_t source, cpu_id_t target); extern void PE_cpu_signal_deferred( cpu_id_t source, cpu_id_t target); extern void PE_cpu_signal_cancel( cpu_id_t source, cpu_id_t target); extern void PE_cpu_machine_init( cpu_id_t target, boolean_t bootb); extern void PE_cpu_machine_quiesce( cpu_id_t target); extern void pe_init_debug(void); extern boolean_t PE_imgsrc_mount_supported(void); extern void PE_panic_hook(const char *str); extern void PE_init_cpu(void); extern void PE_handle_ext_interrupt(void); extern void PE_cpu_power_enable(int cpu_id); extern void PE_cpu_power_disable(int cpu_id); /* This has no locking to prevent races, so it is only used in the panic path */ extern bool PE_cpu_power_check_kdp(int cpu_id); extern void PE_singlestep_hook(void); #if defined(__arm__) || defined(__arm64__) typedef void (*perfmon_interrupt_handler_func)(cpu_id_t source); extern kern_return_t PE_cpu_perfmon_interrupt_install_handler(perfmon_interrupt_handler_func handler); extern void PE_cpu_perfmon_interrupt_enable(cpu_id_t target, boolean_t enable); /* panic_trace boot-arg modes */ __options_decl(panic_trace_t, uint32_t, { panic_trace_disabled = 0x00000000, panic_trace_unused = 0x00000001, panic_trace_enabled = 0x00000002, panic_trace_alt_enabled = 0x00000010, panic_trace_partial_policy = 0x00000020, panic_trace_apt_present = 0x00000100, }); extern panic_trace_t panic_trace; #if DEVELOPMENT || DEBUG extern void PE_arm_debug_enable_trace(bool should_kprintf); extern void (*PE_arm_debug_panic_hook)(const char *str); #else extern void(*const PE_arm_debug_panic_hook)(const char *str); #endif #endif typedef enum kc_kind { KCKindNone = -1, KCKindUnknown = 0, KCKindPrimary = 1, KCKindPageable = 2, KCKindAuxiliary = 3, KCNumKinds = 4, } kc_kind_t; typedef enum kc_format { KCFormatUnknown = 0, KCFormatStatic = 1, KCFormatDynamic = 2, KCFormatFileset = 3, KCFormatKCGEN = 4, } kc_format_t; #if XNU_KERNEL_PRIVATE /* set the mach-o header for a given KC type */ extern void PE_set_kc_header(kc_kind_t type, kernel_mach_header_t *header, uintptr_t slide); void PE_reset_kc_header(kc_kind_t type); /* set both lowest VA (base) and mach-o header for a given KC type */ extern void PE_set_kc_header_and_base(kc_kind_t type, kernel_mach_header_t *header, void *base, uintptr_t slide); /* The highest non-LINKEDIT virtual address */ extern vm_offset_t kc_highest_nonlinkedit_vmaddr; /* state of extended security domain (used for security research device) */ extern uint32_t PE_esdm_fuses; /* state of whether this platform is virtual or not */ extern uint32_t PE_vmm_present; #endif /* returns a pointer to the mach-o header for a give KC type, returns NULL if nothing's been set */ extern void *PE_get_kc_header(kc_kind_t type); /* returns a pointer to the lowest VA of of the KC of the given type */ extern void *PE_get_kc_baseaddress(kc_kind_t type); /* returns an array of length KCNumKinds of the lowest VAs of each KC type - members could be NULL */ extern const void * const*PE_get_kc_base_pointers(void); /* returns the slide for the kext collection */ extern uintptr_t PE_get_kc_slide(kc_kind_t type); /* quickly accesss the format of the primary kc */ extern bool PE_get_primary_kc_format(kc_format_t *type); /* gets format of KC of the given type */ extern bool PE_get_kc_format(kc_kind_t type, kc_format_t *format); /* set vnode ptr for kc fileset */ extern void PE_set_kc_vp(kc_kind_t type, void *vp); /* quickly set vnode ptr for kc fileset */ void * PE_get_kc_vp(kc_kind_t type); /* drop reference to kc fileset vnodes */ void PE_reset_all_kc_vp(void); #if KERNEL_PRIVATE #if defined(__arm64__) extern uint8_t PE_smc_stashed_x86_power_state; extern uint8_t PE_smc_stashed_x86_efi_boot_state; extern uint8_t PE_smc_stashed_x86_system_state; extern uint8_t PE_smc_stashed_x86_shutdown_cause; extern uint64_t PE_smc_stashed_x86_prev_power_transitions; extern uint32_t PE_pcie_stashed_link_state; extern uint64_t PE_nvram_stashed_x86_macos_slide; #endif boolean_t PE_reboot_on_panic(void); void PE_sync_panic_buffers(void); typedef struct PE_panic_save_context { void *psc_buffer; uint32_t psc_offset; uint32_t psc_length; } PE_panic_save_context_t; #endif /*! * @function PE_init_socd_client * * @brief * Initialize the SOCD client mechanism, used for Xnu to contribute data to the SOCD buffers * managed by the SMC in it's SRAM. */ extern vm_size_t PE_init_socd_client(void); /*! * @function PE_read_socd_client_buffer * * @brief * read data from the SOCD client buffer in SMC SRAM. */ extern void PE_read_socd_client_buffer(vm_offset_t offset, void *out_buff, vm_size_t size); /*! * @function PE_write_socd_client_buffer * * @brief * Write data to the SOCD client buffer in SMC SRAM */ extern void PE_write_socd_client_buffer(vm_offset_t offset, const void *in_buff, vm_size_t size); /*! * @function PE_device_is_simulated * * @brief * Returns true if the device is a simulator, else false */ extern boolean_t PE_device_is_simulated(void); __END_DECLS #endif /* _PEXPERT_PEXPERT_H_ */ |