提交 b9c5e4a7 编写于 作者: A Andrii Nakryiko 提交者: Zheng Zengkai

libbpf: Fix section counting logic

mainline inclusion
from mainline-5.17-rc1
commit 0d6988e1
category: feature
bugzilla: https://gitee.com/openeuler/kernel/issues/I5EUVD
CVE: NA

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=0d6988e16a12ebd41d3e268992211b0ceba44ed7

-------------------------------------------------

e_shnum does include section #0 and as such is exactly the number of ELF
sections that we need to allocate memory for to use section indices as
array indices. Fix the off-by-one error.

This is purely accounting fix, previously we were overallocating one
too many array items. But no correctness errors otherwise.

Fixes: 25bbbd7a ("libbpf: Remove assumptions about uniqueness of .rodata/.data/.bss maps")
Signed-off-by: NAndrii Nakryiko <andrii@kernel.org>
Signed-off-by: NAlexei Starovoitov <ast@kernel.org>
Acked-by: NYonghong Song <yhs@fb.com>
Link: https://lore.kernel.org/bpf/20211103173213.1376990-5-andrii@kernel.org
(cherry picked from commit 0d6988e1)
Signed-off-by: NWang Yufen <wangyufen@huawei.com>
上级 396d465c
...@@ -3148,11 +3148,11 @@ static int bpf_object__elf_collect(struct bpf_object *obj) ...@@ -3148,11 +3148,11 @@ static int bpf_object__elf_collect(struct bpf_object *obj)
Elf_Scn *scn; Elf_Scn *scn;
Elf64_Shdr *sh; Elf64_Shdr *sh;
/* ELF section indices are 1-based, so allocate +1 element to keep /* ELF section indices are 0-based, but sec #0 is special "invalid"
* indexing simple. Also include 0th invalid section into sec_cnt for * section. e_shnum does include sec #0, so e_shnum is the necessary
* simpler and more traditional iteration logic. * size of an array to keep all the sections.
*/ */
obj->efile.sec_cnt = 1 + obj->efile.ehdr->e_shnum; obj->efile.sec_cnt = obj->efile.ehdr->e_shnum;
obj->efile.secs = calloc(obj->efile.sec_cnt, sizeof(*obj->efile.secs)); obj->efile.secs = calloc(obj->efile.sec_cnt, sizeof(*obj->efile.secs));
if (!obj->efile.secs) if (!obj->efile.secs)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册