]> git.baikalelectronics.ru Git - kernel.git/commit
libbpf: Don't attempt to load unused subprog as an entry-point BPF program
authorAndrii Nakryiko <andrii@kernel.org>
Sat, 7 Nov 2020 00:02:51 +0000 (16:02 -0800)
committerDaniel Borkmann <daniel@iogearbox.net>
Mon, 9 Nov 2020 21:15:23 +0000 (22:15 +0100)
commitd0727fc6e6dfdafc4bc89472c68d863e32e15142
tree18dfc01e3ad39fa1f38086fe854b0986ecaa01dd
parent585fb2364389ca59212eadbce21593c709626a3e
libbpf: Don't attempt to load unused subprog as an entry-point BPF program

If BPF code contains unused BPF subprogram and there are no other subprogram
calls (which can realistically happen in real-world applications given
sufficiently smart Clang code optimizations), libbpf will erroneously assume
that subprograms are entry-point programs and will attempt to load them with
UNSPEC program type.

Fix by not relying on subcall instructions and rather detect it based on the
structure of BPF object's sections.

Fixes: 8becdb195fd4 ("tools: libbpf: restore the ability to load programs from .text section")
Reported-by: Dmitrii Banshchikov <dbanschikov@fb.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Yonghong Song <yhs@fb.com>
Link: https://lore.kernel.org/bpf/20201107000251.256821-1-andrii@kernel.org
tools/lib/bpf/libbpf.c
tools/testing/selftests/bpf/prog_tests/subprogs.c
tools/testing/selftests/bpf/progs/test_subprogs_unused.c [new file with mode: 0644]