Skip to content

Commit 8ac412a

Browse files
danobiAlexei Starovoitov
authored and
Alexei Starovoitov
committed
bpf: tcp: Mark bpf_load_hdr_opt() arg2 as read-write
MEM_WRITE attribute is defined as: "Non-presence of MEM_WRITE means that MEM is only being read". bpf_load_hdr_opt() both reads and writes from its arg2 - void *search_res. This matters a lot for the next commit where we more precisely track stack accesses. Without this annotation, the verifier will make false assumptions about the contents of memory written to by helpers and possibly prune valid branches. Fixes: 6fad274 ("bpf: Add MEM_WRITE attribute") Acked-by: Martin KaFai Lau <[email protected]> Signed-off-by: Daniel Xu <[email protected]> Link: https://lore.kernel.org/r/730e45f8c39be2a5f3d8c4406cceca9d574cbf14.1736886479.git.dxu@dxuuu.xyz Signed-off-by: Alexei Starovoitov <[email protected]>
1 parent b8a81b5 commit 8ac412a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/core/filter.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -7643,7 +7643,7 @@ static const struct bpf_func_proto bpf_sock_ops_load_hdr_opt_proto = {
76437643
.gpl_only = false,
76447644
.ret_type = RET_INTEGER,
76457645
.arg1_type = ARG_PTR_TO_CTX,
7646-
.arg2_type = ARG_PTR_TO_MEM,
7646+
.arg2_type = ARG_PTR_TO_MEM | MEM_WRITE,
76477647
.arg3_type = ARG_CONST_SIZE,
76487648
.arg4_type = ARG_ANYTHING,
76497649
};

0 commit comments

Comments
 (0)