Commit 13c90849 authored by Andrii Nakryiko's avatar Andrii Nakryiko Committed by Alexei Starovoitov

selftests/bpf: Fix invalid memory reads in core_relo selftest

Another one found by AddressSanitizer. input_len is bigger than actually
initialized data size.

Fixes: c7566a69 ("selftests/bpf: Add field existence CO-RE relocs tests")
Signed-off-by: default avatarAndrii Nakryiko <andriin@fb.com>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20200429012111.277390-8-andriin@fb.com
parent 9f56bb53
...@@ -392,7 +392,7 @@ static struct core_reloc_test_case test_cases[] = { ...@@ -392,7 +392,7 @@ static struct core_reloc_test_case test_cases[] = {
.input = STRUCT_TO_CHAR_PTR(core_reloc_existence___minimal) { .input = STRUCT_TO_CHAR_PTR(core_reloc_existence___minimal) {
.a = 42, .a = 42,
}, },
.input_len = sizeof(struct core_reloc_existence), .input_len = sizeof(struct core_reloc_existence___minimal),
.output = STRUCT_TO_CHAR_PTR(core_reloc_existence_output) { .output = STRUCT_TO_CHAR_PTR(core_reloc_existence_output) {
.a_exists = 1, .a_exists = 1,
.b_exists = 0, .b_exists = 0,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment