diff options
author | Andrii Nakryiko <andriin@fb.com> | 2019-08-08 00:39:50 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2019-08-08 00:43:49 +0300 |
commit | 4cedc0dad9b5bf55c4180c833be35e27e5d6cdbb (patch) | |
tree | ade3b6ee7e0cd329bb70bfb14cca4460ff9f4937 /tools/lib/bpf/btf.h | |
parent | b03bc6853c0e0c97da842434e8056f1b9d9a1f4a (diff) | |
download | linux-4cedc0dad9b5bf55c4180c833be35e27e5d6cdbb.tar.xz |
libbpf: add .BTF.ext offset relocation section loading
Add support for BPF CO-RE offset relocations. Add section/record
iteration macros for .BTF.ext. These macro are useful for iterating over
each .BTF.ext record, either for dumping out contents or later for BPF
CO-RE relocation handling.
To enable other parts of libbpf to work with .BTF.ext contents, moved
a bunch of type definitions into libbpf_internal.h.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Acked-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/lib/bpf/btf.h')
-rw-r--r-- | tools/lib/bpf/btf.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/lib/bpf/btf.h b/tools/lib/bpf/btf.h index 2604dc099855..9cb44b4fbf60 100644 --- a/tools/lib/bpf/btf.h +++ b/tools/lib/bpf/btf.h @@ -58,6 +58,10 @@ struct btf_ext_header { __u32 func_info_len; __u32 line_info_off; __u32 line_info_len; + + /* optional part of .BTF.ext header */ + __u32 offset_reloc_off; + __u32 offset_reloc_len; }; LIBBPF_API void btf__free(struct btf *btf); |