bpf: btf: Ensure the member->offset is in the right order
authorMartin KaFai Lau <kafai@fb.com>
Sat, 21 Jul 2018 00:38:37 +0000 (17:38 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Mon, 23 Jul 2018 23:20:44 +0000 (01:20 +0200)
commit6283fa38dc8744dc7c2bd2a03bb0478fe42f79fa
tree5c196acf3b4827da8059920bc97148106e8739d9
parent1a4f14bab1868b443f0dd3c55b689a478f82e72e
bpf: btf: Ensure the member->offset is in the right order

This patch ensures the member->offset of a struct
is in the correct order (i.e the later member's offset cannot
go backward).

The current "pahole -J" BTF encoder does not generate something
like this.  However, checking this can ensure future encoder
will not violate this.

Fixes: 69b693f0aefa ("bpf: btf: Introduce BPF Type Format (BTF)")
Signed-off-by: Martin KaFai Lau <kafai@fb.com>
Acked-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
kernel/bpf/btf.c
tools/testing/selftests/bpf/test_btf.c