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 | // SPDX-License-Identifier: GPL-2.0 /* Copyright (C) 2019 ARM Limited */ #include <stdio.h> #include <stdlib.h> #include <signal.h> #include <string.h> #include <unistd.h> #include <assert.h> #include <sys/auxv.h> #include <linux/auxvec.h> #include <ucontext.h> #include <asm/unistd.h> #include <kselftest.h> #include "test_signals.h" #include "test_signals_utils.h" #include "testcases/testcases.h" extern struct tdescr *current; static int sig_copyctx = SIGTRAP; static char const *const feats_names[FMAX_END] = { " SSBS ", " SVE ", " SME ", " FA64 ", " SME2 ", }; #define MAX_FEATS_SZ 128 static char feats_string[MAX_FEATS_SZ]; static inline char *feats_to_string(unsigned long feats) { size_t flen = MAX_FEATS_SZ - 1; feats_string[0] = '\0'; for (int i = 0; i < FMAX_END; i++) { if (feats & (1UL << i)) { size_t tlen = strlen(feats_names[i]); assert(flen > tlen); flen -= tlen; strncat(feats_string, feats_names[i], flen); } } return feats_string; } static void unblock_signal(int signum) { sigset_t sset; sigemptyset(&sset); sigaddset(&sset, signum); sigprocmask(SIG_UNBLOCK, &sset, NULL); } static void default_result(struct tdescr *td, bool force_exit) { if (td->result == KSFT_SKIP) { fprintf(stderr, "==>> completed. SKIP.\n"); } else if (td->pass) { fprintf(stderr, "==>> completed. PASS(1)\n"); td->result = KSFT_PASS; } else { fprintf(stdout, "==>> completed. FAIL(0)\n"); td->result = KSFT_FAIL; } if (force_exit) exit(td->result); } /* * The following handle_signal_* helpers are used by main default_handler * and are meant to return true when signal is handled successfully: * when false is returned instead, it means that the signal was somehow * unexpected in that context and it was NOT handled; default_handler will * take care of such unexpected situations. */ static bool handle_signal_unsupported(struct tdescr *td, siginfo_t *si, void *uc) { if (feats_ok(td)) return false; /* Mangling PC to avoid loops on original SIGILL */ ((ucontext_t *)uc)->uc_mcontext.pc += 4; if (!td->initialized) { fprintf(stderr, "Got SIG_UNSUPP @test_init. Ignore.\n"); } else { fprintf(stderr, "-- RX SIG_UNSUPP on unsupported feat...OK\n"); td->pass = 1; default_result(current, 1); } return true; } static bool handle_signal_trigger(struct tdescr *td, siginfo_t *si, void *uc) { td->triggered = 1; /* ->run was asserted NON-NULL in test_setup() already */ td->run(td, si, uc); return true; } static bool handle_signal_ok(struct tdescr *td, siginfo_t *si, void *uc) { /* * it's a bug in the test code when this assert fail: * if sig_trig was defined, it must have been used before getting here. */ assert(!td->sig_trig || td->triggered); fprintf(stderr, "SIG_OK -- SP:0x%llX si_addr@:%p si_code:%d token@:%p offset:%ld\n", ((ucontext_t *)uc)->uc_mcontext.sp, si->si_addr, si->si_code, td->token, td->token - si->si_addr); /* * fake_sigreturn tests, which have sanity_enabled=1, set, at the very * last time, the token field to the SP address used to place the fake * sigframe: so token==0 means we never made it to the end, * segfaulting well-before, and the test is possibly broken. */ if (!td->sanity_disabled && !td->token) { fprintf(stdout, "current->token ZEROED...test is probably broken!\n"); abort(); } /* * Trying to narrow down the SEGV to the ones generated by Kernel itself * via arm64_notify_segfault(). This is a best-effort check anyway, and * the si_code check may need to change if this aspect of the kernel * ABI changes. */ if (td->sig_ok == SIGSEGV && si->si_code != SEGV_ACCERR) { fprintf(stdout, "si_code != SEGV_ACCERR...test is probably broken!\n"); abort(); } td->pass = 1; /* * Some tests can lead to SEGV loops: in such a case we want to * terminate immediately exiting straight away; some others are not * supposed to outlive the signal handler code, due to the content of * the fake sigframe which caused the signal itself. */ default_result(current, 1); return true; } static bool handle_signal_copyctx(struct tdescr *td, siginfo_t *si, void *uc_in) { ucontext_t *uc = uc_in; struct _aarch64_ctx *head; struct extra_context *extra, *copied_extra; size_t offset = 0; size_t to_copy; ASSERT_GOOD_CONTEXT(uc); /* Mangling PC to avoid loops on original BRK instr */ uc->uc_mcontext.pc += 4; /* * Check for an preserve any extra data too with fixups. */ head = (struct _aarch64_ctx *)uc->uc_mcontext.__reserved; head = get_header(head, EXTRA_MAGIC, td->live_sz, &offset); if (head) { extra = (struct extra_context *)head; /* * The extra buffer must be immediately after the * extra_context and a 16 byte terminator. Include it * in the copy, this was previously validated in * ASSERT_GOOD_CONTEXT(). */ to_copy = __builtin_offsetof(ucontext_t, uc_mcontext.__reserved); to_copy += offset + sizeof(struct extra_context) + 16; to_copy += extra->size; copied_extra = (struct extra_context *)&(td->live_uc->uc_mcontext.__reserved[offset]); } else { copied_extra = NULL; to_copy = sizeof(ucontext_t); } if (to_copy > td->live_sz) { fprintf(stderr, "Not enough space to grab context, %lu/%lu bytes\n", td->live_sz, to_copy); return false; } memcpy(td->live_uc, uc, to_copy); /* * If there was any EXTRA_CONTEXT fix up the size to be the * struct extra_context and the following terminator record, * this means that the rest of the code does not need to have * special handling for the record and we don't need to fix up * datap for the new location. */ if (copied_extra) copied_extra->head.size = sizeof(*copied_extra) + 16; td->live_uc_valid = 1; fprintf(stderr, "%lu byte GOOD CONTEXT grabbed from sig_copyctx handler\n", to_copy); return true; } static void default_handler(int signum, siginfo_t *si, void *uc) { if (current->sig_unsupp && signum == current->sig_unsupp && handle_signal_unsupported(current, si, uc)) { fprintf(stderr, "Handled SIG_UNSUPP\n"); } else if (current->sig_trig && signum == current->sig_trig && handle_signal_trigger(current, si, uc)) { fprintf(stderr, "Handled SIG_TRIG\n"); } else if (current->sig_ok && signum == current->sig_ok && handle_signal_ok(current, si, uc)) { fprintf(stderr, "Handled SIG_OK\n"); } else if (signum == sig_copyctx && current->live_uc && handle_signal_copyctx(current, si, uc)) { fprintf(stderr, "Handled SIG_COPYCTX\n"); } else { if (signum == SIGALRM && current->timeout) { fprintf(stderr, "-- Timeout !\n"); } else { fprintf(stderr, "-- RX UNEXPECTED SIGNAL: %d\n", signum); } default_result(current, 1); } } static int default_setup(struct tdescr *td) { struct sigaction sa; sa.sa_sigaction = default_handler; sa.sa_flags = SA_SIGINFO | SA_RESTART; sa.sa_flags |= td->sa_flags; sigemptyset(&sa.sa_mask); /* uncatchable signals naturally skipped ... */ for (int sig = 1; sig < 32; sig++) sigaction(sig, &sa, NULL); /* * RT Signals default disposition is Term but they cannot be * generated by the Kernel in response to our tests; so just catch * them all and report them as UNEXPECTED signals. */ for (int sig = SIGRTMIN; sig <= SIGRTMAX; sig++) sigaction(sig, &sa, NULL); /* just in case...unblock explicitly all we need */ if (td->sig_trig) unblock_signal(td->sig_trig); if (td->sig_ok) unblock_signal(td->sig_ok); if (td->sig_unsupp) unblock_signal(td->sig_unsupp); if (td->timeout) { unblock_signal(SIGALRM); alarm(td->timeout); } fprintf(stderr, "Registered handlers for all signals.\n"); return 1; } static inline int default_trigger(struct tdescr *td) { return !raise(td->sig_trig); } int test_init(struct tdescr *td) { if (td->sig_trig == sig_copyctx) { fprintf(stdout, "Signal %d is RESERVED, cannot be used as a trigger. Aborting\n", sig_copyctx); return 0; } /* just in case */ unblock_signal(sig_copyctx); td->minsigstksz = getauxval(AT_MINSIGSTKSZ); if (!td->minsigstksz) td->minsigstksz = MINSIGSTKSZ; fprintf(stderr, "Detected MINSTKSIGSZ:%d\n", td->minsigstksz); if (td->feats_required || td->feats_incompatible) { td->feats_supported = 0; /* * Checking for CPU required features using both the * auxval and the arm64 MRS Emulation to read sysregs. */ if (getauxval(AT_HWCAP) & HWCAP_SSBS) td->feats_supported |= FEAT_SSBS; if (getauxval(AT_HWCAP) & HWCAP_SVE) td->feats_supported |= FEAT_SVE; if (getauxval(AT_HWCAP2) & HWCAP2_SME) td->feats_supported |= FEAT_SME; if (getauxval(AT_HWCAP2) & HWCAP2_SME_FA64) td->feats_supported |= FEAT_SME_FA64; if (getauxval(AT_HWCAP2) & HWCAP2_SME2) td->feats_supported |= FEAT_SME2; if (feats_ok(td)) { if (td->feats_required & td->feats_supported) fprintf(stderr, "Required Features: [%s] supported\n", feats_to_string(td->feats_required & td->feats_supported)); if (!(td->feats_incompatible & td->feats_supported)) fprintf(stderr, "Incompatible Features: [%s] absent\n", feats_to_string(td->feats_incompatible)); } else { if ((td->feats_required & td->feats_supported) != td->feats_supported) fprintf(stderr, "Required Features: [%s] NOT supported\n", feats_to_string(td->feats_required & ~td->feats_supported)); if (td->feats_incompatible & td->feats_supported) fprintf(stderr, "Incompatible Features: [%s] supported\n", feats_to_string(td->feats_incompatible & ~td->feats_supported)); td->result = KSFT_SKIP; return 0; } } /* Perform test specific additional initialization */ if (td->init && !td->init(td)) { fprintf(stderr, "FAILED Testcase initialization.\n"); return 0; } td->initialized = 1; fprintf(stderr, "Testcase initialized.\n"); return 1; } int test_setup(struct tdescr *td) { /* assert core invariants symptom of a rotten testcase */ assert(current); assert(td); assert(td->name); assert(td->run); /* Default result is FAIL if test setup fails */ td->result = KSFT_FAIL; if (td->setup) return td->setup(td); else return default_setup(td); } int test_run(struct tdescr *td) { if (td->trigger) return td->trigger(td); else if (td->sig_trig) return default_trigger(td); else return td->run(td, NULL, NULL); } void test_result(struct tdescr *td) { if (td->initialized && td->result != KSFT_SKIP && td->check_result) td->check_result(td); default_result(td, 0); } void test_cleanup(struct tdescr *td) { if (td->cleanup) td->cleanup(td); } |