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 | /* * Copyright (c) 2016-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@ */ #include <stddef.h> #include <stdint.h> #include <kern/assert.h> #include <kern/backtrace.h> #include <kern/cambria_layout.h> #include <kern/thread.h> #include <sys/errno.h> #include <vm/vm_map.h> #if defined(__arm__) || defined(__arm64__) #include <arm/cpu_data.h> #include <arm/cpu_data_internal.h> #endif #if defined(HAS_APPLE_PAC) #include <ptrauth.h> #endif #if XNU_MONITOR #define IN_PPLSTK_BOUNDS(__addr) \ (((uintptr_t)(__addr) >= (uintptr_t)pmap_stacks_start) && \ ((uintptr_t)(__addr) < (uintptr_t)pmap_stacks_end)) #endif unsigned int __attribute__((noinline)) backtrace(uintptr_t *bt, unsigned int max_frames, bool *was_truncated_out) { return backtrace_frame(bt, max_frames, __builtin_frame_address(0), was_truncated_out); } /* * This function captures a backtrace from the current stack and returns the * number of frames captured, limited by max_frames and starting at start_frame. * It's fast because it does no checking to make sure there isn't bad data. * Since it's only called from threads that we're going to keep executing, * if there's bad data we were going to die eventually. If this function is * inlined, it doesn't record the frame of the function it's inside (because * there's no stack frame). */ unsigned int __attribute__((noinline, not_tail_called)) backtrace_frame(uintptr_t *bt, unsigned int max_frames, void *start_frame, bool *was_truncated_out) { thread_t thread = current_thread(); uintptr_t *fp; unsigned int frame_index = 0; uintptr_t top, bottom; bool in_valid_stack; assert(bt != NULL); assert(max_frames > 0); fp = start_frame; bottom = thread->kernel_stack; top = bottom + kernel_stack_size; #define IN_STK_BOUNDS(__addr) \ (((uintptr_t)(__addr) >= (uintptr_t)bottom) && \ ((uintptr_t)(__addr) < (uintptr_t)top)) in_valid_stack = IN_STK_BOUNDS(fp); #if XNU_MONITOR in_valid_stack |= IN_PPLSTK_BOUNDS(fp); #endif /* XNU_MONITOR */ if (!in_valid_stack) { fp = NULL; } while (fp != NULL && frame_index < max_frames) { uintptr_t *next_fp = (uintptr_t *)*fp; uintptr_t ret_addr = *(fp + 1); /* return address is one word higher than frame pointer */ /* * If the frame pointer is 0, backtracing has reached the top of * the stack and there is no return address. Some stacks might not * have set this up, so bounds check, as well. */ in_valid_stack = IN_STK_BOUNDS(next_fp); #if XNU_MONITOR in_valid_stack |= IN_PPLSTK_BOUNDS(next_fp); #endif /* XNU_MONITOR */ if (next_fp == NULL || !in_valid_stack) { break; } #if defined(HAS_APPLE_PAC) /* return addresses signed by arm64e ABI */ bt[frame_index++] = (uintptr_t) ptrauth_strip((void *)ret_addr, ptrauth_key_return_address); #else /* defined(HAS_APPLE_PAC) */ bt[frame_index++] = ret_addr; #endif /* !defined(HAS_APPLE_PAC) */ /* stacks grow down; backtracing should be moving to higher addresses */ if (next_fp <= fp) { #if XNU_MONITOR bool fp_in_pplstack = IN_PPLSTK_BOUNDS(fp); bool fp_in_kstack = IN_STK_BOUNDS(fp); bool next_fp_in_pplstack = IN_PPLSTK_BOUNDS(fp); bool next_fp_in_kstack = IN_STK_BOUNDS(fp); /* * This check is verbose; it is basically checking whether * we are switching between the kernel stack and the cpu * stack. If so, we ignore the fact that fp has switched * directions (as it is a symptom of switching stacks). */ if (((fp_in_pplstack) && (next_fp_in_kstack)) || ((fp_in_kstack) && (next_fp_in_pplstack))) { break; } #else /* XNU_MONITOR */ break; #endif /* !XNU_MONITOR */ } fp = next_fp; } /* NULL-terminate the list, if space is available */ if (frame_index != max_frames) { bt[frame_index] = 0; } if (fp != NULL && frame_index == max_frames && was_truncated_out) { *was_truncated_out = true; } return frame_index; #undef IN_STK_BOUNDS } #if defined(__x86_64__) static kern_return_t interrupted_kernel_pc_fp(uintptr_t *pc, uintptr_t *fp) { x86_saved_state_t *state; bool state_64; uint64_t cs; state = current_cpu_datap()->cpu_int_state; if (!state) { return KERN_FAILURE; } state_64 = is_saved_state64(state); if (state_64) { cs = saved_state64(state)->isf.cs; } else { cs = saved_state32(state)->cs; } /* return early if interrupted a thread in user space */ if ((cs & SEL_PL) == SEL_PL_U) { return KERN_FAILURE; } if (state_64) { *pc = saved_state64(state)->isf.rip; *fp = saved_state64(state)->rbp; } else { *pc = saved_state32(state)->eip; *fp = saved_state32(state)->ebp; } return KERN_SUCCESS; } #elif defined(__arm64__) static kern_return_t interrupted_kernel_pc_fp(uintptr_t *pc, uintptr_t *fp) { struct arm_saved_state *state; bool state_64; state = getCpuDatap()->cpu_int_state; if (!state) { return KERN_FAILURE; } state_64 = is_saved_state64(state); /* return early if interrupted a thread in user space */ if (PSR64_IS_USER(get_saved_state_cpsr(state))) { return KERN_FAILURE; } *pc = get_saved_state_pc(state); *fp = get_saved_state_fp(state); return KERN_SUCCESS; } #elif defined(__arm__) static kern_return_t interrupted_kernel_pc_fp(uintptr_t *pc, uintptr_t *fp) { struct arm_saved_state *state; state = getCpuDatap()->cpu_int_state; if (!state) { return KERN_FAILURE; } /* return early if interrupted a thread in user space */ if (PSR_IS_USER(get_saved_state_cpsr(state))) { return KERN_FAILURE; } *pc = get_saved_state_pc(state); *fp = get_saved_state_fp(state); return KERN_SUCCESS; } #else /* defined(__arm__) */ #error "interrupted_kernel_pc_fp: unsupported architecture" #endif /* !defined(__arm__) */ unsigned int backtrace_interrupted(uintptr_t *bt, unsigned int max_frames, bool *was_truncated_out) { uintptr_t pc; uintptr_t fp; kern_return_t kr; assert(bt != NULL); assert(max_frames > 0); assert(ml_at_interrupt_context() == TRUE); kr = interrupted_kernel_pc_fp(&pc, &fp); if (kr != KERN_SUCCESS) { return 0; } bt[0] = pc; if (max_frames == 1) { return 1; } return backtrace_frame(bt + 1, max_frames - 1, (void *)fp, was_truncated_out) + 1; } unsigned int backtrace_user(uintptr_t *bt, unsigned int max_frames, int *error_out, bool *user_64_out, bool *was_truncated_out) { return backtrace_thread_user(current_thread(), bt, max_frames, error_out, user_64_out, was_truncated_out, true); } unsigned int backtrace_thread_user(void *thread, uintptr_t *bt, unsigned int max_frames, int *error_out, bool *user_64_out, bool *was_truncated_out, __unused bool faults_permitted) { bool user_64; uintptr_t pc = 0, fp = 0, next_fp = 0; vm_map_t map = NULL, old_map = NULL; unsigned int frame_index = 0; int err = 0; size_t frame_size = 0; assert(bt != NULL); assert(max_frames > 0); assert((max_frames == 1) || (faults_permitted == true)); #if defined(__x86_64__) /* don't allow a malformed user stack to copyin arbitrary kernel data */ #define INVALID_USER_FP(FP) ((FP) == 0 || !IS_USERADDR64_CANONICAL((FP))) x86_saved_state_t *state = get_user_regs(thread); if (!state) { return EINVAL; } user_64 = is_saved_state64(state); if (user_64) { pc = saved_state64(state)->isf.rip; fp = saved_state64(state)->rbp; } else { pc = saved_state32(state)->eip; fp = saved_state32(state)->ebp; } #elif defined(__arm64__) struct arm_saved_state *state = get_user_regs(thread); if (!state) { return EINVAL; } user_64 = is_saved_state64(state); pc = get_saved_state_pc(state); fp = get_saved_state_fp(state); /* ARM expects stack frames to be aligned to 16 bytes */ #define INVALID_USER_FP(FP) ((FP) == 0 || ((FP) & 0x3UL) != 0UL) #elif defined(__arm__) /* ARM expects stack frames to be aligned to 16 bytes */ #define INVALID_USER_FP(FP) ((FP) == 0 || ((FP) & 0x3UL) != 0UL) struct arm_saved_state *state = get_user_regs(thread); if (!state) { return EINVAL; } user_64 = false; pc = get_saved_state_pc(state); fp = get_saved_state_fp(state); #else /* defined(__arm__) */ #error "backtrace_thread_user: unsupported architecture" #endif /* !defined(__arm__) */ bt[frame_index++] = pc; if (frame_index >= max_frames) { goto out; } if (INVALID_USER_FP(fp)) { goto out; } assert(ml_get_interrupts_enabled() == TRUE); if (!ml_get_interrupts_enabled()) { goto out; } union { struct { uint64_t fp; uint64_t ret; } u64; struct { uint32_t fp; uint32_t ret; } u32; } frame; frame_size = 2 * (user_64 ? 8 : 4); /* switch to the correct map, for copyin */ if (thread != current_thread()) { map = get_task_map_reference(get_threadtask(thread)); if (map == NULL) { goto out; } old_map = vm_map_switch(map); } else { map = NULL; } while (fp != 0 && frame_index < max_frames) { err = copyin(fp, (char *)&frame, frame_size); if (err) { if (was_truncated_out) { *was_truncated_out = true; } goto out; } next_fp = user_64 ? frame.u64.fp : frame.u32.fp; if (INVALID_USER_FP(next_fp)) { break; } uintptr_t ret_addr = user_64 ? frame.u64.ret : frame.u32.ret; #if defined(HAS_APPLE_PAC) /* return addresses signed by arm64e ABI */ bt[frame_index++] = (uintptr_t)ptrauth_strip((void *)ret_addr, ptrauth_key_return_address); #else /* defined(HAS_APPLE_PAC) */ bt[frame_index++] = ret_addr; #endif /* !defined(HAS_APPLE_PAC) */ /* stacks grow down; backtracing should be moving to higher addresses */ if (next_fp <= fp) { break; } fp = next_fp; } out: if (map) { (void)vm_map_switch(old_map); vm_map_deallocate(map); } /* NULL-terminate the list, if space is available */ if (frame_index != max_frames) { bt[frame_index] = 0; } if (fp != 0 && frame_index == max_frames && was_truncated_out) { *was_truncated_out = true; } if (user_64_out) { *user_64_out = user_64; } if (error_out) { *error_out = err; } return frame_index; #undef INVALID_USER_FP } |