]> git.baikalelectronics.ru Git - kernel.git/commit
bpf: rework prog_digest into prog_tag
authorDaniel Borkmann <daniel@iogearbox.net>
Fri, 13 Jan 2017 22:38:15 +0000 (23:38 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 16 Jan 2017 19:03:31 +0000 (14:03 -0500)
commitac71923499e157f2dce39d3d5a89853aa9095a15
tree9e1d9aeda7fe5b358c6d7ed71ccfcdcd576f313a
parentf4fac7b2f6e0ae68dca01959e9c8d0a9b85965f4
bpf: rework prog_digest into prog_tag

Commit 8ca628d16e7d ("bpf: add prog_digest and expose it via
fdinfo/netlink") was recently discussed, partially due to
admittedly suboptimal name of "prog_digest" in combination
with sha1 hash usage, thus inevitably and rightfully concerns
about its security in terms of collision resistance were
raised with regards to use-cases.

The intended use cases are for debugging resp. introspection
only for providing a stable "tag" over the instruction sequence
that both kernel and user space can calculate independently.
It's not usable at all for making a security relevant decision.
So collisions where two different instruction sequences generate
the same tag can happen, but ideally at a rather low rate. The
"tag" will be dumped in hex and is short enough to introspect
in tracepoints or kallsyms output along with other data such
as stack trace, etc. Thus, this patch performs a rename into
prog_tag and truncates the tag to a short output (64 bits) to
make it obvious it's not collision-free.

Should in future a hash or facility be needed with a security
relevant focus, then we can think about requirements, constraints,
etc that would fit to that situation. For now, rework the exposed
parts for the current use cases as long as nothing has been
released yet. Tested on x86_64 and s390x.

Fixes: 8ca628d16e7d ("bpf: add prog_digest and expose it via fdinfo/netlink")
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Cc: Andy Lutomirski <luto@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/bpf.h
include/linux/filter.h
include/uapi/linux/pkt_cls.h
include/uapi/linux/tc_act/tc_bpf.h
kernel/bpf/core.c
kernel/bpf/syscall.c
kernel/bpf/verifier.c
net/sched/act_bpf.c
net/sched/cls_bpf.c