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

Commit b0584ea6 authored by Roman Gushchin's avatar Roman Gushchin Committed by Daniel Borkmann
Browse files

bpf: don't accept cgroup local storage with zero value size



Explicitly forbid creating cgroup local storage maps with zero value
size, as it makes no sense and might even cause a panic.

Reported-by: default avatar <syzbot+18628320d3b14a5c459c@syzkaller.appspotmail.com>
Signed-off-by: default avatarRoman Gushchin <guro@fb.com>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
parent 4288ea00
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -195,6 +195,9 @@ static struct bpf_map *cgroup_storage_map_alloc(union bpf_attr *attr)
	if (attr->key_size != sizeof(struct bpf_cgroup_storage_key))
	if (attr->key_size != sizeof(struct bpf_cgroup_storage_key))
		return ERR_PTR(-EINVAL);
		return ERR_PTR(-EINVAL);


	if (attr->value_size == 0)
		return ERR_PTR(-EINVAL);

	if (attr->value_size > PAGE_SIZE)
	if (attr->value_size > PAGE_SIZE)
		return ERR_PTR(-E2BIG);
		return ERR_PTR(-E2BIG);