]> git.baikalelectronics.ru Git - kernel.git/commit
libbpf: Fix segfault in static linker for objects without BTF
authorKumar Kartikeya Dwivedi <memxor@gmail.com>
Fri, 24 Sep 2021 02:37:25 +0000 (08:07 +0530)
committerDaniel Borkmann <daniel@iogearbox.net>
Tue, 28 Sep 2021 07:29:03 +0000 (09:29 +0200)
commitb1f164819fea17144bfd96c422d9a3fdc98d7880
tree397eeacdd5ef79e20ea7eecec3ebc85d0100f359
parenta9980cadf0f71beb29797a9375b11e41493e1d7f
libbpf: Fix segfault in static linker for objects without BTF

When a BPF object is compiled without BTF info (without -g),
trying to link such objects using bpftool causes a SIGSEGV due to
btf__get_nr_types accessing obj->btf which is NULL. Fix this by
checking for the NULL pointer, and return error.

Reproducer:
$ cat a.bpf.c
extern int foo(void);
int bar(void) { return foo(); }
$ cat b.bpf.c
int foo(void) { return 0; }
$ clang -O2 -target bpf -c a.bpf.c
$ clang -O2 -target bpf -c b.bpf.c
$ bpftool gen obj out a.bpf.o b.bpf.o
Segmentation fault (core dumped)

After fix:
$ bpftool gen obj out a.bpf.o b.bpf.o
libbpf: failed to find BTF info for object 'a.bpf.o'
Error: failed to link 'a.bpf.o': Unknown error -22 (-22)

Fixes: 30204accf280 (libbpf: Add linker extern resolution support for functions and global variables)
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20210924023725.70228-1-memxor@gmail.com
tools/lib/bpf/linker.c