summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlexei Starovoitov <ast@kernel.org>2021-07-14 17:54:13 -0700
committerDaniel Borkmann <daniel@iogearbox.net>2021-07-15 22:31:10 +0200
commit86fc6ee6e246438d394e41bb7cc210b0fe724872 (patch)
treec55512a9114e4c04883ce4d25835ca3bedef473d /include
parent40ec00abf1cc92268e3e3320b36bbb33b2224808 (diff)
downloadlinux-86fc6ee6e246438d394e41bb7cc210b0fe724872.tar.gz
linux-86fc6ee6e246438d394e41bb7cc210b0fe724872.tar.bz2
linux-86fc6ee6e246438d394e41bb7cc210b0fe724872.zip
bpf: Relax verifier recursion check.
In the following bpf subprogram: static int timer_cb(void *map, void *key, void *value) { bpf_timer_set_callback(.., timer_cb); } the 'timer_cb' is a pointer to a function. ld_imm64 insn is used to carry this pointer. bpf_pseudo_func() returns true for such ld_imm64 insn. Unlike bpf_for_each_map_elem() the bpf_timer_set_callback() is asynchronous. Relax control flow check to allow such "recursion" that is seen as an infinite loop by check_cfg(). The distinction between bpf_for_each_map_elem() the bpf_timer_set_callback() is done in the follow up patch. Signed-off-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Andrii Nakryiko <andrii@kernel.org> Acked-by: Toke Høiland-Jørgensen <toke@redhat.com> Link: https://lore.kernel.org/bpf/20210715005417.78572-8-alexei.starovoitov@gmail.com
Diffstat (limited to 'include')
0 files changed, 0 insertions, 0 deletions