diff options
| author | Eduard Zingerman <[email protected]> | 2023-02-19 20:04:27 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2023-02-22 20:34:50 +0000 |
| commit | 6338a94d5ab42a94e96ea36edc5f7df1fe73e68e (patch) | |
| tree | eb8bd666efbe96ebae7a891d0b8661dcad7fbbcf /tools/testing/selftests/bpf/prog_tests | |
| parent | bpf: Allow reads from uninit stack (diff) | |
| download | kernel-6338a94d5ab42a94e96ea36edc5f7df1fe73e68e.tar.gz kernel-6338a94d5ab42a94e96ea36edc5f7df1fe73e68e.zip | |
selftests/bpf: Tests for uninitialized stack reads
Three testcases to make sure that stack reads from uninitialized
locations are accepted by verifier when executed in privileged mode:
- read from a fixed offset;
- read from a variable offset;
- passing a pointer to stack to a helper converts
STACK_INVALID to STACK_MISC.
Signed-off-by: Eduard Zingerman <[email protected]>
Acked-by: Andrii Nakryiko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Alexei Starovoitov <[email protected]>
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests')
| -rw-r--r-- | tools/testing/selftests/bpf/prog_tests/uninit_stack.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/uninit_stack.c b/tools/testing/selftests/bpf/prog_tests/uninit_stack.c new file mode 100644 index 000000000000..e64c71948491 --- /dev/null +++ b/tools/testing/selftests/bpf/prog_tests/uninit_stack.c @@ -0,0 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0 + +#include <test_progs.h> +#include "uninit_stack.skel.h" + +void test_uninit_stack(void) +{ + RUN_TESTS(uninit_stack); +} |
