bpf: btf: Add BTF support to libbpf
If the ".BTF" elf section exists, libbpf will try to create a btf_fd (through BPF_BTF_LOAD). If that fails, it will still continue loading the bpf prog/map without the BTF. If the bpf_object has a BTF loaded, it will create a map with the btf_fd. libbpf will try to figure out the btf_key_id and btf_value_id of a map by finding the BTF type with name "<map_name>_key" and "<map_name>_value". If they cannot be found, it will continue without using the BTF. Signed-off-by:Martin KaFai Lau <kafai@fb.com> Acked-by:
Alexei Starovoitov <ast@fb.com> Signed-off-by:
Daniel Borkmann <daniel@iogearbox.net>
Showing
- tools/lib/bpf/Build 1 addition, 1 deletiontools/lib/bpf/Build
- tools/lib/bpf/bpf.c 75 additions, 17 deletionstools/lib/bpf/bpf.c
- tools/lib/bpf/bpf.h 16 additions, 0 deletionstools/lib/bpf/bpf.h
- tools/lib/bpf/btf.c 374 additions, 0 deletionstools/lib/bpf/btf.c
- tools/lib/bpf/btf.h 22 additions, 0 deletionstools/lib/bpf/btf.h
- tools/lib/bpf/libbpf.c 135 additions, 13 deletionstools/lib/bpf/libbpf.c
- tools/lib/bpf/libbpf.h 3 additions, 0 deletionstools/lib/bpf/libbpf.h
Loading
Please register or sign in to comment