The bpf() system call validates the bpf_attr structure received as argument, and considers data until the last field, defined for each operation. The remaing space must be filled with zeros. Currently, for bpf_*_get_fd_by_id() functions except bpf_map_get_fd_by_id() the last field is *_id. Setting open_flags to BPF_F_RDONLY from user space will result in bpf() rejecting the argument. Set open_flags as last field for the remaining bpf_*_get_fd_by_id() functions, so that this information can be taken into account by the bpf() system call. Signed-off-by: Roberto Sassu <roberto.sassu@xxxxxxxxxx> --- kernel/bpf/syscall.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c index 83c7136c5788..b4311155d535 100644 --- a/kernel/bpf/syscall.c +++ b/kernel/bpf/syscall.c @@ -3689,7 +3689,7 @@ struct bpf_prog *bpf_prog_get_curr_or_next(u32 *id) return prog; } -#define BPF_PROG_GET_FD_BY_ID_LAST_FIELD prog_id +#define BPF_PROG_GET_FD_BY_ID_LAST_FIELD open_flags struct bpf_prog *bpf_prog_by_id(u32 id) { @@ -4315,7 +4315,7 @@ static int bpf_btf_load(const union bpf_attr *attr, bpfptr_t uattr) return btf_new_fd(attr, uattr); } -#define BPF_BTF_GET_FD_BY_ID_LAST_FIELD btf_id +#define BPF_BTF_GET_FD_BY_ID_LAST_FIELD open_flags static int bpf_btf_get_fd_by_id(const union bpf_attr *attr) { @@ -4733,7 +4733,7 @@ struct bpf_link *bpf_link_get_curr_or_next(u32 *id) return link; } -#define BPF_LINK_GET_FD_BY_ID_LAST_FIELD link_id +#define BPF_LINK_GET_FD_BY_ID_LAST_FIELD open_flags static int bpf_link_get_fd_by_id(const union bpf_attr *attr) { -- 2.25.1