bpf: Set register type according to is_valid_access()
authorMickaël Salaün <mic@digikod.net>
Sat, 24 Sep 2016 18:01:50 +0000 (20:01 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 27 Sep 2016 07:51:34 +0000 (03:51 -0400)
commit1955351da41caa1dbf4139191358fed84909d64b
tree767133c43d7d94790ebe32ba37834e469f84ab98
parent973d94d8a87c32661f1308a118074972ac5d483a
bpf: Set register type according to is_valid_access()

This prevent future potential pointer leaks when an unprivileged eBPF
program will read a pointer value from its context. Even if
is_valid_access() returns a pointer type, the eBPF verifier replace it
with UNKNOWN_VALUE. The register value that contains a kernel address is
then allowed to leak. Moreover, this fix allows unprivileged eBPF
programs to use functions with (legitimate) pointer arguments.

Not an issue currently since reg_type is only set for PTR_TO_PACKET or
PTR_TO_PACKET_END in XDP and TC programs that can only be loaded as
privileged. For now, the only unprivileged eBPF program allowed is for
socket filtering and all the types from its context are UNKNOWN_VALUE.
However, this fix is important for future unprivileged eBPF programs
which could use pointers in their context.

Signed-off-by: Mickaël Salaün <mic@digikod.net>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
kernel/bpf/verifier.c