1 // SPDX-License-Identifier: GPL-2.0
6 #include <sys/resource.h>
7 #include <bpf/libbpf.h>
9 #include "trace_helpers.h"
11 int main(int ac
, char **argv
)
13 char filename
[256], symbol
[256];
14 struct bpf_object
*obj
= NULL
;
15 struct bpf_link
*links
[20];
16 long key
, next_key
, value
;
17 struct bpf_program
*prog
;
22 if (load_kallsyms()) {
23 printf("failed to process /proc/kallsyms\n");
27 snprintf(filename
, sizeof(filename
), "%s_kern.o", argv
[0]);
28 obj
= bpf_object__open_file(filename
, NULL
);
29 if (libbpf_get_error(obj
)) {
30 fprintf(stderr
, "ERROR: opening BPF object file failed\n");
35 /* load BPF program */
36 if (bpf_object__load(obj
)) {
37 fprintf(stderr
, "ERROR: loading BPF object file failed\n");
41 map_fd
= bpf_object__find_map_fd_by_name(obj
, "my_map");
43 fprintf(stderr
, "ERROR: finding a map in obj file failed\n");
47 bpf_object__for_each_program(prog
, obj
) {
48 section
= bpf_program__section_name(prog
);
49 if (sscanf(section
, "kprobe/%s", symbol
) != 1)
52 /* Attach prog only when symbol exists */
53 if (ksym_get_addr(symbol
)) {
54 links
[j
] = bpf_program__attach(prog
);
55 if (libbpf_get_error(links
[j
])) {
56 fprintf(stderr
, "bpf_program__attach failed\n");
64 for (i
= 0; i
< 5; i
++) {
66 printf("kprobing funcs:");
67 while (bpf_map_get_next_key(map_fd
, &key
, &next_key
) == 0) {
68 bpf_map_lookup_elem(map_fd
, &next_key
, &value
);
69 assert(next_key
== value
);
70 sym
= ksym_search(value
);
73 printf("ksym not found. Is kallsyms loaded?\n");
77 printf(" %s", sym
->name
);
82 while (bpf_map_get_next_key(map_fd
, &key
, &next_key
) == 0)
83 bpf_map_delete_elem(map_fd
, &next_key
);
88 for (j
--; j
>= 0; j
--)
89 bpf_link__destroy(links
[j
]);
91 bpf_object__close(obj
);