Hao Sun
e8d3872b61
bpf: Reject variable offset alu on PTR_TO_FLOW_KEYS
...
[ Upstream commit 22c7fa171a02d310e3a3f6ed46a698ca8a0060ed ]
For PTR_TO_FLOW_KEYS, check_flow_keys_access() only uses fixed off
for validation. However, variable offset ptr alu is not prohibited
for this ptr kind. So the variable offset is not checked.
The following prog is accepted:
func#0 @0
0: R1=ctx() R10=fp0
0: (bf) r6 = r1 ; R1=ctx() R6_w=ctx()
1: (79) r7 = *(u64 *)(r6 +144) ; R6_w=ctx() R7_w=flow_keys()
2: (b7) r8 = 1024 ; R8_w=1024
3: (37) r8 /= 1 ; R8_w=scalar()
4: (57) r8 &= 1024 ; R8_w=scalar(smin=smin32=0,
smax=umax=smax32=umax32=1024,var_off=(0x0; 0x400))
5: (0f) r7 += r8
mark_precise: frame0: last_idx 5 first_idx 0 subseq_idx -1
mark_precise: frame0: regs=r8 stack= before 4: (57) r8 &= 1024
mark_precise: frame0: regs=r8 stack= before 3: (37) r8 /= 1
mark_precise: frame0: regs=r8 stack= before 2: (b7) r8 = 1024
6: R7_w=flow_keys(smin=smin32=0,smax=umax=smax32=umax32=1024,var_off
=(0x0; 0x400)) R8_w=scalar(smin=smin32=0,smax=umax=smax32=umax32=1024,
var_off=(0x0; 0x400))
6: (79) r0 = *(u64 *)(r7 +0) ; R0_w=scalar()
7: (95) exit
This prog loads flow_keys to r7, and adds the variable offset r8
to r7, and finally causes out-of-bounds access:
BUG: unable to handle page fault for address: ffffc90014c80038
[...]
Call Trace:
<TASK>
bpf_dispatcher_nop_func include/linux/bpf.h:1231 [inline]
__bpf_prog_run include/linux/filter.h:651 [inline]
bpf_prog_run include/linux/filter.h:658 [inline]
bpf_prog_run_pin_on_cpu include/linux/filter.h:675 [inline]
bpf_flow_dissect+0x15f/0x350 net/core/flow_dissector.c:991
bpf_prog_test_run_flow_dissector+0x39d/0x620 net/bpf/test_run.c:1359
bpf_prog_test_run kernel/bpf/syscall.c:4107 [inline]
__sys_bpf+0xf8f/0x4560 kernel/bpf/syscall.c:5475
__do_sys_bpf kernel/bpf/syscall.c:5561 [inline]
__se_sys_bpf kernel/bpf/syscall.c:5559 [inline]
__x64_sys_bpf+0x73/0xb0 kernel/bpf/syscall.c:5559
do_syscall_x64 arch/x86/entry/common.c:52 [inline]
do_syscall_64+0x3f/0x110 arch/x86/entry/common.c:83
entry_SYSCALL_64_after_hwframe+0x63/0x6b
Fix this by rejecting ptr alu with variable offset on flow_keys.
Applying the patch rejects the program with "R7 pointer arithmetic
on flow_keys prohibited".
Fixes: d58e468b1112 ("flow_dissector: implements flow dissector BPF hook")
Signed-off-by: Hao Sun <sunhao.th@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Yonghong Song <yonghong.song@linux.dev>
Link: https://lore.kernel.org/bpf/20240115082028.9992-1-sunhao.th@gmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
2024-01-25 15:35:58 -08:00
..
2023-07-06 12:42:25 -07:00
2024-01-25 15:35:22 -08:00
2023-06-19 14:04:04 +02:00
2023-04-04 16:57:16 -07:00
2023-04-26 16:07:23 -07:00
2023-03-08 16:19:51 -08:00
2023-09-06 11:08:14 +02:00
2023-05-12 12:01:03 -07:00
2023-08-08 17:21:42 -07:00
2023-01-26 23:26:40 -08:00
2021-11-01 14:10:00 -07:00
2023-08-14 22:23:39 -07:00
2023-04-04 16:57:16 -07:00
2023-09-12 13:15:46 -07:00
2023-03-17 12:07:13 -10:00
2023-09-12 13:19:07 -07:00
2023-12-13 18:45:04 +01:00
2023-08-21 15:21:16 -07:00
2023-07-12 23:45:23 +02:00
2023-07-31 18:26:08 -07:00
2023-08-04 16:15:50 -07:00
2021-09-02 14:49:23 +02:00
2022-12-14 12:02:14 -08:00
2024-01-25 15:35:22 -08:00
2023-11-20 11:59:34 +01:00
2023-07-24 10:30:07 +02:00
2023-07-19 10:07:27 -07:00
2022-05-10 11:20:45 -07:00
2023-04-29 10:05:22 -07:00
2023-05-16 22:34:50 -07:00
2024-01-25 15:35:19 -08:00
2023-07-19 10:07:27 -07:00
2024-01-25 15:35:22 -08:00
2024-01-25 15:35:22 -08:00
2023-07-19 09:48:53 -07:00
2024-01-25 15:35:28 -08:00
2021-11-07 11:54:51 -08:00
2023-10-06 17:11:20 -07:00
2021-12-29 20:03:05 -08:00
2023-09-11 22:06:06 -07:00
2022-11-11 12:05:14 -08:00
2023-09-11 19:04:49 -07:00
2023-06-19 14:04:04 +02:00
2023-07-05 14:09:45 +02:00
2024-01-25 15:35:19 -08:00
2024-01-25 15:35:46 -08:00
2022-12-28 14:11:48 -08:00
2023-10-06 17:11:20 -07:00
2021-06-01 13:34:15 +02:00
2023-11-20 11:58:55 +01:00
2024-01-25 15:35:58 -08:00