prog_run.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2024 Meta Platforms, Inc. and affiliates.
  4. * Copyright (c) 2024 David Vernet <dvernet@meta.com>
  5. */
  6. #include <bpf/bpf.h>
  7. #include <sched.h>
  8. #include <scx/common.h>
  9. #include <sys/wait.h>
  10. #include <unistd.h>
  11. #include "prog_run.bpf.skel.h"
  12. #include "scx_test.h"
  13. static enum scx_test_status setup(void **ctx)
  14. {
  15. struct prog_run *skel;
  16. skel = prog_run__open();
  17. SCX_FAIL_IF(!skel, "Failed to open");
  18. SCX_ENUM_INIT(skel);
  19. SCX_FAIL_IF(prog_run__load(skel), "Failed to load skel");
  20. *ctx = skel;
  21. return SCX_TEST_PASS;
  22. }
  23. static enum scx_test_status run(void *ctx)
  24. {
  25. struct prog_run *skel = ctx;
  26. struct bpf_link *link;
  27. int prog_fd, err = 0;
  28. prog_fd = bpf_program__fd(skel->progs.prog_run_syscall);
  29. if (prog_fd < 0) {
  30. SCX_ERR("Failed to get BPF_PROG_RUN prog");
  31. return SCX_TEST_FAIL;
  32. }
  33. LIBBPF_OPTS(bpf_test_run_opts, topts);
  34. link = bpf_map__attach_struct_ops(skel->maps.prog_run_ops);
  35. if (!link) {
  36. SCX_ERR("Failed to attach scheduler");
  37. close(prog_fd);
  38. return SCX_TEST_FAIL;
  39. }
  40. err = bpf_prog_test_run_opts(prog_fd, &topts);
  41. SCX_EQ(err, 0);
  42. /* Assumes uei.kind is written last */
  43. while (skel->data->uei.kind == EXIT_KIND(SCX_EXIT_NONE))
  44. sched_yield();
  45. SCX_EQ(skel->data->uei.kind, EXIT_KIND(SCX_EXIT_UNREG_BPF));
  46. SCX_EQ(skel->data->uei.exit_code, 0xdeadbeef);
  47. close(prog_fd);
  48. bpf_link__destroy(link);
  49. return SCX_TEST_PASS;
  50. }
  51. static void cleanup(void *ctx)
  52. {
  53. struct prog_run *skel = ctx;
  54. prog_run__destroy(skel);
  55. }
  56. struct scx_test prog_run = {
  57. .name = "prog_run",
  58. .description = "Verify we can call into a scheduler with BPF_PROG_RUN, and invoke kfuncs",
  59. .setup = setup,
  60. .run = run,
  61. .cleanup = cleanup,
  62. };
  63. REGISTER_SCX_TEST(&prog_run)