Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 944df7b4 authored by Peng Sun's avatar Peng Sun Committed by Greg Kroah-Hartman
Browse files

bpf: decrease usercnt if bpf_map_new_fd() fails in bpf_map_get_fd_by_id()



[ Upstream commit 781e62823cb81b972dc8652c1827205cda2ac9ac ]

In bpf/syscall.c, bpf_map_get_fd_by_id() use bpf_map_inc_not_zero()
to increase the refcount, both map->refcnt and map->usercnt. Then, if
bpf_map_new_fd() fails, should handle map->usercnt too.

Fixes: bd5f5f4e ("bpf: Add BPF_MAP_GET_FD_BY_ID")
Signed-off-by: default avatarPeng Sun <sironhide0null@gmail.com>
Acked-by: default avatarMartin KaFai Lau <kafai@fb.com>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent ddb2badb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1887,7 +1887,7 @@ static int bpf_map_get_fd_by_id(const union bpf_attr *attr)

	fd = bpf_map_new_fd(map, f_flags);
	if (fd < 0)
		bpf_map_put(map);
		bpf_map_put_with_uref(map);

	return fd;
}