mirror of https://gitee.com/openkylin/linux.git
net: filter: fix upper BPF instruction limit
The original checks (via sk_chk_filter) for instruction count uses ">",
not ">=", so changing this in sk_convert_filter has the potential to break
existing seccomp filters that used exactly BPF_MAXINSNS many instructions.
Fixes: bd4cf0ed33
("net: filter: rework/optimize internal BPF interpreter's instruction set")
Signed-off-by: Kees Cook <keescook@chromium.org>
Cc: stable@vger.kernel.org # v3.15+
Acked-by: Daniel Borkmann <dborkman@redhat.com>
Acked-by: Alexei Starovoitov <ast@plumgrid.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ff5e92c1af
commit
6f9a093b66
|
@ -840,7 +840,7 @@ int sk_convert_filter(struct sock_filter *prog, int len,
|
|||
BUILD_BUG_ON(BPF_MEMWORDS * sizeof(u32) > MAX_BPF_STACK);
|
||||
BUILD_BUG_ON(BPF_REG_FP + 1 != MAX_BPF_REG);
|
||||
|
||||
if (len <= 0 || len >= BPF_MAXINSNS)
|
||||
if (len <= 0 || len > BPF_MAXINSNS)
|
||||
return -EINVAL;
|
||||
|
||||
if (new_prog) {
|
||||
|
|
Loading…
Reference in New Issue