OSDN Git Service

libbpf: Don't crash on object files with no symbol tables
authorToke Høiland-Jørgensen <toke@redhat.com>
Wed, 1 Sep 2021 11:48:12 +0000 (13:48 +0200)
committerAndrii Nakryiko <andrii@kernel.org>
Wed, 8 Sep 2021 00:18:48 +0000 (17:18 -0700)
commit03e601f48b2da6fb44d0f7b86957a8f6bacfb347
treec45075220d4257dabbc4253f15152332bca5e9df
parentb238290b965f23ac5f8aeb64cd731aef18aa796c
libbpf: Don't crash on object files with no symbol tables

If libbpf encounters an ELF file that has been stripped of its symbol
table, it will crash in bpf_object__add_programs() when trying to
dereference the obj->efile.symbols pointer.

Fix this by erroring out of bpf_object__elf_collect() if it is not able
able to find the symbol table.

v2:
  - Move check into bpf_object__elf_collect() and add nice error message

Fixes: 6245947c1b3c ("libbpf: Allow gaps in BPF program sections to support overriden weak functions")
Signed-off-by: Toke Høiland-Jørgensen <toke@redhat.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20210901114812.204720-1-toke@redhat.com
tools/lib/bpf/libbpf.c