OSDN Git Service

bpf: Fix bpf jit kallsym access
authorAlexei Starovoitov <ast@kernel.org>
Wed, 30 Oct 2019 23:30:19 +0000 (16:30 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Thu, 31 Oct 2019 01:02:29 +0000 (02:02 +0100)
commitaf91acbc62999d62e2ca1e80f660d20561ca55d3
tree177a248942995dad60bd216381da2be430e17b4d
parentcf204a718357c3c28557cc6bdc77a3adc33d0741
bpf: Fix bpf jit kallsym access

Jiri reported crash when JIT is on, but net.core.bpf_jit_kallsyms is off.
bpf_prog_kallsyms_find() was skipping addr->bpf_prog resolution
logic in oops and stack traces. That's incorrect.
It should only skip addr->name resolution for 'cat /proc/kallsyms'.
That's what bpf_jit_kallsyms and bpf_jit_harden protect.

Fixes: 3dec541b2e63 ("bpf: Add support for BTF pointers to x86 JIT")
Reported-by: Jiri Olsa <jolsa@redhat.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20191030233019.1187404-1-ast@kernel.org
kernel/bpf/core.c