1 // SPDX-License-Identifier: GPL-2.0 << 2 #include <stdio.h> 1 #include <stdio.h> 3 #include <unistd.h> 2 #include <unistd.h> >> 3 #include <linux/bpf.h> 4 #include <string.h> 4 #include <string.h> 5 #include <assert.h> 5 #include <assert.h> 6 #include <bpf/libbpf.h> !! 6 #include <sys/resource.h> 7 #include <bpf/bpf.h> !! 7 #include "libbpf.h" 8 #include "trace_helpers.h" !! 8 #include "bpf_load.h" 9 9 10 int main(int ac, char **argv) 10 int main(int ac, char **argv) 11 { 11 { 12 struct bpf_object *obj = NULL; !! 12 struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY}; 13 struct bpf_link *links[20]; << 14 long key, next_key, value; 13 long key, next_key, value; 15 struct bpf_program *prog; << 16 int map_fd, i, j = 0; << 17 char filename[256]; 14 char filename[256]; 18 struct ksym *sym; 15 struct ksym *sym; >> 16 int i; >> 17 >> 18 snprintf(filename, sizeof(filename), "%s_kern.o", argv[0]); >> 19 setrlimit(RLIMIT_MEMLOCK, &r); 19 20 20 if (load_kallsyms()) { 21 if (load_kallsyms()) { 21 printf("failed to process /pro 22 printf("failed to process /proc/kallsyms\n"); 22 return 2; 23 return 2; 23 } 24 } 24 25 25 snprintf(filename, sizeof(filename), " !! 26 if (load_bpf_file(filename)) { 26 obj = bpf_object__open_file(filename, !! 27 printf("%s", bpf_log_buf); 27 if (libbpf_get_error(obj)) { !! 28 return 1; 28 fprintf(stderr, "ERROR: openin << 29 obj = NULL; << 30 goto cleanup; << 31 } << 32 << 33 /* load BPF program */ << 34 if (bpf_object__load(obj)) { << 35 fprintf(stderr, "ERROR: loadin << 36 goto cleanup; << 37 } << 38 << 39 map_fd = bpf_object__find_map_fd_by_na << 40 if (map_fd < 0) { << 41 fprintf(stderr, "ERROR: findin << 42 goto cleanup; << 43 } << 44 << 45 bpf_object__for_each_program(prog, obj << 46 links[j] = bpf_program__attach << 47 if (libbpf_get_error(links[j]) << 48 fprintf(stderr, "bpf_p << 49 links[j] = NULL; << 50 goto cleanup; << 51 } << 52 j++; << 53 } 29 } 54 30 55 for (i = 0; i < 5; i++) { 31 for (i = 0; i < 5; i++) { 56 key = 0; 32 key = 0; 57 printf("kprobing funcs:"); 33 printf("kprobing funcs:"); 58 while (bpf_map_get_next_key(ma !! 34 while (bpf_get_next_key(map_fd[0], &key, &next_key) == 0) { 59 bpf_map_lookup_elem(ma !! 35 bpf_lookup_elem(map_fd[0], &next_key, &value); 60 assert(next_key == val 36 assert(next_key == value); 61 sym = ksym_search(valu 37 sym = ksym_search(value); 62 key = next_key; << 63 if (!sym) { << 64 printf("ksym n << 65 continue; << 66 } << 67 << 68 printf(" %s", sym->nam 38 printf(" %s", sym->name); >> 39 key = next_key; 69 } 40 } 70 if (key) 41 if (key) 71 printf("\n"); 42 printf("\n"); 72 key = 0; 43 key = 0; 73 while (bpf_map_get_next_key(ma !! 44 while (bpf_get_next_key(map_fd[0], &key, &next_key) == 0) 74 bpf_map_delete_elem(ma !! 45 bpf_delete_elem(map_fd[0], &next_key); 75 sleep(1); 46 sleep(1); 76 } 47 } 77 48 78 cleanup: << 79 for (j--; j >= 0; j--) << 80 bpf_link__destroy(links[j]); << 81 << 82 bpf_object__close(obj); << 83 return 0; 49 return 0; 84 } 50 } 85 51
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.