* [PATCH] bpf: fix divides by zero
@ 2018-01-13 1:33 Eric Dumazet
2018-01-13 1:41 ` Eric Dumazet
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Eric Dumazet @ 2018-01-13 1:33 UTC (permalink / raw)
To: Alexei Starovoitov, Daniel Borkmann; +Cc: netdev, edumazet
From: Eric Dumazet <edumazet@google.com>
Divides by zero are not nice, lets avoid them if possible.
Also do_div() seems not needed when dealing with 32bit operands,
but this seems a minor detail.
Fixes: bd4cf0ed331a ("net: filter: rework/optimize internal BPF interpreter's instruction set")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: syzbot <syzkaller@googlegroups.com>
---
kernel/bpf/core.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
index
51ec2dda7f08c6c90af084589bb6d80662c77d12..7949e8b8f94e9cc196e0449214493
ccce61b0903 100644
--- a/kernel/bpf/core.c
+++ b/kernel/bpf/core.c
@@ -956,7 +956,7 @@ static unsigned int ___bpf_prog_run(u64 *regs,
const struct bpf_insn *insn,
DST = tmp;
CONT;
ALU_MOD_X:
- if (unlikely(SRC == 0))
+ if (unlikely((u32)SRC == 0))
return 0;
tmp = (u32) DST;
DST = do_div(tmp, (u32) SRC);
@@ -975,7 +975,7 @@ static unsigned int ___bpf_prog_run(u64 *regs,
const struct bpf_insn *insn,
DST = div64_u64(DST, SRC);
CONT;
ALU_DIV_X:
- if (unlikely(SRC == 0))
+ if (unlikely((u32)SRC == 0))
return 0;
tmp = (u32) DST;
do_div(tmp, (u32) SRC);
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] bpf: fix divides by zero
2018-01-13 1:33 [PATCH] bpf: fix divides by zero Eric Dumazet
@ 2018-01-13 1:41 ` Eric Dumazet
2018-01-13 1:42 ` Alexei Starovoitov
2018-01-13 1:43 ` [PATCH v2] " Eric Dumazet
2 siblings, 0 replies; 5+ messages in thread
From: Eric Dumazet @ 2018-01-13 1:41 UTC (permalink / raw)
To: Alexei Starovoitov, Daniel Borkmann; +Cc: netdev, edumazet
On Fri, 2018-01-12 at 17:33 -0800, Eric Dumazet wrote:
> From: Eric Dumazet <edumazet@google.com>
>
Sorry for the mangled patch. Will send V2
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] bpf: fix divides by zero
2018-01-13 1:33 [PATCH] bpf: fix divides by zero Eric Dumazet
2018-01-13 1:41 ` Eric Dumazet
@ 2018-01-13 1:42 ` Alexei Starovoitov
2018-01-13 1:43 ` [PATCH v2] " Eric Dumazet
2 siblings, 0 replies; 5+ messages in thread
From: Alexei Starovoitov @ 2018-01-13 1:42 UTC (permalink / raw)
To: Eric Dumazet; +Cc: Alexei Starovoitov, Daniel Borkmann, netdev, edumazet
On Fri, Jan 12, 2018 at 05:33:26PM -0800, Eric Dumazet wrote:
> From: Eric Dumazet <edumazet@google.com>
>
> Divides by zero are not nice, lets avoid them if possible.
>
> Also do_div() seems not needed when dealing with 32bit operands,
> but this seems a minor detail.
>
> Fixes: bd4cf0ed331a ("net: filter: rework/optimize internal BPF interpreter's instruction set")
> Signed-off-by: Eric Dumazet <edumazet@google.com>
> Reported-by: syzbot <syzkaller@googlegroups.com>
> ---
> kernel/bpf/core.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
> index
> 51ec2dda7f08c6c90af084589bb6d80662c77d12..7949e8b8f94e9cc196e0449214493
> ccce61b0903 100644
> --- a/kernel/bpf/core.c
> +++ b/kernel/bpf/core.c
> @@ -956,7 +956,7 @@ static unsigned int ___bpf_prog_run(u64 *regs,
> const struct bpf_insn *insn,
> DST = tmp;
> CONT;
> ALU_MOD_X:
> - if (unlikely(SRC == 0))
> + if (unlikely((u32)SRC == 0))
wow.
Acked-by: Alexei Starovoitov <ast@kernel.org>
we likely need to fix all JITs as well.
At least x64, arm64, sparc have the same bug.
Long term it's probably better to move all such checks out of JITs
and interpreter into the verifier and patch div/mod with
additional 'if src == 0'. This way we can do any type of
error reporting and/or aborting execution.
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH v2] bpf: fix divides by zero
2018-01-13 1:33 [PATCH] bpf: fix divides by zero Eric Dumazet
2018-01-13 1:41 ` Eric Dumazet
2018-01-13 1:42 ` Alexei Starovoitov
@ 2018-01-13 1:43 ` Eric Dumazet
2018-01-14 17:08 ` Alexei Starovoitov
2 siblings, 1 reply; 5+ messages in thread
From: Eric Dumazet @ 2018-01-13 1:43 UTC (permalink / raw)
To: Alexei Starovoitov, Daniel Borkmann; +Cc: netdev, edumazet
From: Eric Dumazet <edumazet@google.com>
Divides by zero are not nice, lets avoid them if possible.
Also do_div() seems not needed when dealing with 32bit operands,
but this seems a minor detail.
Fixes: bd4cf0ed331a ("net: filter: rework/optimize internal BPF interpreter's instruction set")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: syzbot <syzkaller@googlegroups.com>
---
v2: kernel patches 101 : do not mangle patch :/
kernel/bpf/core.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
index 51ec2dda7f08c6c90af084589bb6d80662c77d12..7949e8b8f94e9cc196e0449214493ccce61b0903 100644
--- a/kernel/bpf/core.c
+++ b/kernel/bpf/core.c
@@ -956,7 +956,7 @@ static unsigned int ___bpf_prog_run(u64 *regs, const struct bpf_insn *insn,
DST = tmp;
CONT;
ALU_MOD_X:
- if (unlikely(SRC == 0))
+ if (unlikely((u32)SRC == 0))
return 0;
tmp = (u32) DST;
DST = do_div(tmp, (u32) SRC);
@@ -975,7 +975,7 @@ static unsigned int ___bpf_prog_run(u64 *regs, const struct bpf_insn *insn,
DST = div64_u64(DST, SRC);
CONT;
ALU_DIV_X:
- if (unlikely(SRC == 0))
+ if (unlikely((u32)SRC == 0))
return 0;
tmp = (u32) DST;
do_div(tmp, (u32) SRC);
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH v2] bpf: fix divides by zero
2018-01-13 1:43 ` [PATCH v2] " Eric Dumazet
@ 2018-01-14 17:08 ` Alexei Starovoitov
0 siblings, 0 replies; 5+ messages in thread
From: Alexei Starovoitov @ 2018-01-14 17:08 UTC (permalink / raw)
To: Eric Dumazet; +Cc: Alexei Starovoitov, Daniel Borkmann, netdev, edumazet
On Fri, Jan 12, 2018 at 05:43:23PM -0800, Eric Dumazet wrote:
> From: Eric Dumazet <edumazet@google.com>
>
> Divides by zero are not nice, lets avoid them if possible.
>
> Also do_div() seems not needed when dealing with 32bit operands,
> but this seems a minor detail.
>
> Fixes: bd4cf0ed331a ("net: filter: rework/optimize internal BPF interpreter's instruction set")
> Signed-off-by: Eric Dumazet <edumazet@google.com>
> Reported-by: syzbot <syzkaller@googlegroups.com>
> ---
Applied, Thank you Eric.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-01-14 17:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-13 1:33 [PATCH] bpf: fix divides by zero Eric Dumazet
2018-01-13 1:41 ` Eric Dumazet
2018-01-13 1:42 ` Alexei Starovoitov
2018-01-13 1:43 ` [PATCH v2] " Eric Dumazet
2018-01-14 17:08 ` Alexei Starovoitov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).