bpf: don't prune branches when a scalar is replaced with a pointer
authorJann Horn <jannh@google.com>
Tue, 19 Dec 2017 04:11:59 +0000 (20:11 -0800)
committerDaniel Borkmann <daniel@iogearbox.net>
Thu, 21 Dec 2017 01:15:41 +0000 (02:15 +0100)
commit179d1c5602997fef5a940c6ddcf31212cbfebd14
tree67a91e768530270c4ba22747afde33fc23b40cf1
parenta5ec6ae161d72f01411169a938fa5f8baea16e8f
bpf: don't prune branches when a scalar is replaced with a pointer

This could be made safe by passing through a reference to env and checking
for env->allow_ptr_leaks, but it would only work one way and is probably
not worth the hassle - not doing it will not directly lead to program
rejection.

Fixes: f1174f77b50c ("bpf/verifier: rework value tracking")
Signed-off-by: Jann Horn <jannh@google.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
kernel/bpf/verifier.c