From: Yonghong Song <yhs@fb.com>
To: Dmitrii Banshchikov <me@ubique.spb.ru>, <bpf@vger.kernel.org>
Cc: <ast@kernel.org>, <daniel@iogearbox.net>, <andrii@kernel.org>,
<kafai@fb.com>, <songliubraving@fb.com>,
<john.fastabend@gmail.com>, <kpsingh@chromium.org>, <rdna@fb.com>
Subject: Re: [PATCH bpf-next 3/3] selftests/bpf: Add unit tests for global functions
Date: Wed, 16 Dec 2020 18:00:10 -0800 [thread overview]
Message-ID: <b6600648-1549-ded3-e736-1f759dee7b09@fb.com> (raw)
In-Reply-To: <4a0f45692b124b7bca139a6c58c131496ec2dc12.1607973529.git.me@ubique.spb.ru>
On 12/14/20 11:52 AM, Dmitrii Banshchikov wrote:
> test_global_func9 - check valid scenarios for struct pointers
> test_global_func10 - check that the smaller struct cannot be passed as a
> the larger one
> test_global_func11 - check that CTX pointer cannot be passed as a struct
> pointer
> test_global_func12 - check access to a null pointer
> test_global_func13 - check access to an arbitrary pointer value
>
> Signed-off-by: Dmitrii Banshchikov <me@ubique.spb.ru>
> ---
> .../bpf/prog_tests/test_global_funcs.c | 5 ++
> .../selftests/bpf/progs/test_global_func10.c | 29 +++++++++
> .../selftests/bpf/progs/test_global_func11.c | 19 ++++++
> .../selftests/bpf/progs/test_global_func12.c | 21 +++++++
> .../selftests/bpf/progs/test_global_func13.c | 24 ++++++++
> .../selftests/bpf/progs/test_global_func9.c | 59 +++++++++++++++++++
> 6 files changed, 157 insertions(+)
> create mode 100644 tools/testing/selftests/bpf/progs/test_global_func10.c
> create mode 100644 tools/testing/selftests/bpf/progs/test_global_func11.c
> create mode 100644 tools/testing/selftests/bpf/progs/test_global_func12.c
> create mode 100644 tools/testing/selftests/bpf/progs/test_global_func13.c
> create mode 100644 tools/testing/selftests/bpf/progs/test_global_func9.c
>
> diff --git a/tools/testing/selftests/bpf/prog_tests/test_global_funcs.c b/tools/testing/selftests/bpf/prog_tests/test_global_funcs.c
> index 32e4348b714b..c4895e6c83c2 100644
> --- a/tools/testing/selftests/bpf/prog_tests/test_global_funcs.c
> +++ b/tools/testing/selftests/bpf/prog_tests/test_global_funcs.c
> @@ -61,6 +61,11 @@ void test_test_global_funcs(void)
> { "test_global_func6.o" , "modified ctx ptr R2" },
> { "test_global_func7.o" , "foo() doesn't return scalar" },
> { "test_global_func8.o" },
> + { "test_global_func9.o" },
> + { "test_global_func10.o", "invalid indirect read from stack off -8+4 size 8" },
> + { "test_global_func11.o", "Caller passes invalid args into func#1" },
> + { "test_global_func12.o", "invalid mem access 'mem_or_null'" },
> + { "test_global_func13.o", "Caller passes invalid args into func#1" },
> };
> libbpf_print_fn_t old_print_fn = NULL;
> int err, i, duration = 0;
> diff --git a/tools/testing/selftests/bpf/progs/test_global_func10.c b/tools/testing/selftests/bpf/progs/test_global_func10.c
> new file mode 100644
> index 000000000000..61c2ae92ce41
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/progs/test_global_func10.c
> @@ -0,0 +1,29 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +#include <stddef.h>
> +#include <linux/bpf.h>
> +#include <bpf/bpf_helpers.h>
> +
> +struct Small {
> + int x;
> +};
> +
> +struct Big {
> + int x;
> + int y;
> +};
> +
> +__noinline int foo(const struct Big *big)
> +{
> + if (big == 0)
> + return 0;
> +
> + return bpf_get_prandom_u32() < big->y;
> +}
> +
> +SEC("cgroup_skb/ingress")
> +int test_cls(struct __sk_buff *skb)
> +{
> + const struct Small small = {.x = skb->len };
> +
> + return foo((struct Big *)&small) ? 1 : 0;
> +}
> diff --git a/tools/testing/selftests/bpf/progs/test_global_func11.c b/tools/testing/selftests/bpf/progs/test_global_func11.c
> new file mode 100644
> index 000000000000..28488047c849
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/progs/test_global_func11.c
> @@ -0,0 +1,19 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +#include <stddef.h>
> +#include <linux/bpf.h>
> +#include <bpf/bpf_helpers.h>
> +
> +struct S {
> + int x;
> +};
> +
> +__noinline int foo(const struct S *s)
> +{
> + return s ? bpf_get_prandom_u32() < s->x : 0;
> +}
> +
> +SEC("cgroup_skb/ingress")
> +int test_cls(struct __sk_buff *skb)
> +{
> + return foo(skb);
> +}
> diff --git a/tools/testing/selftests/bpf/progs/test_global_func12.c b/tools/testing/selftests/bpf/progs/test_global_func12.c
> new file mode 100644
> index 000000000000..62343527cc59
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/progs/test_global_func12.c
> @@ -0,0 +1,21 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +#include <stddef.h>
> +#include <linux/bpf.h>
> +#include <bpf/bpf_helpers.h>
> +
> +struct S {
> + int x;
> +};
> +
> +__noinline int foo(const struct S *s)
> +{
> + return bpf_get_prandom_u32() < s->x;
> +}
> +
> +SEC("cgroup_skb/ingress")
> +int test_cls(struct __sk_buff *skb)
> +{
> + const struct S s = {.x = skb->len };
> +
> + return foo(&s);
> +}
I assume struct member write is also supported? In the next revision,
could you also test case something like
struct S { int x; int y; };
__noinline int foo(struct S *s) {
s->x = 1;
return s->y;
};
SEC(...) int test(struct __sk_buff *skb) {
struct S s = {.y = skb->len};
int ret = foo(&s);
return ret < 100 ? 0 : s.x;
}
In the above, to facilitate implementation, if initializing s.x is
desirable, we can do
SEC(...) int test(struct __sk_buff *skb) {
struct S s = {.x = 0, .y = skb->len};
int ret = foo(&s);
return ret < 100 ? 0 : s.x;
}
> diff --git a/tools/testing/selftests/bpf/progs/test_global_func13.c b/tools/testing/selftests/bpf/progs/test_global_func13.c
> new file mode 100644
> index 000000000000..ff8897c1ac22
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/progs/test_global_func13.c
[...]
next prev parent reply other threads:[~2020-12-17 2:01 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-14 19:52 [PATCH bpf-next 0/3] Add support of pointer to struct in global functions Dmitrii Banshchikov
2020-12-14 19:52 ` [PATCH bpf-next 1/3] bpf: Factor out nullable reg type conversion Dmitrii Banshchikov
2020-12-16 22:46 ` Andrii Nakryiko
2020-12-17 6:17 ` Alexei Starovoitov
2020-12-14 19:52 ` [PATCH bpf-next 2/3] bpf: Support pointer to struct in global func args Dmitrii Banshchikov
2020-12-16 23:35 ` Andrii Nakryiko
2020-12-17 6:13 ` Dmitrii Banshchikov
2020-12-18 19:52 ` Andrii Nakryiko
2020-12-19 14:37 ` Dmitrii Banshchikov
2020-12-14 19:52 ` [PATCH bpf-next 3/3] selftests/bpf: Add unit tests for global functions Dmitrii Banshchikov
2020-12-16 22:53 ` Andrii Nakryiko
2020-12-17 2:00 ` Yonghong Song [this message]
2020-12-16 22:44 ` [PATCH bpf-next 0/3] Add support of pointer to struct in " Andrii Nakryiko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b6600648-1549-ded3-e736-1f759dee7b09@fb.com \
--to=yhs@fb.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=john.fastabend@gmail.com \
--cc=kafai@fb.com \
--cc=kpsingh@chromium.org \
--cc=me@ubique.spb.ru \
--cc=rdna@fb.com \
--cc=songliubraving@fb.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox