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 | #include <machine/cpu_capabilities.h> #include <os/thread_self_restrict.h> #include <libkern/OSCacheControl.h> #include <sys/time.h> #include <darwintest.h> #include <sys/types.h> #include <sys/sysctl.h> #include <sys/wait.h> #include <sys/mman.h> #include <ptrauth.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <signal.h> /* * What this test does and what this test does not do: * - we test for unexpectedly-writeable MSRs in the implementaion-defined space * - any that are found to be writeable are tested for ability to store at least a single bit * - any found to do so are tested to reset in context switch or sooner * * This will detect any covert channels we create on accident * * What this test does not do: * - test that registers that are allowed to be written per-thread are properly context switched * * And that is why there is a whitelist of regs that we DO intend to be writeable from userspace * and we *KNOW* are properly context switched. Registers we *INTEND* userspace to write are * in that list. Things like TPIDR_EL0, and others * */ #define NUM_THREADS 256 T_GLOBAL_META(T_META_RUN_CONCURRENTLY(true)); #if defined(__arm64__) && defined(__LP64__) enum msr_op_reason { msr_get_name, // -> const char *name msr_read, // -> uint64_t val msr_write, // <- uint64_t val }; typedef void (*msr_op)(enum msr_op_reason why, void *param); static pthread_mutex_t threads_please_die_lock = PTHREAD_MUTEX_INITIALIZER; static volatile bool did_fault; static bool threads_please_die; static const char *registers_skipped[] = { "S3_3_C13_C0_2", //TPIDR_EL0 "S3_4_C15_C15_6", //JCTL_EL0 }; #define DECLARE_TEST(_op0, _op1, _n, _m, _op2) \ static void __attribute__((optnone)) \ msr_test_S ## _op0 ## _ ## _op1 ## _C ## _n ## _C ## _m ## _ ## _op2 (enum msr_op_reason why, void *param) \ { \ switch (why) { \ case msr_get_name: \ *(const char **)param = "S" #_op0 "_" #_op1 "_C" #_n "_C" #_m "_" #_op2; \ break; \ \ case msr_read: \ *(uint64_t*)param = __builtin_arm_rsr64("S" #_op0 "_" #_op1 "_C" #_n "_C" #_m "_" #_op2); \ break; \ \ case msr_write: \ __builtin_arm_wsr64("S" #_op0 "_" #_op1 "_C" #_n "_C" #_m "_" #_op2, *(const uint64_t*)param); \ break; \ } \ } #include "user_msrs.inc" #undef DECLARE_TEST #define DECLARE_TEST(_op0, _op1, _n, _m, _op2) msr_test_S ## _op0 ## _ ## _op1 ## _C ## _n ## _C ## _m ## _ ## _op2, static msr_op tests[] = { #include "user_msrs.inc" }; #undef DECLARE_TEST static void* thread_func(void *param) { bool die; (void)param; do { pthread_mutex_lock(&threads_please_die_lock); die = threads_please_die; pthread_mutex_unlock(&threads_please_die_lock); } while (!die); return NULL; } static void msr_test(msr_op op) { struct timeval time_start, time_end, time_passed; uint64_t val, new_val, wrote_val; pthread_t threads[NUM_THREADS]; bool readable, writeable; const char *reg_name; unsigned i; op(msr_get_name, ®_name); T_LOG("sub-test '%s'\n", reg_name); for (i = 0; i < sizeof(registers_skipped) / sizeof(*registers_skipped); i++) { if (!strcmp(registers_skipped[i], reg_name)) { T_LOG("\tskipping this register by request"); return; } } //let's see if we can read and write it did_fault = false; op(msr_read, &val); readable = !did_fault; did_fault = false; op(msr_write, &val); writeable = !did_fault; T_LOG("\tcan read: %s\n", readable ? "YES" : "NO"); T_LOG("\tcan write: %s\n", writeable ? "YES" : "NO"); if (readable) { T_LOG("\tvalue found: 0x%016llx\n", (unsigned long long)val); } if (!readable || !writeable) { T_LOG("\t RW needed for more testing. no further testing will be performed\n"); return; } //write inverse of what we read and see if the read differs wrote_val = ~val; op(msr_write, &wrote_val); op(msr_read, &new_val); if (new_val == val) { T_LOG("\t reg seems to not take writes (0x%016llx). no further testing will be performed\n", val); return; } T_LOG("\twrote 0x%016llx, saw 0x%016llx\n", (unsigned long long)wrote_val, (unsigned long long)new_val); wrote_val = new_val; //verify it flips to original value at context switch or otherwise //for context switch to happen, spin up a lot of threads pthread_mutex_lock(&threads_please_die_lock); threads_please_die = false; pthread_mutex_unlock(&threads_please_die_lock); for (i = 0; i < NUM_THREADS; i++) { if (pthread_create(threads + i, NULL, thread_func, NULL)) { T_ASSERT_FAIL("cannot create thread %d\n", i); } } gettimeofday(&time_start, NULL); while (1) { op(msr_read, &new_val); if (new_val != wrote_val) { T_LOG("\tvalue reverted to 0x%016llx from 0x%016llx\n", (unsigned long long)new_val, (unsigned long long)wrote_val); break; } gettimeofday(&time_end, NULL); timersub(&time_end, &time_start, &time_passed); if (time_passed.tv_sec) { //wait one second at most T_FAIL("\ttoo long for register to be cleared, last read value was 0x%016llx, expected revert to 0x%016llx!", (unsigned long long)new_val, (unsigned long long)val); break; } } pthread_mutex_lock(&threads_please_die_lock); threads_please_die = true; pthread_mutex_unlock(&threads_please_die_lock); for (i = 0; i < NUM_THREADS; i++) { if (pthread_join(threads[i], NULL)) { T_ASSERT_FAIL("cannot join thread %d\n", i); } } } static void sig_caught(int signo, siginfo_t *sinfop, void *ucontext) { _STRUCT_MCONTEXT64 *ctx = ((ucontext_t *)ucontext)->uc_mcontext; void (*pc)(void); uint32_t instr; (void)sinfop; if (signo != SIGILL) { T_ASSERT_FAIL("We did not expect signal %d", signo); } pc = (void (*)(void))__darwin_arm_thread_state64_get_pc(ctx->__ss); instr = *(uint32_t*)pc; if ((instr & 0xffd00000) != 0xd5100000) { T_ASSERT_FAIL("We did not expect SIGILL on an instr that is not an MSR/MRS. [%p] = 0x%08x", (void*)pc, instr); } pc = (void (*)(void))(((uintptr_t)pc) + 4); pc = ptrauth_sign_unauthenticated(pc, ptrauth_key_function_pointer, 0); did_fault = true; // skip the instruction __darwin_arm_thread_state64_set_pc_fptr(ctx->__ss, pc); } static bool is_release_kernel(void) { /* * I apologize to anyone reading this code!! I promise you that I felt * as dirty writing this as you do reading this. I asked in the proper * channels, but nobody had a good idea how to detect a release kernel * from userspace. Sadly, we need that here as the mitigations at hand * are only applied in RELEASE builds. Again: I am sorry. */ char ver_str[1024] = {}; size_t len = sizeof(ver_str) - 1; (void)sysctlbyname("kern.version", ver_str, &len, NULL, 0); return !!strstr(ver_str, "/RELEASE_ARM64"); } #endif // defined(__arm64__) && defined(__LP64__) T_DECL(user_msrs, "Userspace MSR access test") { #if defined(__arm64__) && defined(__LP64__) if (is_release_kernel()) { struct sigaction sa_old, sa_new = {.__sigaction_u = { .__sa_sigaction = sig_caught, }, .sa_flags = SA_SIGINFO, }; unsigned i; sigaction(SIGILL, &sa_new, &sa_old); for (i = 0; i < sizeof(tests) / sizeof(*tests); i++) { msr_test(tests[i]); } sigaction(SIGILL, &sa_old, NULL); T_PASS("Userspace MSR access test passed"); } else { T_PASS("Userspace MSR access test only runs on release kernels"); } #else // defined(__arm64__) && defined(__LP64__) T_SKIP("userspace MSR access test skipped - not ARM64.64"); #endif // defined(__arm64__) && defined(__LP64__) } |