]> git.ipfire.org Git - thirdparty/linux.git/commit
bpf: Add fd_array_cnt attribute for prog_load
authorAnton Protopopov <aspsk@isovalent.com>
Fri, 13 Dec 2024 13:09:31 +0000 (13:09 +0000)
committerAndrii Nakryiko <andrii@kernel.org>
Fri, 13 Dec 2024 22:48:36 +0000 (14:48 -0800)
commit4d3ae294f900fb7232fb6c890dbd3176b8a5f121
tree5c95ffae365d7f4987bce5ef0ac06c9234961923
parent76145f7255326761dafb76721a785799d8a00d5f
bpf: Add fd_array_cnt attribute for prog_load

The fd_array attribute of the BPF_PROG_LOAD syscall may contain a set
of file descriptors: maps or btfs. This field was introduced as a
sparse array. Introduce a new attribute, fd_array_cnt, which, if
present, indicates that the fd_array is a continuous array of the
corresponding length.

If fd_array_cnt is non-zero, then every map in the fd_array will be
bound to the program, as if it was used by the program. This
functionality is similar to the BPF_PROG_BIND_MAP syscall, but such
maps can be used by the verifier during the program load.

Signed-off-by: Anton Protopopov <aspsk@isovalent.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20241213130934.1087929-5-aspsk@isovalent.com
include/uapi/linux/bpf.h
kernel/bpf/syscall.c
kernel/bpf/verifier.c
tools/include/uapi/linux/bpf.h