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 580 581 582 583 584 585 586 587 588 589 590 591 592 | #include <sys/queue.h> #include <kern/backtrace.h> #include <kern/kalloc.h> #include <kern/assert.h> #include <kern/debug.h> #include <kern/zalloc.h> #include <kern/simple_lock.h> #include <kern/locks.h> #include <machine/machine_routines.h> #include <libkern/libkern.h> #include <libkern/tree.h> #include <libkern/kernel_mach_header.h> #include <libkern/OSKextLib.h> #include <mach-o/loader.h> #include <mach-o/nlist.h> #include "kasan.h" #include "kasan_internal.h" #if KASAN_DYNAMIC_DENYLIST #define MAX_FRAMES 8 #define HASH_NBUCKETS 128U #define HASH_MASK (HASH_NBUCKETS-1) #define HASH_CACHE_NENTRIES 128 struct denylist_entry { const char *kext_name; const char *func_name; access_t type_mask; /* internal */ uint64_t count; }; #include "kasan_denylist_dynamic.h" /* defines 'denylist' and 'denylist_entries' */ decl_simple_lock_data(static, _dyn_denylist_lock); static access_t denylisted_types; /* bitmap of access types with denylist entries */ static void dyn_denylist_lock(boolean_t *b) { *b = ml_set_interrupts_enabled(false); simple_lock(&_dyn_denylist_lock, LCK_GRP_NULL); } static void dyn_denylist_unlock(boolean_t b) { simple_unlock(&_dyn_denylist_lock); ml_set_interrupts_enabled(b); } /* * denylist call site hash table */ struct denylist_hash_entry { SLIST_ENTRY(denylist_hash_entry) chain; // next element in chain struct denylist_entry *dle; // denylist entry that this caller is an instance of uintptr_t addr; // callsite address uint64_t count; // hit count }; struct hash_chain_head { SLIST_HEAD(, denylist_hash_entry); }; unsigned cache_next_entry = 0; struct denylist_hash_entry dlhe_cache[HASH_CACHE_NENTRIES]; struct hash_chain_head hash_buckets[HASH_NBUCKETS]; static struct denylist_hash_entry * alloc_hash_entry(void) { unsigned idx = cache_next_entry++; if (idx >= HASH_CACHE_NENTRIES) { cache_next_entry = HASH_CACHE_NENTRIES; // avoid overflow return NULL; } return &dlhe_cache[idx]; } static unsigned hash_addr(uintptr_t addr) { addr ^= (addr >> 7); /* mix in some of the bits likely to select the kext */ return (unsigned)addr & HASH_MASK; } static struct denylist_hash_entry * denylist_hash_lookup(uintptr_t addr) { unsigned idx = hash_addr(addr); struct denylist_hash_entry *dlhe; SLIST_FOREACH(dlhe, &hash_buckets[idx], chain) { if (dlhe->addr == addr) { return dlhe; } } return NULL; } static struct denylist_hash_entry * denylist_hash_add(uintptr_t addr, struct denylist_entry *dle) { unsigned idx = hash_addr(addr); struct denylist_hash_entry *dlhe = alloc_hash_entry(); if (!dlhe) { return NULL; } dlhe->dle = dle; dlhe->addr = addr; dlhe->count = 1; SLIST_INSERT_HEAD(&hash_buckets[idx], dlhe, chain); return dlhe; } static void hash_drop(void) { if (cache_next_entry > 0) { bzero(&hash_buckets, sizeof(hash_buckets)); bzero(&dlhe_cache, sizeof(struct denylist_hash_entry) * cache_next_entry); cache_next_entry = 0; } } /* * kext range lookup tree */ struct range_tree_entry { RB_ENTRY(range_tree_entry) tree; uintptr_t base; struct { uint64_t size : 63; uint64_t accessed : 1; // denylist entry exists in this range }; /* kext name */ const char *bundleid; /* mach header for corresponding kext */ kernel_mach_header_t *mh; }; static int NOINLINE range_tree_cmp(const struct range_tree_entry *e1, const struct range_tree_entry *e2) { if (e1->size == 0 || e2->size == 0) { /* lookup */ if (e1->base + e1->size < e2->base) { return -1; } else if (e1->base > e2->base + e2->size) { return 1; } else { return 0; } } else { /* compare */ if (e1->base + e1->size <= e2->base) { return -1; } else if (e1->base >= e2->base + e2->size) { return 1; } else { panic("bad compare"); return 0; } } } RB_HEAD(range_tree, range_tree_entry) range_tree_root; RB_PROTOTYPE(range_tree, range_tree_entry, tree, range_tree_cmp); RB_GENERATE(range_tree, range_tree_entry, tree, range_tree_cmp); /* for each executable section, insert a range tree entry */ void kasan_dyn_denylist_load_kext(uintptr_t addr, const char *kextname) { int i; struct load_command *cmd = NULL; kernel_mach_header_t *mh = (void *)addr; cmd = (struct load_command *)&mh[1]; for (i = 0; i < (int)mh->ncmds; i++) { if (cmd->cmd == LC_SEGMENT_KERNEL) { kernel_segment_command_t *seg = (void *)cmd; bool is_exec = seg->initprot & VM_PROT_EXECUTE; #if defined(__arm64__) if (is_exec && strcmp("__TEXT_EXEC", seg->segname) != 0) { is_exec = false; } #endif if (is_exec) { struct range_tree_entry *e = kalloc_type(struct range_tree_entry, Z_WAITOK | Z_ZERO | Z_NOFAIL); e->base = seg->vmaddr; e->size = seg->vmsize; e->bundleid = kextname; e->mh = mh; boolean_t flag; dyn_denylist_lock(&flag); RB_INSERT(range_tree, &range_tree_root, e); dyn_denylist_unlock(flag); } } cmd = (void *)((uintptr_t)cmd + cmd->cmdsize); } } void kasan_dyn_denylist_unload_kext(uintptr_t addr) { int i; struct load_command *cmd = NULL; kernel_mach_header_t *mh = (void *)addr; cmd = (struct load_command *)&mh[1]; for (i = 0; i < (int)mh->ncmds; i++) { if (cmd->cmd == LC_SEGMENT_KERNEL) { kernel_segment_command_t *seg = (void *)cmd; bool is_exec = seg->initprot & VM_PROT_EXECUTE; #if defined(__arm64__) if (is_exec && strcmp("__TEXT_EXEC", seg->segname) != 0) { is_exec = false; } #endif if (is_exec) { struct range_tree_entry key = { .base = seg->vmaddr, .size = 0 }; struct range_tree_entry *e; boolean_t flag; dyn_denylist_lock(&flag); e = RB_FIND(range_tree, &range_tree_root, &key); if (e) { RB_REMOVE(range_tree, &range_tree_root, e); if (e->accessed) { /* there was a denylist entry in this range */ hash_drop(); } } dyn_denylist_unlock(flag); kfree_type(struct range_tree_entry, e); } } cmd = (void *)((uintptr_t)cmd + cmd->cmdsize); } } /* * return the closest function name at or before addr */ static const NOINLINE char * addr_to_func(uintptr_t addr, const kernel_mach_header_t *mh) { int i; uintptr_t cur_addr = 0; const struct load_command *cmd = NULL; const struct symtab_command *st = NULL; const kernel_segment_command_t *le = NULL; const char *strings; const kernel_nlist_t *syms; const char *cur_name = NULL; cmd = (const struct load_command *)&mh[1]; /* * find the symtab command and linkedit segment */ for (i = 0; i < (int)mh->ncmds; i++) { if (cmd->cmd == LC_SYMTAB) { st = (const struct symtab_command *)cmd; } else if (cmd->cmd == LC_SEGMENT_KERNEL) { const kernel_segment_command_t *seg = (const void *)cmd; if (!strcmp(seg->segname, SEG_LINKEDIT)) { le = (const void *)cmd; } } cmd = (const void *)((uintptr_t)cmd + cmd->cmdsize); } /* locate the symbols and strings in the symtab */ strings = (const void *)((le->vmaddr - le->fileoff) + st->stroff); syms = (const void *)((le->vmaddr - le->fileoff) + st->symoff); /* * iterate the symbols, looking for the closest one to `addr' */ for (i = 0; i < (int)st->nsyms; i++) { uint8_t n_type = syms[i].n_type; const char *name = strings + syms[i].n_un.n_strx; if (n_type & N_STAB) { /* ignore debug entries */ continue; } n_type &= N_TYPE; if (syms[i].n_un.n_strx == 0 || !(n_type == N_SECT || n_type == N_ABS)) { /* only use named and defined symbols */ continue; } #if 0 if (mh != &_mh_execute_header) { printf("sym '%s' 0x%x 0x%lx\n", name, (unsigned)syms[i].n_type, (unsigned long)syms[i].n_value); } #endif if (*name == '_') { name += 1; } /* this symbol is closer than the one we had */ if (syms[i].n_value <= addr && syms[i].n_value > cur_addr) { cur_name = name; cur_addr = syms[i].n_value; } } /* best guess for name of function at addr */ return cur_name; } bool OS_NOINLINE kasan_is_denylisted(access_t type) { uint32_t nframes = 0; uintptr_t frames[MAX_FRAMES]; uintptr_t *bt = frames; assert(__builtin_popcount(type) == 1); if ((type & denylisted_types) == 0) { /* early exit for types with no denylist entries */ return false; } struct backtrace_control ctl = { .btc_frame_addr = (uintptr_t)__builtin_frame_address(0), }; nframes = backtrace(bt, MAX_FRAMES, &ctl, NULL); boolean_t flag; if (nframes >= 1) { /* ignore direct caller */ nframes -= 1; bt += 1; } struct denylist_hash_entry *dlhe = NULL; dyn_denylist_lock(&flag); /* First check if any frame hits in the hash */ for (uint32_t i = 0; i < nframes; i++) { dlhe = denylist_hash_lookup(bt[i]); if (dlhe) { if ((dlhe->dle->type_mask & type) != type) { /* wrong type */ continue; } /* hit */ dlhe->count++; dlhe->dle->count++; // printf("KASan: denylist cache hit (%s:%s [0x%lx] 0x%x)\n", // dle->kext_name ?: "" , dle->func_name ?: "", VM_KERNEL_UNSLIDE(bt[i]), mask); dyn_denylist_unlock(flag); return true; } } /* no hits - slowpath */ for (uint32_t i = 0; i < nframes; i++) { const char *kextname = NULL; const char *funcname = NULL; struct range_tree_entry key = { .base = bt[i], .size = 0 }; struct range_tree_entry *e = RB_FIND(range_tree, &range_tree_root, &key); if (!e) { /* no match at this address - kinda weird? */ continue; } /* get the function and bundle name for the current frame */ funcname = addr_to_func(bt[i], e->mh); if (e->bundleid) { kextname = strrchr(e->bundleid, '.'); if (kextname) { kextname++; } else { kextname = e->bundleid; } } // printf("%s: a = 0x%016lx,0x%016lx f = %s, k = %s\n", __func__, bt[i], VM_KERNEL_UNSLIDE(bt[i]), funcname, kextname); /* check if kextname or funcname are in the denylist */ for (size_t j = 0; j < denylist_entries; j++) { struct denylist_entry *dle = &denylist[j]; uint64_t count; if ((dle->type_mask & type) != type) { /* wrong type */ continue; } if (dle->kext_name && kextname && strncmp(kextname, dle->kext_name, KMOD_MAX_NAME) != 0) { /* wrong kext name */ continue; } if (dle->func_name && funcname && strncmp(funcname, dle->func_name, 128) != 0) { /* wrong func name */ continue; } /* found a matching function or kext */ dlhe = denylist_hash_add(bt[i], dle); count = dle->count++; e->accessed = 1; dyn_denylist_unlock(flag); if (count == 0) { printf("KASan: ignoring denylisted violation (%s:%s [0x%lx] %d 0x%x)\n", kextname, funcname, VM_KERNEL_UNSLIDE(bt[i]), i, type); } return true; } } dyn_denylist_unlock(flag); return false; } static void add_denylist_entry(const char *kext, const char *func, access_t type) { assert(kext || func); struct denylist_entry *dle = &denylist[denylist_entries++]; if (denylist_entries > denylist_max_entries) { panic("KASan: dynamic denylist entries exhausted"); } if (kext) { size_t sz = __nosan_strlen(kext) + 1; if (sz > 1) { char *s = zalloc_permanent(sz, ZALIGN_NONE); __nosan_strlcpy(s, kext, sz); dle->kext_name = s; } } if (func) { size_t sz = __nosan_strlen(func) + 1; if (sz > 1) { char *s = zalloc_permanent(sz, ZALIGN_NONE); __nosan_strlcpy(s, func, sz); dle->func_name = s; } } dle->type_mask = type; } #define TS(x) { .type = TYPE_##x, .str = #x } static const struct { const access_t type; const char * const str; } typemap[] = { TS(LOAD), TS(STORE), TS(MEMR), TS(MEMW), TS(STRR), TS(STRW), TS(ZFREE), TS(FSFREE), TS(UAF), TS(POISON_GLOBAL), TS(POISON_HEAP), TS(MEM), TS(STR), TS(READ), TS(WRITE), TS(RW), TS(FREE), TS(NORMAL), TS(DYNAMIC), TS(POISON), TS(ALL), /* convenience aliases */ { .type = TYPE_POISON_GLOBAL, .str = "GLOB" }, { .type = TYPE_POISON_HEAP, .str = "HEAP" }, }; static size_t typemap_sz = sizeof(typemap) / sizeof(typemap[0]); static inline access_t map_type(const char *str) { if (strlen(str) == 0) { return TYPE_NORMAL; } /* convert type string to integer ID */ for (size_t i = 0; i < typemap_sz; i++) { if (strcasecmp(str, typemap[i].str) == 0) { return typemap[i].type; } } printf("KASan: unknown denylist type `%s', assuming `normal'\n", str); return TYPE_NORMAL; } void kasan_init_dyn_denylist(void) { simple_lock_init(&_dyn_denylist_lock, 0); /* * dynamic denylist entries via boot-arg. Syntax is: * kasan.bl=kext1:func1:type1,kext2:func2:type2,... */ char buf[256] = {}; char *bufp = buf; if (PE_parse_boot_arg_str("kasan.bl", bufp, sizeof(buf))) { char *kext; while ((kext = strsep(&bufp, ",")) != NULL) { access_t type = TYPE_NORMAL; char *func = strchr(kext, ':'); if (func) { *func++ = 0; } char *typestr = strchr(func, ':'); if (typestr) { *typestr++ = 0; type = map_type(typestr); } add_denylist_entry(kext, func, type); } } /* collect bitmask of denylisted types */ for (size_t j = 0; j < denylist_entries; j++) { struct denylist_entry *dle = &denylist[j]; denylisted_types |= dle->type_mask; } /* add the fake kernel kext */ kasan_dyn_denylist_load_kext((uintptr_t)&_mh_execute_header, "__kernel__"); } #else /* KASAN_DYNAMIC_DENYLIST */ bool kasan_is_denylisted(access_t __unused type) { return false; } #endif |