mirror of https://gitee.com/openkylin/linux.git
libbpf: Allow gaps in BPF program sections to support overriden weak functions
Currently libbpf is very strict about parsing BPF program instruction sections. No gaps are allowed between sequential BPF programs within a given ELF section. Libbpf enforced that by keeping track of the next section offset that should start a new BPF (sub)program and cross-checks that by searching for a corresponding STT_FUNC ELF symbol. But this is too restrictive once we allow to have weak BPF programs and link together two or more BPF object files. In such case, some weak BPF programs might be "overridden" by either non-weak BPF program with the same name and signature, or even by another weak BPF program that just happened to be linked first. That, in turn, leaves BPF instructions of the "lost" BPF (sub)program intact, but there is no corresponding ELF symbol, because no one is going to be referencing it. Libbpf already correctly handles such cases in the sense that it won't append such dead code to actual BPF programs loaded into kernel. So the only change that needs to be done is to relax the logic of parsing BPF instruction sections. Instead of assuming next BPF (sub)program section offset, iterate available STT_FUNC ELF symbols to discover all available BPF subprograms and programs. Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Acked-by: Yonghong Song <yhs@fb.com> Link: https://lore.kernel.org/bpf/20210423181348.1801389-6-andrii@kernel.org
This commit is contained in:
parent
aea28a602f
commit
6245947c1b
|
@ -502,8 +502,6 @@ static Elf_Scn *elf_sec_by_name(const struct bpf_object *obj, const char *name);
|
||||||
static int elf_sec_hdr(const struct bpf_object *obj, Elf_Scn *scn, GElf_Shdr *hdr);
|
static int elf_sec_hdr(const struct bpf_object *obj, Elf_Scn *scn, GElf_Shdr *hdr);
|
||||||
static const char *elf_sec_name(const struct bpf_object *obj, Elf_Scn *scn);
|
static const char *elf_sec_name(const struct bpf_object *obj, Elf_Scn *scn);
|
||||||
static Elf_Data *elf_sec_data(const struct bpf_object *obj, Elf_Scn *scn);
|
static Elf_Data *elf_sec_data(const struct bpf_object *obj, Elf_Scn *scn);
|
||||||
static int elf_sym_by_sec_off(const struct bpf_object *obj, size_t sec_idx,
|
|
||||||
size_t off, __u32 sym_type, GElf_Sym *sym);
|
|
||||||
|
|
||||||
void bpf_program__unload(struct bpf_program *prog)
|
void bpf_program__unload(struct bpf_program *prog)
|
||||||
{
|
{
|
||||||
|
@ -644,25 +642,29 @@ static int
|
||||||
bpf_object__add_programs(struct bpf_object *obj, Elf_Data *sec_data,
|
bpf_object__add_programs(struct bpf_object *obj, Elf_Data *sec_data,
|
||||||
const char *sec_name, int sec_idx)
|
const char *sec_name, int sec_idx)
|
||||||
{
|
{
|
||||||
|
Elf_Data *symbols = obj->efile.symbols;
|
||||||
struct bpf_program *prog, *progs;
|
struct bpf_program *prog, *progs;
|
||||||
void *data = sec_data->d_buf;
|
void *data = sec_data->d_buf;
|
||||||
size_t sec_sz = sec_data->d_size, sec_off, prog_sz;
|
size_t sec_sz = sec_data->d_size, sec_off, prog_sz, nr_syms;
|
||||||
int nr_progs, err;
|
int nr_progs, err, i;
|
||||||
const char *name;
|
const char *name;
|
||||||
GElf_Sym sym;
|
GElf_Sym sym;
|
||||||
|
|
||||||
progs = obj->programs;
|
progs = obj->programs;
|
||||||
nr_progs = obj->nr_programs;
|
nr_progs = obj->nr_programs;
|
||||||
|
nr_syms = symbols->d_size / sizeof(GElf_Sym);
|
||||||
sec_off = 0;
|
sec_off = 0;
|
||||||
|
|
||||||
while (sec_off < sec_sz) {
|
for (i = 0; i < nr_syms; i++) {
|
||||||
if (elf_sym_by_sec_off(obj, sec_idx, sec_off, STT_FUNC, &sym)) {
|
if (!gelf_getsym(symbols, i, &sym))
|
||||||
pr_warn("sec '%s': failed to find program symbol at offset %zu\n",
|
continue;
|
||||||
sec_name, sec_off);
|
if (sym.st_shndx != sec_idx)
|
||||||
return -LIBBPF_ERRNO__FORMAT;
|
continue;
|
||||||
}
|
if (GELF_ST_TYPE(sym.st_info) != STT_FUNC)
|
||||||
|
continue;
|
||||||
|
|
||||||
prog_sz = sym.st_size;
|
prog_sz = sym.st_size;
|
||||||
|
sec_off = sym.st_value;
|
||||||
|
|
||||||
name = elf_sym_str(obj, sym.st_name);
|
name = elf_sym_str(obj, sym.st_name);
|
||||||
if (!name) {
|
if (!name) {
|
||||||
|
@ -711,8 +713,6 @@ bpf_object__add_programs(struct bpf_object *obj, Elf_Data *sec_data,
|
||||||
|
|
||||||
nr_progs++;
|
nr_progs++;
|
||||||
obj->nr_programs = nr_progs;
|
obj->nr_programs = nr_progs;
|
||||||
|
|
||||||
sec_off += prog_sz;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -2825,26 +2825,6 @@ static Elf_Data *elf_sec_data(const struct bpf_object *obj, Elf_Scn *scn)
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int elf_sym_by_sec_off(const struct bpf_object *obj, size_t sec_idx,
|
|
||||||
size_t off, __u32 sym_type, GElf_Sym *sym)
|
|
||||||
{
|
|
||||||
Elf_Data *symbols = obj->efile.symbols;
|
|
||||||
size_t n = symbols->d_size / sizeof(GElf_Sym);
|
|
||||||
int i;
|
|
||||||
|
|
||||||
for (i = 0; i < n; i++) {
|
|
||||||
if (!gelf_getsym(symbols, i, sym))
|
|
||||||
continue;
|
|
||||||
if (sym->st_shndx != sec_idx || sym->st_value != off)
|
|
||||||
continue;
|
|
||||||
if (GELF_ST_TYPE(sym->st_info) != sym_type)
|
|
||||||
continue;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return -ENOENT;
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool is_sec_name_dwarf(const char *name)
|
static bool is_sec_name_dwarf(const char *name)
|
||||||
{
|
{
|
||||||
/* approximation, but the actual list is too long */
|
/* approximation, but the actual list is too long */
|
||||||
|
@ -3723,11 +3703,16 @@ bpf_object__collect_prog_relos(struct bpf_object *obj, GElf_Shdr *shdr, Elf_Data
|
||||||
int err, i, nrels;
|
int err, i, nrels;
|
||||||
const char *sym_name;
|
const char *sym_name;
|
||||||
__u32 insn_idx;
|
__u32 insn_idx;
|
||||||
|
Elf_Scn *scn;
|
||||||
|
Elf_Data *scn_data;
|
||||||
GElf_Sym sym;
|
GElf_Sym sym;
|
||||||
GElf_Rel rel;
|
GElf_Rel rel;
|
||||||
|
|
||||||
|
scn = elf_sec_by_idx(obj, sec_idx);
|
||||||
|
scn_data = elf_sec_data(obj, scn);
|
||||||
|
|
||||||
relo_sec_name = elf_sec_str(obj, shdr->sh_name);
|
relo_sec_name = elf_sec_str(obj, shdr->sh_name);
|
||||||
sec_name = elf_sec_name(obj, elf_sec_by_idx(obj, sec_idx));
|
sec_name = elf_sec_name(obj, scn);
|
||||||
if (!relo_sec_name || !sec_name)
|
if (!relo_sec_name || !sec_name)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
|
@ -3745,7 +3730,8 @@ bpf_object__collect_prog_relos(struct bpf_object *obj, GElf_Shdr *shdr, Elf_Data
|
||||||
relo_sec_name, (size_t)GELF_R_SYM(rel.r_info), i);
|
relo_sec_name, (size_t)GELF_R_SYM(rel.r_info), i);
|
||||||
return -LIBBPF_ERRNO__FORMAT;
|
return -LIBBPF_ERRNO__FORMAT;
|
||||||
}
|
}
|
||||||
if (rel.r_offset % BPF_INSN_SZ) {
|
|
||||||
|
if (rel.r_offset % BPF_INSN_SZ || rel.r_offset >= scn_data->d_size) {
|
||||||
pr_warn("sec '%s': invalid offset 0x%zx for relo #%d\n",
|
pr_warn("sec '%s': invalid offset 0x%zx for relo #%d\n",
|
||||||
relo_sec_name, (size_t)GELF_R_SYM(rel.r_info), i);
|
relo_sec_name, (size_t)GELF_R_SYM(rel.r_info), i);
|
||||||
return -LIBBPF_ERRNO__FORMAT;
|
return -LIBBPF_ERRNO__FORMAT;
|
||||||
|
@ -3769,9 +3755,9 @@ bpf_object__collect_prog_relos(struct bpf_object *obj, GElf_Shdr *shdr, Elf_Data
|
||||||
|
|
||||||
prog = find_prog_by_sec_insn(obj, sec_idx, insn_idx);
|
prog = find_prog_by_sec_insn(obj, sec_idx, insn_idx);
|
||||||
if (!prog) {
|
if (!prog) {
|
||||||
pr_warn("sec '%s': relo #%d: program not found in section '%s' for insn #%u\n",
|
pr_debug("sec '%s': relo #%d: couldn't find program in section '%s' for insn #%u, probably overridden weak function, skipping...\n",
|
||||||
relo_sec_name, i, sec_name, insn_idx);
|
relo_sec_name, i, sec_name, insn_idx);
|
||||||
return -LIBBPF_ERRNO__RELOC;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
relos = libbpf_reallocarray(prog->reloc_desc,
|
relos = libbpf_reallocarray(prog->reloc_desc,
|
||||||
|
|
Loading…
Reference in New Issue