bpf/btf: Fix BTF verification of enum members in struct/union
authorYoshiki Komachi <komachi.yoshiki@gmail.com>
Tue, 10 Mar 2020 07:32:29 +0000 (16:32 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 1 Apr 2020 09:02:11 +0000 (11:02 +0200)
commit657559d632c260683062f9d09be239382f76cf01
tree29d7a5f25968723d30fad0b2051e59e9b95ecf5c
parent188aae1f3d5f155a05f5727f53884ffc4b12b1ca
bpf/btf: Fix BTF verification of enum members in struct/union

commit da6c7faeb103c493e505e87643272f70be586635 upstream.

btf_enum_check_member() was currently sure to recognize the size of
"enum" type members in struct/union as the size of "int" even if
its size was packed.

This patch fixes BTF enum verification to use the correct size
of member in BPF programs.

Fixes: 179cde8cef7e ("bpf: btf: Check members of struct/union")
Signed-off-by: Yoshiki Komachi <komachi.yoshiki@gmail.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/1583825550-18606-2-git-send-email-komachi.yoshiki@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
kernel/bpf/btf.c