mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-30 05:09:06 +08:00
libbpf: Make btf__resolve_size logic always check size error condition
Perform size check always in btf__resolve_size. Makes the logic a bit more
robust against corrupted BTF and silences LGTM/Coverity complaining about
always true (size < 0) check.
Fixes: 69eaab04c675 ("btf: extract BTF type size calculation")
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20191107020855.3834758-5-andriin@fb.com
This commit is contained in:
committed by
Andrii Nakryiko
parent
fb929625dc
commit
bada95a5f3
@@ -269,10 +269,9 @@ __s64 btf__resolve_size(const struct btf *btf, __u32 type_id)
|
|||||||
t = btf__type_by_id(btf, type_id);
|
t = btf__type_by_id(btf, type_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
done:
|
||||||
if (size < 0)
|
if (size < 0)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
done:
|
|
||||||
if (nelems && size > UINT32_MAX / nelems)
|
if (nelems && size > UINT32_MAX / nelems)
|
||||||
return -E2BIG;
|
return -E2BIG;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user