forked from apple/darwin-xnu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kasan_dynamic_blacklist.c
473 lines (385 loc) · 10.3 KB
/
kasan_dynamic_blacklist.c
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
#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_BLACKLIST
#define MAX_FRAMES 8
#define HASH_NBUCKETS 128U
#define HASH_MASK (HASH_NBUCKETS-1)
#define HASH_CACHE_NENTRIES 128
struct blacklist_entry {
const char *kext_name;
const char *func_name;
const unsigned type_mask;
/* internal */
uint64_t count;
};
#include "kasan_blacklist_dynamic.h"
static const size_t blacklist_entries = sizeof(blacklist)/sizeof(blacklist[0]);
decl_simple_lock_data(static, _dybl_lock);
static void
dybl_lock(boolean_t *b)
{
*b = ml_set_interrupts_enabled(false);
simple_lock(&_dybl_lock);
}
static void
dybl_unlock(boolean_t b)
{
simple_unlock(&_dybl_lock);
ml_set_interrupts_enabled(b);
}
/*
* blacklist call site hash table
*/
struct blacklist_hash_entry {
SLIST_ENTRY(blacklist_hash_entry) chain; // next element in chain
struct blacklist_entry *ble; // blacklist entry that this caller is an instance of
uintptr_t addr; // callsite address
uint64_t count; // hit count
};
struct hash_chain_head {
SLIST_HEAD(, blacklist_hash_entry);
};
unsigned cache_next_entry = 0;
struct blacklist_hash_entry blhe_cache[HASH_CACHE_NENTRIES];
struct hash_chain_head hash_buckets[HASH_NBUCKETS];
static struct blacklist_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 &blhe_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 blacklist_hash_entry *
blacklist_hash_lookup(uintptr_t addr)
{
unsigned idx = hash_addr(addr);
struct blacklist_hash_entry *blhe;
SLIST_FOREACH(blhe, &hash_buckets[idx], chain) {
if (blhe->addr == addr) {
return blhe;
}
}
return NULL;
}
static struct blacklist_hash_entry *
blacklist_hash_add(uintptr_t addr, struct blacklist_entry *ble)
{
unsigned idx = hash_addr(addr);
struct blacklist_hash_entry *blhe = alloc_hash_entry();
if (!blhe) {
return NULL;
}
blhe->ble = ble;
blhe->addr = addr;
blhe->count = 1;
SLIST_INSERT_HEAD(&hash_buckets[idx], blhe, chain);
return blhe;
}
static void
hash_drop(void)
{
if (cache_next_entry > 0) {
bzero(&hash_buckets, sizeof(hash_buckets));
bzero(&blhe_cache, sizeof(struct blacklist_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; // blacklist 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\n");
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_dybl_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 CONFIG_EMBEDDED
if (is_exec && strcmp("__TEXT_EXEC", seg->segname) != 0) {
is_exec = false;
}
#endif
if (is_exec) {
struct range_tree_entry *e = kalloc(sizeof(struct range_tree_entry));
bzero(e, sizeof(*e));
e->base = seg->vmaddr;
e->size = seg->vmsize;
e->bundleid = kextname;
e->mh = mh;
boolean_t flag;
dybl_lock(&flag);
RB_INSERT(range_tree, &range_tree_root, e);
dybl_unlock(flag);
}
}
cmd = (void *)((uintptr_t)cmd + cmd->cmdsize);
}
}
void
kasan_dybl_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 CONFIG_EMBEDDED
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;
dybl_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 blacklist entry in this range */
hash_drop();
}
}
dybl_unlock(flag);
if (e) {
kfree(e, sizeof(*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 NOINLINE
kasan_is_blacklisted(unsigned mask)
{
uint32_t nframes = 0;
uintptr_t frames[MAX_FRAMES];
uintptr_t *bt = frames;
nframes = backtrace(bt, MAX_FRAMES);
boolean_t flag;
if (nframes >= 2) {
/* ignore self and direct caller */
nframes -= 2;
bt += 2;
}
struct blacklist_hash_entry *blhe = NULL;
dybl_lock(&flag);
/* First check if any frame hits in the hash */
for (uint32_t i = 0; i < nframes; i++) {
blhe = blacklist_hash_lookup(bt[i]);
if (blhe) {
if ((blhe->ble->type_mask & mask) != mask) {
/* wrong type */
continue;
}
/* hit */
blhe->count++;
blhe->ble->count++;
// printf("KASan: blacklist cache hit (%s:%s [0x%lx] 0x%x)\n",
// ble->kext_name ?: "" , ble->func_name ?: "", VM_KERNEL_UNSLIDE(bt[i]), mask);
dybl_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 blacklist */
for (size_t j = 0; j < blacklist_entries; j++) {
struct blacklist_entry *ble = &blacklist[j];
uint64_t count;
if ((ble->type_mask & mask) != mask) {
/* wrong type */
continue;
}
if (ble->kext_name && kextname && strncmp(kextname, ble->kext_name, KMOD_MAX_NAME) != 0) {
/* wrong kext name */
continue;
}
if (ble->func_name && funcname && strncmp(funcname, ble->func_name, 128) != 0) {
/* wrong func name */
continue;
}
/* found a matching function or kext */
blhe = blacklist_hash_add(bt[i], ble);
count = ble->count++;
e->accessed = 1;
dybl_unlock(flag);
if (count == 0) {
printf("KASan: ignoring blacklisted violation (%s:%s [0x%lx] %d 0x%x)\n",
kextname, funcname, VM_KERNEL_UNSLIDE(bt[i]), i, mask);
}
return true;
}
}
dybl_unlock(flag);
return false;
}
void
kasan_init_dybl(void)
{
simple_lock_init(&_dybl_lock, 0);
/* add the fake kernel kext */
kasan_dybl_load_kext((uintptr_t)&_mh_execute_header, "__kernel__");
}
#else /* KASAN_DYNAMIC_BLACKLIST */
bool
kasan_is_blacklisted(unsigned __unused mask)
{
return false;
}
#endif