summaryrefslogtreecommitdiff
path: root/tools/bpf/Makefile
diff options
context:
space:
mode:
authorJakub Kicinski <jakub.kicinski@netronome.com>2018-06-28 14:41:38 -0700
committerDaniel Borkmann <daniel@iogearbox.net>2018-07-01 01:01:50 +0200
commit9a94f277c4fb84815f450418d37bfc568d57b5cc (patch)
tree967999fb046e005b1026f0280f8be0b7f6190f6a /tools/bpf/Makefile
parent9aba36139a5f9ee1d11a60d0a3a90944b8d56385 (diff)
tools: libbpf: restore the ability to load programs from .text section
libbpf used to be able to load programs from the default section called '.text'. It's not very common to leave sections unnamed, but if it happens libbpf will fail to load the programs reporting -EINVAL from the kernel. The -EINVAL comes from bpf_obj_name_cpy() because since 48cca7e44f9f ("libbpf: add support for bpf_call") libbpf does not resolve program names for programs in '.text', defaulting to '.text'. '.text', however, does not pass the (isalnum(*src) || *src == '_') check in bpf_obj_name_cpy(). With few extra lines of code we can limit the pseudo call assumptions only to objects which actually contain code relocations. Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Reviewed-by: Quentin Monnet <quentin.monnet@netronome.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'tools/bpf/Makefile')
0 files changed, 0 insertions, 0 deletions