diff options
| author | John Fastabend <john.fastabend@gmail.com> | 2020-03-30 14:37:19 -0700 |
|---|---|---|
| committer | Alexei Starovoitov <ast@kernel.org> | 2020-03-30 15:00:30 -0700 |
| commit | d2db08c7a14e0b5eed6132baf258b80622e041a9 (patch) | |
| tree | 53dcba117b24937e8c4795bfee2f348b7f946d1d /tools/testing/selftests/bpf/progs/test_get_stack_rawtp_err.c | |
| parent | bpf: Verifier, refine 32bit bound in do_refine_retval_range (diff) | |
| download | linux-d2db08c7a14e0b5eed6132baf258b80622e041a9.tar.gz linux-d2db08c7a14e0b5eed6132baf258b80622e041a9.zip | |
bpf: Test_progs, add test to catch retval refine error handling
Before this series the verifier would clamp return bounds of
bpf_get_stack() to [0, X] and this led the verifier to believe
that a JMP_JSLT 0 would be false and so would prune that path.
The result is anything hidden behind that JSLT would be unverified.
Add a test to catch this case by hiding an goto pc-1 behind the
check which will cause an infinite loop if not rejected.
Signed-off-by: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/158560423908.10843.11783152347709008373.stgit@john-Precision-5820-Tower
Diffstat (limited to 'tools/testing/selftests/bpf/progs/test_get_stack_rawtp_err.c')
| -rw-r--r-- | tools/testing/selftests/bpf/progs/test_get_stack_rawtp_err.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/progs/test_get_stack_rawtp_err.c b/tools/testing/selftests/bpf/progs/test_get_stack_rawtp_err.c new file mode 100644 index 000000000000..8941a41c2a55 --- /dev/null +++ b/tools/testing/selftests/bpf/progs/test_get_stack_rawtp_err.c @@ -0,0 +1,26 @@ +// SPDX-License-Identifier: GPL-2.0 + +#include <linux/bpf.h> +#include <bpf/bpf_helpers.h> + +#define MAX_STACK_RAWTP 10 + +SEC("raw_tracepoint/sys_enter") +int bpf_prog2(void *ctx) +{ + __u64 stack[MAX_STACK_RAWTP]; + int error; + + /* set all the flags which should return -EINVAL */ + error = bpf_get_stack(ctx, stack, 0, -1); + if (error < 0) + goto loop; + + return error; +loop: + while (1) { + error++; + } +} + +char _license[] SEC("license") = "GPL"; |
