Jann Horn
a6132276ab
bpf: fix incorrect sign extension in check_alu_op()
commit 95a762e2c8 upstream.
Distinguish between
BPF_ALU64|BPF_MOV|BPF_K (load 32-bit immediate, sign-extended to 64-bit)
and BPF_ALU|BPF_MOV|BPF_K (load 32-bit immediate, zero-padded to 64-bit);
only perform sign extension in the first case.
This patch differs from the mainline one because the verifier's internals
have changed in the meantime. Mainline tracks register values as 64-bit
values; however, 4.4 still stores tracked register values as 32-bit
values with sign extension. Therefore, in the case of a 32-bit op with
negative immediate, the value can't be tracked; leave the register as
UNKNOWN_VALUE (set by the preceding check_reg_arg() call).
I have manually tested this patch on top of 4.4.122. For the following BPF
bytecode:
BPF_MOV64_IMM(BPF_REG_1, 1),
BPF_JMP_IMM(BPF_JEQ, BPF_REG_1, 1, 1),
BPF_EXIT_INSN(),
BPF_MOV32_IMM(BPF_REG_1, 1),
BPF_JMP_IMM(BPF_JEQ, BPF_REG_1, 1, 1),
BPF_EXIT_INSN(),
BPF_MOV64_IMM(BPF_REG_1, -1),
BPF_JMP_IMM(BPF_JEQ, BPF_REG_1, -1, 1),
BPF_EXIT_INSN(),
BPF_MOV32_IMM(BPF_REG_1, -1),
BPF_JMP_IMM(BPF_JEQ, BPF_REG_1, -1, 2),
BPF_MOV32_IMM(BPF_REG_0, 42),
BPF_EXIT_INSN(),
BPF_MOV32_IMM(BPF_REG_0, 43),
BPF_EXIT_INSN()
Verifier output on 4.4.122 without this patch:
0: (b7) r1 = 1
1: (15) if r1 == 0x1 goto pc+1
3: (b4) (u32) r1 = (u32) 1
4: (15) if r1 == 0x1 goto pc+1
6: (b7) r1 = -1
7: (15) if r1 == 0xffffffff goto pc+1
9: (b4) (u32) r1 = (u32) -1
10: (15) if r1 == 0xffffffff goto pc+2
13: (b4) (u32) r0 = (u32) 43
14: (95) exit
Verifier output on 4.4.122+ with this patch:
0: (b7) r1 = 1
1: (15) if r1 == 0x1 goto pc+1
3: (b4) (u32) r1 = (u32) 1
4: (15) if r1 == 0x1 goto pc+1
6: (b7) r1 = -1
7: (15) if r1 == 0xffffffff goto pc+1
9: (b4) (u32) r1 = (u32) -1
10: (15) if r1 == 0xffffffff goto pc+2
R1=inv R10=fp
11: (b4) (u32) r0 = (u32) 42
12: (95) exit
from 10 to 13: R1=imm-1 R10=fp
13: (b4) (u32) r0 = (u32) 43
14: (95) exit
Signed-off-by: Jann Horn <jannh@google.com>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2018-03-22 09:23:32 +01:00
..
2018-03-22 09:23:32 +01:00
2016-09-24 10:07:42 +02:00
2017-12-16 10:33:49 +01:00
2017-10-21 17:09:02 +02:00
2018-01-23 19:50:10 +01:00
2017-06-26 07:13:10 +02:00
2015-11-11 17:36:04 +01:00
2018-01-17 09:35:27 +01:00
2017-10-12 11:27:35 +02:00
2018-03-22 09:23:23 +01:00
2017-10-18 09:20:41 +02:00
2018-03-22 09:23:27 +01:00
2018-03-22 09:23:21 +01:00
2018-02-25 11:03:35 +01:00
2015-10-21 15:18:35 +01:00
2018-01-10 09:27:08 +01:00
2018-02-16 20:09:45 +01:00
2015-08-06 16:14:53 -04:00
2015-11-04 08:23:51 -05:00
2017-08-24 17:02:35 -07:00
2017-12-16 10:33:56 +01:00
2015-11-04 08:23:51 -05:00
2015-11-04 08:23:51 -05:00
2016-08-20 18:09:22 +02:00
2014-06-04 16:54:14 -07:00
2014-08-08 15:57:18 -07:00
2017-01-06 11:16:14 +01:00
2015-12-03 10:18:21 -05:00
2015-12-03 10:18:21 -05:00
2017-04-21 09:30:04 +02:00
2015-06-04 23:57:18 +02:00
2015-11-10 12:06:23 +01:00
2015-09-03 02:42:20 +02:00
2017-01-12 11:22:48 +01:00
2017-10-12 11:27:35 +02:00
2014-08-25 15:42:19 -07:00
2016-09-15 08:27:49 +02:00
2014-07-23 10:18:06 -07:00
2015-04-12 21:03:31 +02:00
2016-06-07 18:14:35 -07:00
2017-07-21 07:44:56 +02:00
2018-01-05 15:44:23 +01:00
2014-10-21 23:44:20 +02:00
2016-02-25 12:01:16 -08:00
2018-01-23 19:50:14 +01:00
2018-01-10 09:27:10 +01:00
2015-04-15 16:35:22 -07:00
2015-11-23 09:44:58 +01:00
2017-12-16 10:33:55 +01:00
2014-10-14 02:18:16 +02:00
2016-02-25 12:01:16 -08:00
2015-05-12 09:46:00 +02:00
2015-11-06 17:50:42 -08:00
2016-09-24 10:07:36 +02:00
2015-09-10 13:29:01 -07:00
2015-11-06 17:50:42 -08:00
2015-10-23 17:55:10 +09:00
2017-05-25 14:30:17 +02:00
2015-09-10 13:29:01 -07:00
2017-04-21 09:30:04 +02:00
2014-06-04 16:54:15 -07:00
2015-09-11 15:21:34 -07:00
2017-03-12 06:37:26 +01:00
2017-01-19 20:17:18 +01:00
2015-10-21 15:18:36 +01:00
2018-02-25 11:03:52 +01:00
2015-09-01 08:40:25 -07:00
2014-12-04 14:34:54 -05:00
2017-05-20 14:27:02 +02:00
2017-07-05 14:37:19 +02:00
2015-11-09 15:53:39 -08:00
2017-05-25 14:30:11 +02:00
2017-08-24 17:02:36 -07:00
2018-02-25 11:03:44 +01:00
2017-06-14 13:16:20 +02:00
2015-01-17 10:02:23 +13:00
2015-09-10 13:29:01 -07:00
2015-06-30 19:44:59 -07:00
2017-08-06 19:19:42 -07:00
2017-10-05 09:41:46 +02:00
2018-01-10 09:27:11 +01:00
2015-11-06 17:50:42 -08:00
2015-10-20 10:23:55 +02:00
2015-02-09 15:24:03 -08:00
2014-12-13 12:42:48 -08:00
2015-12-12 10:15:34 -08:00
2015-11-05 19:34:48 -08:00
2016-02-25 12:01:25 -08:00
2016-04-12 09:08:58 -07:00
2017-10-05 09:41:47 +02:00
2015-09-05 13:46:58 -07:00
2015-01-18 01:03:45 -05:00
2014-08-08 15:57:18 -07:00
2015-10-06 11:25:01 -07:00
2015-10-25 21:33:54 -04:00
2014-07-23 10:18:05 -07:00
2018-01-10 09:27:10 +01:00
2014-02-24 14:47:15 -08:00
2015-09-04 16:54:41 -07:00
2014-08-26 13:45:45 -04:00
2014-12-17 12:31:40 -08:00
2014-06-06 16:08:16 -07:00
2014-12-04 14:34:47 -05:00
2017-01-06 11:16:16 +01:00
2017-11-15 17:13:11 +01:00
2018-03-18 11:17:48 +01:00