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 | /* * Copyright (c) 2000-2014 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@ */ #ifndef _KASAN_INTERNAL_H_ #define _KASAN_INTERNAL_H_ #include <stdbool.h> #include <mach/mach_vm.h> #include <kern/zalloc.h> typedef uintptr_t uptr; #define MiB(x) ((x) * 1024UL * 1024) /* * KASAN features and config */ #define FAKESTACK 1 /* KASAN_KALLOC defined in kasan.h */ /* KASAN_ZALLOC defined in kasan.h */ #define FAKESTACK_QUARANTINE (1 && FAKESTACK) #define QUARANTINE_ENTRIES 5000 #define QUARANTINE_MAXSIZE MiB(10) /* * The amount of physical memory stolen by KASan at boot to back the shadow memory * and page tables. Larger memory systems need to steal proportionally less. */ #ifdef __arm64__ /* Works out at about 25% of 512 MiB and 15% of 3GiB system */ # define STOLEN_MEM_PERCENT 13UL # define STOLEN_MEM_BYTES MiB(40) # define HW_PAGE_SIZE (ARM_PGBYTES) # define HW_PAGE_MASK (ARM_PGMASK) #else # define STOLEN_MEM_PERCENT 25UL # define STOLEN_MEM_BYTES 0 # define HW_PAGE_SIZE (PAGE_SIZE) # define HW_PAGE_MASK (PAGE_MASK) #endif /* boot-args */ #define KASAN_ARGS_FAKESTACK 0x0010U #define KASAN_ARGS_REPORTIGNORED 0x0020U #define KASAN_ARGS_NODYCHECKS 0x0100U #define KASAN_ARGS_NOPOISON_HEAP 0x0200U #define KASAN_ARGS_NOPOISON_GLOBAL 0x0400U #define KASAN_ARGS_CHECK_LEAKS 0x0800U /* uninitialized memory detection */ #define KASAN_UNINITIALIZED_HEAP 0xbe #ifndef KASAN # error KASAN undefined #endif #ifndef KASAN_SHIFT # error KASAN_SHIFT undefined #endif #define ADDRESS_FOR_SHADOW(x) (((x) - KASAN_SHIFT) << 3) #define SHADOW_FOR_ADDRESS(x) (uint8_t *)(((x) >> 3) + KASAN_SHIFT) #if KASAN_DEBUG # define NOINLINE OS_NOINLINE #else # define NOINLINE #endif #define ALWAYS_INLINE inline __attribute__((always_inline)) #define CLANG_MIN_VERSION(x) (defined(__apple_build_version__) && (__apple_build_version__ >= (x))) #define BIT(x) (1U << (x)) enum __attribute__((flag_enum)) kasan_access_types { TYPE_LOAD = BIT(0), /* regular memory load */ TYPE_STORE = BIT(1), /* regular store */ TYPE_MEMR = BIT(2), /* memory intrinsic (read) */ TYPE_MEMW = BIT(3), /* memory intrinsic (write) */ TYPE_STRR = BIT(4), /* string intrinsic (read) */ TYPE_STRW = BIT(5), /* string intrinsic (write) */ TYPE_KFREE = BIT(6), /* kfree() */ TYPE_ZFREE = BIT(7), /* zfree() */ TYPE_FSFREE = BIT(8), /* fakestack free */ TYPE_UAF = BIT(12), TYPE_POISON_GLOBAL = BIT(13), TYPE_POISON_HEAP = BIT(14), /* no TYPE_POISON_STACK, because the runtime does not control stack poisoning */ TYPE_TEST = BIT(15), TYPE_LEAK = BIT(16), /* masks */ TYPE_MEM = TYPE_MEMR | TYPE_MEMW, /* memory intrinsics */ TYPE_STR = TYPE_STRR | TYPE_STRW, /* string intrinsics */ TYPE_READ = TYPE_LOAD | TYPE_MEMR | TYPE_STRR, /* all reads */ TYPE_WRITE = TYPE_STORE | TYPE_MEMW | TYPE_STRW, /* all writes */ TYPE_RW = TYPE_READ | TYPE_WRITE, /* reads and writes */ TYPE_FREE = TYPE_KFREE | TYPE_ZFREE | TYPE_FSFREE, TYPE_NORMAL = TYPE_RW | TYPE_FREE, TYPE_DYNAMIC = TYPE_NORMAL | TYPE_UAF, TYPE_POISON = TYPE_POISON_GLOBAL | TYPE_POISON_HEAP, TYPE_ALL = ~0U, }; enum kasan_violation_types { REASON_POISONED = 0, /* read or write of poisoned data */ REASON_BAD_METADATA = 1, /* incorrect kasan metadata */ REASON_INVALID_SIZE = 2, /* free size did not match alloc size */ REASON_MOD_AFTER_FREE = 3, /* object modified after free */ REASON_MOD_OOB = 4, /* out of bounds modification of object */ REASON_UNINITIALIZED = 5, /* leak of uninitialized kernel memory */ }; typedef enum kasan_access_types access_t; typedef enum kasan_violation_types violation_t; bool kasan_range_poisoned(vm_offset_t base, vm_size_t size, vm_offset_t *first_invalid); void kasan_check_range(const void *x, size_t sz, access_t); void kasan_test(int testno, int fail); void kasan_handle_test(void); void kasan_free_internal(void **addrp, vm_size_t *sizep, int type, zone_t *, vm_size_t user_size, int locked, bool doquarantine); void kasan_poison(vm_offset_t base, vm_size_t size, vm_size_t leftrz, vm_size_t rightrz, uint8_t flags); void kasan_lock(boolean_t *b); void kasan_unlock(boolean_t b); bool kasan_lock_held(thread_t thread); void kasan_init_fakestack(void); /* dynamic blacklist */ void kasan_init_dybl(void); bool kasan_is_blacklisted(access_t); void kasan_dybl_load_kext(uintptr_t addr, const char *kextname); void kasan_dybl_unload_kext(uintptr_t addr); /* arch-specific interface */ void kasan_arch_init(void); bool kasan_is_shadow_mapped(uintptr_t shadowp); extern vm_address_t kernel_vbase; extern vm_address_t kernel_vtop; extern unsigned shadow_pages_used; /* boot-arg configurable */ extern int fakestack_enabled; /* Describes the source location where a global is defined. */ struct asan_global_source_location { const char *filename; int line_no; int column_no; }; /* Describes an instrumented global variable. */ struct asan_global { uptr addr; uptr size; uptr size_with_redzone; const char *name; const char *module; uptr has_dynamic_init; struct asan_global_source_location *location; #if CLANG_MIN_VERSION(8020000) uptr odr_indicator; #endif }; #if defined(__x86_64__) # define _JBLEN ((9 * 2) + 3 + 16) #elif defined(__arm64__) # define _JBLEN ((14 + 8 + 2) * 2) #else # error "Unknown arch" #endif typedef int jmp_buf[_JBLEN]; void _longjmp(jmp_buf env, int val) OS_NORETURN; int _setjmp(jmp_buf env) __attribute__((returns_twice)); #endif /* _KASAN_INTERNAL_H_ */ |