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 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 | // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2021 ARM Limited. * Original author: Mark Brown <broonie@kernel.org> */ #include <assert.h> #include <errno.h> #include <fcntl.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/auxv.h> #include <sys/prctl.h> #include <sys/types.h> #include <sys/wait.h> #include <asm/sigcontext.h> #include <asm/hwcap.h> #include "../../kselftest.h" #include "rdvl.h" #define ARCH_MIN_VL SVE_VL_MIN struct vec_data { const char *name; unsigned long hwcap_type; unsigned long hwcap; const char *rdvl_binary; int (*rdvl)(void); int prctl_get; int prctl_set; const char *default_vl_file; int default_vl; int min_vl; int max_vl; }; #define VEC_SVE 0 #define VEC_SME 1 static struct vec_data vec_data[] = { [VEC_SVE] = { .name = "SVE", .hwcap_type = AT_HWCAP, .hwcap = HWCAP_SVE, .rdvl = rdvl_sve, .rdvl_binary = "./rdvl-sve", .prctl_get = PR_SVE_GET_VL, .prctl_set = PR_SVE_SET_VL, .default_vl_file = "/proc/sys/abi/sve_default_vector_length", }, [VEC_SME] = { .name = "SME", .hwcap_type = AT_HWCAP2, .hwcap = HWCAP2_SME, .rdvl = rdvl_sme, .rdvl_binary = "./rdvl-sme", .prctl_get = PR_SME_GET_VL, .prctl_set = PR_SME_SET_VL, .default_vl_file = "/proc/sys/abi/sme_default_vector_length", }, }; static bool vec_type_supported(struct vec_data *data) { return getauxval(data->hwcap_type) & data->hwcap; } static int stdio_read_integer(FILE *f, const char *what, int *val) { int n = 0; int ret; ret = fscanf(f, "%d%*1[\n]%n", val, &n); if (ret < 1 || n < 1) { ksft_print_msg("failed to parse integer from %s\n", what); return -1; } return 0; } /* Start a new process and return the vector length it sees */ static int get_child_rdvl(struct vec_data *data) { FILE *out; int pipefd[2]; pid_t pid, child; int read_vl, ret; ret = pipe(pipefd); if (ret == -1) { ksft_print_msg("pipe() failed: %d (%s)\n", errno, strerror(errno)); return -1; } fflush(stdout); child = fork(); if (child == -1) { ksft_print_msg("fork() failed: %d (%s)\n", errno, strerror(errno)); close(pipefd[0]); close(pipefd[1]); return -1; } /* Child: put vector length on the pipe */ if (child == 0) { /* * Replace stdout with the pipe, errors to stderr from * here as kselftest prints to stdout. */ ret = dup2(pipefd[1], 1); if (ret == -1) { fprintf(stderr, "dup2() %d\n", errno); exit(EXIT_FAILURE); } /* exec() a new binary which puts the VL on stdout */ ret = execl(data->rdvl_binary, data->rdvl_binary, NULL); fprintf(stderr, "execl(%s) failed: %d (%s)\n", data->rdvl_binary, errno, strerror(errno)); exit(EXIT_FAILURE); } close(pipefd[1]); /* Parent; wait for the exit status from the child & verify it */ do { pid = wait(&ret); if (pid == -1) { ksft_print_msg("wait() failed: %d (%s)\n", errno, strerror(errno)); close(pipefd[0]); return -1; } } while (pid != child); assert(pid == child); if (!WIFEXITED(ret)) { ksft_print_msg("child exited abnormally\n"); close(pipefd[0]); return -1; } if (WEXITSTATUS(ret) != 0) { ksft_print_msg("child returned error %d\n", WEXITSTATUS(ret)); close(pipefd[0]); return -1; } out = fdopen(pipefd[0], "r"); if (!out) { ksft_print_msg("failed to open child stdout\n"); close(pipefd[0]); return -1; } ret = stdio_read_integer(out, "child", &read_vl); fclose(out); if (ret != 0) return ret; return read_vl; } static int file_read_integer(const char *name, int *val) { FILE *f; int ret; f = fopen(name, "r"); if (!f) { ksft_test_result_fail("Unable to open %s: %d (%s)\n", name, errno, strerror(errno)); return -1; } ret = stdio_read_integer(f, name, val); fclose(f); return ret; } static int file_write_integer(const char *name, int val) { FILE *f; f = fopen(name, "w"); if (!f) { ksft_test_result_fail("Unable to open %s: %d (%s)\n", name, errno, strerror(errno)); return -1; } fprintf(f, "%d", val); fclose(f); return 0; } /* * Verify that we can read the default VL via proc, checking that it * is set in a freshly spawned child. */ static void proc_read_default(struct vec_data *data) { int default_vl, child_vl, ret; ret = file_read_integer(data->default_vl_file, &default_vl); if (ret != 0) return; /* Is this the actual default seen by new processes? */ child_vl = get_child_rdvl(data); if (child_vl != default_vl) { ksft_test_result_fail("%s is %d but child VL is %d\n", data->default_vl_file, default_vl, child_vl); return; } ksft_test_result_pass("%s default vector length %d\n", data->name, default_vl); data->default_vl = default_vl; } /* Verify that we can write a minimum value and have it take effect */ static void proc_write_min(struct vec_data *data) { int ret, new_default, child_vl; if (geteuid() != 0) { ksft_test_result_skip("Need to be root to write to /proc\n"); return; } ret = file_write_integer(data->default_vl_file, ARCH_MIN_VL); if (ret != 0) return; /* What was the new value? */ ret = file_read_integer(data->default_vl_file, &new_default); if (ret != 0) return; /* Did it take effect in a new process? */ child_vl = get_child_rdvl(data); if (child_vl != new_default) { ksft_test_result_fail("%s is %d but child VL is %d\n", data->default_vl_file, new_default, child_vl); return; } ksft_test_result_pass("%s minimum vector length %d\n", data->name, new_default); data->min_vl = new_default; file_write_integer(data->default_vl_file, data->default_vl); } /* Verify that we can write a maximum value and have it take effect */ static void proc_write_max(struct vec_data *data) { int ret, new_default, child_vl; if (geteuid() != 0) { ksft_test_result_skip("Need to be root to write to /proc\n"); return; } /* -1 is accepted by the /proc interface as the maximum VL */ ret = file_write_integer(data->default_vl_file, -1); if (ret != 0) return; /* What was the new value? */ ret = file_read_integer(data->default_vl_file, &new_default); if (ret != 0) return; /* Did it take effect in a new process? */ child_vl = get_child_rdvl(data); if (child_vl != new_default) { ksft_test_result_fail("%s is %d but child VL is %d\n", data->default_vl_file, new_default, child_vl); return; } ksft_test_result_pass("%s maximum vector length %d\n", data->name, new_default); data->max_vl = new_default; file_write_integer(data->default_vl_file, data->default_vl); } /* Can we read back a VL from prctl? */ static void prctl_get(struct vec_data *data) { int ret; ret = prctl(data->prctl_get); if (ret == -1) { ksft_test_result_fail("%s prctl() read failed: %d (%s)\n", data->name, errno, strerror(errno)); return; } /* Mask out any flags */ ret &= PR_SVE_VL_LEN_MASK; /* Is that what we can read back directly? */ if (ret == data->rdvl()) ksft_test_result_pass("%s current VL is %d\n", data->name, ret); else ksft_test_result_fail("%s prctl() VL %d but RDVL is %d\n", data->name, ret, data->rdvl()); } /* Does the prctl let us set the VL we already have? */ static void prctl_set_same(struct vec_data *data) { int cur_vl = data->rdvl(); int ret; ret = prctl(data->prctl_set, cur_vl); if (ret < 0) { ksft_test_result_fail("%s prctl set failed: %d (%s)\n", data->name, errno, strerror(errno)); return; } ksft_test_result(cur_vl == data->rdvl(), "%s set VL %d and have VL %d\n", data->name, cur_vl, data->rdvl()); } /* Can we set a new VL for this process? */ static void prctl_set(struct vec_data *data) { int ret; if (data->min_vl == data->max_vl) { ksft_test_result_skip("%s only one VL supported\n", data->name); return; } /* Try to set the minimum VL */ ret = prctl(data->prctl_set, data->min_vl); if (ret < 0) { ksft_test_result_fail("%s prctl set failed for %d: %d (%s)\n", data->name, data->min_vl, errno, strerror(errno)); return; } if ((ret & PR_SVE_VL_LEN_MASK) != data->min_vl) { ksft_test_result_fail("%s prctl set %d but return value is %d\n", data->name, data->min_vl, data->rdvl()); return; } if (data->rdvl() != data->min_vl) { ksft_test_result_fail("%s set %d but RDVL is %d\n", data->name, data->min_vl, data->rdvl()); return; } /* Try to set the maximum VL */ ret = prctl(data->prctl_set, data->max_vl); if (ret < 0) { ksft_test_result_fail("%s prctl set failed for %d: %d (%s)\n", data->name, data->max_vl, errno, strerror(errno)); return; } if ((ret & PR_SVE_VL_LEN_MASK) != data->max_vl) { ksft_test_result_fail("%s prctl() set %d but return value is %d\n", data->name, data->max_vl, data->rdvl()); return; } /* The _INHERIT flag should not be present when we read the VL */ ret = prctl(data->prctl_get); if (ret == -1) { ksft_test_result_fail("%s prctl() read failed: %d (%s)\n", data->name, errno, strerror(errno)); return; } if (ret & PR_SVE_VL_INHERIT) { ksft_test_result_fail("%s prctl() reports _INHERIT\n", data->name); return; } ksft_test_result_pass("%s prctl() set min/max\n", data->name); } /* If we didn't request it a new VL shouldn't affect the child */ static void prctl_set_no_child(struct vec_data *data) { int ret, child_vl; if (data->min_vl == data->max_vl) { ksft_test_result_skip("%s only one VL supported\n", data->name); return; } ret = prctl(data->prctl_set, data->min_vl); if (ret < 0) { ksft_test_result_fail("%s prctl set failed for %d: %d (%s)\n", data->name, data->min_vl, errno, strerror(errno)); return; } /* Ensure the default VL is different */ ret = file_write_integer(data->default_vl_file, data->max_vl); if (ret != 0) return; /* Check that the child has the default we just set */ child_vl = get_child_rdvl(data); if (child_vl != data->max_vl) { ksft_test_result_fail("%s is %d but child VL is %d\n", data->default_vl_file, data->max_vl, child_vl); return; } ksft_test_result_pass("%s vector length used default\n", data->name); file_write_integer(data->default_vl_file, data->default_vl); } /* If we didn't request it a new VL shouldn't affect the child */ static void prctl_set_for_child(struct vec_data *data) { int ret, child_vl; if (data->min_vl == data->max_vl) { ksft_test_result_skip("%s only one VL supported\n", data->name); return; } ret = prctl(data->prctl_set, data->min_vl | PR_SVE_VL_INHERIT); if (ret < 0) { ksft_test_result_fail("%s prctl set failed for %d: %d (%s)\n", data->name, data->min_vl, errno, strerror(errno)); return; } /* The _INHERIT flag should be present when we read the VL */ ret = prctl(data->prctl_get); if (ret == -1) { ksft_test_result_fail("%s prctl() read failed: %d (%s)\n", data->name, errno, strerror(errno)); return; } if (!(ret & PR_SVE_VL_INHERIT)) { ksft_test_result_fail("%s prctl() does not report _INHERIT\n", data->name); return; } /* Ensure the default VL is different */ ret = file_write_integer(data->default_vl_file, data->max_vl); if (ret != 0) return; /* Check that the child inherited our VL */ child_vl = get_child_rdvl(data); if (child_vl != data->min_vl) { ksft_test_result_fail("%s is %d but child VL is %d\n", data->default_vl_file, data->min_vl, child_vl); return; } ksft_test_result_pass("%s vector length was inherited\n", data->name); file_write_integer(data->default_vl_file, data->default_vl); } /* _ONEXEC takes effect only in the child process */ static void prctl_set_onexec(struct vec_data *data) { int ret, child_vl; if (data->min_vl == data->max_vl) { ksft_test_result_skip("%s only one VL supported\n", data->name); return; } /* Set a known value for the default and our current VL */ ret = file_write_integer(data->default_vl_file, data->max_vl); if (ret != 0) return; ret = prctl(data->prctl_set, data->max_vl); if (ret < 0) { ksft_test_result_fail("%s prctl set failed for %d: %d (%s)\n", data->name, data->min_vl, errno, strerror(errno)); return; } /* Set a different value for the child to have on exec */ ret = prctl(data->prctl_set, data->min_vl | PR_SVE_SET_VL_ONEXEC); if (ret < 0) { ksft_test_result_fail("%s prctl set failed for %d: %d (%s)\n", data->name, data->min_vl, errno, strerror(errno)); return; } /* Our current VL should stay the same */ if (data->rdvl() != data->max_vl) { ksft_test_result_fail("%s VL changed by _ONEXEC prctl()\n", data->name); return; } /* Check that the child inherited our VL */ child_vl = get_child_rdvl(data); if (child_vl != data->min_vl) { ksft_test_result_fail("Set %d _ONEXEC but child VL is %d\n", data->min_vl, child_vl); return; } ksft_test_result_pass("%s vector length set on exec\n", data->name); file_write_integer(data->default_vl_file, data->default_vl); } /* For each VQ verify that setting via prctl() does the right thing */ static void prctl_set_all_vqs(struct vec_data *data) { int ret, vq, vl, new_vl, i; int orig_vls[ARRAY_SIZE(vec_data)]; int errors = 0; if (!data->min_vl || !data->max_vl) { ksft_test_result_skip("%s Failed to enumerate VLs, not testing VL setting\n", data->name); return; } for (i = 0; i < ARRAY_SIZE(vec_data); i++) { if (!vec_type_supported(&vec_data[i])) continue; orig_vls[i] = vec_data[i].rdvl(); } for (vq = SVE_VQ_MIN; vq <= SVE_VQ_MAX; vq++) { vl = sve_vl_from_vq(vq); /* Attempt to set the VL */ ret = prctl(data->prctl_set, vl); if (ret < 0) { errors++; ksft_print_msg("%s prctl set failed for %d: %d (%s)\n", data->name, vl, errno, strerror(errno)); continue; } new_vl = ret & PR_SVE_VL_LEN_MASK; /* Check that we actually have the reported new VL */ if (data->rdvl() != new_vl) { ksft_print_msg("Set %s VL %d but RDVL reports %d\n", data->name, new_vl, data->rdvl()); errors++; } /* Did any other VLs change? */ for (i = 0; i < ARRAY_SIZE(vec_data); i++) { if (&vec_data[i] == data) continue; if (!vec_type_supported(&vec_data[i])) continue; if (vec_data[i].rdvl() != orig_vls[i]) { ksft_print_msg("%s VL changed from %d to %d\n", vec_data[i].name, orig_vls[i], vec_data[i].rdvl()); errors++; } } /* Was that the VL we asked for? */ if (new_vl == vl) continue; /* Should round up to the minimum VL if below it */ if (vl < data->min_vl) { if (new_vl != data->min_vl) { ksft_print_msg("%s VL %d returned %d not minimum %d\n", data->name, vl, new_vl, data->min_vl); errors++; } continue; } /* Should round down to maximum VL if above it */ if (vl > data->max_vl) { if (new_vl != data->max_vl) { ksft_print_msg("%s VL %d returned %d not maximum %d\n", data->name, vl, new_vl, data->max_vl); errors++; } continue; } /* Otherwise we should've rounded down */ if (!(new_vl < vl)) { ksft_print_msg("%s VL %d returned %d, did not round down\n", data->name, vl, new_vl); errors++; continue; } } ksft_test_result(errors == 0, "%s prctl() set all VLs, %d errors\n", data->name, errors); } typedef void (*test_type)(struct vec_data *); static const test_type tests[] = { /* * The default/min/max tests must be first and in this order * to provide data for other tests. */ proc_read_default, proc_write_min, proc_write_max, prctl_get, prctl_set_same, prctl_set, prctl_set_no_child, prctl_set_for_child, prctl_set_onexec, prctl_set_all_vqs, }; static inline void smstart(void) { asm volatile("msr S0_3_C4_C7_3, xzr"); } static inline void smstart_sm(void) { asm volatile("msr S0_3_C4_C3_3, xzr"); } static inline void smstop(void) { asm volatile("msr S0_3_C4_C6_3, xzr"); } /* * Verify we can change the SVE vector length while SME is active and * continue to use SME afterwards. */ static void change_sve_with_za(void) { struct vec_data *sve_data = &vec_data[VEC_SVE]; bool pass = true; int ret, i; if (sve_data->min_vl == sve_data->max_vl) { ksft_print_msg("Only one SVE VL supported, can't change\n"); ksft_test_result_skip("change_sve_while_sme\n"); return; } /* Ensure we will trigger a change when we set the maximum */ ret = prctl(sve_data->prctl_set, sve_data->min_vl); if (ret != sve_data->min_vl) { ksft_print_msg("Failed to set SVE VL %d: %d\n", sve_data->min_vl, ret); pass = false; } /* Enable SM and ZA */ smstart(); /* Trigger another VL change */ ret = prctl(sve_data->prctl_set, sve_data->max_vl); if (ret != sve_data->max_vl) { ksft_print_msg("Failed to set SVE VL %d: %d\n", sve_data->max_vl, ret); pass = false; } /* * Spin for a bit with SM enabled to try to trigger another * save/restore. We can't use syscalls without exiting * streaming mode. */ for (i = 0; i < 100000000; i++) smstart_sm(); /* * TODO: Verify that ZA was preserved over the VL change and * spin. */ /* Clean up after ourselves */ smstop(); ret = prctl(sve_data->prctl_set, sve_data->default_vl); if (ret != sve_data->default_vl) { ksft_print_msg("Failed to restore SVE VL %d: %d\n", sve_data->default_vl, ret); pass = false; } ksft_test_result(pass, "change_sve_with_za\n"); } typedef void (*test_all_type)(void); static const struct { const char *name; test_all_type test; } all_types_tests[] = { { "change_sve_with_za", change_sve_with_za }, }; int main(void) { bool all_supported = true; int i, j; ksft_print_header(); ksft_set_plan(ARRAY_SIZE(tests) * ARRAY_SIZE(vec_data) + ARRAY_SIZE(all_types_tests)); for (i = 0; i < ARRAY_SIZE(vec_data); i++) { struct vec_data *data = &vec_data[i]; unsigned long supported; supported = vec_type_supported(data); if (!supported) all_supported = false; for (j = 0; j < ARRAY_SIZE(tests); j++) { if (supported) tests[j](data); else ksft_test_result_skip("%s not supported\n", data->name); } } for (i = 0; i < ARRAY_SIZE(all_types_tests); i++) { if (all_supported) all_types_tests[i].test(); else ksft_test_result_skip("%s\n", all_types_tests[i].name); } ksft_exit_pass(); } |