]> asedeno.scripts.mit.edu Git - linux.git/commit
bpf, x32: Fix bug with ALU64 {LSH, RSH, ARSH} BPF_K shift by 0
authorLuke Nelson <lukenels@cs.washington.edu>
Sat, 29 Jun 2019 05:57:50 +0000 (22:57 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Wed, 3 Jul 2019 09:14:28 +0000 (11:14 +0200)
commit6fa632e719eec4d1b1ebf3ddc0b2d667997b057b
treed2d6f3e67778c27a1e27c37059ac1b0a31122fd2
parent68a8357ec15bdce55266e9fba8b8b3b8143fa7d2
bpf, x32: Fix bug with ALU64 {LSH, RSH, ARSH} BPF_K shift by 0

The current x32 BPF JIT does not correctly compile shift operations when
the immediate shift amount is 0. The expected behavior is for this to
be a no-op.

The following program demonstrates the bug. The expexceted result is 1,
but the current JITed code returns 2.

  r0 = 1
  r1 = 1
  r1 <<= 0
  if r1 == 1 goto end
  r0 = 2
end:
  exit

This patch simplifies the code and fixes the bug.

Fixes: 03f5781be2c7 ("bpf, x86_32: add eBPF JIT compiler for ia32")
Co-developed-by: Xi Wang <xi.wang@gmail.com>
Signed-off-by: Xi Wang <xi.wang@gmail.com>
Signed-off-by: Luke Nelson <luke.r.nels@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
arch/x86/net/bpf_jit_comp32.c