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 | /* * Copyright (c) 2012-2024 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 <arm/cpu_data_internal.h> #include <arm/misc_protos.h> #include <kern/thread.h> #include <kern/zalloc_internal.h> #include <sys/errno.h> #include <vm/pmap.h> #include <vm/vm_map_xnu.h> #include <vm/vm_memtag.h> #include <san/kasan.h> #include <arm/pmap.h> #include <arm64/speculation.h> #undef copyin #undef copyout extern int _bcopyin(const user_addr_t src, char *dst, vm_size_t len); extern int _bcopyinstr(const user_addr_t src, char *dst, vm_size_t max, vm_size_t *actual); extern int _bcopyout(const char *src, user_addr_t dst, vm_size_t len); extern int _copyin_atomic32(const user_addr_t src, uint32_t *dst); extern int _copyin_atomic32_wait_if_equals(const user_addr_t src, uint32_t value); extern int _copyin_atomic64(const user_addr_t src, uint64_t *dst); extern int _copyout_atomic32(uint32_t u32, user_addr_t dst); extern int _copyout_atomic64(uint64_t u64, user_addr_t dst); extern int copyoutstr_prevalidate(const void *kaddr, user_addr_t uaddr, size_t len); extern const vm_map_address_t physmap_base; extern const vm_map_address_t physmap_end; /*! * @typedef copyio_flags_t * * @const COPYIO_IN * The copy is user -> kernel. * One of COPYIO_IN or COPYIO_OUT should always be specified. * * @const COPYIO_OUT * The copy is kernel -> user * One of COPYIO_IN or COPYIO_OUT should always be specified. * * @const COPYIO_ALLOW_KERNEL_TO_KERNEL * The "user_address" is allowed to be in the VA space of the kernel. * * @const COPYIO_VALIDATE_USER_ONLY * There isn't really a kernel address used, and only the user address * needs to be validated. * * @const COPYIO_ATOMIC * The copyio operation is atomic, ensure that it is properly aligned. */ __options_decl(copyio_flags_t, uint32_t, { COPYIO_IN = 0x0001, COPYIO_OUT = 0x0002, COPYIO_ALLOW_KERNEL_TO_KERNEL = 0x0004, COPYIO_VALIDATE_USER_ONLY = 0x0008, COPYIO_ATOMIC = 0x0010, }); typedef enum { USER_ACCESS_READ, USER_ACCESS_WRITE } user_access_direction_t; static inline void user_access_enable(__unused user_access_direction_t user_access_direction, pmap_t __unused pmap) { #if __ARM_PAN_AVAILABLE__ assert(__builtin_arm_rsr("pan") != 0); __builtin_arm_wsr("pan", 0); #endif /* __ARM_PAN_AVAILABLE__ */ } static inline void user_access_disable(__unused user_access_direction_t user_access_direction, pmap_t __unused pmap) { #if __ARM_PAN_AVAILABLE__ __builtin_arm_wsr("pan", 1); #endif /* __ARM_PAN_AVAILABLE__ */ } #define WRAP_COPYIO_PAN(_dir, _map, _op) \ ({ \ int _ret; \ user_access_enable(_dir, (_map)->pmap); \ _ret = _op; \ user_access_disable(_dir, (_map)->pmap); \ _ret; \ }) #define WRAP_COPYIO(_dir, _map, _op) WRAP_COPYIO_PAN(_dir, _map, _op) /* * Copy sizes bigger than this value will cause a kernel panic. * * Yes, this is an arbitrary fixed limit, but it's almost certainly * a programming error to be copying more than this amount between * user and wired kernel memory in a single invocation on this * platform. */ const int copysize_limit_panic = (64 * 1024 * 1024); static inline bool is_kernel_to_kernel_copy(pmap_t pmap) { return pmap == kernel_pmap; } /** * In order to prevent copies from speculatively targeting the wrong address * space, force kernel-to-kernel copies to target the kernel address space * (TTBR1) and non-kernel copies to target the user address space (TTBR0). * * This should have no non-speculative effect as any address which passes * validation should already have bit 55 (the address space select bit) set * appropriately. If the address would change (i.e. addr is invalid for the copy * type), this function panics and so it must only be called after all other * verification has completed. */ static user_addr_t copy_ensure_address_space_spec(vm_map_t map, const user_addr_t addr) { user_addr_t new_addr = 0; user_addr_t kaddr = addr | BIT(55); user_addr_t uaddr = addr & (~BIT(55)); /* * new_addr = is_kernel_to_kernel_copy(...) ? kaddr : uaddr * * The check must be performed explicitly as the compiler lowering of the * actual call may be subject to prediction. */ SPECULATION_GUARD_SELECT_XXX( /* out */ new_addr, /* cmp_1 */ map->pmap, /* cmp_2 */ kernel_pmap, /* cc */ "eq", /* sel_1 */ kaddr, /* n_cc */ "ne", /* sel_2 */ uaddr); /* * Since we're modifying the address past the validation point, let's be * sure we didn't erroneously change address spaces. * * We have to be careful to hide this check from the optimizer as if it * learns that new_addr == addr, then it is free to (and, indeed, does) use * addr everywhere that new_addr is referenced, which breaks our hardening. */ user_addr_t new_addr_opt_hidden = new_addr; __compiler_materialize_and_prevent_reordering_on(new_addr_opt_hidden); if (new_addr_opt_hidden != addr) { panic("copy_ensure_address_space_spec changed address: 0x%llx->0x%llx", addr, new_addr); } return new_addr; } static int copy_validate_user_addr(vm_map_t map, const user_addr_t user_addr, vm_size_t nbytes) { user_addr_t canonicalized_user_addr = user_addr; user_addr_t user_addr_last; bool is_kernel_to_kernel = is_kernel_to_kernel_copy(map->pmap); if (__improbable(canonicalized_user_addr < vm_map_min(map) || os_add_overflow(canonicalized_user_addr, nbytes, &user_addr_last) || user_addr_last > vm_map_max(map))) { return EFAULT; } if (!is_kernel_to_kernel) { if (__improbable(canonicalized_user_addr & ARM_TBI_USER_MASK)) { return EINVAL; } } return 0; } static void copy_validate_kernel_addr(uintptr_t kernel_addr, vm_size_t nbytes) { uintptr_t kernel_addr_last; if (__improbable(os_add_overflow(kernel_addr, nbytes, &kernel_addr_last))) { panic("%s(%p, %lu) - kaddr not in kernel", __func__, (void *)kernel_addr, nbytes); } bool in_kva = (VM_KERNEL_STRIP_UPTR(kernel_addr) >= VM_MIN_KERNEL_ADDRESS) && (VM_KERNEL_STRIP_UPTR(kernel_addr_last) <= VM_MAX_KERNEL_ADDRESS); bool in_physmap = (VM_KERNEL_STRIP_UPTR(kernel_addr) >= physmap_base) && (VM_KERNEL_STRIP_UPTR(kernel_addr_last) <= physmap_end); if (__improbable(!(in_kva || in_physmap))) { panic("%s(%p, %lu) - kaddr not in kernel", __func__, (void *)kernel_addr, nbytes); } zone_element_bounds_check(kernel_addr, nbytes); } /* * Validate the arguments to copy{in,out} on this platform. * * Returns EXDEV when the current thread pmap is the kernel's * which is non fatal for certain routines. */ static inline __attribute__((always_inline)) int copy_validate(vm_map_t map, const user_addr_t user_addr, uintptr_t kernel_addr, vm_size_t nbytes, copyio_flags_t flags) { int ret; if (__improbable(nbytes > copysize_limit_panic)) { return EINVAL; } ret = copy_validate_user_addr(map, user_addr, nbytes); if (__improbable(ret)) { return ret; } if (flags & COPYIO_ATOMIC) { if (__improbable(user_addr & (nbytes - 1))) { return EINVAL; } } if ((flags & COPYIO_VALIDATE_USER_ONLY) == 0) { copy_validate_kernel_addr(kernel_addr, nbytes); #if KASAN /* For user copies, asan-check the kernel-side buffer */ if (flags & COPYIO_IN) { __asan_storeN(kernel_addr, nbytes); } else { __asan_loadN(kernel_addr, nbytes); } #endif } if (is_kernel_to_kernel_copy(map->pmap)) { if (__improbable((flags & COPYIO_ALLOW_KERNEL_TO_KERNEL) == 0)) { return EFAULT; } return EXDEV; } return 0; } int copyin_kern(const user_addr_t user_addr, char *kernel_addr, vm_size_t nbytes) { bcopy((const char*)(uintptr_t)user_addr, kernel_addr, nbytes); return 0; } int copyout_kern(const char *kernel_addr, user_addr_t user_addr, vm_size_t nbytes) { bcopy(kernel_addr, (char *)(uintptr_t)user_addr, nbytes); return 0; } int copyin(const user_addr_t user_addr, void *kernel_addr, vm_size_t nbytes) { vm_map_t map = current_thread()->map; user_addr_t guarded_user_addr; int result; if (__improbable(nbytes == 0)) { return 0; } result = copy_validate(map, user_addr, (uintptr_t)kernel_addr, nbytes, COPYIO_IN | COPYIO_ALLOW_KERNEL_TO_KERNEL); if (result == EXDEV) { guarded_user_addr = copy_ensure_address_space_spec(map, user_addr); return copyin_kern(guarded_user_addr, kernel_addr, nbytes); } if (__improbable(result)) { return result; } guarded_user_addr = copy_ensure_address_space_spec(map, user_addr); return WRAP_COPYIO(USER_ACCESS_READ, map, _bcopyin(guarded_user_addr, kernel_addr, nbytes)); } /* * copy{in,out}_atomic{32,64} * Read or store an aligned value from userspace as a single memory transaction. * These functions support userspace synchronization features */ int copyin_atomic32(const user_addr_t user_addr, uint32_t *kernel_addr) { vm_map_t map = current_thread()->map; int result = copy_validate(map, user_addr, (uintptr_t)kernel_addr, 4, COPYIO_IN | COPYIO_ATOMIC); if (__improbable(result)) { return result; } user_addr_t guarded_user_addr = copy_ensure_address_space_spec(map, user_addr); return WRAP_COPYIO(USER_ACCESS_READ, map, _copyin_atomic32(guarded_user_addr, kernel_addr)); } int copyin_atomic32_wait_if_equals(const user_addr_t user_addr, uint32_t value) { vm_map_t map = current_thread()->map; int result = copy_validate(map, user_addr, 0, 4, COPYIO_OUT | COPYIO_ATOMIC | COPYIO_VALIDATE_USER_ONLY); if (__improbable(result)) { return result; } user_addr_t guarded_user_addr = copy_ensure_address_space_spec(map, user_addr); return WRAP_COPYIO(USER_ACCESS_READ, map, _copyin_atomic32_wait_if_equals(guarded_user_addr, value)); } int copyin_atomic64(const user_addr_t user_addr, uint64_t *kernel_addr) { vm_map_t map = current_thread()->map; int result = copy_validate(map, user_addr, (uintptr_t)kernel_addr, 8, COPYIO_IN | COPYIO_ATOMIC); if (__improbable(result)) { return result; } user_addr_t guarded_user_addr = copy_ensure_address_space_spec(map, user_addr); return WRAP_COPYIO(USER_ACCESS_READ, map, _copyin_atomic64(guarded_user_addr, kernel_addr)); } int copyout_atomic32(uint32_t value, user_addr_t user_addr) { vm_map_t map = current_thread()->map; int result = copy_validate(map, user_addr, 0, 4, COPYIO_OUT | COPYIO_ATOMIC | COPYIO_VALIDATE_USER_ONLY); if (__improbable(result)) { return result; } user_addr_t guarded_user_addr = copy_ensure_address_space_spec(map, user_addr); return WRAP_COPYIO(USER_ACCESS_WRITE, map, _copyout_atomic32(value, guarded_user_addr)); } int copyout_atomic64(uint64_t value, user_addr_t user_addr) { vm_map_t map = current_thread()->map; int result = copy_validate(map, user_addr, 0, 8, COPYIO_OUT | COPYIO_ATOMIC | COPYIO_VALIDATE_USER_ONLY); if (__improbable(result)) { return result; } user_addr_t guarded_user_addr = copy_ensure_address_space_spec(map, user_addr); return WRAP_COPYIO(USER_ACCESS_WRITE, map, _copyout_atomic64(value, guarded_user_addr)); } int copyinstr(const user_addr_t user_addr, char *kernel_addr, vm_size_t nbytes, vm_size_t *lencopied) { vm_map_t map = current_thread()->map; int result; vm_size_t bytes_copied = 0; *lencopied = 0; if (__improbable(nbytes == 0)) { return ENAMETOOLONG; } result = copy_validate(map, user_addr, (uintptr_t)kernel_addr, nbytes, COPYIO_IN); if (__improbable(result)) { return result; } user_addr_t guarded_user_addr = copy_ensure_address_space_spec(map, user_addr); result = WRAP_COPYIO(USER_ACCESS_READ, map, _bcopyinstr(guarded_user_addr, kernel_addr, nbytes, &bytes_copied)); if (result != EFAULT) { *lencopied = bytes_copied; } return result; } int copyout(const void *kernel_addr, user_addr_t user_addr, vm_size_t nbytes) { vm_map_t map = current_thread()->map; int result; user_addr_t guarded_user_addr; if (nbytes == 0) { return 0; } result = copy_validate(map, user_addr, (uintptr_t)kernel_addr, nbytes, COPYIO_OUT | COPYIO_ALLOW_KERNEL_TO_KERNEL); if (result == EXDEV) { guarded_user_addr = copy_ensure_address_space_spec(map, user_addr); return copyout_kern(kernel_addr, guarded_user_addr, nbytes); } if (__improbable(result)) { return result; } guarded_user_addr = copy_ensure_address_space_spec(map, user_addr); return WRAP_COPYIO(USER_ACCESS_WRITE, map, _bcopyout(kernel_addr, guarded_user_addr, nbytes)); } int copyoutstr_prevalidate(const void *__unused kaddr, user_addr_t __unused uaddr, size_t __unused len) { vm_map_t map = current_thread()->map; if (__improbable(is_kernel_to_kernel_copy(map->pmap))) { return EFAULT; } return 0; } #if (DEBUG || DEVELOPMENT) int verify_write(const void *source, void *dst, size_t size) { int rc; disable_preemption(); rc = _bcopyout((const char*)source, (user_addr_t)dst, size); enable_preemption(); return rc; } #endif |