aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorDaniel Borkmann <daniel@iogearbox.net>2018-11-02 06:35:46 -0400
committerAlexei Starovoitov <ast@kernel.org>2018-11-02 16:51:15 -0400
commit28c2fae726bf5003cd209b0d5910a642af98316f (patch)
treeea8c71b2ba991e29419116d933efb9022457f331 /kernel
parentb0970f235f1ff68a49fd36fdbd8a80dd92bb7b04 (diff)
bpf: fix bpf_prog_get_info_by_fd to return 0 func_lens for unpriv
While dbecd7388476 ("bpf: get kernel symbol addresses via syscall") zeroed info.nr_jited_ksyms in bpf_prog_get_info_by_fd() for queries from unprivileged users, commit 815581c11cc2 ("bpf: get JITed image lengths of functions via syscall") forgot about doing so and therefore returns the #elems of the user set up buffer which is incorrect. It also needs to indicate a info.nr_jited_func_lens of zero. Fixes: 815581c11cc2 ("bpf: get JITed image lengths of functions via syscall") Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Cc: Sandipan Das <sandipan@linux.vnet.ibm.com> Cc: Song Liu <songliubraving@fb.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/bpf/syscall.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c
index 9418174c276c..cf5040fd5434 100644
--- a/kernel/bpf/syscall.c
+++ b/kernel/bpf/syscall.c
@@ -2078,6 +2078,7 @@ static int bpf_prog_get_info_by_fd(struct bpf_prog *prog,
2078 info.jited_prog_len = 0; 2078 info.jited_prog_len = 0;
2079 info.xlated_prog_len = 0; 2079 info.xlated_prog_len = 0;
2080 info.nr_jited_ksyms = 0; 2080 info.nr_jited_ksyms = 0;
2081 info.nr_jited_func_lens = 0;
2081 goto done; 2082 goto done;
2082 } 2083 }
2083 2084