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 | // SPDX-License-Identifier: GPL-2.0 #include "vmlinux.h" #include <bpf/bpf_helpers.h> #include <bpf/bpf_tracing.h> char _license[] SEC("license") = "GPL"; extern const void bpf_fentry_test1 __ksym; extern const void bpf_fentry_test2 __ksym; extern const void bpf_fentry_test3 __ksym; extern const void bpf_fentry_test4 __ksym; extern const void bpf_modify_return_test __ksym; extern const void bpf_fentry_test6 __ksym; extern const void bpf_fentry_test7 __ksym; extern bool CONFIG_X86_KERNEL_IBT __kconfig __weak; /* This function is here to have CONFIG_X86_KERNEL_IBT * used and added to object BTF. */ int unused(void) { return CONFIG_X86_KERNEL_IBT ? 0 : 1; } __u64 test1_result = 0; SEC("fentry/bpf_fentry_test1") int BPF_PROG(test1, int a) { __u64 addr = bpf_get_func_ip(ctx); test1_result = (const void *) addr == &bpf_fentry_test1; return 0; } __u64 test2_result = 0; SEC("fexit/bpf_fentry_test2") int BPF_PROG(test2, int a) { __u64 addr = bpf_get_func_ip(ctx); test2_result = (const void *) addr == &bpf_fentry_test2; return 0; } __u64 test3_result = 0; SEC("kprobe/bpf_fentry_test3") int test3(struct pt_regs *ctx) { __u64 addr = bpf_get_func_ip(ctx); test3_result = (const void *) addr == &bpf_fentry_test3; return 0; } __u64 test4_result = 0; SEC("kretprobe/bpf_fentry_test4") int BPF_KRETPROBE(test4) { __u64 addr = bpf_get_func_ip(ctx); test4_result = (const void *) addr == &bpf_fentry_test4; return 0; } __u64 test5_result = 0; SEC("fmod_ret/bpf_modify_return_test") int BPF_PROG(test5, int a, int *b, int ret) { __u64 addr = bpf_get_func_ip(ctx); test5_result = (const void *) addr == &bpf_modify_return_test; return ret; } __u64 test6_result = 0; SEC("?kprobe") int test6(struct pt_regs *ctx) { __u64 addr = bpf_get_func_ip(ctx); test6_result = (const void *) addr == 0; return 0; } unsigned long uprobe_trigger; __u64 test7_result = 0; SEC("uprobe//proc/self/exe:uprobe_trigger") int BPF_UPROBE(test7) { __u64 addr = bpf_get_func_ip(ctx); test7_result = (const void *) addr == (const void *) uprobe_trigger; return 0; } __u64 test8_result = 0; SEC("uretprobe//proc/self/exe:uprobe_trigger") int BPF_URETPROBE(test8, int ret) { __u64 addr = bpf_get_func_ip(ctx); test8_result = (const void *) addr == (const void *) uprobe_trigger; return 0; } |