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 | /* * 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> #if SCHED_HYGIENE_DEBUG #include <kern/timeout_decl.h> #endif #endif /* MACH_KERNEL_PRIVATE */ 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 #if HAS_ARM_FEAT_SME #define HAVE_MACHINE_THREAD_MATRIX_STATE 1 #endif #if HAVE_MACHINE_THREAD_MATRIX_STATE #define UMATRIX_PTRAUTH XNU_PTRAUTH_SIGNED_PTR("machine_thread.umatrix_hdr") #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 uint32_t arm_machine_flags; /* thread flags (arm64/machine_machdep.h) */ 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 * XNU_PTRAUTH_SIGNED_PTR("machine_thread.uNeon") uNeon; /* pointer to user VFP state */ arm_saved_state_t * kpcb; /* pointer to kernel GPR state */ #if HAVE_MACHINE_THREAD_MATRIX_STATE union { arm_state_hdr_t *UMATRIX_PTRAUTH umatrix_hdr; #if HAS_ARM_FEAT_SME arm_sme_saved_state_t *UMATRIX_PTRAUTH usme; /* pointer to user SME state */ #endif }; #endif /* HAVE_MACHINE_THREAD_MATRIX_STATE */ uint64_t reserved4; uint64_t recover_far; arm_debug_state_t *DebugData; vm_address_t cthread_self; /* for use of cthread package */ uint64_t recover_esr; 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 kern_timeout_t int_timeout; /* for interrupt disabled timeout mechanism */ 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; /* Address due to which an exception is expected to be thrown (FAR_ELx) */ volatile uintptr_t expected_fault_pc; /* PC at which an exception is expected to be thrown (ELR_ELx) */ #endif uint64_t reserved6; union { long pcpu_data_base_and_cpu_number; const uint16_t cpu_number; }; struct cpu_data * CpuDatap; /* current per cpu data */ unsigned int preemption_count; /* preemption count */ uint16_t exception_trace_code; bool reserved7; bool el0_synchronous_trap; /* is this thread inside an EL0 synchronous trap handler? */ #if HAS_MTE bool sec_override; /* disable MTE for this thread, regardless of the current map's MTE policy */ #else bool reserved9; #endif #if defined(HAS_APPLE_PAC) uint64_t rop_pid; uint64_t jop_pid; #else uint64_t reserved10; uint64_t reserved11; #endif uint64_t reserved12; #if HAS_ARM_FEAT_SME uint64_t tpidr2_el0; #else uint64_t reserved13; #endif uint64_t reserved14; #if HAS_MTE bool in_unprivileged_access; #else bool reserved15; #endif }; #endif static inline long ml_make_pcpu_base_and_cpu_number(long base, uint16_t cpu) { return (base << 16) | cpu; } 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_debug_state_t * allocate_debug_state64(void); extern void free_debug_state(arm_debug_state_t *); extern void set_user_neon_reg(thread_t, unsigned int, uint128_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); #if MACH_KERNEL_PRIVATE #if HAS_ARM_FEAT_SME extern uint64_t machine_thread_get_sme_priority(thread_t thread); extern void machine_thread_update_sme_priority(thread_t thread); extern arm_sme_saved_state_t *machine_thread_get_sme_state(thread_t thread); extern kern_return_t machine_thread_sme_state_alloc(thread_t thread); #endif #if HAVE_MACHINE_THREAD_MATRIX_STATE extern void machine_thread_matrix_state_dup(thread_t target); #endif #endif /* MACH_KERNEL_PRIVATE */ #if HAS_APPLE_GENERIC_TIMER extern void agt_thread_bootstrap(void); #endif /* HAS_MACHINE_GENERIC_TIMER */ /* * 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_ */ |