diff options
| author | Arnd Bergmann <[email protected]> | 2020-04-30 21:30:47 +0000 |
|---|---|---|
| committer | Daniel Borkmann <[email protected]> | 2020-05-04 20:54:42 +0000 |
| commit | d26c0cc53950464a24adfa76867f1d71f0cbbea6 (patch) | |
| tree | 31d9b92c73807fe11c553dbbf5b78770f8fa15d7 /tools/testing/selftests/bpf/prog_tests/queue_stack_map.c | |
| parent | bpf, arm: Optimize ALU ARSH K using asr immediate instruction (diff) | |
| download | kernel-d26c0cc53950464a24adfa76867f1d71f0cbbea6.tar.gz kernel-d26c0cc53950464a24adfa76867f1d71f0cbbea6.zip | |
bpf: Avoid gcc-10 stringop-overflow warning in struct bpf_prog
gcc-10 warns about accesses to zero-length arrays:
kernel/bpf/core.c: In function 'bpf_patch_insn_single':
cc1: warning: writing 8 bytes into a region of size 0 [-Wstringop-overflow=]
In file included from kernel/bpf/core.c:21:
include/linux/filter.h:550:20: note: at offset 0 to object 'insnsi' with size 0 declared here
550 | struct bpf_insn insnsi[0];
| ^~~~~~
In this case, we really want to have two flexible-array members,
but that is not possible. Removing the union to make insnsi a
flexible-array member while leaving insns as a zero-length array
fixes the warning, as nothing writes to the other one in that way.
This trick only works on linux-3.18 or higher, as older versions
had additional members in the union.
Fixes: 60a3b2253c41 ("net: bpf: make eBPF interpreter images read-only")
Signed-off-by: Arnd Bergmann <[email protected]>
Signed-off-by: Daniel Borkmann <[email protected]>
Link: https://lore.kernel.org/bpf/[email protected]
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests/queue_stack_map.c')
0 files changed, 0 insertions, 0 deletions
