bpf: Add bpf_get_func_ip helper for tracing programs
Adding bpf_get_func_ip helper for BPF_PROG_TYPE_TRACING programs, specifically for all trampoline attach types. The trampoline's caller IP address is stored in (ctx - 8) address. so there's no reason to actually call the helper, but rather fixup the call instruction and return [ctx - 8] value directly. Signed-off-by:Jiri Olsa <jolsa@kernel.org> Signed-off-by:
Alexei Starovoitov <ast@kernel.org> Link: https://lore.kernel.org/bpf/20210714094400.396467-4-jolsa@kernel.org
Showing
- include/uapi/linux/bpf.h 7 additions, 0 deletionsinclude/uapi/linux/bpf.h
- kernel/bpf/verifier.c 43 additions, 0 deletionskernel/bpf/verifier.c
- kernel/trace/bpf_trace.c 15 additions, 0 deletionskernel/trace/bpf_trace.c
- tools/include/uapi/linux/bpf.h 7 additions, 0 deletionstools/include/uapi/linux/bpf.h
Loading
Please register or sign in to comment