spintest_user.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <stdio.h>
  3. #include <unistd.h>
  4. #include <string.h>
  5. #include <assert.h>
  6. #include <bpf/libbpf.h>
  7. #include <bpf/bpf.h>
  8. #include "trace_helpers.h"
  9. int main(int ac, char **argv)
  10. {
  11. char filename[256], symbol[256];
  12. struct bpf_object *obj = NULL;
  13. struct bpf_link *links[20];
  14. long key, next_key, value;
  15. struct bpf_program *prog;
  16. int map_fd, i, j = 0;
  17. const char *section;
  18. struct ksym *sym;
  19. if (load_kallsyms()) {
  20. printf("failed to process /proc/kallsyms\n");
  21. return 2;
  22. }
  23. snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]);
  24. obj = bpf_object__open_file(filename, NULL);
  25. if (libbpf_get_error(obj)) {
  26. fprintf(stderr, "ERROR: opening BPF object file failed\n");
  27. obj = NULL;
  28. goto cleanup;
  29. }
  30. /* load BPF program */
  31. if (bpf_object__load(obj)) {
  32. fprintf(stderr, "ERROR: loading BPF object file failed\n");
  33. goto cleanup;
  34. }
  35. map_fd = bpf_object__find_map_fd_by_name(obj, "my_map");
  36. if (map_fd < 0) {
  37. fprintf(stderr, "ERROR: finding a map in obj file failed\n");
  38. goto cleanup;
  39. }
  40. bpf_object__for_each_program(prog, obj) {
  41. section = bpf_program__section_name(prog);
  42. if (sscanf(section, "kprobe/%s", symbol) != 1)
  43. continue;
  44. /* Attach prog only when symbol exists */
  45. if (ksym_get_addr(symbol)) {
  46. links[j] = bpf_program__attach(prog);
  47. if (libbpf_get_error(links[j])) {
  48. fprintf(stderr, "bpf_program__attach failed\n");
  49. links[j] = NULL;
  50. goto cleanup;
  51. }
  52. j++;
  53. }
  54. }
  55. for (i = 0; i < 5; i++) {
  56. key = 0;
  57. printf("kprobing funcs:");
  58. while (bpf_map_get_next_key(map_fd, &key, &next_key) == 0) {
  59. bpf_map_lookup_elem(map_fd, &next_key, &value);
  60. assert(next_key == value);
  61. sym = ksym_search(value);
  62. key = next_key;
  63. if (!sym) {
  64. printf("ksym not found. Is kallsyms loaded?\n");
  65. continue;
  66. }
  67. printf(" %s", sym->name);
  68. }
  69. if (key)
  70. printf("\n");
  71. key = 0;
  72. while (bpf_map_get_next_key(map_fd, &key, &next_key) == 0)
  73. bpf_map_delete_elem(map_fd, &next_key);
  74. sleep(1);
  75. }
  76. cleanup:
  77. for (j--; j >= 0; j--)
  78. bpf_link__destroy(links[j]);
  79. bpf_object__close(obj);
  80. return 0;
  81. }