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 | /* * Copyright (c) 2007-2021 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@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* */ #ifndef _ARM_THREAD_H_ #define _ARM_THREAD_H_ #include <mach/mach_types.h> #include <mach/boolean.h> #include <mach/arm/vm_types.h> #include <mach/thread_status.h> #ifdef MACH_KERNEL_PRIVATE #include <arm/cpu_data.h> #include <arm64/proc_reg.h> #include <os/base.h> #endif struct perfcontrol_state { uint64_t opaque[8] __attribute__((aligned(8))); }; /* * Maps state flavor to number of words in the state: */ extern unsigned int _MachineStateCount[]; #ifdef MACH_KERNEL_PRIVATE typedef arm_kernel_context_t machine_thread_kernel_state; #include <kern/thread_kernel_state.h> #if (!__arm64__) #error Unknown arch #endif /* * Machine Thread Structure */ struct machine_thread { #if __ARM_USER_PROTECT__ unsigned int uptw_ttb; unsigned int kptw_ttb; unsigned int asid; #else unsigned int reserved0; unsigned int reserved1; unsigned int reserved2; #endif arm_context_t * contextData; /* allocated user context */ arm_saved_state_t * XNU_PTRAUTH_SIGNED_PTR("machine_thread.upcb") upcb; /* pointer to user GPR state */ arm_neon_saved_state_t * uNeon; /* pointer to user VFP state */ arm_saved_state_t * kpcb; /* pointer to kernel GPR state */ void * reserved3; long reserved4; uint64_t recover_far; arm_debug_state_t *DebugData; vm_address_t cthread_self; /* for use of cthread package */ uint32_t recover_esr; uint32_t arm_machine_flags; /* thread flags (arm64/machine_machdep.h) */ void * XNU_PTRAUTH_SIGNED_PTR("machine_thread.kstackptr") kstackptr; /* top of kernel stack */ struct perfcontrol_state perfctrl_state; uint64_t reserved5; #if SCHED_HYGIENE_DEBUG uint64_t intmask_timestamp; /* timestamp of when interrupts were manually masked */ uint64_t inthandler_timestamp; /* timestamp of when interrupt handler started */ uint64_t intmask_cycles; /* cycle count snapshot of when interrupts were masked */ uint64_t intmask_instr; /* instruction count snapshot of when interrupts were masked */ bool inthandler_abandon; /* whether to abandon the current measurement */ unsigned int int_type; /* interrupt type of the interrupt that was processed */ uintptr_t int_handler_addr; /* slid, ptrauth-stripped virtual address of the interrupt handler */ uintptr_t int_vector; /* IOInterruptVector */ uint64_t int_time_mt; /* total time spent in interrupt context */ #endif /* SCHED_HYGIENE_DEBUG */ #if defined(CONFIG_XNUPOST) volatile expected_fault_handler_t expected_fault_handler; volatile uintptr_t expected_fault_addr; volatile uintptr_t expected_fault_pc; /* PC at which an exception is expected to be thrown (i.e. ELR_ELx) */ #endif uint64_t reserved6; vm_offset_t pcpu_data_base; struct cpu_data * CpuDatap; /* current per cpu data */ unsigned int preemption_count; /* preemption count */ uint16_t exception_trace_code; uint8_t reserved7; #if defined(HAS_APPLE_PAC) uint64_t rop_pid; uint64_t jop_pid; #else uint64_t reserved9; uint64_t reserved10; #endif uint64_t reserved11; }; #endif extern struct arm_saved_state * get_user_regs(thread_t); extern struct arm_saved_state * find_user_regs(thread_t); extern struct arm_saved_state * find_kern_regs(thread_t); extern struct arm_vfpsaved_state * find_user_vfp(thread_t); extern arm_debug_state32_t * find_debug_state32(thread_t); extern arm_debug_state32_t * find_or_allocate_debug_state32(thread_t); extern arm_debug_state64_t * find_debug_state64(thread_t); extern arm_debug_state64_t * find_or_allocate_debug_state64(thread_t); extern arm_neon_saved_state_t * get_user_neon_regs(thread_t); #define FIND_PERFCONTROL_STATE(th) (&th->machine.perfctrl_state) #ifdef MACH_KERNEL_PRIVATE #if __ARM_VFP__ extern void vfp_state_initialize(struct arm_vfpsaved_state *vfp_state); extern void vfp_save(struct arm_vfpsaved_state *vfp_ss); extern void vfp_load(struct arm_vfpsaved_state *vfp_ss); #endif /* __ARM_VFP__ */ extern void arm_debug_set(arm_debug_state_t *debug_state); extern void arm_debug_set32(arm_debug_state_t *debug_state); extern void arm_debug_set64(arm_debug_state_t *debug_state); #endif /* MACH_KERNEL_PRIVATE */ extern void *act_thread_csave(void); extern void act_thread_catt(void *ctx); extern void act_thread_cfree(void *ctx); /* * Return address of the function that called current function, given * address of the first parameter of current function. */ #define GET_RETURN_PC(addr) (__builtin_return_address(0)) #endif /* _ARM_THREAD_H_ */ |