selftests/bpf: Add unit tests for pointers in global functions
authorDmitrii Banshchikov <me@ubique.spb.ru>
Fri, 12 Feb 2021 20:56:42 +0000 (00:56 +0400)
committerAlexei Starovoitov <ast@kernel.org>
Sat, 13 Feb 2021 01:37:23 +0000 (17:37 -0800)
commit8b08807d039a843163fd4aeca93aec69dfc4fbcf
tree39b7ad2400b62446aa3bd60cb6168f911de4e5a7
parente5069b9c23b3857db986c58801bebe450cff3392
selftests/bpf: Add unit tests for pointers in global functions

test_global_func9  - check valid pointer's scenarios
test_global_func10 - check that a smaller type cannot be passed as a
                     larger one
test_global_func11 - check that CTX pointer cannot be passed
test_global_func12 - check access to a null pointer
test_global_func13 - check access to an arbitrary pointer value
test_global_func14 - check that an opaque pointer cannot be passed
test_global_func15 - check that a variable has an unknown value after
     it was passed to a global function by pointer
test_global_func16 - check access to uninitialized stack memory

test_global_func_args - check read and write operations through a pointer

Signed-off-by: Dmitrii Banshchikov <me@ubique.spb.ru>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20210212205642.620788-5-me@ubique.spb.ru
tools/testing/selftests/bpf/prog_tests/global_func_args.c [new file with mode: 0644]
tools/testing/selftests/bpf/prog_tests/test_global_funcs.c
tools/testing/selftests/bpf/progs/test_global_func10.c [new file with mode: 0644]
tools/testing/selftests/bpf/progs/test_global_func11.c [new file with mode: 0644]
tools/testing/selftests/bpf/progs/test_global_func12.c [new file with mode: 0644]
tools/testing/selftests/bpf/progs/test_global_func13.c [new file with mode: 0644]
tools/testing/selftests/bpf/progs/test_global_func14.c [new file with mode: 0644]
tools/testing/selftests/bpf/progs/test_global_func15.c [new file with mode: 0644]
tools/testing/selftests/bpf/progs/test_global_func16.c [new file with mode: 0644]
tools/testing/selftests/bpf/progs/test_global_func9.c [new file with mode: 0644]
tools/testing/selftests/bpf/progs/test_global_func_args.c [new file with mode: 0644]