提交 140d8b33 编写于 作者: W Wei-Chun Chao 提交者: David S. Miller

bpf: fix bpf_perf_event_read() loop upper bound

Verifier rejects programs incorrectly.

Fixes: 35578d79 ("bpf: Implement function bpf_perf_event_read()")
Cc: Kaixu Xia <xiakaixu@huawei.com>
Cc: Alexei Starovoitov <ast@plumgrid.com>
Signed-off-by: NWei-Chun Chao <weichunc@plumgrid.com>
Acked-by: NDaniel Borkmann <daniel@iogearbox.net>
Acked-by: NAlexei Starovoitov <ast@plumgrid.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 dcef7070
...@@ -853,7 +853,7 @@ static int check_map_func_compatibility(struct bpf_map *map, int func_id) ...@@ -853,7 +853,7 @@ static int check_map_func_compatibility(struct bpf_map *map, int func_id)
if (!map) if (!map)
return 0; return 0;
for (i = 0; i <= ARRAY_SIZE(func_limit); i++) { for (i = 0; i < ARRAY_SIZE(func_limit); i++) {
bool_map = (map->map_type == func_limit[i].map_type); bool_map = (map->map_type == func_limit[i].map_type);
bool_func = (func_id == func_limit[i].func_id); bool_func = (func_id == func_limit[i].func_id);
/* only when map & func pair match it can continue. /* only when map & func pair match it can continue.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册