]> www.infradead.org Git - users/willy/linux.git/commit
bpf: Check validity of link->type in bpf_link_show_fdinfo()
authorHou Tao <houtao1@huawei.com>
Thu, 24 Oct 2024 01:35:58 +0000 (09:35 +0800)
committerAndrii Nakryiko <andrii@kernel.org>
Thu, 24 Oct 2024 17:17:12 +0000 (10:17 -0700)
commit8421d4c8762bd022cb491f2f0f7019ef51b4f0a7
treeefb828d257aea579f783c2792164a55c3ce9f8b9
parentc2f803052bc7a7feb2e03befccc8e49b6ff1f5f5
bpf: Check validity of link->type in bpf_link_show_fdinfo()

If a newly-added link type doesn't invoke BPF_LINK_TYPE(), accessing
bpf_link_type_strs[link->type] may result in an out-of-bounds access.

To spot such missed invocations early in the future, checking the
validity of link->type in bpf_link_show_fdinfo() and emitting a warning
when such invocations are missed.

Signed-off-by: Hou Tao <houtao1@huawei.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20241024013558.1135167-3-houtao@huaweicloud.com
kernel/bpf/syscall.c